diff --git a/CHANGELOG.markdown b/CHANGELOG.markdown index 0d02ff7bbfdd25717657afef3421d970af45e8c7..cf9e436f03f0311e01d63976b2e96e51cba5a085 100644 --- a/CHANGELOG.markdown +++ b/CHANGELOG.markdown @@ -1,3 +1,26 @@ +2.0.0.0-dev38 +============= +* Changed application initialization procedure + * Application can be started with specific initial configuration data. `Mage_Core_Model_Config::loadBase()` merges this configuration with the highest priority + * `Mage` class is no longer responsible for application installation status. `Mage_Core_Model_App` has this responsibility (`Mage_Core_Model_App::isInstalled()`) +* Implemented new library component `Magento_Filesystem` for working with file system + * New component has more abstract layer of interaction with file system, better path isolation + * Introduced interface Magento_Filesystem_AdapterInterface for file operations. Added concrete implementation in `Magento_Filesystem_Adapter_Local` + * Introduced interface Magento_Filesystem_StreamInterface for stream operations with content. Added concrete implementation in `Magento_Filesystem_Stream_Local` + * Added special class `Magento_Filesystem_Stream_Mode` to set parameters of stream on opening (read-only, write-only etc.) +* Added an ability to skip some service functions for lighter launch of application in `app/bootstrap.php` +* Improved batch tool for launching automated tests. Tool has an ability to run specified test types. Tool was moved from `dev/tools/batch_tests` to `dev/tools/tests.php` +* Improved integration test Mage_Adminhtml_DashboardControllerTest to skip test case when Google service is unavailable +* Improved url building process in new jQuery form widget to have it more secure +* Removed obsolete `@group module::<Namespace_Module>` annotation from integration tests, restricted its further usage +* Updated jQuery library used in application, used unified file name instead of version-based one +* Relocated XSD files for System Configuration, Menu Configuration, ACL Configuration, ACL Configuration for WebApi, Theme Configuration, View Configuration, Validator Configuration to `etc` subfolders of corresponding modules +* Bug fixes + * Fixed bug with placing order in backend using Authorize.Net Direct Post payment method + * Changed `Mage_Core_Model_Url` to fix bug with incorrect links on frontend (My Wishlist, Go to Shopping Cart, Continue button at first checkout step) + * Fixed several bugs after converting backend grids to layout declaration. Changes were made in EAV Attributes, Design, Newsletter, Backup modules + * Fixed incorrect current working directory behavior on application isolation in tests + 2.0.0.0-dev37 ============= * Refactored a variety of grids in backend (admin) to make them configurable through layout, rather than hard-coded. The following classes were affected (converted): `Mage_User_Block_User_Grid`, `Mage_User_Block_Role_Grid`, `Mage_Adminhtml_Block_System_Design_Grid`, `Mage_Adminhtml_Block_Catalog_Product_Attribute_Set_Grid`, `Mage_Adminhtml_Block_Newsletter_Problem_Grid`, `Mage_Adminhtml_Block_Backup_Grid`, `Mage_Adminhtml_Block_Tax_Rate_Grid`, `Mage_Adminhtml_Block_System_Store_Grid`, `Mage_Adminhtml_Block_System_Email_Template_Grid`, `Mage_Adminhtml_Block_Sitemap_Grid`, `Mage_Adminhtml_Block_Catalog_Search_Grid`, `Mage_Adminhtml_Block_Urlrewrite_Grid`, `Mage_Adminhtml_Block_System_Variable_Grid`, `Mage_Adminhtml_Block_Report_Review_Customer_Grid`, `Mage_Adminhtml_Block_Report_Review_Product_Grid` diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000000000000000000000000000000000000..e37828f3ac2111ca94b53f83128db91d51f66295 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,36 @@ +# Contribution Guide + +The Magento 2 development team will review all issues and contributions submitted by the community of developers. Contributions can take the form of new components/features, changes to existing features, tests, documentation (such as developer guides, user guides, examples, or specifications), bug fixes, optimizations or just good suggestions. To assist in the expediency of the review process, we strongly encourage you to follow all the proper requirements stated below in Definition of Done, before submitting any code for consideration. + +## Contribution Process + +If you are a new github user, we recommend that you create your own [free github account](https://github.com/signup/free). By doing that, you will be able to collaborate with the Magento 2 development team, “fork†the Magento 2 project and be able to easily send “pull requestsâ€. + +1. Search current [listed issues](https://github.com/magento/magento2/issues) (open or closed) for similar proposals of intended contribution before starting work on a new contribution. +2. Review the [Contributor License Agreement](https://github.com/magento/magento2/wiki/Contributor-License-Agreement) if this is your first time contributing. +3. Create and test your work. +4. Fork the Magento 2 repository according to [github's Fork A Repo instructions](https://help.github.com/articles/fork-a-repo) and when you are ready to send us a Pull Request – follow [github's Using Pull Requests instructions](https://help.github.com/articles/using-pull-requests). +5. Once your contribution is received, Magento 2 development team will review the contribution and collaborate with you as needed to improve the quality of the contribution. + +### Contribution Acceptance Criteria + +1. Code changes must be covered with automated tests and supplied along with the patch (or fork). Author chooses the best approach for testing as deemed necessary. See [Magento Automated Testing Standard](https://github.com/magento/magento2/wiki/Magento-Automated-Testing-Standard) for additional guidance. +2. New features or proposals must be supplied with documentation -- functional (how a feature works) or technical (how it is implemented/designed), or both. + +## Frequently Asked Questions + +**Do I need to follow all requirements of the contribution process?** + +Yes. We strongly encourage that you follow the requirements as stated, before submitting your code or patch for Magento 2 development team's review. Properly submitted contributions will help the Magento 2 development team to quickly assess your contribution and incorporate it into the Magento 2 project if deemed beneficial. + +**Do you accept all contributions?** + +Not all contributions will be used or incorporated into the code for the project. The decision to incorporate the code or not is at the discretion of the Magento 2 development team. + +# X.Commerce (Magento) Contributor License Agreement + +All Submissions you make to Magento, a division of X.commerce, Inc. (“Magentoâ€) through GitHub are subject to the following terms and conditions: + +1. You grant Magento a perpetual, worldwide, non-exclusive, no charge, royalty free, irrevocable license under your applicable copyrights and patents to reproduce, prepare derivative works of, display, publically perform, sublicense and distribute any feedback, ideas, code, or other information (“Submissionâ€) you submit through GitHub. +2. Your Submission is an original work of authorship and you are the owner or are legally entitled to grant the license stated above. +3. You agree to the X.commerce Agreement found here: [https://www.x.com/developers/x.commerce/x.commerce-user-agreement](https://www.x.com/developers/x.commerce/x.commerce-user-agreement) diff --git a/app/Mage.php b/app/Mage.php index 770b26b50ba993aa1d79b4a16ce4a5be48a758d9..7efc86ed8a56f65e7c4faceff04624f1a68c0bd7 100644 --- a/app/Mage.php +++ b/app/Mage.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ @@ -99,13 +99,6 @@ final class Mage */ public static $headersSentThrowsException = true; - /** - * Is installed flag - * - * @var bool - */ - static private $_isInstalled; - /** * Logger entities * @@ -170,7 +163,7 @@ final class Mage 'revision' => '0', 'patch' => '0', 'stability' => 'dev', - 'number' => '37', + 'number' => '38', ); } @@ -200,7 +193,6 @@ final class Mage self::$_objects = null; self::$_isDownloader = false; self::$_isDeveloperMode = false; - self::$_isInstalled = null; self::$_loggers = array(); self::$_design = null; // do not reset $headersSentThrowsException @@ -267,39 +259,21 @@ final class Mage return null; } - /** - * Set application root absolute path - * - * @param string $appRoot - * @throws Mage_Core_Exception - */ - public static function setRoot($appRoot = '') - { - if (self::$_appRoot) { - return ; - } - - if ('' === $appRoot) { - // automatically find application root by dirname of Mage.php - $appRoot = dirname(__FILE__); - } - - $appRoot = realpath($appRoot); - - if (is_dir($appRoot) && is_readable($appRoot)) { - self::$_appRoot = $appRoot; - } else { - self::throwException($appRoot . ' is not a directory or not readable by this user'); - } - } - /** * Retrieve application root absolute path * * @return string + * @throws Magento_Exception */ public static function getRoot() { + if (!self::$_appRoot) { + $appRootDir = __DIR__; + if (!is_readable($appRootDir)) { + throw new Magento_Exception("Application root directory '$appRootDir' is not readable."); + } + self::$_appRoot = $appRootDir; + } return self::$_appRoot; } @@ -654,11 +628,8 @@ final class Mage public static function app($code = '', $type = 'store', $options = array()) { if (null === self::$_app) { - self::setRoot(); self::$_app = self::getObjectManager()->get('Mage_Core_Model_App'); self::$_events = new Varien_Event_Collection(); - self::_setIsInstalled($options); - self::_setConfigModel($options); Magento_Profiler::start('self::app::init'); self::$_app->init($code, $type, $options); @@ -686,10 +657,7 @@ final class Mage public static function init($code = '', $type = 'store', $options = array(), $modules = array()) { try { - self::setRoot(); - self::$_app = self::getObjectManager()->create('Mage_Core_Model_App'); - self::_setIsInstalled($options); - self::_setConfigModel($options); + self::$_app = self::getObjectManager()->create('Mage_Core_Model_App'); if (!empty($modules)) { self::$_app->initSpecified($code, $type, $options, $modules); @@ -719,7 +687,6 @@ final class Mage { try { Magento_Profiler::start('mage'); - self::setRoot(); if (isset($options['edition'])) { self::$_currentEdition = $options['edition']; } @@ -731,7 +698,6 @@ final class Mage self::$_app->setResponse($options['response']); } self::$_events = new Varien_Event_Collection(); - self::_setIsInstalled($options); self::$_app->run(array( 'scope_code' => $code, 'scope_type' => $type, @@ -748,70 +714,19 @@ final class Mage } /** - * Set application isInstalled flag based on given options + * Shortcut for the application "is installed" getter * - * @param array $options - */ - protected static function _setIsInstalled($options = array()) - { - if (isset($options['is_installed'])) { - self::$_isInstalled = (bool) $options['is_installed']; - } - } - - /** - * Set application Config model - * - * @param array $options - */ - protected static function _setConfigModel($options = array()) - { - if (isset($options['config_model']) && class_exists($options['config_model'])) { - $alternativeConfigModelName = $options['config_model']; - unset($options['config_model']); - $alternativeConfigModel = new $alternativeConfigModelName($options); - } else { - $alternativeConfigModel = null; - } - - if (!is_null($alternativeConfigModel) && ($alternativeConfigModel instanceof Mage_Core_Model_Config)) { - self::$_config = $alternativeConfigModel; - } else { - self::$_config = self::getObjectManager()->get('Mage_Core_Model_Config'); - } - } - - /** - * Retrieve application installation flag - * - * @param string|array $options * @return bool + * @throws Magento_Exception + * + * @todo Remove in favour of Mage_Core_Model_App::isInstalled() as soon as dependencies on application are injected */ - public static function isInstalled($options = array()) + public static function isInstalled() { - if (self::$_isInstalled === null) { - self::setRoot(); - - if (is_string($options)) { - $options = array('etc_dir' => $options); - } - $etcDir = self::getRoot() . DS . 'etc'; - if (!empty($options['etc_dir'])) { - $etcDir = $options['etc_dir']; - } - $localConfigFile = $etcDir . DS . 'local.xml'; - - self::$_isInstalled = false; - - if (is_readable($localConfigFile)) { - $localConfig = simplexml_load_file($localConfigFile); - date_default_timezone_set('UTC'); - if (($date = $localConfig->global->install->date) && strtotime($date)) { - self::$_isInstalled = true; - } - } + if (!self::$_app) { + throw new Magento_Exception('Application instance has not been initialized yet.'); } - return self::$_isInstalled; + return self::$_app->isInstalled(); } /** diff --git a/app/autoload.php b/app/autoload.php index f87ff80feed38be3cd087b4c086711c75727a05e..27baae87f92c28dfe884c2041a3d0bbd8fd6edf0 100644 --- a/app/autoload.php +++ b/app/autoload.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ require_once __DIR__ . '/../lib/Magento/Autoload/IncludePath.php'; diff --git a/app/bootstrap.php b/app/bootstrap.php index f1379de37ee37935fb9c16734b1d4e1aeb141936..3f0ecab940d05a13e034cd5ed24105145cc46de9 100644 --- a/app/bootstrap.php +++ b/app/bootstrap.php @@ -18,45 +18,17 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) - * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) + * @category Magento + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) + * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ -/* PHP version validation */ -if (version_compare(phpversion(), '5.3.0', '<') === true) { - if (PHP_SAPI == 'cli') { - echo 'Magento supports PHP 5.3.0 or newer. Please read http://www.magento.com/install.'; - } else { - echo <<<HTML -<div style="font:12px/1.35em arial, helvetica, sans-serif;"> - <div style="margin:0 0 25px 0; border-bottom:1px solid #ccc;"> - <h3 style="margin:0;font-size:1.7em;font-weight:normal;text-transform:none;text-align:left;color:#2f2f2f;"> - Whoops, it looks like you have an invalid PHP version.</h3> - </div> - <p>Magento supports PHP 5.3.0 or newer. - <a href="http://www.magento.com/install" target="">Find out</a> - how to install Magento using PHP-CGI as a work-around. - </p> -</div> -HTML; - } - exit; -} - -/** - * Constants definition +/**#@+ + * Shortcut constants */ define('DS', DIRECTORY_SEPARATOR); define('BP', dirname(__DIR__)); - -if (file_exists(BP . '/maintenance.flag')) { - if (PHP_SAPI == 'cli') { - echo 'Service temporarily unavailable due to maintenance downtime.'; - } else { - include_once BP . '/pub/errors/503.php'; - } - exit; -} +/**#@-*/ /** * Environment initialization @@ -71,8 +43,55 @@ umask(0); require_once BP . '/app/code/core/Mage/Core/functions.php'; require_once BP . '/app/Mage.php'; -if (isset($_SERVER['MAGE_IS_DEVELOPER_MODE'])) { - Mage::setIsDeveloperMode(true); +if (!defined('BARE_BOOTSTRAP')) { + /* PHP version validation */ + if (version_compare(phpversion(), '5.3.0', '<') === true) { + if (PHP_SAPI == 'cli') { + echo 'Magento supports PHP 5.3.0 or newer. Please read http://www.magento.com/install.'; + } else { + echo <<<HTML +<div style="font:12px/1.35em arial, helvetica, sans-serif;"> + <div style="margin:0 0 25px 0; border-bottom:1px solid #ccc;"> + <h3 style="margin:0;font-size:1.7em;font-weight:normal;text-transform:none;text-align:left;color:#2f2f2f;"> + Whoops, it looks like you have an invalid PHP version.</h3> + </div> + <p>Magento supports PHP 5.3.0 or newer. + <a href="http://www.magento.com/install" target="">Find out</a> + how to install Magento using PHP-CGI as a work-around. + </p> +</div> +HTML; + } + exit; + } + if (file_exists(BP . '/maintenance.flag')) { + if (PHP_SAPI == 'cli') { + echo 'Service temporarily unavailable due to maintenance downtime.'; + } else { + include_once BP . '/pub/errors/503.php'; + } + exit; + } + if (isset($_SERVER['MAGE_IS_DEVELOPER_MODE'])) { + Mage::setIsDeveloperMode(true); + } + if (!empty($_SERVER['MAGE_PROFILER'])) { + $profilerConfigData = $_SERVER['MAGE_PROFILER']; + + $profilerConfig = array( + 'baseDir' => dirname(__DIR__), + 'tagFilters' => array() + ); + + if (is_scalar($profilerConfigData)) { + $profilerConfig['driver'] = array( + 'output' => is_numeric($profilerConfigData) ? 'html' : $profilerConfigData + ); + } elseif (is_array($profilerConfigData)) { + $profilerConfig = array_merge($profilerConfig, $profilerConfigData); + } + Magento_Profiler::applyConfig($profilerConfig); + } } require_once __DIR__ . '/autoload.php'; @@ -92,24 +111,5 @@ if (file_exists($classMapPath)) { $definitionsFile = BP . DS . 'var/di/definitions.php'; if (file_exists($definitionsFile)) { - Mage::setRoot(); Mage::initializeObjectManager($definitionsFile); } - -if (!empty($_SERVER['MAGE_PROFILER'])) { - $profilerConfigData = $_SERVER['MAGE_PROFILER']; - - $profilerConfig = array( - 'baseDir' => dirname(__DIR__), - 'tagFilters' => array() - ); - - if (is_scalar($profilerConfigData)) { - $profilerConfig['driver'] = array( - 'output' => is_numeric($profilerConfigData) ? 'html' : $profilerConfigData - ); - } elseif (is_array($profilerConfigData)) { - $profilerConfig = array_merge($profilerConfig, $profilerConfigData); - } - Magento_Profiler::applyConfig($profilerConfig); -} diff --git a/app/code/community/Phoenix/Moneybookers/Block/Form.php b/app/code/community/Phoenix/Moneybookers/Block/Form.php index b018adbdb4287ef7410a40e4064c9b3dfd133f1b..3b1b3b1a5cb8cf984ba25f4fa45d331a78240fd5 100644 --- a/app/code/community/Phoenix/Moneybookers/Block/Form.php +++ b/app/code/community/Phoenix/Moneybookers/Block/Form.php @@ -20,7 +20,7 @@ * * @category Phoenix * @package Phoenix_Moneybookers - * @copyright Copyright (c) 2012 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) + * @copyright Copyright (c) 2013 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Phoenix_Moneybookers_Block_Form extends Mage_Payment_Block_Form diff --git a/app/code/community/Phoenix/Moneybookers/Block/Info.php b/app/code/community/Phoenix/Moneybookers/Block/Info.php index 9b309e076e47b28ddc1aa4b34a16418adef438c5..ad1b84f2bfd251b08fe5cf607bcf299cfa0281d8 100644 --- a/app/code/community/Phoenix/Moneybookers/Block/Info.php +++ b/app/code/community/Phoenix/Moneybookers/Block/Info.php @@ -20,7 +20,7 @@ * * @category Phoenix * @package Phoenix_Moneybookers - * @copyright Copyright (c) 2012 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) + * @copyright Copyright (c) 2013 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Phoenix_Moneybookers_Block_Info extends Mage_Payment_Block_Info diff --git a/app/code/community/Phoenix/Moneybookers/Block/Jsinit.php b/app/code/community/Phoenix/Moneybookers/Block/Jsinit.php index 4f259781cd24e339178531801e162e290acb49cc..c4ae892668cb0b4bc295b8113d3c4397bfd58e5a 100644 --- a/app/code/community/Phoenix/Moneybookers/Block/Jsinit.php +++ b/app/code/community/Phoenix/Moneybookers/Block/Jsinit.php @@ -20,7 +20,7 @@ * * @category Phoenix * @package Phoenix_Moneybookers - * @copyright Copyright (c) 2012 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) + * @copyright Copyright (c) 2013 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Phoenix_Moneybookers_Block_Jsinit extends Mage_Adminhtml_Block_Template diff --git a/app/code/community/Phoenix/Moneybookers/Block/Payment.php b/app/code/community/Phoenix/Moneybookers/Block/Payment.php index 11d44ea7bdc7577e6ff6c899a24328d321284e28..e2333ade1b83e4433f5c9200c7ed529bceefc4a6 100644 --- a/app/code/community/Phoenix/Moneybookers/Block/Payment.php +++ b/app/code/community/Phoenix/Moneybookers/Block/Payment.php @@ -20,7 +20,7 @@ * * @category Phoenix * @package Phoenix_Moneybookers - * @copyright Copyright (c) 2012 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) + * @copyright Copyright (c) 2013 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Phoenix_Moneybookers_Block_Payment extends Mage_Core_Block_Template diff --git a/app/code/community/Phoenix/Moneybookers/Block/Placeform.php b/app/code/community/Phoenix/Moneybookers/Block/Placeform.php index 6d02bbad043a6b7a834ea86fb35b604adf57333b..574ee6c791bec26e4c20f1d1cb26a8ba670e06a0 100644 --- a/app/code/community/Phoenix/Moneybookers/Block/Placeform.php +++ b/app/code/community/Phoenix/Moneybookers/Block/Placeform.php @@ -20,7 +20,7 @@ * * @category Phoenix * @package Phoenix_Moneybookers - * @copyright Copyright (c) 2012 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) + * @copyright Copyright (c) 2013 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Phoenix_Moneybookers_Block_Placeform extends Mage_Core_Block_Template diff --git a/app/code/community/Phoenix/Moneybookers/Block/Redirect.php b/app/code/community/Phoenix/Moneybookers/Block/Redirect.php index 6172f764b50e6124a549eeeefbbdee767faf0e01..8c88774d4766a1ccd83f002796213ee15eff33aa 100644 --- a/app/code/community/Phoenix/Moneybookers/Block/Redirect.php +++ b/app/code/community/Phoenix/Moneybookers/Block/Redirect.php @@ -20,7 +20,7 @@ * * @category Phoenix * @package Phoenix_Moneybookers - * @copyright Copyright (c) 2012 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) + * @copyright Copyright (c) 2013 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Phoenix_Moneybookers_Block_Redirect extends Mage_Core_Block_Template diff --git a/app/code/community/Phoenix/Moneybookers/Helper/Data.php b/app/code/community/Phoenix/Moneybookers/Helper/Data.php index f18c9fbfdf081080474468f610e502c8aca1a3db..5a9858a3584c5b33447e255ea30cdeed8d448e59 100644 --- a/app/code/community/Phoenix/Moneybookers/Helper/Data.php +++ b/app/code/community/Phoenix/Moneybookers/Helper/Data.php @@ -20,7 +20,7 @@ * * @category Phoenix * @package Phoenix_Moneybookers - * @copyright Copyright (c) 2012 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) + * @copyright Copyright (c) 2013 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Phoenix_Moneybookers_Helper_Data extends Mage_Payment_Helper_Data diff --git a/app/code/community/Phoenix/Moneybookers/Model/Abstract.php b/app/code/community/Phoenix/Moneybookers/Model/Abstract.php index 80f4eff14c34185de652799a4412063079523953..1e5aad6aedc211c31d2b557842570abe2cff2a3e 100644 --- a/app/code/community/Phoenix/Moneybookers/Model/Abstract.php +++ b/app/code/community/Phoenix/Moneybookers/Model/Abstract.php @@ -20,7 +20,7 @@ * * @category Phoenix * @package Phoenix_Moneybookers - * @copyright Copyright (c) 2012 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) + * @copyright Copyright (c) 2013 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ abstract class Phoenix_Moneybookers_Model_Abstract extends Mage_Payment_Model_Method_Abstract diff --git a/app/code/community/Phoenix/Moneybookers/Model/Acc.php b/app/code/community/Phoenix/Moneybookers/Model/Acc.php index 22a2df45016ae471885e8daad83d24ff6c6ad59f..02ae79d7542874587567e3a78565dee166ee52da 100644 --- a/app/code/community/Phoenix/Moneybookers/Model/Acc.php +++ b/app/code/community/Phoenix/Moneybookers/Model/Acc.php @@ -20,7 +20,7 @@ * * @category Phoenix * @package Phoenix_Moneybookers - * @copyright Copyright (c) 2012 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) + * @copyright Copyright (c) 2013 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Phoenix_Moneybookers_Model_Acc extends Phoenix_Moneybookers_Model_Abstract diff --git a/app/code/community/Phoenix/Moneybookers/Model/Csi.php b/app/code/community/Phoenix/Moneybookers/Model/Csi.php index 4b19d99d23e926b74823d0071cddffa2b5bace2b..b7dcf579ab39c3061120f884f9f4efc7e4f9199c 100644 --- a/app/code/community/Phoenix/Moneybookers/Model/Csi.php +++ b/app/code/community/Phoenix/Moneybookers/Model/Csi.php @@ -20,7 +20,7 @@ * * @category Phoenix * @package Phoenix_Moneybookers - * @copyright Copyright (c) 2012 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) + * @copyright Copyright (c) 2013 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Phoenix_Moneybookers_Model_Csi extends Phoenix_Moneybookers_Model_Abstract diff --git a/app/code/community/Phoenix/Moneybookers/Model/Did.php b/app/code/community/Phoenix/Moneybookers/Model/Did.php index 842b6b26015b36be814189f6e4dce8e21fa21c44..2b1d77330007bfd141e53996c2439b05b799916a 100644 --- a/app/code/community/Phoenix/Moneybookers/Model/Did.php +++ b/app/code/community/Phoenix/Moneybookers/Model/Did.php @@ -20,7 +20,7 @@ * * @category Phoenix * @package Phoenix_Moneybookers - * @copyright Copyright (c) 2012 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) + * @copyright Copyright (c) 2013 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Phoenix_Moneybookers_Model_Did extends Phoenix_Moneybookers_Model_Abstract diff --git a/app/code/community/Phoenix/Moneybookers/Model/Dnk.php b/app/code/community/Phoenix/Moneybookers/Model/Dnk.php index 7e0a130b64beff5a5f6e57b6a59ec9762253ffab..b3d94165d29f6dba735a783b9fbec788f4db0871 100644 --- a/app/code/community/Phoenix/Moneybookers/Model/Dnk.php +++ b/app/code/community/Phoenix/Moneybookers/Model/Dnk.php @@ -20,7 +20,7 @@ * * @category Phoenix * @package Phoenix_Moneybookers - * @copyright Copyright (c) 2012 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) + * @copyright Copyright (c) 2013 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Phoenix_Moneybookers_Model_Dnk extends Phoenix_Moneybookers_Model_Abstract diff --git a/app/code/community/Phoenix/Moneybookers/Model/Ebt.php b/app/code/community/Phoenix/Moneybookers/Model/Ebt.php index 26ef8296aad0f82b1d6ca13df6cd158891f6dec2..8f4a7fcd5b12250fd95dfea3a69fef353100cff0 100644 --- a/app/code/community/Phoenix/Moneybookers/Model/Ebt.php +++ b/app/code/community/Phoenix/Moneybookers/Model/Ebt.php @@ -20,7 +20,7 @@ * * @category Phoenix * @package Phoenix_Moneybookers - * @copyright Copyright (c) 2012 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) + * @copyright Copyright (c) 2013 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Phoenix_Moneybookers_Model_Ebt extends Phoenix_Moneybookers_Model_Abstract diff --git a/app/code/community/Phoenix/Moneybookers/Model/Ent.php b/app/code/community/Phoenix/Moneybookers/Model/Ent.php index 051378fdadaa921538493f7b66caa54a5df1977f..962c8632eef0b9f9946524208a43240564ff8a90 100644 --- a/app/code/community/Phoenix/Moneybookers/Model/Ent.php +++ b/app/code/community/Phoenix/Moneybookers/Model/Ent.php @@ -20,7 +20,7 @@ * * @category Phoenix * @package Phoenix_Moneybookers - * @copyright Copyright (c) 2012 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) + * @copyright Copyright (c) 2013 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Phoenix_Moneybookers_Model_Ent extends Phoenix_Moneybookers_Model_Abstract diff --git a/app/code/community/Phoenix/Moneybookers/Model/Event.php b/app/code/community/Phoenix/Moneybookers/Model/Event.php index ad043de07b2f9455739b954bef0c6addab73d32a..1b0ff34c65610d4a42d0159ff7bd65d3d39617e3 100644 --- a/app/code/community/Phoenix/Moneybookers/Model/Event.php +++ b/app/code/community/Phoenix/Moneybookers/Model/Event.php @@ -20,7 +20,7 @@ * * @category Phoenix * @package Phoenix_Moneybookers - * @copyright Copyright (c) 2012 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) + * @copyright Copyright (c) 2013 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/community/Phoenix/Moneybookers/Model/Gcb.php b/app/code/community/Phoenix/Moneybookers/Model/Gcb.php index 3b46d2b686ac636f4fcaef2f5485fb0553b3faf8..67cce78e2f35c60b36c76c4263589fc2b8210522 100644 --- a/app/code/community/Phoenix/Moneybookers/Model/Gcb.php +++ b/app/code/community/Phoenix/Moneybookers/Model/Gcb.php @@ -20,7 +20,7 @@ * * @category Phoenix * @package Phoenix_Moneybookers - * @copyright Copyright (c) 2012 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) + * @copyright Copyright (c) 2013 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Phoenix_Moneybookers_Model_Gcb extends Phoenix_Moneybookers_Model_Abstract diff --git a/app/code/community/Phoenix/Moneybookers/Model/Gir.php b/app/code/community/Phoenix/Moneybookers/Model/Gir.php index 5617cdff9036c4a1c8447c958ba96e1fe3d806fa..0e7045cd4330d6d844d600c5b094b08aef9a00ef 100644 --- a/app/code/community/Phoenix/Moneybookers/Model/Gir.php +++ b/app/code/community/Phoenix/Moneybookers/Model/Gir.php @@ -20,7 +20,7 @@ * * @category Phoenix * @package Phoenix_Moneybookers - * @copyright Copyright (c) 2012 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) + * @copyright Copyright (c) 2013 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Phoenix_Moneybookers_Model_Gir extends Phoenix_Moneybookers_Model_Abstract diff --git a/app/code/community/Phoenix/Moneybookers/Model/Idl.php b/app/code/community/Phoenix/Moneybookers/Model/Idl.php index c8246a3a10450e7c9f2bd85c708fdebfa0f5391d..25ec6f47ef685c6a9a7614344ba98165b47696e7 100644 --- a/app/code/community/Phoenix/Moneybookers/Model/Idl.php +++ b/app/code/community/Phoenix/Moneybookers/Model/Idl.php @@ -20,7 +20,7 @@ * * @category Phoenix * @package Phoenix_Moneybookers - * @copyright Copyright (c) 2012 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) + * @copyright Copyright (c) 2013 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Phoenix_Moneybookers_Model_Idl extends Phoenix_Moneybookers_Model_Abstract diff --git a/app/code/community/Phoenix/Moneybookers/Model/Lsr.php b/app/code/community/Phoenix/Moneybookers/Model/Lsr.php index e134116d4e157edf0fddb197875ef4fad27be651..e90a734ad1e65b861f9493310cb528cbf6b135fd 100644 --- a/app/code/community/Phoenix/Moneybookers/Model/Lsr.php +++ b/app/code/community/Phoenix/Moneybookers/Model/Lsr.php @@ -20,7 +20,7 @@ * * @category Phoenix * @package Phoenix_Moneybookers - * @copyright Copyright (c) 2012 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) + * @copyright Copyright (c) 2013 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Phoenix_Moneybookers_Model_Lsr extends Phoenix_Moneybookers_Model_Abstract diff --git a/app/code/community/Phoenix/Moneybookers/Model/Mae.php b/app/code/community/Phoenix/Moneybookers/Model/Mae.php index 1f45ad5c92512e77646541243721b03d708217e5..8415ea44f7b4164debd57dbb492ae1dc1f4d696e 100644 --- a/app/code/community/Phoenix/Moneybookers/Model/Mae.php +++ b/app/code/community/Phoenix/Moneybookers/Model/Mae.php @@ -20,7 +20,7 @@ * * @category Phoenix * @package Phoenix_Moneybookers - * @copyright Copyright (c) 2012 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) + * @copyright Copyright (c) 2013 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Phoenix_Moneybookers_Model_Mae extends Phoenix_Moneybookers_Model_Abstract diff --git a/app/code/community/Phoenix/Moneybookers/Model/Npy.php b/app/code/community/Phoenix/Moneybookers/Model/Npy.php index b975c5f2fb83ff0a59c1c8d68e392a4731c9e567..83d1905bfd86b6a5263e6523488f5b9e9f353366 100644 --- a/app/code/community/Phoenix/Moneybookers/Model/Npy.php +++ b/app/code/community/Phoenix/Moneybookers/Model/Npy.php @@ -20,7 +20,7 @@ * * @category Phoenix * @package Phoenix_Moneybookers - * @copyright Copyright (c) 2012 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) + * @copyright Copyright (c) 2013 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Phoenix_Moneybookers_Model_Npy extends Phoenix_Moneybookers_Model_Abstract diff --git a/app/code/community/Phoenix/Moneybookers/Model/Obt.php b/app/code/community/Phoenix/Moneybookers/Model/Obt.php index 90226f2a903b5cdec826272a527172f9a08c4d1f..7d006d26b752fc5a6663f0b84fec86551a70901e 100644 --- a/app/code/community/Phoenix/Moneybookers/Model/Obt.php +++ b/app/code/community/Phoenix/Moneybookers/Model/Obt.php @@ -20,7 +20,7 @@ * * @category Phoenix * @package Phoenix_Moneybookers - * @copyright Copyright (c) 2012 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) + * @copyright Copyright (c) 2013 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Phoenix_Moneybookers_Model_Obt extends Phoenix_Moneybookers_Model_Abstract diff --git a/app/code/community/Phoenix/Moneybookers/Model/Pli.php b/app/code/community/Phoenix/Moneybookers/Model/Pli.php index 31381dd9d891e492c664e81b7dd9cde880a8fd8b..904893763b53f1a33670c6e4da077776757b4199 100644 --- a/app/code/community/Phoenix/Moneybookers/Model/Pli.php +++ b/app/code/community/Phoenix/Moneybookers/Model/Pli.php @@ -20,7 +20,7 @@ * * @category Phoenix * @package Phoenix_Moneybookers - * @copyright Copyright (c) 2012 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) + * @copyright Copyright (c) 2013 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Phoenix_Moneybookers_Model_Pli extends Phoenix_Moneybookers_Model_Abstract diff --git a/app/code/community/Phoenix/Moneybookers/Model/Psp.php b/app/code/community/Phoenix/Moneybookers/Model/Psp.php index e7e502dbebfdcda1083766eefe7d5be84d0953d4..c1ddd49c24b7280e4a32eb0f742bfba6ab357d52 100644 --- a/app/code/community/Phoenix/Moneybookers/Model/Psp.php +++ b/app/code/community/Phoenix/Moneybookers/Model/Psp.php @@ -20,7 +20,7 @@ * * @category Phoenix * @package Phoenix_Moneybookers - * @copyright Copyright (c) 2012 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) + * @copyright Copyright (c) 2013 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Phoenix_Moneybookers_Model_Psp extends Phoenix_Moneybookers_Model_Abstract diff --git a/app/code/community/Phoenix/Moneybookers/Model/Pwy.php b/app/code/community/Phoenix/Moneybookers/Model/Pwy.php index 457421c779a51442ed836fbfa552805883f8962a..e78af844729441cc3bc9eca21fc71fc20672086b 100644 --- a/app/code/community/Phoenix/Moneybookers/Model/Pwy.php +++ b/app/code/community/Phoenix/Moneybookers/Model/Pwy.php @@ -20,7 +20,7 @@ * * @category Phoenix * @package Phoenix_Moneybookers - * @copyright Copyright (c) 2012 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) + * @copyright Copyright (c) 2013 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Phoenix_Moneybookers_Model_Pwy extends Phoenix_Moneybookers_Model_Abstract diff --git a/app/code/community/Phoenix/Moneybookers/Model/Sft.php b/app/code/community/Phoenix/Moneybookers/Model/Sft.php index c0d204059555a971f515d31494ef40fc9fea1606..9f3419219a6eef63db8545beb38db13664d7e1e2 100644 --- a/app/code/community/Phoenix/Moneybookers/Model/Sft.php +++ b/app/code/community/Phoenix/Moneybookers/Model/Sft.php @@ -20,7 +20,7 @@ * * @category Phoenix * @package Phoenix_Moneybookers - * @copyright Copyright (c) 2012 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) + * @copyright Copyright (c) 2013 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Phoenix_Moneybookers_Model_Sft extends Phoenix_Moneybookers_Model_Abstract diff --git a/app/code/community/Phoenix/Moneybookers/Model/So2.php b/app/code/community/Phoenix/Moneybookers/Model/So2.php index dc687e6d987051a9988965855a76354906ed4c6f..7c4f2d31a54e66a4d28e17aa9b17c93a0b4b5151 100644 --- a/app/code/community/Phoenix/Moneybookers/Model/So2.php +++ b/app/code/community/Phoenix/Moneybookers/Model/So2.php @@ -20,7 +20,7 @@ * * @category Phoenix * @package Phoenix_Moneybookers - * @copyright Copyright (c) 2012 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) + * @copyright Copyright (c) 2013 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Phoenix_Moneybookers_Model_So2 extends Phoenix_Moneybookers_Model_Abstract diff --git a/app/code/community/Phoenix/Moneybookers/Model/Wlt.php b/app/code/community/Phoenix/Moneybookers/Model/Wlt.php index 7f62412eef17ef76b0e66d12e6e3b38718e9c328..7234efde29a298fe2dde7d761ebfea318c882b7c 100644 --- a/app/code/community/Phoenix/Moneybookers/Model/Wlt.php +++ b/app/code/community/Phoenix/Moneybookers/Model/Wlt.php @@ -20,7 +20,7 @@ * * @category Phoenix * @package Phoenix_Moneybookers - * @copyright Copyright (c) 2012 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) + * @copyright Copyright (c) 2013 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Phoenix_Moneybookers_Model_Wlt extends Phoenix_Moneybookers_Model_Abstract diff --git a/app/code/community/Phoenix/Moneybookers/controllers/MoneybookersController.php b/app/code/community/Phoenix/Moneybookers/controllers/MoneybookersController.php index d71c3f7ff274af8f78c6b6a8794e45e7a4aa7e53..da5b09ee36cf94dc450a82266ff857c3396ca536 100644 --- a/app/code/community/Phoenix/Moneybookers/controllers/MoneybookersController.php +++ b/app/code/community/Phoenix/Moneybookers/controllers/MoneybookersController.php @@ -20,7 +20,7 @@ * * @category Phoenix * @package Phoenix_Moneybookers - * @copyright Copyright (c) 2012 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) + * @copyright Copyright (c) 2013 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Phoenix_Moneybookers_MoneybookersController extends Mage_Adminhtml_Controller_Action diff --git a/app/code/community/Phoenix/Moneybookers/controllers/ProcessingController.php b/app/code/community/Phoenix/Moneybookers/controllers/ProcessingController.php index 241e9266bf77c078f94a2e6942c660360c3d44ef..6cdaf8ec79760d87dbecf493ebd07c0ad3e3f8bf 100644 --- a/app/code/community/Phoenix/Moneybookers/controllers/ProcessingController.php +++ b/app/code/community/Phoenix/Moneybookers/controllers/ProcessingController.php @@ -20,7 +20,7 @@ * * @category Phoenix * @package Phoenix_Moneybookers - * @copyright Copyright (c) 2012 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) + * @copyright Copyright (c) 2013 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Phoenix_Moneybookers_ProcessingController extends Mage_Core_Controller_Front_Action diff --git a/app/code/community/Phoenix/Moneybookers/etc/adminhtml/acl.xml b/app/code/community/Phoenix/Moneybookers/etc/adminhtml/acl.xml index 0624ff5fb66ff6ad856c88e3646b7192ef6d0f46..7b7505757116ca51c08b9a14b8b8ea10a6cbc76e 100644 --- a/app/code/community/Phoenix/Moneybookers/etc/adminhtml/acl.xml +++ b/app/code/community/Phoenix/Moneybookers/etc/adminhtml/acl.xml @@ -21,7 +21,7 @@ * * @category Phoenix * @package Phoenix_Moneybookers - * @copyright Copyright (c) 2012 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) + * @copyright Copyright (c) 2013 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ --> diff --git a/app/code/community/Phoenix/Moneybookers/etc/adminhtml/system.xml b/app/code/community/Phoenix/Moneybookers/etc/adminhtml/system.xml index 74dcc9981bc0091c30a4a348823617c409d44fa1..10ef097a8ce65c4c7c50d50706eba0aef1facae5 100644 --- a/app/code/community/Phoenix/Moneybookers/etc/adminhtml/system.xml +++ b/app/code/community/Phoenix/Moneybookers/etc/adminhtml/system.xml @@ -21,7 +21,7 @@ * * @category Phoenix * @package Phoenix_Moneybookers - * @copyright Copyright (c) 2012 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) + * @copyright Copyright (c) 2013 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ --> diff --git a/app/code/community/Phoenix/Moneybookers/etc/config.xml b/app/code/community/Phoenix/Moneybookers/etc/config.xml index 693203d48b7616927320b88977bce10ac9821cab..ad3f69ca7a00700f3949fde8bdbcbdf6e9548a73 100644 --- a/app/code/community/Phoenix/Moneybookers/etc/config.xml +++ b/app/code/community/Phoenix/Moneybookers/etc/config.xml @@ -21,7 +21,7 @@ * * @category Phoenix * @package Phoenix_Moneybookers - * @copyright Copyright (c) 2012 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) + * @copyright Copyright (c) 2013 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ --> diff --git a/app/code/community/Phoenix/Moneybookers/sql/moneybookers_setup/install-1.6.0.0.php b/app/code/community/Phoenix/Moneybookers/sql/moneybookers_setup/install-1.6.0.0.php index 6d1346ecfed8fc2b4986d2ba9773bfa00f3d74b1..7785fb61f967bd4b36408074a88eab64a99f33ad 100644 --- a/app/code/community/Phoenix/Moneybookers/sql/moneybookers_setup/install-1.6.0.0.php +++ b/app/code/community/Phoenix/Moneybookers/sql/moneybookers_setup/install-1.6.0.0.php @@ -20,7 +20,7 @@ * * @category Phoenix * @package Phoenix_Moneybookers - * @copyright Copyright (c) 2012 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) + * @copyright Copyright (c) 2013 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/community/Phoenix/Moneybookers/view/adminhtml/activation.js b/app/code/community/Phoenix/Moneybookers/view/adminhtml/activation.js index d8d846dd17b630dad32be71c5e925dbf2245a84c..0c9f3d629b45de6c19eb8bbaebb40fe101fae94d 100644 --- a/app/code/community/Phoenix/Moneybookers/view/adminhtml/activation.js +++ b/app/code/community/Phoenix/Moneybookers/view/adminhtml/activation.js @@ -19,7 +19,7 @@ * * @category Phoenix * @package Phoenix_Moneybookers - * @copyright Copyright (c) 2012 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) + * @copyright Copyright (c) 2013 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/community/Phoenix/Moneybookers/view/adminhtml/info.phtml b/app/code/community/Phoenix/Moneybookers/view/adminhtml/info.phtml index 8c3625a0ef44c06c8dc17f2cd0553bfa9fc46824..65f06eeccecbcf8ba0c8451aa727344ec8c49244 100644 --- a/app/code/community/Phoenix/Moneybookers/view/adminhtml/info.phtml +++ b/app/code/community/Phoenix/Moneybookers/view/adminhtml/info.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) + * @copyright Copyright (c) 2013 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ ?> diff --git a/app/code/community/Phoenix/Moneybookers/view/adminhtml/jsinit.phtml b/app/code/community/Phoenix/Moneybookers/view/adminhtml/jsinit.phtml index 3f87a65329c6585ccb5fab02f8f2d18752dac68d..0360d4fe68243c56da0faad0f36d62f23b7d84ad 100644 --- a/app/code/community/Phoenix/Moneybookers/view/adminhtml/jsinit.phtml +++ b/app/code/community/Phoenix/Moneybookers/view/adminhtml/jsinit.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) + * @copyright Copyright (c) 2013 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ ?> diff --git a/app/code/community/Phoenix/Moneybookers/view/adminhtml/layout.xml b/app/code/community/Phoenix/Moneybookers/view/adminhtml/layout.xml index 29b7b0d40c2838a74447bfc219a07125e2a03c5c..755d2b8fae50ca97916fb7a414a691ba3c808ac6 100644 --- a/app/code/community/Phoenix/Moneybookers/view/adminhtml/layout.xml +++ b/app/code/community/Phoenix/Moneybookers/view/adminhtml/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) + * @copyright Copyright (c) 2013 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ --> diff --git a/app/code/community/Phoenix/Moneybookers/view/adminhtml/pdf/info.phtml b/app/code/community/Phoenix/Moneybookers/view/adminhtml/pdf/info.phtml index 971a5e52596151d024cac8ac0ca69c5d1b9a0b3b..7e713b6e913cfa1a4b939131f2634efb1755a589 100644 --- a/app/code/community/Phoenix/Moneybookers/view/adminhtml/pdf/info.phtml +++ b/app/code/community/Phoenix/Moneybookers/view/adminhtml/pdf/info.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) + * @copyright Copyright (c) 2013 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ ?> diff --git a/app/code/community/Phoenix/Moneybookers/view/frontend/blank.phtml b/app/code/community/Phoenix/Moneybookers/view/frontend/blank.phtml index 1752c9c4b302a7b981364732e9c4dc08e6fb19f7..8ac71e60444c2aa0c2f31f577d39bde02fa9f907 100644 --- a/app/code/community/Phoenix/Moneybookers/view/frontend/blank.phtml +++ b/app/code/community/Phoenix/Moneybookers/view/frontend/blank.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) + * @copyright Copyright (c) 2013 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ ?> diff --git a/app/code/community/Phoenix/Moneybookers/view/frontend/form.phtml b/app/code/community/Phoenix/Moneybookers/view/frontend/form.phtml index 8484c1e2b6d6b51e4bc1b2ff27fc6bb2d7ee6819..3f29ff1b27ea4973ae8a654de0dc19d16d06052c 100644 --- a/app/code/community/Phoenix/Moneybookers/view/frontend/form.phtml +++ b/app/code/community/Phoenix/Moneybookers/view/frontend/form.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) + * @copyright Copyright (c) 2013 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ ?> diff --git a/app/code/community/Phoenix/Moneybookers/view/frontend/info.phtml b/app/code/community/Phoenix/Moneybookers/view/frontend/info.phtml index 8e03475a7f9616ff95dd372bfa6d0c9c3a06ad17..37b856f2ec0a280608b0938dbb9b3b5d6c6c85e0 100644 --- a/app/code/community/Phoenix/Moneybookers/view/frontend/info.phtml +++ b/app/code/community/Phoenix/Moneybookers/view/frontend/info.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) + * @copyright Copyright (c) 2013 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ ?> diff --git a/app/code/community/Phoenix/Moneybookers/view/frontend/layout.xml b/app/code/community/Phoenix/Moneybookers/view/frontend/layout.xml index 77988d72e3e86a4810793ac5cfe8921aad3962ea..b93e446a1357bd0389bd6e6661804d24ecfdce7a 100644 --- a/app/code/community/Phoenix/Moneybookers/view/frontend/layout.xml +++ b/app/code/community/Phoenix/Moneybookers/view/frontend/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) + * @copyright Copyright (c) 2013 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/community/Phoenix/Moneybookers/view/frontend/payment.phtml b/app/code/community/Phoenix/Moneybookers/view/frontend/payment.phtml index a1f13e95623dbaeca9b1866dafb78fd05ad369b0..7f3d3dc66b10821328edcb28bb31010e3457c10d 100644 --- a/app/code/community/Phoenix/Moneybookers/view/frontend/payment.phtml +++ b/app/code/community/Phoenix/Moneybookers/view/frontend/payment.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) + * @copyright Copyright (c) 2013 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ ?> diff --git a/app/code/community/Phoenix/Moneybookers/view/frontend/placeform.phtml b/app/code/community/Phoenix/Moneybookers/view/frontend/placeform.phtml index 0a0c2457ab060516e8413a29771d537a2a0f8778..f0bb1b84d96317900f960d86f7e95e49b08dfb06 100644 --- a/app/code/community/Phoenix/Moneybookers/view/frontend/placeform.phtml +++ b/app/code/community/Phoenix/Moneybookers/view/frontend/placeform.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) + * @copyright Copyright (c) 2013 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ ?> diff --git a/app/code/community/Phoenix/Moneybookers/view/frontend/redirect.phtml b/app/code/community/Phoenix/Moneybookers/view/frontend/redirect.phtml index 5ce2ebdf968d4f3885944124d3c42eb24ab3ff34..b9216acbdc3f6f52c4cdabfca43526f301302920 100644 --- a/app/code/community/Phoenix/Moneybookers/view/frontend/redirect.phtml +++ b/app/code/community/Phoenix/Moneybookers/view/frontend/redirect.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) + * @copyright Copyright (c) 2013 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ ?> diff --git a/app/code/core/Mage/AdminNotification/Helper/Data.php b/app/code/core/Mage/AdminNotification/Helper/Data.php index 76c76f6dd9d24472c79bd9ea03547f3afc447fc2..1f8a8f1273f8f63a20d2e4d074e02bb826904749 100644 --- a/app/code/core/Mage/AdminNotification/Helper/Data.php +++ b/app/code/core/Mage/AdminNotification/Helper/Data.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_AdminNotification - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/AdminNotification/Model/Config/Source/Frequency.php b/app/code/core/Mage/AdminNotification/Model/Config/Source/Frequency.php index a6763bfbd60fe1055fea944ca02b0afe50709d7f..baa8637c1d1954435dd1e263a02dcf02337143bd 100644 --- a/app/code/core/Mage/AdminNotification/Model/Config/Source/Frequency.php +++ b/app/code/core/Mage/AdminNotification/Model/Config/Source/Frequency.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_AdminNotification - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/AdminNotification/Model/Feed.php b/app/code/core/Mage/AdminNotification/Model/Feed.php index 40a6bd46349e18f54c1d3d949eaf167efbd7fe53..309bcb51a2365e904372f4184d0aa0414d0ea789 100644 --- a/app/code/core/Mage/AdminNotification/Model/Feed.php +++ b/app/code/core/Mage/AdminNotification/Model/Feed.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_AdminNotification - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/AdminNotification/Model/Inbox.php b/app/code/core/Mage/AdminNotification/Model/Inbox.php index faab8e84ca2869fc45af04fb7158fbdf5617407f..bcbfeaa57fe3c57d70213096325eb4a86706500a 100644 --- a/app/code/core/Mage/AdminNotification/Model/Inbox.php +++ b/app/code/core/Mage/AdminNotification/Model/Inbox.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_AdminNotification - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/AdminNotification/Model/Observer.php b/app/code/core/Mage/AdminNotification/Model/Observer.php index f7b044ffd1cbb333f12ca4950ef682f0a4203569..fdeeba4fcf93dc8b95e14e066df1c3dc271ec57b 100644 --- a/app/code/core/Mage/AdminNotification/Model/Observer.php +++ b/app/code/core/Mage/AdminNotification/Model/Observer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_AdminNotification - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/AdminNotification/Model/Resource/Inbox.php b/app/code/core/Mage/AdminNotification/Model/Resource/Inbox.php index d500744e5fc2a592d0065815c6db4d3676e07b3c..eac60da5ee1adf9aa1a50c7cd5dee618a3affcab 100755 --- a/app/code/core/Mage/AdminNotification/Model/Resource/Inbox.php +++ b/app/code/core/Mage/AdminNotification/Model/Resource/Inbox.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_AdminNotification - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/AdminNotification/Model/Resource/Inbox/Collection.php b/app/code/core/Mage/AdminNotification/Model/Resource/Inbox/Collection.php index 9b3a113d65e7fc577623e39b7f895b700ae26a6b..ea3a40acdca7345afda43212f9fc9081884be496 100755 --- a/app/code/core/Mage/AdminNotification/Model/Resource/Inbox/Collection.php +++ b/app/code/core/Mage/AdminNotification/Model/Resource/Inbox/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_AdminNotification - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/AdminNotification/Model/Survey.php b/app/code/core/Mage/AdminNotification/Model/Survey.php index e8defd4407afbcb30bfb3601feab8dbef7f6d821..bde1aa40152165b0cde8e358e183313c7200694d 100644 --- a/app/code/core/Mage/AdminNotification/Model/Survey.php +++ b/app/code/core/Mage/AdminNotification/Model/Survey.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_AdminNotification - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/AdminNotification/etc/adminhtml/acl.xml b/app/code/core/Mage/AdminNotification/etc/adminhtml/acl.xml index 6f8538c2a85c42792bacbd52ca199e1d1dd3e016..f7682c3a8fba8f0b1e30e5b507e22350777a8b35 100644 --- a/app/code/core/Mage/AdminNotification/etc/adminhtml/acl.xml +++ b/app/code/core/Mage/AdminNotification/etc/adminhtml/acl.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_AdminNotification - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/AdminNotification/etc/adminhtml/menu.xml b/app/code/core/Mage/AdminNotification/etc/adminhtml/menu.xml index 1e7fe002a9a85c0f914bb1c106c19e65d422cd8b..afe0a24a889dec12a01e2e1e968327d71f7cd244 100644 --- a/app/code/core/Mage/AdminNotification/etc/adminhtml/menu.xml +++ b/app/code/core/Mage/AdminNotification/etc/adminhtml/menu.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_AdminNotification - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/AdminNotification/etc/adminhtml/system.xml b/app/code/core/Mage/AdminNotification/etc/adminhtml/system.xml index e80b532afd4694da7e28500e0f977de3d8061dd1..aec4afc3a0b6d899301953eb3a6e32848c18a990 100644 --- a/app/code/core/Mage/AdminNotification/etc/adminhtml/system.xml +++ b/app/code/core/Mage/AdminNotification/etc/adminhtml/system.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_AdminNotification - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/AdminNotification/etc/config.xml b/app/code/core/Mage/AdminNotification/etc/config.xml index 94c7f3d66cab173668bb75b431f54e26ef85f029..63b422ea72cb5771ce57e42530b8c96250c5e303 100644 --- a/app/code/core/Mage/AdminNotification/etc/config.xml +++ b/app/code/core/Mage/AdminNotification/etc/config.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_AdminNotification - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/AdminNotification/sql/adminnotification_setup/install-1.6.0.0.php b/app/code/core/Mage/AdminNotification/sql/adminnotification_setup/install-1.6.0.0.php index b26a5a3de81faab92c702509e6ec180ea82d0085..194e8014643cbe8ec95ace7beac92f3bb7677c36 100644 --- a/app/code/core/Mage/AdminNotification/sql/adminnotification_setup/install-1.6.0.0.php +++ b/app/code/core/Mage/AdminNotification/sql/adminnotification_setup/install-1.6.0.0.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_AdminNotification - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Abstract.php b/app/code/core/Mage/Adminhtml/Block/Abstract.php index 32d51c97d17d2dfd41ccf156f5d4485b23fc3d76..6731c5639953c1cff174e58b7bd6ca6a7a199650 100644 --- a/app/code/core/Mage/Adminhtml/Block/Abstract.php +++ b/app/code/core/Mage/Adminhtml/Block/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Backup.php b/app/code/core/Mage/Adminhtml/Block/Backup.php index 4a090bd8db5032a3b0ed28fabb127bff18389ec7..62b0d15151a0fa24409cc12b9f91971ebfb12393 100644 --- a/app/code/core/Mage/Adminhtml/Block/Backup.php +++ b/app/code/core/Mage/Adminhtml/Block/Backup.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Backup/Dialogs.php b/app/code/core/Mage/Adminhtml/Block/Backup/Dialogs.php index cb23396f29514d7bc2f5bb823b046e42d2c92a5c..aca00413232fcbe075a5ec25b20b0fe050b02c73 100644 --- a/app/code/core/Mage/Adminhtml/Block/Backup/Dialogs.php +++ b/app/code/core/Mage/Adminhtml/Block/Backup/Dialogs.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Cache.php b/app/code/core/Mage/Adminhtml/Block/Cache.php index 9c8363e488b6838cdfd3af6fffee4d33bcdac51c..62b6c7593e008ca51e0e288504c09b06298e4336 100644 --- a/app/code/core/Mage/Adminhtml/Block/Cache.php +++ b/app/code/core/Mage/Adminhtml/Block/Cache.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Cache/Additional.php b/app/code/core/Mage/Adminhtml/Block/Cache/Additional.php index 410c59405af34421da26bacd352cb3bc3e78f693..99adf9c37df04cef5722dea097e7f4334aed034a 100644 --- a/app/code/core/Mage/Adminhtml/Block/Cache/Additional.php +++ b/app/code/core/Mage/Adminhtml/Block/Cache/Additional.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Cache/Grid.php b/app/code/core/Mage/Adminhtml/Block/Cache/Grid.php index 2c09867bdd601f45d0ca68e690ff69e483b7d6ef..ddf2cd2fb11c80ddfa1f04c35346029677bb3c55 100644 --- a/app/code/core/Mage/Adminhtml/Block/Cache/Grid.php +++ b/app/code/core/Mage/Adminhtml/Block/Cache/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Cache/Notifications.php b/app/code/core/Mage/Adminhtml/Block/Cache/Notifications.php index 555c20ca38e2a268dedc2c01813ccf70e5f8dcfd..3dfee82bda62ae1478ff33ee77b99cc4658924de 100644 --- a/app/code/core/Mage/Adminhtml/Block/Cache/Notifications.php +++ b/app/code/core/Mage/Adminhtml/Block/Cache/Notifications.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Category/Abstract.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Category/Abstract.php index b12787b33d98f60054e20247fe0e6a339a1ab668..d7b4fece7b71297c73d1dae327bf1548bc4ae30e 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Category/Abstract.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Category/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Category/Checkboxes/Tree.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Category/Checkboxes/Tree.php index 169d491fbd5782a66a2921f9c2d9ef190e9a7dac..76e9654b4d68321a6836de84e34e75bf2f5bd865 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Category/Checkboxes/Tree.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Category/Checkboxes/Tree.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Category/Edit.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Category/Edit.php index 7d25b5ab2551e0a494ab3ef8be8229a1371751ad..eb2c29491b24f0aae3c04cd772167130f598ef7e 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Category/Edit.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Category/Edit.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Category/Edit/Form.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Category/Edit/Form.php index 66d306a3d791c3fd1a014921f8501b94288d8f10..a2d4fe9944e429051705b21c8950d9ccdf902a9e 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Category/Edit/Form.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Category/Edit/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Category/Helper/Image.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Category/Helper/Image.php index 007e30d9b7ac190e3fc8828c1b74bd45d51a42fb..418021e903b2e8959a1e049a4c4738733419a27b 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Category/Helper/Image.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Category/Helper/Image.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Category/Helper/Pricestep.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Category/Helper/Pricestep.php index 0bd4b059be3b74fb9b7c8d67abedf806166e583c..090845f69e4006e69ffc352a0cc8cf9f5061bb7a 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Category/Helper/Pricestep.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Category/Helper/Pricestep.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Category/Helper/Sortby/Available.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Category/Helper/Sortby/Available.php index a6d3c5626771ca01365e21351132221b0a3d3965..f15e9ed27d6f4c7ce3ed72fcae195d5747ab63f7 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Category/Helper/Sortby/Available.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Category/Helper/Sortby/Available.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Category/Helper/Sortby/Default.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Category/Helper/Sortby/Default.php index c735e5f8abcb1cae1d215ed01e9a914026246ca3..0b94d95e0c40fb1e8f079bf9804d52f675a543a2 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Category/Helper/Sortby/Default.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Category/Helper/Sortby/Default.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Category/Tab/Attributes.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Category/Tab/Attributes.php index 2f215ebb183725db4f5f3f51375134a146f90487..d86749b28a44504467fcb7bdd853571f9812466a 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Category/Tab/Attributes.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Category/Tab/Attributes.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Category/Tab/Design.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Category/Tab/Design.php index 10ba1ceb24f64c8ac388a3d4dd66fc1179e968f4..041616b51854582ea75277ece6ed6b49a6103199 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Category/Tab/Design.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Category/Tab/Design.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Adminhtml_Block_Catalog_Category_Tab_Design extends Mage_Adminhtml_Block_Catalog_Form diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Category/Tab/General.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Category/Tab/General.php index 8e971e15bb827d9b33860f19a971d652504a55c6..889033ea90d8998ecb22c450d19323d0a512dfb0 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Category/Tab/General.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Category/Tab/General.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Category/Tab/Product.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Category/Tab/Product.php index 59b9c63e057d0e59ec9667ec90f7b24094044141..27752ae7c34da6ab8975380b585b0d99b09a2b22 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Category/Tab/Product.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Category/Tab/Product.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Category/Tabs.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Category/Tabs.php index f1f5c362865a56728ed5f644d454e151278c69a1..85d18ba457a2735f17f6529908aacfff50df7357 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Category/Tabs.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Category/Tabs.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Category/Tree.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Category/Tree.php index 66c56b61f5d6e2fea9821ce92283d10613678de7..78ad8b75d2d0605b0112b5bfc9158ad240ec2ea5 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Category/Tree.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Category/Tree.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Category/Widget/Chooser.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Category/Widget/Chooser.php index 45edc42ff66ef59eb83b7dfbcd5700e585f2a053..01711895dc1c16a4d194d3960d26be176a267f68 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Category/Widget/Chooser.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Category/Widget/Chooser.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Form.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Form.php index a1daf50a4fcaed72e9e656fdcacf8443aa3f7155..84475e131951781d9240b35bd303ce9fcb6b07da 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Form.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Form/Renderer/Attribute/Urlkey.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Form/Renderer/Attribute/Urlkey.php index cff004d16bdb25e6bc803fbd2e33aa9737cd66e8..1cc5ceca7b10540a4e3bb581afe5204a321d07f6 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Form/Renderer/Attribute/Urlkey.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Form/Renderer/Attribute/Urlkey.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Form/Renderer/Config/DateFieldsOrder.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Form/Renderer/Config/DateFieldsOrder.php index ad183cc85080eff6860d97771e180e56c103693d..22f932bb26f251fee53eff8164b692fbf1fde1a1 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Form/Renderer/Config/DateFieldsOrder.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Form/Renderer/Config/DateFieldsOrder.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Form/Renderer/Config/YearRange.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Form/Renderer/Config/YearRange.php index 5eb685ed340e271b287e5780b45067c0233bd2ef..b6282a9d3aab665ef4a4f1b49a94a366fe40e9eb 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Form/Renderer/Config/YearRange.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Form/Renderer/Config/YearRange.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Form/Renderer/Fieldset/Element.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Form/Renderer/Fieldset/Element.php index a11734d001ddc2b82969d446de0060836de41f6c..b63c61d5426c85e53f3a043cc1ca4d497d89918f 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Form/Renderer/Fieldset/Element.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Form/Renderer/Fieldset/Element.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Helper/Form/Wysiwyg.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Helper/Form/Wysiwyg.php index 114546ed60afb9e715c9a6fe2c00d015b8b25859..ede51e4a2bc638755b0985c59a40a70d855420a9 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Helper/Form/Wysiwyg.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Helper/Form/Wysiwyg.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Helper/Form/Wysiwyg/Content.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Helper/Form/Wysiwyg/Content.php index 7e4d085030e2c00233d090b657f2b2a39f1fbe1e..c193e60858a9030459d0f0dbfa199681db9ef56e 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Helper/Form/Wysiwyg/Content.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Helper/Form/Wysiwyg/Content.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product.php index 58e0b46faedc429307ba5b0a347c82f5032fcd01..152ac85156c2a4b695db9aa9334ecb40b08a3d4a 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute.php index 4a36cf8af9f970a135a2aecfa556e0c224a093a8..7e9c031a982b0e4b186a8882f4c2c98b0b9f605f 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Edit.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Edit.php index 2084df15fef3867cc99d855f1589b6b98f1f2518..13d1e1441baff8c8eeca046231dbee1c77e1c779 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Edit.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Edit.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Edit/Form.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Edit/Form.php index eb17683541da09ffcfcc2cba31b825848c942b59..67d3de5d3b4cb750c5969c4d49b67211a495bc8d 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Edit/Form.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Edit/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Edit/Tab/Front.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Edit/Tab/Front.php index dbea3c091b5d37015e89c4efde8b3f32624bd40c..d67dbb5e108688d52ee6d025e1b68078847e8be3 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Edit/Tab/Front.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Edit/Tab/Front.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Edit/Tab/Main.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Edit/Tab/Main.php index 79f7ac6589204f87478c82ac2300f60d1ac6faea..8945df0ebf13a8df71491466d4fc0a54709e95c2 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Edit/Tab/Main.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Edit/Tab/Main.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Edit/Tab/Options.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Edit/Tab/Options.php index 3ee39b8775ffdb94f6994210b52e5371b1f207e2..d3a7b63079af7633a81ae03382f0aa91e8836f5f 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Edit/Tab/Options.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Edit/Tab/Options.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Edit/Tab/System.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Edit/Tab/System.php index fa640ae62cb773399680bc404e27bb379657b47f..411a4ac2012760bca947adaea4d360bd12a98408 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Edit/Tab/System.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Edit/Tab/System.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Edit/Tabs.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Edit/Tabs.php index 8b76b04e1a479ee3d187067637c005b290d32a3e..8397133a1d43134feab1ed38d9a7ec0a1acb11ce 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Edit/Tabs.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Edit/Tabs.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Grid.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Grid.php index 63a888e3b5f9bd638a94aee51d58c0e7db154a16..3f05f908d28b1647453e2e0c7c274fbb402c3e2f 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Grid.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/New/Product/Attributes.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/New/Product/Attributes.php index a2f4da36312478e5bc4ee40c482eb0b023f76a94..e1f32c9aa363d5e7cd2a8345dec4bfec121f5c86 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/New/Product/Attributes.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/New/Product/Attributes.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/New/Product/Created.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/New/Product/Created.php index f883b1c8280c1a34b8d1c9bdbef3d34bae428070..e2b61043d8bce56318dbe1bf45a78d222a1d9e06 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/New/Product/Created.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/New/Product/Created.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Set/Main.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Set/Main.php index d6d165181de48ec5d99305692098fbf92a2f3fd1..51012516f14ed333989298518d83a02e4329236e 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Set/Main.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Set/Main.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Set/Main/Formattribute.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Set/Main/Formattribute.php index 6fe0cdfbc16111179d245592ae9e3c876da70f9e..001a2cf748e78ae03fd031dd43f6a0967f6a3342 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Set/Main/Formattribute.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Set/Main/Formattribute.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Set/Main/Formgroup.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Set/Main/Formgroup.php index 08ab01892b3cb5e62b024ddcc0fd02e5edebc9f7..240e418a8c858a615598470c25f98f06285c3871 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Set/Main/Formgroup.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Set/Main/Formgroup.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Set/Main/Formset.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Set/Main/Formset.php index c97417675639c41ea9ece6c7c8fb5ae49966bbf7..714c63893caeb72d726f64b8f379ae36edda0901 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Set/Main/Formset.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Set/Main/Formset.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Set/Main/Tree/Attribute.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Set/Main/Tree/Attribute.php index 8364a821f39d788c6b6276da5679de2da7428d79..d2d3f3dc73cd16749b1b8e0b3341d76bff93afde 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Set/Main/Tree/Attribute.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Set/Main/Tree/Attribute.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Set/Main/Tree/Group.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Set/Main/Tree/Group.php index d8820786defc5d6d1fb186ade64117c26bd8ee83..cbcdeff683429d47602700795f46bc4bd8b38838 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Set/Main/Tree/Group.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Set/Main/Tree/Group.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Set/Toolbar/Add.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Set/Toolbar/Add.php index 30e1153d987e607fa88c355c229891ad8c46e9a1..f4a1820b453d186844a6a0d0e4e6c04f1715fb8d 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Set/Toolbar/Add.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Set/Toolbar/Add.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Set/Toolbar/Main.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Set/Toolbar/Main.php index df601740656264fdbf275ab0c121024534105fec..0bb23f761025b079f5f8908a844823f922fd3425 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Set/Toolbar/Main.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Set/Toolbar/Main.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Set/Toolbar/Main/Filter.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Set/Toolbar/Main/Filter.php index ea2a35d9d68217f6c5c86a72983b20bce676319e..ca457c813037cfbbc1d62ebe27b8cf57e336fa62 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Set/Toolbar/Main/Filter.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Set/Toolbar/Main/Filter.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Composite/Configure.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Composite/Configure.php index 9602c4d63c02f4e147604f2d8f13205fc2d744d4..d3e27bb01c3215fe3b2642872bd08e76f2d41382 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Composite/Configure.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Composite/Configure.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Composite/Error.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Composite/Error.php index 4bcd2190a5ea0648c21096ed5bc836f9d7066e00..1313686a32224e51dbd0da5380db5f48f13d5eed 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Composite/Error.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Composite/Error.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Composite/Fieldset.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Composite/Fieldset.php index 3b138b91ba02e75ab7908bf3cae61cc52ec1b780..e663c8475fc33cabc8560a47135671d439c18c5c 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Composite/Fieldset.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Composite/Fieldset.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Composite/Fieldset/Configurable.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Composite/Fieldset/Configurable.php index f1e0cf6d4600abe5a3cea9fdeedd4bc1b96be3f2..35a92925f24e829d0f5d5a8c2a0ca794879a1c93 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Composite/Fieldset/Configurable.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Composite/Fieldset/Configurable.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Composite/Fieldset/Grouped.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Composite/Fieldset/Grouped.php index 078dfa41bfcb452659c05ffb937a5d278601c9ad..efccb90624af1a3acdecc5f2489dd7849ee104f9 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Composite/Fieldset/Grouped.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Composite/Fieldset/Grouped.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Composite/Fieldset/Options.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Composite/Fieldset/Options.php index 32cbe6258bac2092e5ca1ca1a282a83b105fbf15..4656bb03f77fdd021f0c418d9c3e6b6d213978ec 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Composite/Fieldset/Options.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Composite/Fieldset/Options.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Composite/Fieldset/Qty.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Composite/Fieldset/Qty.php index 55c792e2d9b041995d9f3637ec06b34d5e3cdb8d..a8ad320e2d9adc26dcc7f0ba9407461e82ffdc98 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Composite/Fieldset/Qty.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Composite/Fieldset/Qty.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Composite/Update/Result.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Composite/Update/Result.php index c4cf4a2e3faa999ddd3f579953bdebbc87b5cc1e..d39c46b806b55276eaf30bd07df16ac7690f3328 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Composite/Update/Result.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Composite/Update/Result.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Created.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Created.php index ec7c2cc2728b02940f66bcfb9807020a066d102b..ee6d79248376f51b8f35d8588c3b16d3a9d439b6 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Created.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Created.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit.php index 2c3c1ac799dcbc2c0a0cea374cfc700cf1ceaa50..071522a8e93c853f6494c3e5829123d46d8712c3 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Action/Attribute.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Action/Attribute.php index c84d9904128d3da6bfd3326520f605777873b56e..f50a31d8489bdea70385d49bd1d0c6266c781458 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Action/Attribute.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Action/Attribute.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Action/Attribute/Tab/Attributes.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Action/Attribute/Tab/Attributes.php index 8771b1479dbddb2c6b942ac643f33d1f751cef1f..0e64b0334367046513b03c87d51d7a83ce37ce3a 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Action/Attribute/Tab/Attributes.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Action/Attribute/Tab/Attributes.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Action/Attribute/Tab/Inventory.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Action/Attribute/Tab/Inventory.php index 189238e01cfc3054b639d4f82be48c5d483d516a..85d2da9c5a37a82eee3669cc7bc583402cb2bd05 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Action/Attribute/Tab/Inventory.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Action/Attribute/Tab/Inventory.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Action/Attribute/Tab/Websites.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Action/Attribute/Tab/Websites.php index e06001e539167e24ec0ab90236dc408ca1bc4d8e..65ade93449651abf45cc43f59225443529ed9153 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Action/Attribute/Tab/Websites.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Action/Attribute/Tab/Websites.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Action/Attribute/Tabs.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Action/Attribute/Tabs.php index 2ec31a50325b45d657a0887bdfcf3c5fa0a52601..15be0e9aa19f2254e879fa627abefcc8652a1e2d 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Action/Attribute/Tabs.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Action/Attribute/Tabs.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/AttributeSet.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/AttributeSet.php index b3933b9dc968e34d9ee0bc9309ea35e030e11640..f34318e32af82397d38612dd6b4ed437a35d5955 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/AttributeSet.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/AttributeSet.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Js.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Js.php index 427a25aba96590d05de9b5df6fd593ff7b771a1e..ff98e0a60c0a305cba65fc7bc654b82ace6ca86e 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Js.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Js.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/NewCategory.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/NewCategory.php index 49a7f22dc77e47ec13f125b0ac8a4bf7dc62e21e..a7f34206c43beae1d61ac38ee75d02fa87d88792 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/NewCategory.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/NewCategory.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Ajax/Serializer.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Ajax/Serializer.php index ac5a2b013c24e8b206ac3350080ff23a2f6e1a04..98e44d5db416f7e9b0df321dfeaa738c462a95d1 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Ajax/Serializer.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Ajax/Serializer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Alerts.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Alerts.php index 90d6f2491862eb3b9871a57d6a2fa17371ad1af8..cf09e5ec02da785b77d3306fb40cfbcdb9bcc8a1 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Alerts.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Alerts.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Alerts/Price.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Alerts/Price.php index 032cd178a37b495b85beabeb7b2ad6867a2edf72..785018c47c479f6180b60cb6d3908768d124423e 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Alerts/Price.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Alerts/Price.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Alerts/Stock.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Alerts/Stock.php index 75650a43a2225e483f7beaebd2d0adf88b58fab7..68296a02a3b44814aacc0a564500e9e67e39f1b2 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Alerts/Stock.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Alerts/Stock.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Attributes.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Attributes.php index 0867a243d1a8c9452dc6c5aedd414967e2745530..a3cdf785afcd58ab0711ecb8df3ed19451b103c6 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Attributes.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Attributes.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Attributes/Create.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Attributes/Create.php index 7dc6f5b136c3e942e970cea1dd78c198c19a0c37..1b873fe6f2c04de8a5f85ff1968cd94658d4eae1 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Attributes/Create.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Attributes/Create.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Crosssell.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Crosssell.php index cb821c73bf08e88febcab5853654ccdeae420140..c9dbed15a64d589817766ce6ae64bb6fffb24e9a 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Crosssell.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Crosssell.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Inventory.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Inventory.php index 91775879d879eef01feb4cacdde5a9ea0dae7774..02e61f0551bc7910eff2f2ab5b6f760b97ce5439 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Inventory.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Inventory.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Options.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Options.php index 16cb90be6c01a0420e4a1c903bc52b7900bd1aa1..9205c5c36038faa6db31b4c93a2a9bd3c4675707 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Options.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Options.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Options/Option.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Options/Option.php index 165c11fccbd0523733552bf470cb11d0cb777c7e..586e53d870c7166f12bf5a1911b898a81be089d0 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Options/Option.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Options/Option.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Options/Popup/Grid.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Options/Popup/Grid.php index 5fd0d5b8b8c1325acbc069eb0e0b4d5bd0e61ff7..3d05fb41e325b33fabe4ccaa561b897c83cc416d 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Options/Popup/Grid.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Options/Popup/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Options/Type/Abstract.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Options/Type/Abstract.php index 3543bc41c4f7f58446da3aef6826c783303d07af..f23fc2bc472f7272b805503d6c83cc7e55589062 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Options/Type/Abstract.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Options/Type/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Options/Type/Date.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Options/Type/Date.php index 29965bc27e41bb8b7ede5e708bb6087e42f787d4..4d5ba9727d180808780ffc526ebb68c41f9c040c 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Options/Type/Date.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Options/Type/Date.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Options/Type/File.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Options/Type/File.php index 1409029e6856d6dfac7e25d8fc8b6408f5e6e725..e48f5bb30ff522788e710e5f0127315b2e1e8bd3 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Options/Type/File.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Options/Type/File.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Options/Type/Select.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Options/Type/Select.php index 2b59df29a824bf4532d08a5eca99939088fcaa0c..456fb2d35c92eb5b0f72e55e0a02f2949a8237ed 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Options/Type/Select.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Options/Type/Select.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Options/Type/Text.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Options/Type/Text.php index 16e00ea228474a487c0d15d4d0d682b2dc99fb5c..6686dfeaa2bf48a902c345a87d2241471f5dd916 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Options/Type/Text.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Options/Type/Text.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Price.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Price.php index 710d4a03bb6c21580fb1fa4ae7418bc659da2b18..fa77354ef215fb7877663019ca7ecf012f74c4f4 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Price.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Price.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Price/Group.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Price/Group.php index 86d7fdf0037a5526a623e0e3276972b7fc41ce10..64680c95f1a29d451cd0b4184885da9794bac53c 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Price/Group.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Price/Group.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Price/Group/Abstract.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Price/Group/Abstract.php index 24c60b5146a3455f0759e47fae5478506f20c15f..ba92e02f1d6454e0d0e7863a70f3b978827a8b3c 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Price/Group/Abstract.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Price/Group/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Price/Recurring.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Price/Recurring.php index 611dc8f6b98adbac7488091685f0d56ebe760360..9ea662e086b97fa3e01636e90db12fb3ff9332f0 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Price/Recurring.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Price/Recurring.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Price/Tier.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Price/Tier.php index 558edd31ef63ca5f0e2b2d32fdcec8575f46c08e..c07861753ba0ef02b228ea845152a0a389ca3e4d 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Price/Tier.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Price/Tier.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Related.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Related.php index 28b2abe131a3eaedf118588aef96a8f4bbac2b86..6b2e35556cb1451e8f7c404c585566dabe575c5b 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Related.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Related.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Reviews.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Reviews.php index 6f6643a1efbe723edf4b8d4374e00e152e50ef2a..864f8f62d3c42699ba3b623df0ed2463b010dbb0 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Reviews.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Reviews.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Super/Config.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Super/Config.php index 3a4d31d9799c5fc41b5e2340e1e18ac1f3fafeb5..822d03ee16f6eaa860f8c356187f75e2c22333f5 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Super/Config.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Super/Config.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Super/Config/Grid/Filter/Inventory.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Super/Config/Grid/Filter/Inventory.php index 19a1a97976794487f87e121bfdea853be9835c92..28ff8f6c9fef7fa41f3420d03ccd6e09a05ea4ff 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Super/Config/Grid/Filter/Inventory.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Super/Config/Grid/Filter/Inventory.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Super/Config/Grid/Renderer/Checkbox.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Super/Config/Grid/Renderer/Checkbox.php index 32d3f76810ef1da66dec76eb6187630d317016b5..fa3b42bf182590dab0f32a6ab3a3657a6b01ac82 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Super/Config/Grid/Renderer/Checkbox.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Super/Config/Grid/Renderer/Checkbox.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Super/Config/Grid/Renderer/Inventory.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Super/Config/Grid/Renderer/Inventory.php index a3968211cd4203f10479c409edd8ea2b20dc847a..66b8aa11e01646ecacd3d1288ea9dabad2f2e32c 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Super/Config/Grid/Renderer/Inventory.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Super/Config/Grid/Renderer/Inventory.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Super/Config/Simple.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Super/Config/Simple.php index 631b528bf363721b221918919978da116e292961..e4f78a4581e3d9484aa0b460a4383f5517d06635 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Super/Config/Simple.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Super/Config/Simple.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Super/Group.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Super/Group.php index e056f0aa78025b13e6920dc4a5d991b4ee7f6e0e..bf7f14eafc80c57d65c4e598f20c9c2be493da12 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Super/Group.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Super/Group.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Super/Settings.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Super/Settings.php index 432b6db96c415e921480d1cbde878a54890f4554..b3818e4e920982d2fa2cda8d7fecb70af6920bf8 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Super/Settings.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Super/Settings.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Upsell.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Upsell.php index 419d5f4a923962cde6848964b65b98a9d5b92c34..f1faa8f9a02a39c7f00477d64c52e837ae7fb456 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Upsell.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Upsell.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Websites.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Websites.php index fbcbe1400c3785b1452568273f43a4cd742cecc6..d0771136a854a8653601f75af10b019145128846 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Websites.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Websites.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tabs.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tabs.php index 356d3b40c693e0017a1953e74140983dab1076d6..2cdb49d5c1a248a9eb8d7f99b25379ae716f422e 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tabs.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tabs.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tabs/Configurable.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tabs/Configurable.php index 95813165f45f891d73c302e3b336acb0f23dd3f9..0537b0c2f4927d5fa0538b41d6715297372fe20f 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tabs/Configurable.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tabs/Configurable.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tabs/Grouped.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tabs/Grouped.php index a3b75e6ec73679d3bd815806ccafe678d1f9fb00..12c953699c3e7242729ce929a510e48dfa3aa3a9 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tabs/Grouped.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tabs/Grouped.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Frontend/Product/Watermark.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Frontend/Product/Watermark.php index e591e02bce45886fc99504a6de8ef3b1e27ab6c5..223400b1163c739ee16e4a68e84102025d2da378 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Frontend/Product/Watermark.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Frontend/Product/Watermark.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Grid.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Grid.php index aba327bc3c532dd8fe9ca3bd2da6311d37bcf5df..6053b8b782811940da6b3c8ebc40e831e08af4e2 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Grid.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/Apply.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/Apply.php index 426bdbf612cae49bc6c478b3556740514ae86248..2f0afa4473dbfe77a379ac84d474d0b90489f27e 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/Apply.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/Apply.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/BaseImage.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/BaseImage.php index ca34c7c8f23c3461e191a40c90a3084554618a43..7d66d1ec45916762e4425e78358e4cc3991b9948 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/BaseImage.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/BaseImage.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/Boolean.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/Boolean.php index 226e97a08f545525dc205c74f98034e55930c63f..6d21e0b693dd76e095ca5be47f64075ed41cf691 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/Boolean.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/Boolean.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/Category.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/Category.php index 107d9eb7d6250e00d3c5bdb3f2e24fca38151aa2..9cdbb7bb09efd359f62efd3e2c479c7ed076eb90 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/Category.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/Category.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/Config.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/Config.php index 31a26d79950164f0e01d0300cde2dc733ae2e602..f00ac4a317b9900dbaa33f6c12bb685f5627c663 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/Config.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/Config.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/Gallery.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/Gallery.php index 7b9aaeb37f3a443090c101721b2c179d2ad38d02..c9f4d776474df6e83c43516fbe231c7c9d508e2c 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/Gallery.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/Gallery.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/Gallery/Content.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/Gallery/Content.php index 79d5b8c464578187505d8a0242b76f49a45d8f67..a5cfe26778744c396d974582f67be32a14247b8d 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/Gallery/Content.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/Gallery/Content.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/Image.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/Image.php index e8fe10f0c8c3ef772a75f168fa3ed09241b34e99..a27d33d6060009e5e9fecfd81a57b65b031ff03e 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/Image.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/Image.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/Msrp/Enabled.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/Msrp/Enabled.php index 3515ce5987b4871d7c3cc2ad9a7f121e998d8068..9b53991f22376735bbf01fb2e259329c534f972b 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/Msrp/Enabled.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/Msrp/Enabled.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/Msrp/Price.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/Msrp/Price.php index 56076adbb6b8d61af22828e94bd802553386c34d..b8aa0952c71d3547015e8b2e45eb6e55d5460662 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/Msrp/Price.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/Msrp/Price.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/Price.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/Price.php index 20131595c81fbdb805fa8ee1895130d0fbbc161a..21ea6c44a980e0826089821267e3709d89eb3672 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/Price.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/Price.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/Weight.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/Weight.php index eed362ae78976d8318c3f5b2b38127d9bedbb5fe..837df013a1a285b7af707d486b8636273250ea12 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/Weight.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/Weight.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/Weight/Renderer.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/Weight/Renderer.php index b38332fe54ceb081005772bd8c96d22eea6c2e73..50ac9c2d5ac615fa3a80d12f0f5e0c9fa39a927c 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/Weight/Renderer.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/Weight/Renderer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Options/Ajax.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Options/Ajax.php index 1b2208d08d8a866f444e54243e3e8d5f674dcd1a..c7d8b7fbc85ed93102665da9a7aa1067a90caad9 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Options/Ajax.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Options/Ajax.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Price.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Price.php index 4258a756ea332e206f80a65a7810ab88ec8958f7..5ff2d8992cac05351c28e86837255b5e2e883eac 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Price.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Price.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Widget/Chooser.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Widget/Chooser.php index 50b528a82885bb639d1fcc07dc5f64ec53ab2671..8f05ed21030000990190c1af983457cfad06dfdf 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Widget/Chooser.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Widget/Chooser.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Widget/Chooser/Container.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Widget/Chooser/Container.php index 694dd85f3e78119483cd645f8edcc1035305e8ef..4d93356ef925237e9ad1f804046dda4ed56cc24a 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Widget/Chooser/Container.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Widget/Chooser/Container.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Search.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Search.php index 2a91cc2a78387b152e0ccf4e23f6162c85c3eaa7..d02f3feb8a904ae4b38d54cbbf749fa34b5dfec8 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Search.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Search.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Search/Edit.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Search/Edit.php index 27673c15108ea27aa713b34a290fec7f5d0a3cd0..d5786e3cfc00a01711cabb3e1368172c9e652977 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Search/Edit.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Search/Edit.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Search/Edit/Form.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Search/Edit/Form.php index 34378c93a49dfb1991a3f19d79459ca2db791baf..2a54c9786117e3d866ae51097d3d13ee852d320f 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Search/Edit/Form.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Search/Edit/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Checkout/Agreement.php b/app/code/core/Mage/Adminhtml/Block/Checkout/Agreement.php index cef1e601d56a49f8a7fb987555500055817c391b..50b33a89a0845926f9ae12997d927c378d0a5751 100644 --- a/app/code/core/Mage/Adminhtml/Block/Checkout/Agreement.php +++ b/app/code/core/Mage/Adminhtml/Block/Checkout/Agreement.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Checkout/Agreement/Edit.php b/app/code/core/Mage/Adminhtml/Block/Checkout/Agreement/Edit.php index a32fc3aea713bdd037ec7617b213211bbada9234..2892e436a087aeb966064139d0ee728b3f189367 100644 --- a/app/code/core/Mage/Adminhtml/Block/Checkout/Agreement/Edit.php +++ b/app/code/core/Mage/Adminhtml/Block/Checkout/Agreement/Edit.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Checkout/Agreement/Edit/Form.php b/app/code/core/Mage/Adminhtml/Block/Checkout/Agreement/Edit/Form.php index 5c8557e3d243cd82d6b269efaec6e0ab0cab2254..81021781e1db6361dc109fc91f2d03b85d5ad930 100644 --- a/app/code/core/Mage/Adminhtml/Block/Checkout/Agreement/Edit/Form.php +++ b/app/code/core/Mage/Adminhtml/Block/Checkout/Agreement/Edit/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Checkout/Agreement/Grid.php b/app/code/core/Mage/Adminhtml/Block/Checkout/Agreement/Grid.php index 33ccd28cdb42fc3dfac1677d30e79cd1e6b79c61..2725a5db86a79e9d535c6f6c5db21fe24e0694ba 100644 --- a/app/code/core/Mage/Adminhtml/Block/Checkout/Agreement/Grid.php +++ b/app/code/core/Mage/Adminhtml/Block/Checkout/Agreement/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Adminhtml_Block_Checkout_Agreement_Grid extends Mage_Adminhtml_Block_Widget_Grid diff --git a/app/code/core/Mage/Adminhtml/Block/Cms/Block.php b/app/code/core/Mage/Adminhtml/Block/Cms/Block.php index 9533edf6160dbf3119b1dc86e60855b7048f73a2..303e70557dde400f983c74f83a221242a5022c89 100644 --- a/app/code/core/Mage/Adminhtml/Block/Cms/Block.php +++ b/app/code/core/Mage/Adminhtml/Block/Cms/Block.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Cms/Block/Edit.php b/app/code/core/Mage/Adminhtml/Block/Cms/Block/Edit.php index 528f0e9f3d69e68328f6dbd6ef29dc9a771ce5d1..4cdf587efe7a0fc4943f574f51b0ca4694f6f9f4 100644 --- a/app/code/core/Mage/Adminhtml/Block/Cms/Block/Edit.php +++ b/app/code/core/Mage/Adminhtml/Block/Cms/Block/Edit.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Cms/Block/Edit/Form.php b/app/code/core/Mage/Adminhtml/Block/Cms/Block/Edit/Form.php index 67580bd76e73b736995cbf3afbbf613ca2060557..2a7278d1abb32a842618ad2cb01cb969f73f44a5 100644 --- a/app/code/core/Mage/Adminhtml/Block/Cms/Block/Edit/Form.php +++ b/app/code/core/Mage/Adminhtml/Block/Cms/Block/Edit/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Cms/Block/Grid.php b/app/code/core/Mage/Adminhtml/Block/Cms/Block/Grid.php index 9d792e7c03c0c05f0139cb816dc6586390add0a3..ec5ebd9f0ce5b9265804f31e6987f0e171e2bd38 100644 --- a/app/code/core/Mage/Adminhtml/Block/Cms/Block/Grid.php +++ b/app/code/core/Mage/Adminhtml/Block/Cms/Block/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Cms/Block/Widget/Chooser.php b/app/code/core/Mage/Adminhtml/Block/Cms/Block/Widget/Chooser.php index cf2ca6e1930dfb22d0b904ab0c82eb4a18ab7251..4d840e20e855b244ca8f000b3585a09191a0d9db 100644 --- a/app/code/core/Mage/Adminhtml/Block/Cms/Block/Widget/Chooser.php +++ b/app/code/core/Mage/Adminhtml/Block/Cms/Block/Widget/Chooser.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Cms/Page.php b/app/code/core/Mage/Adminhtml/Block/Cms/Page.php index 26bf7dc35b8b8ef83d1c191852b8eb559c769810..9003475e621180a7b355c86b8d2aee1fb9d1e8bc 100644 --- a/app/code/core/Mage/Adminhtml/Block/Cms/Page.php +++ b/app/code/core/Mage/Adminhtml/Block/Cms/Page.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Cms/Page/Edit.php b/app/code/core/Mage/Adminhtml/Block/Cms/Page/Edit.php index b9a40077e99d548273fcd6ead1cebd3dc5ca62fb..7859ddcef5102037353719bdb693c28df3b79a3b 100644 --- a/app/code/core/Mage/Adminhtml/Block/Cms/Page/Edit.php +++ b/app/code/core/Mage/Adminhtml/Block/Cms/Page/Edit.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Cms/Page/Edit/Form.php b/app/code/core/Mage/Adminhtml/Block/Cms/Page/Edit/Form.php index 383444dd4cd16ddb08f458e1a910823990a3bdf6..f39721e5b712e4456fe142907d1e936a6c31f7f4 100644 --- a/app/code/core/Mage/Adminhtml/Block/Cms/Page/Edit/Form.php +++ b/app/code/core/Mage/Adminhtml/Block/Cms/Page/Edit/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Cms/Page/Edit/Tab/Content.php b/app/code/core/Mage/Adminhtml/Block/Cms/Page/Edit/Tab/Content.php index bb57e17adbae113d70b8ea36e7645bd046141b09..89705498127d375d09ba1b2e13612909a5b5fcdb 100644 --- a/app/code/core/Mage/Adminhtml/Block/Cms/Page/Edit/Tab/Content.php +++ b/app/code/core/Mage/Adminhtml/Block/Cms/Page/Edit/Tab/Content.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Cms/Page/Edit/Tab/Design.php b/app/code/core/Mage/Adminhtml/Block/Cms/Page/Edit/Tab/Design.php index 1b02df4d2204483e7f5b7a6e3b3cab3184948918..35336862d6bda3266c2c80c1dd876b209e506e8b 100644 --- a/app/code/core/Mage/Adminhtml/Block/Cms/Page/Edit/Tab/Design.php +++ b/app/code/core/Mage/Adminhtml/Block/Cms/Page/Edit/Tab/Design.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Adminhtml_Block_Cms_Page_Edit_Tab_Design diff --git a/app/code/core/Mage/Adminhtml/Block/Cms/Page/Edit/Tab/Main.php b/app/code/core/Mage/Adminhtml/Block/Cms/Page/Edit/Tab/Main.php index 7ad004ffa95417e2e32b871cff5095ceb678582a..a5e709146c7d580fef8d6a2b128218a9001328e7 100644 --- a/app/code/core/Mage/Adminhtml/Block/Cms/Page/Edit/Tab/Main.php +++ b/app/code/core/Mage/Adminhtml/Block/Cms/Page/Edit/Tab/Main.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Cms/Page/Edit/Tab/Meta.php b/app/code/core/Mage/Adminhtml/Block/Cms/Page/Edit/Tab/Meta.php index a6b08c4b1a8d81f7158762ca5a2828ecba46d1b9..0c28e4c35a9148f0e13ee8f086dcdc67a76f0c26 100644 --- a/app/code/core/Mage/Adminhtml/Block/Cms/Page/Edit/Tab/Meta.php +++ b/app/code/core/Mage/Adminhtml/Block/Cms/Page/Edit/Tab/Meta.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Cms/Page/Edit/Tabs.php b/app/code/core/Mage/Adminhtml/Block/Cms/Page/Edit/Tabs.php index 32e4db185bdc75a426c5b8a291a62d024ef7fc33..f6d5e46c5f1f8ee38de868c91158cdefdefbb960 100644 --- a/app/code/core/Mage/Adminhtml/Block/Cms/Page/Edit/Tabs.php +++ b/app/code/core/Mage/Adminhtml/Block/Cms/Page/Edit/Tabs.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Cms/Page/Grid.php b/app/code/core/Mage/Adminhtml/Block/Cms/Page/Grid.php index 44c15c7808d50f86f050f12a2bdad748179d28d2..c26de00e3cd0ceeb7834ecdb4384f4e545ecac31 100644 --- a/app/code/core/Mage/Adminhtml/Block/Cms/Page/Grid.php +++ b/app/code/core/Mage/Adminhtml/Block/Cms/Page/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Cms/Page/Grid/Renderer/Action.php b/app/code/core/Mage/Adminhtml/Block/Cms/Page/Grid/Renderer/Action.php index c785dace516d9338dbcd43205982ca7a54ac1906..5b507aab298a1dd3154eb820cc27f5784a9f9d8a 100644 --- a/app/code/core/Mage/Adminhtml/Block/Cms/Page/Grid/Renderer/Action.php +++ b/app/code/core/Mage/Adminhtml/Block/Cms/Page/Grid/Renderer/Action.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Cms/Page/Widget/Chooser.php b/app/code/core/Mage/Adminhtml/Block/Cms/Page/Widget/Chooser.php index 61fc067b4f09d84f037a3851c0b8370a834f7405..1db0389f6f65b70f1faf67198a85d00299030bed 100644 --- a/app/code/core/Mage/Adminhtml/Block/Cms/Page/Widget/Chooser.php +++ b/app/code/core/Mage/Adminhtml/Block/Cms/Page/Widget/Chooser.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Cms/Wysiwyg/Images/Content.php b/app/code/core/Mage/Adminhtml/Block/Cms/Wysiwyg/Images/Content.php index 6c44eb3d9e045ff523cd1052f37aba629d1cf0a5..7cbbe85227f772bf58640052f25e1e81230ca397 100644 --- a/app/code/core/Mage/Adminhtml/Block/Cms/Wysiwyg/Images/Content.php +++ b/app/code/core/Mage/Adminhtml/Block/Cms/Wysiwyg/Images/Content.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Cms/Wysiwyg/Images/Content/Files.php b/app/code/core/Mage/Adminhtml/Block/Cms/Wysiwyg/Images/Content/Files.php index 88ab473c3d9751f4cc0dc8c420f6795e4a74c226..9e9b759e4518f8a76347633becf54e15db6a81d1 100644 --- a/app/code/core/Mage/Adminhtml/Block/Cms/Wysiwyg/Images/Content/Files.php +++ b/app/code/core/Mage/Adminhtml/Block/Cms/Wysiwyg/Images/Content/Files.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Cms/Wysiwyg/Images/Content/Newfolder.php b/app/code/core/Mage/Adminhtml/Block/Cms/Wysiwyg/Images/Content/Newfolder.php index 2f9992202c41874f9c4bc9026adb497331867833..09e10e789fd6afa0aff55024598ab8842ebbba9e 100644 --- a/app/code/core/Mage/Adminhtml/Block/Cms/Wysiwyg/Images/Content/Newfolder.php +++ b/app/code/core/Mage/Adminhtml/Block/Cms/Wysiwyg/Images/Content/Newfolder.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Cms/Wysiwyg/Images/Content/Uploader.php b/app/code/core/Mage/Adminhtml/Block/Cms/Wysiwyg/Images/Content/Uploader.php index c91d2937a71cf176d58b8fc59aea63ba8ab199c0..21e6a2c0c08d98253c1d8b1d5837d85b0fcf0b73 100644 --- a/app/code/core/Mage/Adminhtml/Block/Cms/Wysiwyg/Images/Content/Uploader.php +++ b/app/code/core/Mage/Adminhtml/Block/Cms/Wysiwyg/Images/Content/Uploader.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Cms/Wysiwyg/Images/Tree.php b/app/code/core/Mage/Adminhtml/Block/Cms/Wysiwyg/Images/Tree.php index 82e2da6277bec6c13fc41e854a576a8b2df3238b..88d4ba49ccf44cc6f29e2be6f2edcb289c3115c5 100644 --- a/app/code/core/Mage/Adminhtml/Block/Cms/Wysiwyg/Images/Tree.php +++ b/app/code/core/Mage/Adminhtml/Block/Cms/Wysiwyg/Images/Tree.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Customer.php b/app/code/core/Mage/Adminhtml/Block/Customer.php index a0353da9dd7171df80fa5bddb4c2465abc31267a..3ed88a47056f8b09212c69c6774bd725311a128b 100644 --- a/app/code/core/Mage/Adminhtml/Block/Customer.php +++ b/app/code/core/Mage/Adminhtml/Block/Customer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Customer/Edit.php b/app/code/core/Mage/Adminhtml/Block/Customer/Edit.php index 1bdda0ad69d590e001416a4c6df02a9476b758bd..d4bacb08ad30bcb425ddb63636e9df45038e0f82 100644 --- a/app/code/core/Mage/Adminhtml/Block/Customer/Edit.php +++ b/app/code/core/Mage/Adminhtml/Block/Customer/Edit.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Form.php b/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Form.php index de290ff08738d8b7fb23696371060d8860d3ad59..fce879e068a03169364fe504228213957f511cc5 100644 --- a/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Form.php +++ b/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Renderer/Attribute/Group.php b/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Renderer/Attribute/Group.php index 8871c80b5812badd27a3a00d9c55ed113e9a5067..abcccb364bd8b539e4e8ec9107de2ba9861de245 100644 --- a/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Renderer/Attribute/Group.php +++ b/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Renderer/Attribute/Group.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Renderer/Newpass.php b/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Renderer/Newpass.php index 5ecc8cc06ec841b7f6adc3b208e4c6ce355ab722..b9b92e2584993b8f182066a21f17d769049c8b06 100644 --- a/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Renderer/Newpass.php +++ b/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Renderer/Newpass.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Renderer/Region.php b/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Renderer/Region.php index f387a96c515566f041747f59d13b5237f1f266f4..b8b99879cf5d112b9bbb6ead13c8304fabf3aa9a 100644 --- a/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Renderer/Region.php +++ b/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Renderer/Region.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Account.php b/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Account.php index 275c191da2926bc03c65bd7b9d6d03edc845602d..0f177639744e52945f2ef47bf752d59405a79d33 100644 --- a/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Account.php +++ b/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Account.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Addresses.php b/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Addresses.php index 384cd3cd96d2c46d709de6810785bbec925f31c7..3dbcc6d261fd8d9e9205ac039992302fb2cae68b 100644 --- a/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Addresses.php +++ b/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Addresses.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Cart.php b/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Cart.php index 93d57849688e8a69818a9e6980a10a7d6a03d804..bb010180857d25dcdf8381d3db96f566d8d1f162 100644 --- a/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Cart.php +++ b/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Cart.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Carts.php b/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Carts.php index d1680305f364fb0bef421c3ba24936e31820b66c..d7ca61cbb6c591442596066f12fd8b409cdb37ff 100644 --- a/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Carts.php +++ b/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Carts.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Newsletter.php b/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Newsletter.php index 520f472bb8dac80f029a436928f649338f0e2253..c42f97b35cd0c993242cb2cfd71c969917fb5a88 100644 --- a/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Newsletter.php +++ b/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Newsletter.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Newsletter/Grid.php b/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Newsletter/Grid.php index 8c456d65c89853849fa6ba5d396967803f79ecc7..1e1bf1ed286b3925b13055e4488d40d86d298317 100644 --- a/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Newsletter/Grid.php +++ b/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Newsletter/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Newsletter/Grid/Filter/Status.php b/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Newsletter/Grid/Filter/Status.php index 2a3cfa94eaaeeb34281af5ba5be0cfb50452b18a..566476f4c03cf0d6cd777a4e0d03f032d7666a66 100644 --- a/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Newsletter/Grid/Filter/Status.php +++ b/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Newsletter/Grid/Filter/Status.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Newsletter/Grid/Renderer/Action.php b/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Newsletter/Grid/Renderer/Action.php index 2c2861c09c764ee6231f5f73185ec7a93acb89ad..075aee6bb61bab3100802ca249f9f817fce7360a 100644 --- a/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Newsletter/Grid/Renderer/Action.php +++ b/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Newsletter/Grid/Renderer/Action.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Newsletter/Grid/Renderer/Status.php b/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Newsletter/Grid/Renderer/Status.php index e1f9ce6ebe47ad3508fb667f7d38c91c90e7adf3..371d8e1000485d4da06566de347e277df18d2478 100644 --- a/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Newsletter/Grid/Renderer/Status.php +++ b/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Newsletter/Grid/Renderer/Status.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Orders.php b/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Orders.php index f8bcab3718d57e068a243dd12b384eae6a1bae41..b551eb543f2e904bd874257dfcf99ae2c9c2446a 100644 --- a/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Orders.php +++ b/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Orders.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Reviews.php b/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Reviews.php index 7ca03e570465941c7572a5b39ac60896770c5bfa..63452494a31baf9252d8b6fbab6740f15fe18560 100644 --- a/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Reviews.php +++ b/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Reviews.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/View.php b/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/View.php index 64d078d0d30c28297c7dbe197713681692d3948c..9a07f5cdbec65bb29b6c84e6ca03aa283d878eb7 100644 --- a/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/View.php +++ b/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/View.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/View/Accordion.php b/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/View/Accordion.php index 90f52727834b618438f895d7ae61aac9112a7dcc..ecaa1848f77d859b44156299144434ccab9faeea 100644 --- a/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/View/Accordion.php +++ b/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/View/Accordion.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/View/Cart.php b/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/View/Cart.php index b599c1f85a48d0de24b52310d2fea67451c6dc38..f3c9172c6f02f83121c50a9ca915f5bf9b102973 100644 --- a/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/View/Cart.php +++ b/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/View/Cart.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/View/Grid/Renderer/Item.php b/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/View/Grid/Renderer/Item.php index 384e88b910281225eeb35e3f402467eb561d24ce..e15dd8bf5d61b3dbfd619131a651db3bb6cdc9e8 100644 --- a/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/View/Grid/Renderer/Item.php +++ b/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/View/Grid/Renderer/Item.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/View/Orders.php b/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/View/Orders.php index 3451d785e7ba7dca1db5211c40361648ebbd5bce..ef6337ee7b3c0752831f88ccbc53435b20814e20 100644 --- a/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/View/Orders.php +++ b/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/View/Orders.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/View/Sales.php b/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/View/Sales.php index 98ee4c6f10f87255b6e87cdd0b05b009c5e134bc..e4ea154691b8ac7aa5b157e8b71b71bbd96ea2f1 100644 --- a/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/View/Sales.php +++ b/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/View/Sales.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/View/Wishlist.php b/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/View/Wishlist.php index 00e6bab0a6512e535e9a432209c28876d0217b52..e0c9b0f2b8cf913bd2ed82ec3b89365a1d85d0d3 100644 --- a/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/View/Wishlist.php +++ b/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/View/Wishlist.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Wishlist/Grid/Renderer/Description.php b/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Wishlist/Grid/Renderer/Description.php index 77670969776893d93700bddb763bc4d2fe23c24a..33c27ff0e4ecf3933e31f7db2fb8a5287157f028 100644 --- a/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Wishlist/Grid/Renderer/Description.php +++ b/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Wishlist/Grid/Renderer/Description.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tabs.php b/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tabs.php index 35bfa0175b5c70251345811a90a50b083dcc5aae..681ce3887e31ee0ecec190fd035faf6394893725 100644 --- a/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tabs.php +++ b/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tabs.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Customer/Form/Element/Boolean.php b/app/code/core/Mage/Adminhtml/Block/Customer/Form/Element/Boolean.php index 1eb67fedcc9268dd0dd346569fd41adef11a8423..98265b06d037a0cd517ba511ef5f5ffe0992d764 100644 --- a/app/code/core/Mage/Adminhtml/Block/Customer/Form/Element/Boolean.php +++ b/app/code/core/Mage/Adminhtml/Block/Customer/Form/Element/Boolean.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Customer/Form/Element/File.php b/app/code/core/Mage/Adminhtml/Block/Customer/Form/Element/File.php index d91ba19e947522bfc4ae5c70ca36268ec6e49131..e837701b64d839b07eadd28b081318ac845ddca0 100644 --- a/app/code/core/Mage/Adminhtml/Block/Customer/Form/Element/File.php +++ b/app/code/core/Mage/Adminhtml/Block/Customer/Form/Element/File.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Customer/Form/Element/Image.php b/app/code/core/Mage/Adminhtml/Block/Customer/Form/Element/Image.php index f04e247c8fcdce8db650ebc98baa762f07adcd4b..0473795a39f567c8ddef9650e98b42827dfefe1a 100644 --- a/app/code/core/Mage/Adminhtml/Block/Customer/Form/Element/Image.php +++ b/app/code/core/Mage/Adminhtml/Block/Customer/Form/Element/Image.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Customer/Grid.php b/app/code/core/Mage/Adminhtml/Block/Customer/Grid.php index 94e7091cb0984de0457de41cd2cc21a91021f4a6..f9a7665b3d7e06167c9dd7e1655959dcefc3d049 100644 --- a/app/code/core/Mage/Adminhtml/Block/Customer/Grid.php +++ b/app/code/core/Mage/Adminhtml/Block/Customer/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Customer/Grid/Filter/Country.php b/app/code/core/Mage/Adminhtml/Block/Customer/Grid/Filter/Country.php index bab8a8dd987249bab78d968f2460f23e9a761278..e1c01b8f2993ce28da09d16ff84196ae50993a80 100644 --- a/app/code/core/Mage/Adminhtml/Block/Customer/Grid/Filter/Country.php +++ b/app/code/core/Mage/Adminhtml/Block/Customer/Grid/Filter/Country.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Customer/Grid/Renderer/Multiaction.php b/app/code/core/Mage/Adminhtml/Block/Customer/Grid/Renderer/Multiaction.php index eaa0daf0ce544274a0a5195e959d374e7dc3bcd2..a2b894312a712e441398aeb0583b37033526e076 100644 --- a/app/code/core/Mage/Adminhtml/Block/Customer/Grid/Renderer/Multiaction.php +++ b/app/code/core/Mage/Adminhtml/Block/Customer/Grid/Renderer/Multiaction.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Customer/Group.php b/app/code/core/Mage/Adminhtml/Block/Customer/Group.php index 6520db21df2175e873e715bc490c61b8e9cb14e4..1dad3f0b4982ee0c36ce6ca3373c02b8f83927c7 100644 --- a/app/code/core/Mage/Adminhtml/Block/Customer/Group.php +++ b/app/code/core/Mage/Adminhtml/Block/Customer/Group.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Customer/Group/Edit.php b/app/code/core/Mage/Adminhtml/Block/Customer/Group/Edit.php index 5c839babbfb6fe7972b6ee830c845bf289979551..d2a7d26390d2a85ebd16c8f2add5c563d41e383b 100644 --- a/app/code/core/Mage/Adminhtml/Block/Customer/Group/Edit.php +++ b/app/code/core/Mage/Adminhtml/Block/Customer/Group/Edit.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Customer/Group/Edit/Form.php b/app/code/core/Mage/Adminhtml/Block/Customer/Group/Edit/Form.php index 6ce502863a2062f5936c326b44de8e26fb31920f..8dc22f2524a1fc2b8d3ed05fc477a6ae01628c8f 100644 --- a/app/code/core/Mage/Adminhtml/Block/Customer/Group/Edit/Form.php +++ b/app/code/core/Mage/Adminhtml/Block/Customer/Group/Edit/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Customer/Group/Grid.php b/app/code/core/Mage/Adminhtml/Block/Customer/Group/Grid.php index 22fd20646483b9ba0c5c9ffb440810e322fb60a0..1ca108fa94d37b6ac9ca8828b6c551997b91aed5 100644 --- a/app/code/core/Mage/Adminhtml/Block/Customer/Group/Grid.php +++ b/app/code/core/Mage/Adminhtml/Block/Customer/Group/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Customer/Online.php b/app/code/core/Mage/Adminhtml/Block/Customer/Online.php index 678f0c80839a9dbd70d1ad15bb6f608c7cf26964..0a1b1f718d6c5b513f448b8f988c31a5f7d6615a 100644 --- a/app/code/core/Mage/Adminhtml/Block/Customer/Online.php +++ b/app/code/core/Mage/Adminhtml/Block/Customer/Online.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Customer/Online/Filter.php b/app/code/core/Mage/Adminhtml/Block/Customer/Online/Filter.php index 2bee21b86b96909ec8a39352efe1b2883c0b6506..aa44caf46f41aa17279b929af5c0666791c5db65 100644 --- a/app/code/core/Mage/Adminhtml/Block/Customer/Online/Filter.php +++ b/app/code/core/Mage/Adminhtml/Block/Customer/Online/Filter.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Customer/Online/Grid.php b/app/code/core/Mage/Adminhtml/Block/Customer/Online/Grid.php index b9d8be264648b6a8bb3da0ac9dd1548dfc873b18..715eb0aa5d69ae41445271a8146e2c450af7c0f4 100644 --- a/app/code/core/Mage/Adminhtml/Block/Customer/Online/Grid.php +++ b/app/code/core/Mage/Adminhtml/Block/Customer/Online/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Customer/Online/Grid/Renderer/Ip.php b/app/code/core/Mage/Adminhtml/Block/Customer/Online/Grid/Renderer/Ip.php index c74b908e37828fdccee5ca9a76f185f4a214ca68..57e49abab9741086ac71ef34cc542a97a4dc9be6 100644 --- a/app/code/core/Mage/Adminhtml/Block/Customer/Online/Grid/Renderer/Ip.php +++ b/app/code/core/Mage/Adminhtml/Block/Customer/Online/Grid/Renderer/Ip.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Customer/Online/Grid/Renderer/Type.php b/app/code/core/Mage/Adminhtml/Block/Customer/Online/Grid/Renderer/Type.php index cbf83f1f8c2ce1acc60530b94be6774b54edf882..eddd7f494f3f134d01f567b4e805e77ec772a868 100644 --- a/app/code/core/Mage/Adminhtml/Block/Customer/Online/Grid/Renderer/Type.php +++ b/app/code/core/Mage/Adminhtml/Block/Customer/Online/Grid/Renderer/Type.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Customer/Online/Grid/Renderer/Url.php b/app/code/core/Mage/Adminhtml/Block/Customer/Online/Grid/Renderer/Url.php index 117b4a0d107851f133c449ff33c9b60b56d7728d..c24c9570035ff092d7b678812720c634d2779518 100644 --- a/app/code/core/Mage/Adminhtml/Block/Customer/Online/Grid/Renderer/Url.php +++ b/app/code/core/Mage/Adminhtml/Block/Customer/Online/Grid/Renderer/Url.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Customer/Sales/Order/Address/Form/Renderer/Vat.php b/app/code/core/Mage/Adminhtml/Block/Customer/Sales/Order/Address/Form/Renderer/Vat.php index 267bd2b42c2bf5560fcf29c01911f3cf0f4a43cc..3510ecbe1a480cc3116f97c52776691f12af6115 100644 --- a/app/code/core/Mage/Adminhtml/Block/Customer/Sales/Order/Address/Form/Renderer/Vat.php +++ b/app/code/core/Mage/Adminhtml/Block/Customer/Sales/Order/Address/Form/Renderer/Vat.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Customer/System/Config/Validatevat.php b/app/code/core/Mage/Adminhtml/Block/Customer/System/Config/Validatevat.php index 4ac9efbe52317aa8b08fd54166c08e27bac2ecad..f6bb4dbc94390f380c8a7f0b7cdf32275319bfce 100644 --- a/app/code/core/Mage/Adminhtml/Block/Customer/System/Config/Validatevat.php +++ b/app/code/core/Mage/Adminhtml/Block/Customer/System/Config/Validatevat.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Dashboard.php b/app/code/core/Mage/Adminhtml/Block/Dashboard.php index a0dd8544f098938feb685ee9dacf5786b281db06..c29ad3ac8b60855e65c908a8470c26c866464bae 100644 --- a/app/code/core/Mage/Adminhtml/Block/Dashboard.php +++ b/app/code/core/Mage/Adminhtml/Block/Dashboard.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Dashboard/Abstract.php b/app/code/core/Mage/Adminhtml/Block/Dashboard/Abstract.php index 8ec8fc92d666100bcab4e64bf20e7a87754c78c1..dc83c488f47923f5dd0cd5a1e3fc28999aba5e7c 100644 --- a/app/code/core/Mage/Adminhtml/Block/Dashboard/Abstract.php +++ b/app/code/core/Mage/Adminhtml/Block/Dashboard/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Dashboard/Bar.php b/app/code/core/Mage/Adminhtml/Block/Dashboard/Bar.php index 196f87d76559e5f9389ff1c0a355e846725ec4e0..24fa9871168142667efc336160a6d77fb27cf299 100644 --- a/app/code/core/Mage/Adminhtml/Block/Dashboard/Bar.php +++ b/app/code/core/Mage/Adminhtml/Block/Dashboard/Bar.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Dashboard/Diagrams.php b/app/code/core/Mage/Adminhtml/Block/Dashboard/Diagrams.php index 98cb1d512d5526a3b3a342fc25deba9d5d9c2f57..7130daf0ce61e1f95496d238f286fa9390f1fee0 100644 --- a/app/code/core/Mage/Adminhtml/Block/Dashboard/Diagrams.php +++ b/app/code/core/Mage/Adminhtml/Block/Dashboard/Diagrams.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Dashboard/Graph.php b/app/code/core/Mage/Adminhtml/Block/Dashboard/Graph.php index 11438abbb271c4c041bbd02e93c097f6cd97c9fa..64e979bcdccf3b5e465d87a26f750101115239d7 100644 --- a/app/code/core/Mage/Adminhtml/Block/Dashboard/Graph.php +++ b/app/code/core/Mage/Adminhtml/Block/Dashboard/Graph.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Dashboard/Grid.php b/app/code/core/Mage/Adminhtml/Block/Dashboard/Grid.php index 8723acab008a21c94cf87179ed44d2b215c1395a..90e2e7860bbf67ac6c75f4c50fea280040f6244f 100644 --- a/app/code/core/Mage/Adminhtml/Block/Dashboard/Grid.php +++ b/app/code/core/Mage/Adminhtml/Block/Dashboard/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Dashboard/Grids.php b/app/code/core/Mage/Adminhtml/Block/Dashboard/Grids.php index 8a692a771934a1f19225e5093607b9e8fe01f214..fcf4c47cf3fa39cbea2f2f4e43abdadfbcfb64af 100644 --- a/app/code/core/Mage/Adminhtml/Block/Dashboard/Grids.php +++ b/app/code/core/Mage/Adminhtml/Block/Dashboard/Grids.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Dashboard/Orders/Grid.php b/app/code/core/Mage/Adminhtml/Block/Dashboard/Orders/Grid.php index e065b40a1dc390cf338c70f97e26d82576b0d97f..227e10fb8133776f7623d845f7a7e42adbd77454 100644 --- a/app/code/core/Mage/Adminhtml/Block/Dashboard/Orders/Grid.php +++ b/app/code/core/Mage/Adminhtml/Block/Dashboard/Orders/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Dashboard/Sales.php b/app/code/core/Mage/Adminhtml/Block/Dashboard/Sales.php index 5004ff7fe6a18da100fad1ac23b9b0605dc4f2fd..0a4569e194701f98cd30a71e7ea668126d848e1c 100644 --- a/app/code/core/Mage/Adminhtml/Block/Dashboard/Sales.php +++ b/app/code/core/Mage/Adminhtml/Block/Dashboard/Sales.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Dashboard/Searches/Last.php b/app/code/core/Mage/Adminhtml/Block/Dashboard/Searches/Last.php index 6eec97ed14a74ba0993ad6f62371656d1922b380..3db37024d7dcaf44eed5732f4e78babc9b523606 100644 --- a/app/code/core/Mage/Adminhtml/Block/Dashboard/Searches/Last.php +++ b/app/code/core/Mage/Adminhtml/Block/Dashboard/Searches/Last.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Dashboard/Searches/Renderer/Searchquery.php b/app/code/core/Mage/Adminhtml/Block/Dashboard/Searches/Renderer/Searchquery.php index 4e358945eeafed2dff3b99e99cdd34cb6f089ab6..f9a4f50475ea7a411f5439c532f54a84a846e1d2 100644 --- a/app/code/core/Mage/Adminhtml/Block/Dashboard/Searches/Renderer/Searchquery.php +++ b/app/code/core/Mage/Adminhtml/Block/Dashboard/Searches/Renderer/Searchquery.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Dashboard/Searches/Top.php b/app/code/core/Mage/Adminhtml/Block/Dashboard/Searches/Top.php index b9068be6e19f7f9b856ab2a4a3a0b231077fd357..e35ab39cfe1a4c507777dcbd95d6688c7ebd667b 100644 --- a/app/code/core/Mage/Adminhtml/Block/Dashboard/Searches/Top.php +++ b/app/code/core/Mage/Adminhtml/Block/Dashboard/Searches/Top.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Dashboard/Tab/Amounts.php b/app/code/core/Mage/Adminhtml/Block/Dashboard/Tab/Amounts.php index b608ba4a6c59e25cb75ed3e6b7e54a9998393694..2ebc4eb88027bc6792c0a4458e03cc507aa91304 100644 --- a/app/code/core/Mage/Adminhtml/Block/Dashboard/Tab/Amounts.php +++ b/app/code/core/Mage/Adminhtml/Block/Dashboard/Tab/Amounts.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Dashboard/Tab/Customers/Most.php b/app/code/core/Mage/Adminhtml/Block/Dashboard/Tab/Customers/Most.php index 7be0204d920f7023d8e1e858699ec149a3af4ca8..48f1befa1055b38d4e9a63604e121f164ea022b6 100644 --- a/app/code/core/Mage/Adminhtml/Block/Dashboard/Tab/Customers/Most.php +++ b/app/code/core/Mage/Adminhtml/Block/Dashboard/Tab/Customers/Most.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Dashboard/Tab/Customers/Newest.php b/app/code/core/Mage/Adminhtml/Block/Dashboard/Tab/Customers/Newest.php index 297098872c478196ae9295a81d89677bf4676993..0005720784e75f57f64a46a7dbfd819fdd32f392 100644 --- a/app/code/core/Mage/Adminhtml/Block/Dashboard/Tab/Customers/Newest.php +++ b/app/code/core/Mage/Adminhtml/Block/Dashboard/Tab/Customers/Newest.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Dashboard/Tab/Orders.php b/app/code/core/Mage/Adminhtml/Block/Dashboard/Tab/Orders.php index b593ecac5d9643085f1e6eae322fabc24b911e04..279cf477a175de6da8355a79482944a7c060d317 100644 --- a/app/code/core/Mage/Adminhtml/Block/Dashboard/Tab/Orders.php +++ b/app/code/core/Mage/Adminhtml/Block/Dashboard/Tab/Orders.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Dashboard/Tab/Products/Ordered.php b/app/code/core/Mage/Adminhtml/Block/Dashboard/Tab/Products/Ordered.php index badf550b34fba4f047e40bacf997454a42aded0d..dd59cef7568c8f0a62fd9f2549312f85a08afa87 100644 --- a/app/code/core/Mage/Adminhtml/Block/Dashboard/Tab/Products/Ordered.php +++ b/app/code/core/Mage/Adminhtml/Block/Dashboard/Tab/Products/Ordered.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Dashboard/Tab/Products/Viewed.php b/app/code/core/Mage/Adminhtml/Block/Dashboard/Tab/Products/Viewed.php index 2a8a880d0640507e99a7a38225e59ab252ffce5d..3f366a1835c18cc77b16e077009266c2f915b82f 100644 --- a/app/code/core/Mage/Adminhtml/Block/Dashboard/Tab/Products/Viewed.php +++ b/app/code/core/Mage/Adminhtml/Block/Dashboard/Tab/Products/Viewed.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Dashboard/Totals.php b/app/code/core/Mage/Adminhtml/Block/Dashboard/Totals.php index 72140b5d277cf2936a2978a370094facba8f7601..ad5b2266e02b3c3d2ee06cebd03a54a710629631 100644 --- a/app/code/core/Mage/Adminhtml/Block/Dashboard/Totals.php +++ b/app/code/core/Mage/Adminhtml/Block/Dashboard/Totals.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Denied.php b/app/code/core/Mage/Adminhtml/Block/Denied.php index 22c14b458f3219ec4635b79807f108304a2f8125..d1b1b8f0b1969b22d4238f6723a59916cd6b93c1 100644 --- a/app/code/core/Mage/Adminhtml/Block/Denied.php +++ b/app/code/core/Mage/Adminhtml/Block/Denied.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Html/Date.php b/app/code/core/Mage/Adminhtml/Block/Html/Date.php index eabafb59a9d077353e6a0908c1a93d7fd31ad3ff..f2057496fc52beb354ccc85bc4ab8ea634a2ef97 100644 --- a/app/code/core/Mage/Adminhtml/Block/Html/Date.php +++ b/app/code/core/Mage/Adminhtml/Block/Html/Date.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Html/Select.php b/app/code/core/Mage/Adminhtml/Block/Html/Select.php index 0a9d3e9af3af17d2b5937346a3ceb32da313dd56..7f41c1c581d25954e6ce796b0a2fcaf40657c306 100644 --- a/app/code/core/Mage/Adminhtml/Block/Html/Select.php +++ b/app/code/core/Mage/Adminhtml/Block/Html/Select.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Media/Uploader.php b/app/code/core/Mage/Adminhtml/Block/Media/Uploader.php index bd20e85d46e3fb369813fe378227f5fcf56b0423..e4f37691d89fe12646b693399a5e4cfc7dadb7cf 100644 --- a/app/code/core/Mage/Adminhtml/Block/Media/Uploader.php +++ b/app/code/core/Mage/Adminhtml/Block/Media/Uploader.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Messages.php b/app/code/core/Mage/Adminhtml/Block/Messages.php index 13375f5212323b9a6a6587ca05b51b8c95a2bf91..984ce5923d0ca1c59e9c9f92855476ba8fb68e68 100644 --- a/app/code/core/Mage/Adminhtml/Block/Messages.php +++ b/app/code/core/Mage/Adminhtml/Block/Messages.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Newsletter/Problem.php b/app/code/core/Mage/Adminhtml/Block/Newsletter/Problem.php index 8648a7f9258fb55cc3b4260f3b3cf33c7769954d..2c7b25b305bcfdf72bf401b45dc34aa111ee4b8e 100644 --- a/app/code/core/Mage/Adminhtml/Block/Newsletter/Problem.php +++ b/app/code/core/Mage/Adminhtml/Block/Newsletter/Problem.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Newsletter/Problem/Grid/Filter/Checkbox.php b/app/code/core/Mage/Adminhtml/Block/Newsletter/Problem/Grid/Filter/Checkbox.php index 0edd767e2a8df0a111368b53404e371615768940..c7c7a01e918b8594756e77867a8a11248ca43c0b 100644 --- a/app/code/core/Mage/Adminhtml/Block/Newsletter/Problem/Grid/Filter/Checkbox.php +++ b/app/code/core/Mage/Adminhtml/Block/Newsletter/Problem/Grid/Filter/Checkbox.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Newsletter/Problem/Grid/Renderer/Checkbox.php b/app/code/core/Mage/Adminhtml/Block/Newsletter/Problem/Grid/Renderer/Checkbox.php index 490d71df36d5de3d88db4f21cf4e720f3246fb10..053989c09572723718d4f54bcdd43dcb70a28492 100644 --- a/app/code/core/Mage/Adminhtml/Block/Newsletter/Problem/Grid/Renderer/Checkbox.php +++ b/app/code/core/Mage/Adminhtml/Block/Newsletter/Problem/Grid/Renderer/Checkbox.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Newsletter/Queue.php b/app/code/core/Mage/Adminhtml/Block/Newsletter/Queue.php index 4a856cda07df996758a29f4bfc5994aae3a1931b..5c87db86e03d256a5d0a46d79aee867f696b14eb 100644 --- a/app/code/core/Mage/Adminhtml/Block/Newsletter/Queue.php +++ b/app/code/core/Mage/Adminhtml/Block/Newsletter/Queue.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Newsletter/Queue/Edit.php b/app/code/core/Mage/Adminhtml/Block/Newsletter/Queue/Edit.php index eaef6de420b94131c1a977ad7dbbd83e78cf7575..df262eec1c4cdd8c057aa4cecb8801437371ca21 100644 --- a/app/code/core/Mage/Adminhtml/Block/Newsletter/Queue/Edit.php +++ b/app/code/core/Mage/Adminhtml/Block/Newsletter/Queue/Edit.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Newsletter/Queue/Edit/Form.php b/app/code/core/Mage/Adminhtml/Block/Newsletter/Queue/Edit/Form.php index 4825fdd0c9a49271e95f9018abf7d5cf00fa1e6b..3d5a43240ce2f31f621a1efc44b5faa43cbb45fa 100644 --- a/app/code/core/Mage/Adminhtml/Block/Newsletter/Queue/Edit/Form.php +++ b/app/code/core/Mage/Adminhtml/Block/Newsletter/Queue/Edit/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Newsletter/Queue/Grid.php b/app/code/core/Mage/Adminhtml/Block/Newsletter/Queue/Grid.php index 820377886b12e60cb863acf0ab3d1d074a62480f..4acc257749651c14b598ee5b030f6de6213039d8 100644 --- a/app/code/core/Mage/Adminhtml/Block/Newsletter/Queue/Grid.php +++ b/app/code/core/Mage/Adminhtml/Block/Newsletter/Queue/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Newsletter/Queue/Grid/Renderer/Action.php b/app/code/core/Mage/Adminhtml/Block/Newsletter/Queue/Grid/Renderer/Action.php index da28a6c831bc473c79b39600be0d86f44e276cca..7caf3d2fe5410c5b90b4f41a75f805615a0e0dc5 100644 --- a/app/code/core/Mage/Adminhtml/Block/Newsletter/Queue/Grid/Renderer/Action.php +++ b/app/code/core/Mage/Adminhtml/Block/Newsletter/Queue/Grid/Renderer/Action.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Newsletter/Queue/Preview.php b/app/code/core/Mage/Adminhtml/Block/Newsletter/Queue/Preview.php index 5f98646f93a916f81f26467e7e59d34e1a801a21..91f0d27eba7c1139d67cc7aa4340ed1fb589c039 100644 --- a/app/code/core/Mage/Adminhtml/Block/Newsletter/Queue/Preview.php +++ b/app/code/core/Mage/Adminhtml/Block/Newsletter/Queue/Preview.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Newsletter/Queue/Preview/Form.php b/app/code/core/Mage/Adminhtml/Block/Newsletter/Queue/Preview/Form.php index 8878d7631a38fd6fe8804cf77e25f1210a49f5f7..9ca40e495c519f2e4acf1f502c09753279c77304 100644 --- a/app/code/core/Mage/Adminhtml/Block/Newsletter/Queue/Preview/Form.php +++ b/app/code/core/Mage/Adminhtml/Block/Newsletter/Queue/Preview/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Newsletter/Subscriber.php b/app/code/core/Mage/Adminhtml/Block/Newsletter/Subscriber.php index b7173e79040659719dd902cea409e4083b92d033..2b05f371e8c5072311c2ea28cb2edc5cf95618b3 100644 --- a/app/code/core/Mage/Adminhtml/Block/Newsletter/Subscriber.php +++ b/app/code/core/Mage/Adminhtml/Block/Newsletter/Subscriber.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Newsletter/Subscriber/Grid.php b/app/code/core/Mage/Adminhtml/Block/Newsletter/Subscriber/Grid.php index a6863b8a395801f53f067bbff2d19f257c134446..dc7c8cebedd941e63fabadb054a4f6c2f59a252c 100644 --- a/app/code/core/Mage/Adminhtml/Block/Newsletter/Subscriber/Grid.php +++ b/app/code/core/Mage/Adminhtml/Block/Newsletter/Subscriber/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Newsletter/Subscriber/Grid/Filter/Checkbox.php b/app/code/core/Mage/Adminhtml/Block/Newsletter/Subscriber/Grid/Filter/Checkbox.php index 7bb128442d84d17b52e9f42c6c9b3d09513e7ab0..867a352304a9e6c32e7473305089299ce93d4634 100644 --- a/app/code/core/Mage/Adminhtml/Block/Newsletter/Subscriber/Grid/Filter/Checkbox.php +++ b/app/code/core/Mage/Adminhtml/Block/Newsletter/Subscriber/Grid/Filter/Checkbox.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Newsletter/Subscriber/Grid/Filter/Website.php b/app/code/core/Mage/Adminhtml/Block/Newsletter/Subscriber/Grid/Filter/Website.php index fc581ee96c2ac8a41d915977467e80eae52a1832..c9d80f9b9ca85fda2417096513e4e6473c0c4dc1 100644 --- a/app/code/core/Mage/Adminhtml/Block/Newsletter/Subscriber/Grid/Filter/Website.php +++ b/app/code/core/Mage/Adminhtml/Block/Newsletter/Subscriber/Grid/Filter/Website.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Newsletter/Subscriber/Grid/Renderer/Checkbox.php b/app/code/core/Mage/Adminhtml/Block/Newsletter/Subscriber/Grid/Renderer/Checkbox.php index 320785079b3e322ae4c9c3c58b066dbc0d57507d..b956ed07079dc5d72759ce2be395011e09a774d5 100644 --- a/app/code/core/Mage/Adminhtml/Block/Newsletter/Subscriber/Grid/Renderer/Checkbox.php +++ b/app/code/core/Mage/Adminhtml/Block/Newsletter/Subscriber/Grid/Renderer/Checkbox.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Newsletter/Template.php b/app/code/core/Mage/Adminhtml/Block/Newsletter/Template.php index 9a8a366fbda0f7997da07cff2ab56844de46c574..f943c9afe61ddbc9d15e63601ce98cb3034ae7a2 100644 --- a/app/code/core/Mage/Adminhtml/Block/Newsletter/Template.php +++ b/app/code/core/Mage/Adminhtml/Block/Newsletter/Template.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Newsletter/Template/Edit.php b/app/code/core/Mage/Adminhtml/Block/Newsletter/Template/Edit.php index 9c76f6043f2304e2d2401f03da4a1ede10b611ea..71e0ad271debb9bde4464eafbec2fe536b2a3bc3 100644 --- a/app/code/core/Mage/Adminhtml/Block/Newsletter/Template/Edit.php +++ b/app/code/core/Mage/Adminhtml/Block/Newsletter/Template/Edit.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Newsletter/Template/Edit/Form.php b/app/code/core/Mage/Adminhtml/Block/Newsletter/Template/Edit/Form.php index 847be5242911895e04c26693e160724695e306b2..7fa0341d920880f22951858caa4ff5d4285715b0 100644 --- a/app/code/core/Mage/Adminhtml/Block/Newsletter/Template/Edit/Form.php +++ b/app/code/core/Mage/Adminhtml/Block/Newsletter/Template/Edit/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Newsletter/Template/Grid.php b/app/code/core/Mage/Adminhtml/Block/Newsletter/Template/Grid.php index 901f327fa69b071f5f92604783fac4edf4bc3e98..c9c4fabc9c070be610033d50512a8f309cea9370 100644 --- a/app/code/core/Mage/Adminhtml/Block/Newsletter/Template/Grid.php +++ b/app/code/core/Mage/Adminhtml/Block/Newsletter/Template/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Newsletter/Template/Grid/Renderer/Action.php b/app/code/core/Mage/Adminhtml/Block/Newsletter/Template/Grid/Renderer/Action.php index b663f817dc8ece7e9d716206270323306573a5fb..55ac7ee7922933af92d0f9c9fec420fd34c966d7 100644 --- a/app/code/core/Mage/Adminhtml/Block/Newsletter/Template/Grid/Renderer/Action.php +++ b/app/code/core/Mage/Adminhtml/Block/Newsletter/Template/Grid/Renderer/Action.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Newsletter/Template/Grid/Renderer/Sender.php b/app/code/core/Mage/Adminhtml/Block/Newsletter/Template/Grid/Renderer/Sender.php index 2bf2685f9e2273375c565210dbfb66992936989f..d171bed41bbfafddc9dc2e796ce11f8f7832e718 100644 --- a/app/code/core/Mage/Adminhtml/Block/Newsletter/Template/Grid/Renderer/Sender.php +++ b/app/code/core/Mage/Adminhtml/Block/Newsletter/Template/Grid/Renderer/Sender.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Newsletter/Template/Preview.php b/app/code/core/Mage/Adminhtml/Block/Newsletter/Template/Preview.php index ad411d18558d7168dd496342b3c964b747f160a8..61a248064858d950bb36fdffe3a7df7e3cc64b0d 100644 --- a/app/code/core/Mage/Adminhtml/Block/Newsletter/Template/Preview.php +++ b/app/code/core/Mage/Adminhtml/Block/Newsletter/Template/Preview.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Newsletter/Template/Preview/Form.php b/app/code/core/Mage/Adminhtml/Block/Newsletter/Template/Preview/Form.php index 6e642adbf6948b727132f1148ff0b46f986aeeae..43e2a5217d0b9f8b35b0898ebeea4322ae918938 100644 --- a/app/code/core/Mage/Adminhtml/Block/Newsletter/Template/Preview/Form.php +++ b/app/code/core/Mage/Adminhtml/Block/Newsletter/Template/Preview/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Notification/Baseurl.php b/app/code/core/Mage/Adminhtml/Block/Notification/Baseurl.php index 42f145e9a17ea27b139dea3b70fbe72e63ce8e61..db427839100a62b957771cf682e2570613976b77 100644 --- a/app/code/core/Mage/Adminhtml/Block/Notification/Baseurl.php +++ b/app/code/core/Mage/Adminhtml/Block/Notification/Baseurl.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Notification/Grid.php b/app/code/core/Mage/Adminhtml/Block/Notification/Grid.php index fab800bbc7bb469657cc4c1a77b4b9e9fe5ae275..3c8b6779c2b01ce3ebc7d44429d13856d7e378ab 100644 --- a/app/code/core/Mage/Adminhtml/Block/Notification/Grid.php +++ b/app/code/core/Mage/Adminhtml/Block/Notification/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Notification/Grid/Renderer/Actions.php b/app/code/core/Mage/Adminhtml/Block/Notification/Grid/Renderer/Actions.php index b93a5d96081fa9257184f2af761ca9fbbeb43dda..bf4175b303ffcbc54d0868d57b62856434af5b8e 100644 --- a/app/code/core/Mage/Adminhtml/Block/Notification/Grid/Renderer/Actions.php +++ b/app/code/core/Mage/Adminhtml/Block/Notification/Grid/Renderer/Actions.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Notification/Grid/Renderer/Notice.php b/app/code/core/Mage/Adminhtml/Block/Notification/Grid/Renderer/Notice.php index d9713db8cdce375d429dd049fa5b9a78308fce73..0d47a9f560b893b101781eb771e0d6b393a15c31 100644 --- a/app/code/core/Mage/Adminhtml/Block/Notification/Grid/Renderer/Notice.php +++ b/app/code/core/Mage/Adminhtml/Block/Notification/Grid/Renderer/Notice.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Notification/Grid/Renderer/Severity.php b/app/code/core/Mage/Adminhtml/Block/Notification/Grid/Renderer/Severity.php index fe96a14a112ad1db8aeb92e560365422e66793ae..2fb36fd10ae30aa2808b24f15f1ea3fe64ac5ab0 100644 --- a/app/code/core/Mage/Adminhtml/Block/Notification/Grid/Renderer/Severity.php +++ b/app/code/core/Mage/Adminhtml/Block/Notification/Grid/Renderer/Severity.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Notification/Inbox.php b/app/code/core/Mage/Adminhtml/Block/Notification/Inbox.php index 4a70723be129af0950e8a702579ee18db256d5d8..e0dba6c34eb7af9d44f6575dcfcf0eb9c5b687ab 100644 --- a/app/code/core/Mage/Adminhtml/Block/Notification/Inbox.php +++ b/app/code/core/Mage/Adminhtml/Block/Notification/Inbox.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Notification/Security.php b/app/code/core/Mage/Adminhtml/Block/Notification/Security.php index 171f426d3b0f21f434ee8f2ad763773890f72ae2..0c1adefea44d2f0d75e453fa174982a5a028889d 100644 --- a/app/code/core/Mage/Adminhtml/Block/Notification/Security.php +++ b/app/code/core/Mage/Adminhtml/Block/Notification/Security.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Notification/Survey.php b/app/code/core/Mage/Adminhtml/Block/Notification/Survey.php index 52f8590f6e5713c20c5bf190c6b327f7a8426e10..90aaee18c303f855b372384c1b6e9aa5911ed2bc 100644 --- a/app/code/core/Mage/Adminhtml/Block/Notification/Survey.php +++ b/app/code/core/Mage/Adminhtml/Block/Notification/Survey.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Notification/Toolbar.php b/app/code/core/Mage/Adminhtml/Block/Notification/Toolbar.php index 98588b23d6eaaffec2502041c0c7c8c1488a5025..491a8ee901c0a5b85578a653119f38f24570de2c 100644 --- a/app/code/core/Mage/Adminhtml/Block/Notification/Toolbar.php +++ b/app/code/core/Mage/Adminhtml/Block/Notification/Toolbar.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Notification/Window.php b/app/code/core/Mage/Adminhtml/Block/Notification/Window.php index d60b45a4057d0ab3afdf13ec9dd34e1d55e9831f..700469a165a628a349e13297d3d9c07a0e998486 100644 --- a/app/code/core/Mage/Adminhtml/Block/Notification/Window.php +++ b/app/code/core/Mage/Adminhtml/Block/Notification/Window.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Page.php b/app/code/core/Mage/Adminhtml/Block/Page.php index 058c8a582b8ff2e34802068566d068ca175a8bc5..6381e9c224336b95eb5facfe19b001cc32992739 100644 --- a/app/code/core/Mage/Adminhtml/Block/Page.php +++ b/app/code/core/Mage/Adminhtml/Block/Page.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Page/Footer.php b/app/code/core/Mage/Adminhtml/Block/Page/Footer.php index 9f1cd4615770635b874c5b66aa979caa64efced7..e478fdffe24375aa3d4ea25137397e0288411fea 100644 --- a/app/code/core/Mage/Adminhtml/Block/Page/Footer.php +++ b/app/code/core/Mage/Adminhtml/Block/Page/Footer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Page/Head.php b/app/code/core/Mage/Adminhtml/Block/Page/Head.php index 09d4c3bf7817795812d30e80f7b529c85bfc3957..abf0eb53a4e96c5705cefcf6228a3408e758adca 100644 --- a/app/code/core/Mage/Adminhtml/Block/Page/Head.php +++ b/app/code/core/Mage/Adminhtml/Block/Page/Head.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Page/Header.php b/app/code/core/Mage/Adminhtml/Block/Page/Header.php index 6d281ae666bb17d43974cf4d5e65c47f7128f762..c12a215786c1bdb89489a922c77c0af03869662d 100644 --- a/app/code/core/Mage/Adminhtml/Block/Page/Header.php +++ b/app/code/core/Mage/Adminhtml/Block/Page/Header.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Page/Notices.php b/app/code/core/Mage/Adminhtml/Block/Page/Notices.php index 708ef2e64a1f9a0a3442728552fd7c880b720a95..b892dba68a5145aba01163c1cc1769cc18b99adc 100644 --- a/app/code/core/Mage/Adminhtml/Block/Page/Notices.php +++ b/app/code/core/Mage/Adminhtml/Block/Page/Notices.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Page/System/Config/Robots/Reset.php b/app/code/core/Mage/Adminhtml/Block/Page/System/Config/Robots/Reset.php index 5ec4479d7b8857179ac4315e9eded6a46711bb12..f54bfa3b73c281b3767ba840cf7054bb13dc1dd8 100644 --- a/app/code/core/Mage/Adminhtml/Block/Page/System/Config/Robots/Reset.php +++ b/app/code/core/Mage/Adminhtml/Block/Page/System/Config/Robots/Reset.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Poll/Answer/Edit.php b/app/code/core/Mage/Adminhtml/Block/Poll/Answer/Edit.php index b09f61a8277a344de67cc03043fed425656cc636..42fad26c9fbb479d83f1daf12612c822b951a458 100644 --- a/app/code/core/Mage/Adminhtml/Block/Poll/Answer/Edit.php +++ b/app/code/core/Mage/Adminhtml/Block/Poll/Answer/Edit.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Poll/Answer/Edit/Form.php b/app/code/core/Mage/Adminhtml/Block/Poll/Answer/Edit/Form.php index af7f66e69a52ee23568882a54a2c396e0b1a619b..fc33af0bb767e3671a9a2c26ad5e96136b93f9f1 100644 --- a/app/code/core/Mage/Adminhtml/Block/Poll/Answer/Edit/Form.php +++ b/app/code/core/Mage/Adminhtml/Block/Poll/Answer/Edit/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Poll/Edit.php b/app/code/core/Mage/Adminhtml/Block/Poll/Edit.php index 25413f91f835a1fc170af6c303920db920d517c7..d798ff38a9897f79650c9df4fa5afb36c7cf71b9 100644 --- a/app/code/core/Mage/Adminhtml/Block/Poll/Edit.php +++ b/app/code/core/Mage/Adminhtml/Block/Poll/Edit.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Poll/Edit/Form.php b/app/code/core/Mage/Adminhtml/Block/Poll/Edit/Form.php index 0b321be08fcd6c683c9ab6cb6548c05e16bb3251..1bb56350bb4f5bd57f7eaf282908d69c86136771 100644 --- a/app/code/core/Mage/Adminhtml/Block/Poll/Edit/Form.php +++ b/app/code/core/Mage/Adminhtml/Block/Poll/Edit/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Poll/Edit/Tab/Answers.php b/app/code/core/Mage/Adminhtml/Block/Poll/Edit/Tab/Answers.php index 1226f8eca67c7294abfc46bb9cdb455c91df0fee..913877aa37534ba17b541f9e5a4b94b1521d01a4 100644 --- a/app/code/core/Mage/Adminhtml/Block/Poll/Edit/Tab/Answers.php +++ b/app/code/core/Mage/Adminhtml/Block/Poll/Edit/Tab/Answers.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Poll/Edit/Tab/Answers/Form.php b/app/code/core/Mage/Adminhtml/Block/Poll/Edit/Tab/Answers/Form.php index a17cf68441e5384cc62123f0682ece92860c5f4a..0de436488b456062ae61c399772ca0b273fc9a2a 100644 --- a/app/code/core/Mage/Adminhtml/Block/Poll/Edit/Tab/Answers/Form.php +++ b/app/code/core/Mage/Adminhtml/Block/Poll/Edit/Tab/Answers/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Poll/Edit/Tab/Answers/Grid.php b/app/code/core/Mage/Adminhtml/Block/Poll/Edit/Tab/Answers/Grid.php index b8dff4ff3dd459524dce3105be216591d5263ddd..6b78e3a0038a23d469987c320300fffaf5618337 100644 --- a/app/code/core/Mage/Adminhtml/Block/Poll/Edit/Tab/Answers/Grid.php +++ b/app/code/core/Mage/Adminhtml/Block/Poll/Edit/Tab/Answers/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Poll/Edit/Tab/Answers/List.php b/app/code/core/Mage/Adminhtml/Block/Poll/Edit/Tab/Answers/List.php index f470aa596a596f66c7f9aaec0d027994e3d3e4fd..e7038ed029cef58f89380fe09cf22f065df2d837 100644 --- a/app/code/core/Mage/Adminhtml/Block/Poll/Edit/Tab/Answers/List.php +++ b/app/code/core/Mage/Adminhtml/Block/Poll/Edit/Tab/Answers/List.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Poll/Edit/Tab/Form.php b/app/code/core/Mage/Adminhtml/Block/Poll/Edit/Tab/Form.php index 7a2a0ee53a5f69b9a3799c8ca40e33aa66998b8b..29d9df3aeec3a65576850909a7d5a897b4f6046f 100644 --- a/app/code/core/Mage/Adminhtml/Block/Poll/Edit/Tab/Form.php +++ b/app/code/core/Mage/Adminhtml/Block/Poll/Edit/Tab/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Poll/Edit/Tabs.php b/app/code/core/Mage/Adminhtml/Block/Poll/Edit/Tabs.php index 699765fa625b9a9794a0f4fe307548c01bc18f70..629ce3cbeab7db6673c069e06d9eb0e5d9d4796f 100644 --- a/app/code/core/Mage/Adminhtml/Block/Poll/Edit/Tabs.php +++ b/app/code/core/Mage/Adminhtml/Block/Poll/Edit/Tabs.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Poll/Grid.php b/app/code/core/Mage/Adminhtml/Block/Poll/Grid.php index da42dd1edcc20ba6fe87af045e6082361561a4fd..d37d2ed4c28cb38c5983f07e94aa65e12211ca8c 100644 --- a/app/code/core/Mage/Adminhtml/Block/Poll/Grid.php +++ b/app/code/core/Mage/Adminhtml/Block/Poll/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Poll/Poll.php b/app/code/core/Mage/Adminhtml/Block/Poll/Poll.php index 6595eb61aa81e61c091ef46d3e2219de37d3a93a..dde83aeb3dc46f623ce2826d29016060876f4a77 100644 --- a/app/code/core/Mage/Adminhtml/Block/Poll/Poll.php +++ b/app/code/core/Mage/Adminhtml/Block/Poll/Poll.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Promo/Catalog.php b/app/code/core/Mage/Adminhtml/Block/Promo/Catalog.php index 0d1b61dc5daec2f6ed739576eafcca7890fa42f8..7386014a66cc8d72c43bb153249475ab0f2f53a0 100644 --- a/app/code/core/Mage/Adminhtml/Block/Promo/Catalog.php +++ b/app/code/core/Mage/Adminhtml/Block/Promo/Catalog.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Promo/Catalog/Edit.php b/app/code/core/Mage/Adminhtml/Block/Promo/Catalog/Edit.php index 7b563cba759845af9a0e3ff12ebec89c5497afb8..1c9a36b6309f42a234485e510a6bbeb2b61fb5b8 100644 --- a/app/code/core/Mage/Adminhtml/Block/Promo/Catalog/Edit.php +++ b/app/code/core/Mage/Adminhtml/Block/Promo/Catalog/Edit.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Promo/Catalog/Edit/Form.php b/app/code/core/Mage/Adminhtml/Block/Promo/Catalog/Edit/Form.php index 89a1d5f4d04be4eea3da324cb72b2505bcde28af..9dae0ffa809d0844a9003cdc10c4807b3b10bfd6 100644 --- a/app/code/core/Mage/Adminhtml/Block/Promo/Catalog/Edit/Form.php +++ b/app/code/core/Mage/Adminhtml/Block/Promo/Catalog/Edit/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Promo/Catalog/Edit/Js.php b/app/code/core/Mage/Adminhtml/Block/Promo/Catalog/Edit/Js.php index 9b2238ee4608a2a1fd15215bd55131e830b85ad7..3c07d60cebabba4162da2e60761291bd576c1d0b 100644 --- a/app/code/core/Mage/Adminhtml/Block/Promo/Catalog/Edit/Js.php +++ b/app/code/core/Mage/Adminhtml/Block/Promo/Catalog/Edit/Js.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Promo/Catalog/Edit/Tab/Actions.php b/app/code/core/Mage/Adminhtml/Block/Promo/Catalog/Edit/Tab/Actions.php index 28d32b302fac8c6267aeb5b7051187ab1a04bd96..e5685e696afe0b5ccbb8b384d56d0e0a1062bf65 100644 --- a/app/code/core/Mage/Adminhtml/Block/Promo/Catalog/Edit/Tab/Actions.php +++ b/app/code/core/Mage/Adminhtml/Block/Promo/Catalog/Edit/Tab/Actions.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Promo/Catalog/Edit/Tab/Conditions.php b/app/code/core/Mage/Adminhtml/Block/Promo/Catalog/Edit/Tab/Conditions.php index 23b4bff04fbcd303cb6a925f46406e433c611cd1..bf8e5de2ce6373cff0890322d6414ae1c35501c8 100644 --- a/app/code/core/Mage/Adminhtml/Block/Promo/Catalog/Edit/Tab/Conditions.php +++ b/app/code/core/Mage/Adminhtml/Block/Promo/Catalog/Edit/Tab/Conditions.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Promo/Catalog/Edit/Tab/Main.php b/app/code/core/Mage/Adminhtml/Block/Promo/Catalog/Edit/Tab/Main.php index a5f5da2b89209b80bd06e3c9f4f693dedb416a1c..b6cd1a62ccd6b2e478f2366be280af64a19a7157 100644 --- a/app/code/core/Mage/Adminhtml/Block/Promo/Catalog/Edit/Tab/Main.php +++ b/app/code/core/Mage/Adminhtml/Block/Promo/Catalog/Edit/Tab/Main.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Promo/Catalog/Edit/Tabs.php b/app/code/core/Mage/Adminhtml/Block/Promo/Catalog/Edit/Tabs.php index 24a8288221b87198721cba952089893b5358aeb7..a8207a6fe47eb089010875e4994e8f053ffa8cd9 100644 --- a/app/code/core/Mage/Adminhtml/Block/Promo/Catalog/Edit/Tabs.php +++ b/app/code/core/Mage/Adminhtml/Block/Promo/Catalog/Edit/Tabs.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Promo/Catalog/Grid.php b/app/code/core/Mage/Adminhtml/Block/Promo/Catalog/Grid.php index 2dfe5ea634ca42ef0431f48861395bb3e6bb7472..a7bc8ed1d213c4a8d182fab5b242ed6bf25377b9 100644 --- a/app/code/core/Mage/Adminhtml/Block/Promo/Catalog/Grid.php +++ b/app/code/core/Mage/Adminhtml/Block/Promo/Catalog/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Promo/Quote.php b/app/code/core/Mage/Adminhtml/Block/Promo/Quote.php index 60a1f044ce49e97466fea9cfcbaa1170975ba640..574689d83ba79456805847a5d2b7b644ac2844ad 100644 --- a/app/code/core/Mage/Adminhtml/Block/Promo/Quote.php +++ b/app/code/core/Mage/Adminhtml/Block/Promo/Quote.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Promo/Quote/Edit.php b/app/code/core/Mage/Adminhtml/Block/Promo/Quote/Edit.php index 59aef0f020585df0ab43ff7762f6cbf10fdd6f46..83b465225dfc29e59aaaf4edef80b123ad18887f 100644 --- a/app/code/core/Mage/Adminhtml/Block/Promo/Quote/Edit.php +++ b/app/code/core/Mage/Adminhtml/Block/Promo/Quote/Edit.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Promo/Quote/Edit/Form.php b/app/code/core/Mage/Adminhtml/Block/Promo/Quote/Edit/Form.php index 707755cb52629a7cfb5f9af263e89dd2e9ad629b..245a06c65d1e7980f5a370a7654bf9edd95c072c 100644 --- a/app/code/core/Mage/Adminhtml/Block/Promo/Quote/Edit/Form.php +++ b/app/code/core/Mage/Adminhtml/Block/Promo/Quote/Edit/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Promo/Quote/Edit/Tab/Actions.php b/app/code/core/Mage/Adminhtml/Block/Promo/Quote/Edit/Tab/Actions.php index 15691b508453cb8e34780c1234448fab376734ba..cab4317f51a96642c697ed4bbe25bb32d002d42d 100644 --- a/app/code/core/Mage/Adminhtml/Block/Promo/Quote/Edit/Tab/Actions.php +++ b/app/code/core/Mage/Adminhtml/Block/Promo/Quote/Edit/Tab/Actions.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Promo/Quote/Edit/Tab/Conditions.php b/app/code/core/Mage/Adminhtml/Block/Promo/Quote/Edit/Tab/Conditions.php index 2bdf3bfd8606e4218814832b674b807b4d1e17a8..dd90eac0a5ea8938d8fe36f68a92b0bec22a298e 100644 --- a/app/code/core/Mage/Adminhtml/Block/Promo/Quote/Edit/Tab/Conditions.php +++ b/app/code/core/Mage/Adminhtml/Block/Promo/Quote/Edit/Tab/Conditions.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Promo/Quote/Edit/Tab/Coupons.php b/app/code/core/Mage/Adminhtml/Block/Promo/Quote/Edit/Tab/Coupons.php index 86c22e39d341af94b8a3114534351b3af135b15b..bae7a2998f9e84e470f3096081be5492f5f19ef3 100644 --- a/app/code/core/Mage/Adminhtml/Block/Promo/Quote/Edit/Tab/Coupons.php +++ b/app/code/core/Mage/Adminhtml/Block/Promo/Quote/Edit/Tab/Coupons.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Promo/Quote/Edit/Tab/Coupons/Form.php b/app/code/core/Mage/Adminhtml/Block/Promo/Quote/Edit/Tab/Coupons/Form.php index 1c0752c271a728cda3884705b70f4ad6ff614bf0..450824efb173db228388c9e07abbad33e65bdce8 100644 --- a/app/code/core/Mage/Adminhtml/Block/Promo/Quote/Edit/Tab/Coupons/Form.php +++ b/app/code/core/Mage/Adminhtml/Block/Promo/Quote/Edit/Tab/Coupons/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Promo/Quote/Edit/Tab/Coupons/Grid.php b/app/code/core/Mage/Adminhtml/Block/Promo/Quote/Edit/Tab/Coupons/Grid.php index 6b09a66e12b6ecb99b0526698f5dc9c246ed092a..4745ea783c245d727014d50ad3bcd0daa0baa392 100644 --- a/app/code/core/Mage/Adminhtml/Block/Promo/Quote/Edit/Tab/Coupons/Grid.php +++ b/app/code/core/Mage/Adminhtml/Block/Promo/Quote/Edit/Tab/Coupons/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Promo/Quote/Edit/Tab/Coupons/Grid/Column/Renderer/Used.php b/app/code/core/Mage/Adminhtml/Block/Promo/Quote/Edit/Tab/Coupons/Grid/Column/Renderer/Used.php index dd4212658d88bb5c29f4cc5c4306728d0be762a1..eb8b39b91b48e9ced59570d04c9986925326bff0 100755 --- a/app/code/core/Mage/Adminhtml/Block/Promo/Quote/Edit/Tab/Coupons/Grid/Column/Renderer/Used.php +++ b/app/code/core/Mage/Adminhtml/Block/Promo/Quote/Edit/Tab/Coupons/Grid/Column/Renderer/Used.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Promo/Quote/Edit/Tab/Labels.php b/app/code/core/Mage/Adminhtml/Block/Promo/Quote/Edit/Tab/Labels.php index 5548ce0a1b5f0769ca0eb478335735fbdd9ffb59..413b39db04816fb44e45a2cd82b69ad0b527b218 100644 --- a/app/code/core/Mage/Adminhtml/Block/Promo/Quote/Edit/Tab/Labels.php +++ b/app/code/core/Mage/Adminhtml/Block/Promo/Quote/Edit/Tab/Labels.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Promo/Quote/Edit/Tab/Main.php b/app/code/core/Mage/Adminhtml/Block/Promo/Quote/Edit/Tab/Main.php index c27c46c71b6a2c3e382ea5092419a02fa5b39af9..bda1435a73c8266e2da16d708eca56a1dd3856fc 100644 --- a/app/code/core/Mage/Adminhtml/Block/Promo/Quote/Edit/Tab/Main.php +++ b/app/code/core/Mage/Adminhtml/Block/Promo/Quote/Edit/Tab/Main.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Promo/Quote/Edit/Tab/Main/Renderer/Checkbox.php b/app/code/core/Mage/Adminhtml/Block/Promo/Quote/Edit/Tab/Main/Renderer/Checkbox.php index a5b34d9e0f349c9cd35815a370c1603d108bc054..9066114ea7e7d126176bc38749217c1752d50452 100644 --- a/app/code/core/Mage/Adminhtml/Block/Promo/Quote/Edit/Tab/Main/Renderer/Checkbox.php +++ b/app/code/core/Mage/Adminhtml/Block/Promo/Quote/Edit/Tab/Main/Renderer/Checkbox.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Promo/Quote/Edit/Tabs.php b/app/code/core/Mage/Adminhtml/Block/Promo/Quote/Edit/Tabs.php index cac2273682063b276dd01252c2d67c9fdaf030a4..e945fb8b34b8f10832ea00af21503bd923579cb1 100644 --- a/app/code/core/Mage/Adminhtml/Block/Promo/Quote/Edit/Tabs.php +++ b/app/code/core/Mage/Adminhtml/Block/Promo/Quote/Edit/Tabs.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Promo/Quote/Grid.php b/app/code/core/Mage/Adminhtml/Block/Promo/Quote/Grid.php index e019209a2fb309fb0bb4989df40d009fc03d7b64..1c59ebc2593b2f3caf81134ef266283ec1601979 100644 --- a/app/code/core/Mage/Adminhtml/Block/Promo/Quote/Grid.php +++ b/app/code/core/Mage/Adminhtml/Block/Promo/Quote/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Promo/Widget/Chooser.php b/app/code/core/Mage/Adminhtml/Block/Promo/Widget/Chooser.php index 3151ea1870d0761e22e5f736cea329a54b4ca08a..c317f9ed88b997739d21169f5533211edb38766f 100644 --- a/app/code/core/Mage/Adminhtml/Block/Promo/Widget/Chooser.php +++ b/app/code/core/Mage/Adminhtml/Block/Promo/Widget/Chooser.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Promo/Widget/Chooser/Daterange.php b/app/code/core/Mage/Adminhtml/Block/Promo/Widget/Chooser/Daterange.php index e32e34df1da76d44f753d9dfd417ff2bf78cd0e9..3573522dc494739eb1aa9e49e0c8ab9b44d03e0b 100644 --- a/app/code/core/Mage/Adminhtml/Block/Promo/Widget/Chooser/Daterange.php +++ b/app/code/core/Mage/Adminhtml/Block/Promo/Widget/Chooser/Daterange.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Promo/Widget/Chooser/Sku.php b/app/code/core/Mage/Adminhtml/Block/Promo/Widget/Chooser/Sku.php index be1e854fe3ba467f64d303902d9386ca81b94fcf..b70bcc9c5580610fcc4b583269d4cb13a63d2ecc 100644 --- a/app/code/core/Mage/Adminhtml/Block/Promo/Widget/Chooser/Sku.php +++ b/app/code/core/Mage/Adminhtml/Block/Promo/Widget/Chooser/Sku.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Rating/Edit.php b/app/code/core/Mage/Adminhtml/Block/Rating/Edit.php index e3dc3b8fcfbddcc86640a7e462bbe00bb4de2057..30a9af19ec065af231e900f3da3868aaaa1fe158 100644 --- a/app/code/core/Mage/Adminhtml/Block/Rating/Edit.php +++ b/app/code/core/Mage/Adminhtml/Block/Rating/Edit.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Rating/Edit/Form.php b/app/code/core/Mage/Adminhtml/Block/Rating/Edit/Form.php index 0816dcc95c22a518fdc6c096b9b5294d1b1295ad..0c92b7c6bd7c3812a034b27cccdf52168a60de2e 100644 --- a/app/code/core/Mage/Adminhtml/Block/Rating/Edit/Form.php +++ b/app/code/core/Mage/Adminhtml/Block/Rating/Edit/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Rating/Edit/Tab/Form.php b/app/code/core/Mage/Adminhtml/Block/Rating/Edit/Tab/Form.php index 9bf6950972e8f7bfa43e0aa2b7db984e0823a2d8..994b211d1f44b2d8bd9e8251c11f0bd301c8ec91 100644 --- a/app/code/core/Mage/Adminhtml/Block/Rating/Edit/Tab/Form.php +++ b/app/code/core/Mage/Adminhtml/Block/Rating/Edit/Tab/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Rating/Edit/Tab/Options.php b/app/code/core/Mage/Adminhtml/Block/Rating/Edit/Tab/Options.php index 4271652447d2d425d964a8230b465b3f7e05b832..b0b72c2d65d34216d3a6687f1ed4e94b1f13aab9 100644 --- a/app/code/core/Mage/Adminhtml/Block/Rating/Edit/Tab/Options.php +++ b/app/code/core/Mage/Adminhtml/Block/Rating/Edit/Tab/Options.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Rating/Edit/Tabs.php b/app/code/core/Mage/Adminhtml/Block/Rating/Edit/Tabs.php index 80c9af116a418a5ab8f380e40adaa33154ae1e46..eb521cd6b47d7a76e241c45486846ae111e3d49d 100644 --- a/app/code/core/Mage/Adminhtml/Block/Rating/Edit/Tabs.php +++ b/app/code/core/Mage/Adminhtml/Block/Rating/Edit/Tabs.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Rating/Grid.php b/app/code/core/Mage/Adminhtml/Block/Rating/Grid.php index e1c43769f44e1d9003abac8850dcd26596976963..387a67a9c084ddc63d9c9966a30e72a27e8c80a4 100644 --- a/app/code/core/Mage/Adminhtml/Block/Rating/Grid.php +++ b/app/code/core/Mage/Adminhtml/Block/Rating/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Rating/Rating.php b/app/code/core/Mage/Adminhtml/Block/Rating/Rating.php index ba46158e9378e96c0b3050074b0ade780563f57b..ee5ed6a60a2527cf82c16ad57365f25d8de945f7 100644 --- a/app/code/core/Mage/Adminhtml/Block/Rating/Rating.php +++ b/app/code/core/Mage/Adminhtml/Block/Rating/Rating.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Report/Config/Form/Field/MtdStart.php b/app/code/core/Mage/Adminhtml/Block/Report/Config/Form/Field/MtdStart.php index b1d62a8151120f9c96df1244f380886eaa1433a6..afb8b70cd1d22fc9894867d440f2046346364d2f 100644 --- a/app/code/core/Mage/Adminhtml/Block/Report/Config/Form/Field/MtdStart.php +++ b/app/code/core/Mage/Adminhtml/Block/Report/Config/Form/Field/MtdStart.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Report/Config/Form/Field/YtdStart.php b/app/code/core/Mage/Adminhtml/Block/Report/Config/Form/Field/YtdStart.php index 6bd162187e9fb476c35908c358fa86227e2da6aa..86c54fdafeb89586a3058f69321cb54c7cd8fea9 100644 --- a/app/code/core/Mage/Adminhtml/Block/Report/Config/Form/Field/YtdStart.php +++ b/app/code/core/Mage/Adminhtml/Block/Report/Config/Form/Field/YtdStart.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Report/Filter/Form.php b/app/code/core/Mage/Adminhtml/Block/Report/Filter/Form.php index d06a5277a799c73fd410211671ceafcf852e48c5..5f1be88bfa1ead7d0ce30076085d0de33ee6bf86 100644 --- a/app/code/core/Mage/Adminhtml/Block/Report/Filter/Form.php +++ b/app/code/core/Mage/Adminhtml/Block/Report/Filter/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Report/Grid/Abstract.php b/app/code/core/Mage/Adminhtml/Block/Report/Grid/Abstract.php index 97be9f839566f999710dc390eeb3deac0925bbea..17315394545b7bc62d941990792bfcde6784af4d 100644 --- a/app/code/core/Mage/Adminhtml/Block/Report/Grid/Abstract.php +++ b/app/code/core/Mage/Adminhtml/Block/Report/Grid/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Report/Grid/Column/Renderer/Blanknumber.php b/app/code/core/Mage/Adminhtml/Block/Report/Grid/Column/Renderer/Blanknumber.php index f459cad1bec80d9210fd3ec1976b51b19f375bbc..0dec850abb1d4299ad27e7a3476d206588186bfb 100644 --- a/app/code/core/Mage/Adminhtml/Block/Report/Grid/Column/Renderer/Blanknumber.php +++ b/app/code/core/Mage/Adminhtml/Block/Report/Grid/Column/Renderer/Blanknumber.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Report/Grid/Column/Renderer/Currency.php b/app/code/core/Mage/Adminhtml/Block/Report/Grid/Column/Renderer/Currency.php index 040711a64ee859be992be6816dea8d4c9d31a3eb..daf638b32963c04322d1a9da296e2709567d7eb0 100644 --- a/app/code/core/Mage/Adminhtml/Block/Report/Grid/Column/Renderer/Currency.php +++ b/app/code/core/Mage/Adminhtml/Block/Report/Grid/Column/Renderer/Currency.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Report/Grid/Column/Renderer/Customer.php b/app/code/core/Mage/Adminhtml/Block/Report/Grid/Column/Renderer/Customer.php index 77a89c19a4b628788e60196a213be1f8c2b14d54..9e9228b72fe49fee4499caf4b79ede86b7d00fae 100644 --- a/app/code/core/Mage/Adminhtml/Block/Report/Grid/Column/Renderer/Customer.php +++ b/app/code/core/Mage/Adminhtml/Block/Report/Grid/Column/Renderer/Customer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Report/Grid/Column/Renderer/Product.php b/app/code/core/Mage/Adminhtml/Block/Report/Grid/Column/Renderer/Product.php index 0e9dbde36fd46a2b07558116ec6047c29ec3c4bf..aa905b59cf2edd0786f9a3a4896a43b1de6a5097 100644 --- a/app/code/core/Mage/Adminhtml/Block/Report/Grid/Column/Renderer/Product.php +++ b/app/code/core/Mage/Adminhtml/Block/Report/Grid/Column/Renderer/Product.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Report/Grid/Shopcart.php b/app/code/core/Mage/Adminhtml/Block/Report/Grid/Shopcart.php index 9f038dc99c9f48242ba253fc57b1b807c2e54f5c..34636da741e3a9b65dafbca3577bf6ef99d90f05 100644 --- a/app/code/core/Mage/Adminhtml/Block/Report/Grid/Shopcart.php +++ b/app/code/core/Mage/Adminhtml/Block/Report/Grid/Shopcart.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Report/Product.php b/app/code/core/Mage/Adminhtml/Block/Report/Product.php index 76dc14d0eecd9e739952cdb09ab52e4a0a67ce83..eccb15ce083991c0c8a6f7a6969a2712c2401182 100644 --- a/app/code/core/Mage/Adminhtml/Block/Report/Product.php +++ b/app/code/core/Mage/Adminhtml/Block/Report/Product.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Report/Product/Downloads.php b/app/code/core/Mage/Adminhtml/Block/Report/Product/Downloads.php index 9994623da004d95cd5dbcb52c929939d910eb560..4f18ea95b5f652998f86aaf5b15d4326350fe36b 100644 --- a/app/code/core/Mage/Adminhtml/Block/Report/Product/Downloads.php +++ b/app/code/core/Mage/Adminhtml/Block/Report/Product/Downloads.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Report/Product/Downloads/Grid.php b/app/code/core/Mage/Adminhtml/Block/Report/Product/Downloads/Grid.php index cdc3e32b1ef478db86004cbb5795354ff90b9df6..7e4dfae9023adce1b283df51baab99232a77db5d 100644 --- a/app/code/core/Mage/Adminhtml/Block/Report/Product/Downloads/Grid.php +++ b/app/code/core/Mage/Adminhtml/Block/Report/Product/Downloads/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Report/Product/Downloads/Renderer/Purchases.php b/app/code/core/Mage/Adminhtml/Block/Report/Product/Downloads/Renderer/Purchases.php index 605a86de3daf42e4335d25813785aac7835b4206..4a7e51caa390c7cac65097e069616be08bb35708 100644 --- a/app/code/core/Mage/Adminhtml/Block/Report/Product/Downloads/Renderer/Purchases.php +++ b/app/code/core/Mage/Adminhtml/Block/Report/Product/Downloads/Renderer/Purchases.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Report/Product/Grid.php b/app/code/core/Mage/Adminhtml/Block/Report/Product/Grid.php index dc0de545a70a31020d29da4d7aa69fd4b0974a62..7806ca14ac7699c21f3daa567243f24370ceed18 100644 --- a/app/code/core/Mage/Adminhtml/Block/Report/Product/Grid.php +++ b/app/code/core/Mage/Adminhtml/Block/Report/Product/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Report/Product/Lowstock.php b/app/code/core/Mage/Adminhtml/Block/Report/Product/Lowstock.php index 557eece3031b97010a992bac466e9ad318e75aff..d73d5bf2899ecdf32c0ef3401100c99cd7678a40 100644 --- a/app/code/core/Mage/Adminhtml/Block/Report/Product/Lowstock.php +++ b/app/code/core/Mage/Adminhtml/Block/Report/Product/Lowstock.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Report/Product/Lowstock/Grid.php b/app/code/core/Mage/Adminhtml/Block/Report/Product/Lowstock/Grid.php index 21a76420790a8f1ebeda6c90113f62009305f0eb..769a602cc2fa0a1b7a368058165ffb838844dec5 100644 --- a/app/code/core/Mage/Adminhtml/Block/Report/Product/Lowstock/Grid.php +++ b/app/code/core/Mage/Adminhtml/Block/Report/Product/Lowstock/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Report/Product/Viewed.php b/app/code/core/Mage/Adminhtml/Block/Report/Product/Viewed.php index 5a5d30abcaa70e5708b56cb99f43e40fb2e06860..a33d13886225e350231fff4070582d7ccaca4204 100644 --- a/app/code/core/Mage/Adminhtml/Block/Report/Product/Viewed.php +++ b/app/code/core/Mage/Adminhtml/Block/Report/Product/Viewed.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Report/Product/Viewed/Grid.php b/app/code/core/Mage/Adminhtml/Block/Report/Product/Viewed/Grid.php index 810cdde96e68838e876db23f6a2aba347b454636..696306f1b96fc1a5c62a3ec6238f290015f02b98 100644 --- a/app/code/core/Mage/Adminhtml/Block/Report/Product/Viewed/Grid.php +++ b/app/code/core/Mage/Adminhtml/Block/Report/Product/Viewed/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Report/Refresh/Statistics.php b/app/code/core/Mage/Adminhtml/Block/Report/Refresh/Statistics.php index 157735d2409fe023a2e64e07e70960b29641807f..c5bc4daf199ae03e8bbbd72c6445e90119b64e55 100644 --- a/app/code/core/Mage/Adminhtml/Block/Report/Refresh/Statistics.php +++ b/app/code/core/Mage/Adminhtml/Block/Report/Refresh/Statistics.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Report/Refresh/Statistics/Grid.php b/app/code/core/Mage/Adminhtml/Block/Report/Refresh/Statistics/Grid.php index 37928a7adcf1d6b0693c0e5890521c271210d304..78da314d39f31b967bb3921ac5cfeef83159de26 100644 --- a/app/code/core/Mage/Adminhtml/Block/Report/Refresh/Statistics/Grid.php +++ b/app/code/core/Mage/Adminhtml/Block/Report/Refresh/Statistics/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Report/Review/Customer.php b/app/code/core/Mage/Adminhtml/Block/Report/Review/Customer.php index ce8c9959ec82f4c4c03f3da6cb84dc6ce6d46ec2..f6cd47664bfad9139507bd5e47c0662d1009cbc8 100644 --- a/app/code/core/Mage/Adminhtml/Block/Report/Review/Customer.php +++ b/app/code/core/Mage/Adminhtml/Block/Report/Review/Customer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Report/Review/Detail.php b/app/code/core/Mage/Adminhtml/Block/Report/Review/Detail.php index 260499b6de0c0c73343b83f81b3b852603f51c8d..b82714985cbfbd8b6ba2cffc07518569665f45da 100644 --- a/app/code/core/Mage/Adminhtml/Block/Report/Review/Detail.php +++ b/app/code/core/Mage/Adminhtml/Block/Report/Review/Detail.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Report/Review/Detail/Grid.php b/app/code/core/Mage/Adminhtml/Block/Report/Review/Detail/Grid.php index 009bd8326e10a36c952471d550c503008e4e5c37..91045adbca2f8abcfa9ab2d6ec77db8014a090ed 100644 --- a/app/code/core/Mage/Adminhtml/Block/Report/Review/Detail/Grid.php +++ b/app/code/core/Mage/Adminhtml/Block/Report/Review/Detail/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Report/Review/Product.php b/app/code/core/Mage/Adminhtml/Block/Report/Review/Product.php index 212b64a83f49a67069207046509ac7ebfaa280b3..7ea18bc1be27e6391b19d59a6da4bc6c2698bc76 100644 --- a/app/code/core/Mage/Adminhtml/Block/Report/Review/Product.php +++ b/app/code/core/Mage/Adminhtml/Block/Report/Review/Product.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Report/Sales/Bestsellers.php b/app/code/core/Mage/Adminhtml/Block/Report/Sales/Bestsellers.php index 115ac3fb7b97a539f2e7a1d17257dbf2c1d56d1d..44483c5d083f5f5aac207ef379bbb11f2cda66a7 100644 --- a/app/code/core/Mage/Adminhtml/Block/Report/Sales/Bestsellers.php +++ b/app/code/core/Mage/Adminhtml/Block/Report/Sales/Bestsellers.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Report/Sales/Bestsellers/Grid.php b/app/code/core/Mage/Adminhtml/Block/Report/Sales/Bestsellers/Grid.php index c0abb21f25cdf9f849f132de4c4b1d00e84e47f8..ce85b633e5777ec529c1a5f5276d8798e3b5d743 100644 --- a/app/code/core/Mage/Adminhtml/Block/Report/Sales/Bestsellers/Grid.php +++ b/app/code/core/Mage/Adminhtml/Block/Report/Sales/Bestsellers/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Report/Sales/Coupons.php b/app/code/core/Mage/Adminhtml/Block/Report/Sales/Coupons.php index b3133c497aa2082e743282cd995860ede6dbaf58..51d35cdac910a7716d171ffecb97633387b09b57 100644 --- a/app/code/core/Mage/Adminhtml/Block/Report/Sales/Coupons.php +++ b/app/code/core/Mage/Adminhtml/Block/Report/Sales/Coupons.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Report/Sales/Coupons/Grid.php b/app/code/core/Mage/Adminhtml/Block/Report/Sales/Coupons/Grid.php index cb40bd6f2dd7cc395207267c7a09c7027aa26d90..4e92b26e887af551f968a31e45a12ee5e1c3e718 100644 --- a/app/code/core/Mage/Adminhtml/Block/Report/Sales/Coupons/Grid.php +++ b/app/code/core/Mage/Adminhtml/Block/Report/Sales/Coupons/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Report/Sales/Grid/Column/Renderer/Date.php b/app/code/core/Mage/Adminhtml/Block/Report/Sales/Grid/Column/Renderer/Date.php index 3fb42e79f86795eb48cc6463c694f993929ab208..151e3192b1233e2e31ed946b9e0aaabe235cb500 100644 --- a/app/code/core/Mage/Adminhtml/Block/Report/Sales/Grid/Column/Renderer/Date.php +++ b/app/code/core/Mage/Adminhtml/Block/Report/Sales/Grid/Column/Renderer/Date.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Report/Sales/Invoiced.php b/app/code/core/Mage/Adminhtml/Block/Report/Sales/Invoiced.php index 222f7fe68a412b3b48517f11a3d9d532d9f8b813..24e0f87dafdbb44ea2e8ebe8d378afbde27753bb 100644 --- a/app/code/core/Mage/Adminhtml/Block/Report/Sales/Invoiced.php +++ b/app/code/core/Mage/Adminhtml/Block/Report/Sales/Invoiced.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Report/Sales/Invoiced/Grid.php b/app/code/core/Mage/Adminhtml/Block/Report/Sales/Invoiced/Grid.php index ce52e11f77d7f48f67f2c8508d209a592bf7f1ae..5dd4d3b46b00438a8b78cc38c6f154b3c99bf5b1 100644 --- a/app/code/core/Mage/Adminhtml/Block/Report/Sales/Invoiced/Grid.php +++ b/app/code/core/Mage/Adminhtml/Block/Report/Sales/Invoiced/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Report/Sales/Refunded.php b/app/code/core/Mage/Adminhtml/Block/Report/Sales/Refunded.php index 44bdce259d9deecfbd78cee3037d9bd2530ffb9c..7d461db86a3dbf661331982592320cd68e6d865e 100644 --- a/app/code/core/Mage/Adminhtml/Block/Report/Sales/Refunded.php +++ b/app/code/core/Mage/Adminhtml/Block/Report/Sales/Refunded.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Report/Sales/Refunded/Grid.php b/app/code/core/Mage/Adminhtml/Block/Report/Sales/Refunded/Grid.php index 1019e08bf392b0b1924f1066b09c2cf168df5cd6..452b0be0c60bd725d5dadebc81349baecd26e525 100644 --- a/app/code/core/Mage/Adminhtml/Block/Report/Sales/Refunded/Grid.php +++ b/app/code/core/Mage/Adminhtml/Block/Report/Sales/Refunded/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Report/Sales/Sales.php b/app/code/core/Mage/Adminhtml/Block/Report/Sales/Sales.php index 9ef2cf448389c0110fd19c0674a3774d4b1af5be..1987379dc22a0cb0f5dc330be143ea4841d93b9c 100644 --- a/app/code/core/Mage/Adminhtml/Block/Report/Sales/Sales.php +++ b/app/code/core/Mage/Adminhtml/Block/Report/Sales/Sales.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Report/Sales/Sales/Grid.php b/app/code/core/Mage/Adminhtml/Block/Report/Sales/Sales/Grid.php index 91f529bfbf5172f25ca12458625ab22f34faaf9b..ade7c5db0c6e5a5fce507d23f020f80e3c0ab503 100644 --- a/app/code/core/Mage/Adminhtml/Block/Report/Sales/Sales/Grid.php +++ b/app/code/core/Mage/Adminhtml/Block/Report/Sales/Sales/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Report/Sales/Shipping.php b/app/code/core/Mage/Adminhtml/Block/Report/Sales/Shipping.php index 0ff804ba8a6369170f6c3f214b55bf073a944c59..20ee739781c619cd879284906ef0ba8673efa1d2 100644 --- a/app/code/core/Mage/Adminhtml/Block/Report/Sales/Shipping.php +++ b/app/code/core/Mage/Adminhtml/Block/Report/Sales/Shipping.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Report/Sales/Shipping/Grid.php b/app/code/core/Mage/Adminhtml/Block/Report/Sales/Shipping/Grid.php index 126e0fd8f8727a342e92fe34e2ecdd63811c05c6..ced90fa698005c24954ef6cb0e91515879f7028c 100644 --- a/app/code/core/Mage/Adminhtml/Block/Report/Sales/Shipping/Grid.php +++ b/app/code/core/Mage/Adminhtml/Block/Report/Sales/Shipping/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Report/Sales/Tax.php b/app/code/core/Mage/Adminhtml/Block/Report/Sales/Tax.php index 015ebe3878efc9e3fab48671867cc7362f68a6de..78b089742dda3710efc0ab343faf3c4da68145b4 100644 --- a/app/code/core/Mage/Adminhtml/Block/Report/Sales/Tax.php +++ b/app/code/core/Mage/Adminhtml/Block/Report/Sales/Tax.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Report/Sales/Tax/Grid.php b/app/code/core/Mage/Adminhtml/Block/Report/Sales/Tax/Grid.php index 6eb6d9ea5f0b11390dbc82dc71e34ae0b398b86d..b8955c589d155d8238474fd3bbc5553dd47229fe 100644 --- a/app/code/core/Mage/Adminhtml/Block/Report/Sales/Tax/Grid.php +++ b/app/code/core/Mage/Adminhtml/Block/Report/Sales/Tax/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Report/Search.php b/app/code/core/Mage/Adminhtml/Block/Report/Search.php index 290e26661b60eec9fda5c4df73cdbb88044e2514..a6d781d10b08ed881c785430cf37c4fc750258de 100644 --- a/app/code/core/Mage/Adminhtml/Block/Report/Search.php +++ b/app/code/core/Mage/Adminhtml/Block/Report/Search.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Report/Search/Grid.php b/app/code/core/Mage/Adminhtml/Block/Report/Search/Grid.php index 002877f24e9d4d61fa6f40fb15122c76c119d2ef..d17b6e1537559d5b5b74fced50be137096fca87f 100644 --- a/app/code/core/Mage/Adminhtml/Block/Report/Search/Grid.php +++ b/app/code/core/Mage/Adminhtml/Block/Report/Search/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Report/Shopcart/Abandoned.php b/app/code/core/Mage/Adminhtml/Block/Report/Shopcart/Abandoned.php index e836f1fb04d99378728ba4466d40ecc9e70278ef..4d98b360ecd14352aa4d42b856483fc2f05bfd49 100644 --- a/app/code/core/Mage/Adminhtml/Block/Report/Shopcart/Abandoned.php +++ b/app/code/core/Mage/Adminhtml/Block/Report/Shopcart/Abandoned.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Report/Shopcart/Abandoned/Grid.php b/app/code/core/Mage/Adminhtml/Block/Report/Shopcart/Abandoned/Grid.php index 59e7dad9011f550e9eecf77f158ff2505d93f1dc..d8f5d3bf494cbe313b27395a168dcb7207ac6d6a 100644 --- a/app/code/core/Mage/Adminhtml/Block/Report/Shopcart/Abandoned/Grid.php +++ b/app/code/core/Mage/Adminhtml/Block/Report/Shopcart/Abandoned/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Report/Shopcart/Customer.php b/app/code/core/Mage/Adminhtml/Block/Report/Shopcart/Customer.php index 05054c85ac7685898ec35ef95dc51bfe21cb1c9b..7e5b2bc98d7072c62125d125141f8d2a64f12f4a 100644 --- a/app/code/core/Mage/Adminhtml/Block/Report/Shopcart/Customer.php +++ b/app/code/core/Mage/Adminhtml/Block/Report/Shopcart/Customer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Report/Shopcart/Customer/Grid.php b/app/code/core/Mage/Adminhtml/Block/Report/Shopcart/Customer/Grid.php index fb752efac62b05b3480b653428703ebf885118a4..ae22e29d497d393113a5d92a1d49316cb92d2ff9 100644 --- a/app/code/core/Mage/Adminhtml/Block/Report/Shopcart/Customer/Grid.php +++ b/app/code/core/Mage/Adminhtml/Block/Report/Shopcart/Customer/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Report/Shopcart/Product.php b/app/code/core/Mage/Adminhtml/Block/Report/Shopcart/Product.php index 6ae473902d616e1b6e966a71fbca269c58577980..bf87d5540b6407b7f51da1b3718b254915a32388 100644 --- a/app/code/core/Mage/Adminhtml/Block/Report/Shopcart/Product.php +++ b/app/code/core/Mage/Adminhtml/Block/Report/Shopcart/Product.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Report/Shopcart/Product/Grid.php b/app/code/core/Mage/Adminhtml/Block/Report/Shopcart/Product/Grid.php index 65b6a2912c1d57ecb1fe06f4f12c633908d4a651..6531f02b379da7bd1490492a544c1615cfa5d064 100644 --- a/app/code/core/Mage/Adminhtml/Block/Report/Shopcart/Product/Grid.php +++ b/app/code/core/Mage/Adminhtml/Block/Report/Shopcart/Product/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Report/Wishlist.php b/app/code/core/Mage/Adminhtml/Block/Report/Wishlist.php index 6d1fa87fffe3cd3f99df507064dcffa30b73f42e..3f8ca5b674dc7d36f90735ab68ad86bf867420c5 100644 --- a/app/code/core/Mage/Adminhtml/Block/Report/Wishlist.php +++ b/app/code/core/Mage/Adminhtml/Block/Report/Wishlist.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Report/Wishlist/Grid.php b/app/code/core/Mage/Adminhtml/Block/Report/Wishlist/Grid.php index 989be5a453c17e5e22e528636fe1faad485cf4ff..3cfe588cea2fa52a29cc41becd87e7e6e6b50033 100644 --- a/app/code/core/Mage/Adminhtml/Block/Report/Wishlist/Grid.php +++ b/app/code/core/Mage/Adminhtml/Block/Report/Wishlist/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Review/Add.php b/app/code/core/Mage/Adminhtml/Block/Review/Add.php index 56bd01c2adfaa2d7d2fe09b27ea28b095572fd2d..9b61b73689f0899fd78cbf4985cf7e493488d94b 100644 --- a/app/code/core/Mage/Adminhtml/Block/Review/Add.php +++ b/app/code/core/Mage/Adminhtml/Block/Review/Add.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Review/Add/Form.php b/app/code/core/Mage/Adminhtml/Block/Review/Add/Form.php index b0a63d01b646c50e395ea75b228d453ebcdde6a4..09c2329807fc802635679395a225e170f26e7822 100644 --- a/app/code/core/Mage/Adminhtml/Block/Review/Add/Form.php +++ b/app/code/core/Mage/Adminhtml/Block/Review/Add/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Review/Edit.php b/app/code/core/Mage/Adminhtml/Block/Review/Edit.php index d316e0a0a59042cd4525ed98f6bed595e48b7727..04034dcdc0cc3c1ee4d9742549bbe78cabd10b64 100644 --- a/app/code/core/Mage/Adminhtml/Block/Review/Edit.php +++ b/app/code/core/Mage/Adminhtml/Block/Review/Edit.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Review/Edit/Form.php b/app/code/core/Mage/Adminhtml/Block/Review/Edit/Form.php index 5539454b6087c480b25240c5c5bbc587cc126f2b..07eabf3ee4bd7531565cdfc60a4b3ef12fff80f3 100644 --- a/app/code/core/Mage/Adminhtml/Block/Review/Edit/Form.php +++ b/app/code/core/Mage/Adminhtml/Block/Review/Edit/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Review/Grid.php b/app/code/core/Mage/Adminhtml/Block/Review/Grid.php index 38dedf1c327eba01edb548f4f9d1ffa5dbad6b84..3ab530b111ac1ecc18e103712dcc6966838aa303 100644 --- a/app/code/core/Mage/Adminhtml/Block/Review/Grid.php +++ b/app/code/core/Mage/Adminhtml/Block/Review/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Review/Grid/Filter/Type.php b/app/code/core/Mage/Adminhtml/Block/Review/Grid/Filter/Type.php index 58eea401bfb829e85fd2f89009286c113f7141f0..448de80112b81c895a36bd71f124d1daba5f0b20 100644 --- a/app/code/core/Mage/Adminhtml/Block/Review/Grid/Filter/Type.php +++ b/app/code/core/Mage/Adminhtml/Block/Review/Grid/Filter/Type.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Review/Grid/Renderer/Type.php b/app/code/core/Mage/Adminhtml/Block/Review/Grid/Renderer/Type.php index 6c16fbc1edddeaec9f87b9389b554feba133b8a4..4f6889e57b10f2f01eac60efa3c179b8f9c4af5a 100644 --- a/app/code/core/Mage/Adminhtml/Block/Review/Grid/Renderer/Type.php +++ b/app/code/core/Mage/Adminhtml/Block/Review/Grid/Renderer/Type.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Review/Main.php b/app/code/core/Mage/Adminhtml/Block/Review/Main.php index bf80a32e8f48ce6582a67baeb12d5408e5061da7..afb7d041b6866047762f5ef67caa1e26102359ff 100644 --- a/app/code/core/Mage/Adminhtml/Block/Review/Main.php +++ b/app/code/core/Mage/Adminhtml/Block/Review/Main.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Review/Product/Grid.php b/app/code/core/Mage/Adminhtml/Block/Review/Product/Grid.php index cba080aecf2e2af89c3db12118c123f13b92c952..c3388ce24286966f40a1ee584a0e1566121310cc 100644 --- a/app/code/core/Mage/Adminhtml/Block/Review/Product/Grid.php +++ b/app/code/core/Mage/Adminhtml/Block/Review/Product/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Review/Rating/Detailed.php b/app/code/core/Mage/Adminhtml/Block/Review/Rating/Detailed.php index 9e7cd224554e68f3b8b54e675061ed863a5a1f42..8821ee3c061db9712b38d60949b6e08a49405059 100644 --- a/app/code/core/Mage/Adminhtml/Block/Review/Rating/Detailed.php +++ b/app/code/core/Mage/Adminhtml/Block/Review/Rating/Detailed.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Review/Rating/Summary.php b/app/code/core/Mage/Adminhtml/Block/Review/Rating/Summary.php index 5b525eaa558f88bf77c256bad12e1d3b66abe16d..c7f1b2ee53b3fdb16fc4377062ed971159a589cf 100644 --- a/app/code/core/Mage/Adminhtml/Block/Review/Rating/Summary.php +++ b/app/code/core/Mage/Adminhtml/Block/Review/Rating/Summary.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Creditmemo.php b/app/code/core/Mage/Adminhtml/Block/Sales/Creditmemo.php index 8e5730cfaad4a08b28afb9e6cb3c6de1a0110006..158088c9556519748f41b41a302b5b8bc9c2ccb8 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Creditmemo.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Creditmemo.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Creditmemo/Grid.php b/app/code/core/Mage/Adminhtml/Block/Sales/Creditmemo/Grid.php index 3ddcbe84c8d137532433fd2481337b2cec840d76..5d5321f770208433d490ce09cf0af8908860ff83 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Creditmemo/Grid.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Creditmemo/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Invoice.php b/app/code/core/Mage/Adminhtml/Block/Sales/Invoice.php index e82efd84a336d15e2b46a6af0fa677da33a7bda4..65af54b4df494ffcc85c4adfc051bf66f225d1ad 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Invoice.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Invoice.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Invoice/Grid.php b/app/code/core/Mage/Adminhtml/Block/Sales/Invoice/Grid.php index e2a81fdf755700e620bd4d6e102f20405cd7581a..9568afb0dd37614a39cf962695231d0789eca8e8 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Invoice/Grid.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Invoice/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Items/Abstract.php b/app/code/core/Mage/Adminhtml/Block/Sales/Items/Abstract.php index e92970616dfec0c5d81f774f6a7c7d49cc8c604a..67d9c3f8e2c7a2c7a0d1271ecad4fd7e7a1ebc88 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Items/Abstract.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Items/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Items/Column/Default.php b/app/code/core/Mage/Adminhtml/Block/Sales/Items/Column/Default.php index 2688e433216d8099355b9ff00a7c60235466c4fc..8cc34572bb40c964b5b5e52199990a63bb1e2cbc 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Items/Column/Default.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Items/Column/Default.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Items/Column/Name.php b/app/code/core/Mage/Adminhtml/Block/Sales/Items/Column/Name.php index b1b771d59c41de17b73d79c9e12c3afa21021f2c..01b16b52eb761519ff85263103bd128ca54214c7 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Items/Column/Name.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Items/Column/Name.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Items/Column/Name/Grouped.php b/app/code/core/Mage/Adminhtml/Block/Sales/Items/Column/Name/Grouped.php index a1301d4b83fbed055d691745b40294d9bac63b29..13362b77739dd2b70380386094a15cf75a129e85 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Items/Column/Name/Grouped.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Items/Column/Name/Grouped.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Items/Column/Qty.php b/app/code/core/Mage/Adminhtml/Block/Sales/Items/Column/Qty.php index bc4d33ae4809221bde34a735f34724b41131f4a3..e4f3008910041a0e0cec5c0de773e8c9183a13ae 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Items/Column/Qty.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Items/Column/Qty.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Items/Renderer/Configurable.php b/app/code/core/Mage/Adminhtml/Block/Sales/Items/Renderer/Configurable.php index 756a99774d13e1e903981485fbc8348391d42376..075051c9c2583fff6d80d90c17ce5f89a9a67c8f 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Items/Renderer/Configurable.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Items/Renderer/Configurable.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Items/Renderer/Default.php b/app/code/core/Mage/Adminhtml/Block/Sales/Items/Renderer/Default.php index 0b41f719609cb4761f5768bc128eee12b318cf74..7cf3dee7fcea7b7212aaec0a7e35f498dde92600 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Items/Renderer/Default.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Items/Renderer/Default.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order.php index 525b7ba1004d2692f67b48c9b1fef62f65ded044..d2da3e1a8c51dad6b329c024012d3aec119829c9 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Abstract.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Abstract.php index 282e4a99aa876750b611669af5209b6ae7b5ac2b..76effba883e9d049dec3a74edde4f606a63d64bd 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Abstract.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Address.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Address.php index 44c5d38229440f02ea65a8069bdceaadce3d7ecd..de7005fc461c950acb2942930fa521d4ee7df1d1 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Address.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Address.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Address/Form.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Address/Form.php index 75803645a483bfa8194bb3a470cdfb1cd7acd4a6..c8c832b4fe999a4fd4b1dfdec7402eb7833ee941 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Address/Form.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Address/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Comments/View.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Comments/View.php index 73acfa67c781885e5969a85ec0d839e5a0419767..7324383be99ee8194329ec2fe1ccfd735a0ff1ce 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Comments/View.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Comments/View.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create.php index 2a993a28059f2bbfcb9e26d047b36f0623fd77d8..2381423e830ba44ab24b64322bcd00d423f215c1 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Abstract.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Abstract.php index fbc1f26a79db1809943898e4af46a0212279cf03..8ab62e73ef0d53f7b98a5db0001bdfcbcc2c5dbd 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Abstract.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Billing/Address.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Billing/Address.php index 6829ceac0c842ebbfa93868a17d4687bcccb9f65..2d7994a1f2674758f043c9a15d75cd4ec02fb424 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Billing/Address.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Billing/Address.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Billing/Method.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Billing/Method.php index 94291dddec1145df2582666da2c9cabf828eb745..dd87dcb70eb5cd5bc5f86d1287256666931e0f0f 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Billing/Method.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Billing/Method.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Billing/Method/Form.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Billing/Method/Form.php index c1520abbe53321d26affaccb06361331ff39f500..469fe78bf1f420da23e32e9788e8654577c0af17 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Billing/Method/Form.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Billing/Method/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Comment.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Comment.php index a0d64f4835775fa23b5130a2f2b57aae55eb7cc3..9ef2a129f30d296be1e7846ccc2096fa1b898e81 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Comment.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Comment.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Coupons.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Coupons.php index a533ec01a71e733b24d7178873710e581df0b7e6..362a16c50a3657ca48a3cab42731dda25870148d 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Coupons.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Coupons.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Coupons/Form.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Coupons/Form.php index 8ab256f1ca052f85a8a26d068278698887b9b056..a66b35b6cc32cc05281f843017c975ec45a072e5 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Coupons/Form.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Coupons/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Customer.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Customer.php index 75fada40b3296241d2d3b4624160d3a64fa1b321..9fbc6290c7f78d1b19d3c6eb8ff87aa470a0016d 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Customer.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Customer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Customer/Grid.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Customer/Grid.php index 06620dcd4bd73947efadfddeae5fd14a887a1acb..205124832fd30d2e402c9db73f340d6694994f72 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Customer/Grid.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Customer/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Data.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Data.php index e74086fb7f1c5e343ee2cacf5150103f1e0dbcfb..91e973d62448d7b525a59382c54cd5891cade7f9 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Data.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Data.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Form.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Form.php index 2199cb71a554ad7f2bd9bbe1937d5bd9ea2c47fe..0900b41fa8f04d54e18d188f267760885aa122b9 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Form.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Form/Abstract.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Form/Abstract.php index 13d2cf755fbbdc6bad9dae817fb72a9f06337c0c..18d9f5b542bcec9a0083dd43562e6bcb3ab9c7a1 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Form/Abstract.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Form/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Form/Account.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Form/Account.php index c554f7b972abe27e165f5c118f3d41cfc49be372..6c2ce299d1059c96928d8a1dc063a66f0ec6a7ff 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Form/Account.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Form/Account.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Form/Address.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Form/Address.php index 736f02ebd232eccb16e755fdea10ee73b014fae3..ddec3cb6bf17ac0d4cbbf7d041b479a0830421e0 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Form/Address.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Form/Address.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Giftmessage.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Giftmessage.php index 3a0e3d4573cd496d4530eec5e9aefdf20a16db41..d875d18725db3a3d293aa5ff7714c64048e8168d 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Giftmessage.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Giftmessage.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Giftmessage/Form.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Giftmessage/Form.php index 783364b1c2d0e6b4cf346648a87f32c0585e192e..12d82e5cba5b4523c602d83bd5cfc18cb09c2646 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Giftmessage/Form.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Giftmessage/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Header.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Header.php index 98bbf2302d2f40f56696b80c638fda58a82c5742..cd41790847f50fecf671ea35ff81f806d9df294b 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Header.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Header.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Items.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Items.php index 99ad639fd54489b78ca67be31a1b470114ef6e41..9b682b3244f5845d9ec1c64f07125d1af0242567 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Items.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Items.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Items/Grid.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Items/Grid.php index 267edb93dc9356265b87d1076ac003e03b2b89dc..c8eb58a505e6a020f128ce64fbb32a0806d89e58 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Items/Grid.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Items/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Load.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Load.php index dba2c43ad2522c633fe2116ac87a32c5f3670707..18f6a8a04d1ea3032679cdd7acb2fe4e2804fe64 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Load.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Load.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Messages.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Messages.php index 006fbb32b2b36796aea7b967fa0ba8a9d7c1ea47..d650589a44fe80b24593701b932cf835fd013f66 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Messages.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Messages.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Newsletter.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Newsletter.php index b3eae5c7c4cc38e4b7c09dc8a62c8b409431ef94..b9d583e070a091191ee2a14e9a834b2fbc4b2266 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Newsletter.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Newsletter.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Newsletter/Form.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Newsletter/Form.php index 086256e69f14101d9b46d6d2925519b253b91772..883b961d98513e2f4354bcd37055b3e3e756611a 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Newsletter/Form.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Newsletter/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Search.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Search.php index c80e798aca4cbc0cec79e08832bd040661dca46f..6d5888d66b9b21d03ae7f07367442b82e9317d36 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Search.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Search.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Search/Grid.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Search/Grid.php index afebd0b61ebf2f78871c678cd683b106f7a6d85b..c95968b3d90f37b760644f1061758782a922089b 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Search/Grid.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Search/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Search/Grid/Renderer/Price.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Search/Grid/Renderer/Price.php index f7f0844fd9f163b0e033af85289e19ef15564b1f..953a1b98cf25e519ca12cfab47d23302d45b9009 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Search/Grid/Renderer/Price.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Search/Grid/Renderer/Price.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Search/Grid/Renderer/Product.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Search/Grid/Renderer/Product.php index 403a6a071ab7891be5bafc144d5b01e56ead71dd..918ccfde892dd60d55251a64fc349f19de465f4d 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Search/Grid/Renderer/Product.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Search/Grid/Renderer/Product.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Search/Grid/Renderer/Qty.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Search/Grid/Renderer/Qty.php index b51eacf18596625345c2a95d58b61929020b4833..ee2fa1669be022a9f5ca54c5ac54a3139a93c257 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Search/Grid/Renderer/Qty.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Search/Grid/Renderer/Qty.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Shipping/Address.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Shipping/Address.php index 7e35a49d46867a8e671149463afaf57450992d8e..6b4a92975211a3025cc9ada5f44c451e7aa3d7e4 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Shipping/Address.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Shipping/Address.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Shipping/Method.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Shipping/Method.php index d1a8266399556e6036060e1d425025d9ae5a1a6a..7e530069bd87140bf47a824ef690aced0f364833 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Shipping/Method.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Shipping/Method.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Shipping/Method/Form.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Shipping/Method/Form.php index da33b1507b34afa3392d70835b5f797f8497bd7f..56dfb397afe011e7edd8c77bf929ddc8e3f162c1 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Shipping/Method/Form.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Shipping/Method/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Sidebar.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Sidebar.php index 5c3536266738644e847e45ce84481aac5e6e25da..01179106eb44fc69dbd5dc4a2c89b80775f26e37 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Sidebar.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Sidebar.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Sidebar/Abstract.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Sidebar/Abstract.php index 8718c244376d4db1ac73f68ce56ef8541054dd64..f67770c8b504acab2f931c38c8c1091e0c912cf8 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Sidebar/Abstract.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Sidebar/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Sidebar/Cart.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Sidebar/Cart.php index e8a63f145283f2d203ea69541280918d735e4421..55e679877d3c657a11f0e9875b55628166c04f1c 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Sidebar/Cart.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Sidebar/Cart.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Sidebar/Compared.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Sidebar/Compared.php index c0be4fd73ae98ab45fbe306ae157213691320d71..1cc7bef90da408aa05c7b4cfcbb9283da04c3f6f 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Sidebar/Compared.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Sidebar/Compared.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Sidebar/Pcompared.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Sidebar/Pcompared.php index 7b649bed06e28a9f9d98a6cb8d9fc6c8ac485d1e..640b62836e50d399f3cd64ceccfb0dd7ed38c027 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Sidebar/Pcompared.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Sidebar/Pcompared.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Sidebar/Pviewed.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Sidebar/Pviewed.php index cb6da3af52bf918acca51df6d5f86a55ced2eb9e..2b148ef5bb386eabe1910cef1ebdf3113ce752b1 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Sidebar/Pviewed.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Sidebar/Pviewed.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Sidebar/Reorder.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Sidebar/Reorder.php index b0eefa326ed47c2dd333de59c7754ca5112c5efb..57b9a71a5b4d7639f5428bcdebee0f3e58a93272 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Sidebar/Reorder.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Sidebar/Reorder.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Sidebar/Viewed.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Sidebar/Viewed.php index 12becbdb522394d759aa434609302b78617e7010..e62c3baac37198897222deb9622aba5f90ac3519 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Sidebar/Viewed.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Sidebar/Viewed.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Sidebar/Wishlist.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Sidebar/Wishlist.php index ebe111f94f0e40ac5efbc064554aa8147f547150..9354e30bbffe0a70c91906d02df6caf703dcc18e 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Sidebar/Wishlist.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Sidebar/Wishlist.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Store.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Store.php index 22e181e3d198cc8a95b56545d7f0185c96d7b1f3..704c0b7cf1993fa8ce50ca73f0107cf22457131e 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Store.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Store.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Store/Select.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Store/Select.php index 926c90811dd2c417c634f3c24bfb0c370554a588..399e71104208de5f9feacc6c3a91a645f49008b4 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Store/Select.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Store/Select.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Totals.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Totals.php index da20a68ab6780c3da7a9ad8cdb60fa0d75ca8ebf..8b54e13f5f2711cb1a84d5fb1767d3bfd659dd4d 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Totals.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Totals.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Totals/Default.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Totals/Default.php index d5bdb7d611af3921159de0e46f61b59b9282f02d..ec19be5ab5f6ef4d9f691cc347619c430587712f 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Totals/Default.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Totals/Default.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Totals/Discount.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Totals/Discount.php index eb5a2a6ef5b7c3f00cfb4de757e3c227a966e58f..cb08af80dea30947367c66201edd8d6b89253971 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Totals/Discount.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Totals/Discount.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Totals/Grandtotal.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Totals/Grandtotal.php index 6c6f797dd4acd5983d87675f883becf856dc4655..45e72c8e90bbf2d89c54e3a02b78d9fd666cb396 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Totals/Grandtotal.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Totals/Grandtotal.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Totals/Shipping.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Totals/Shipping.php index 3dbdd150e4b5cf33b888b688e56bda0b687c3b39..d6ccfb4784ed92266888d94bd5f52206305d77a8 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Totals/Shipping.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Totals/Shipping.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Totals/Subtotal.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Totals/Subtotal.php index 52164fac67874cf1fe27cede1d09b69d03d82296..c75553e68bd50c4a445c2b51258208218f4a41e8 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Totals/Subtotal.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Totals/Subtotal.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Totals/Table.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Totals/Table.php index ba1a95806c9cffcccefc8d5e8fe074495d65147e..dba4ee1907bda203f088d34558021ebcfff0d7af 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Totals/Table.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Totals/Table.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Totals/Tax.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Totals/Tax.php index 98ea239ce276b92cf9cf7e418eb121622a6c69c7..baa9e1c346204c25b5971b1ed939b06e3c9e3517 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Totals/Tax.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Totals/Tax.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Creditmemo/Create.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Creditmemo/Create.php index 74e7899fd437f8cdb60605262a3a4e80da0f5851..2bd9f6b11955b2c2de688a1cc9b50d0431b4da01 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Creditmemo/Create.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Creditmemo/Create.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Creditmemo/Create/Adjustments.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Creditmemo/Create/Adjustments.php index a34b6e68c9a2c7dfbfae2123ba0e919a58d3cabc..de838ba9b8f98a539e91f70d5b2d86314c696574 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Creditmemo/Create/Adjustments.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Creditmemo/Create/Adjustments.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Adminhtml_Block_Sales_Order_Creditmemo_Create_Adjustments extends Mage_Adminhtml_Block_Template diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Creditmemo/Create/Form.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Creditmemo/Create/Form.php index 5f1d5c1ae2961a09bd20a04752a082b1bb78f796..c59b4db082431adaa3f7dedf7c866ec757d13657 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Creditmemo/Create/Form.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Creditmemo/Create/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Creditmemo/Create/Items.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Creditmemo/Create/Items.php index 6aa376d6c7c641bd53df893bdabd6f99048b9d4f..6f57b4662e61cf7c082b69fd4b748872cd9c3033 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Creditmemo/Create/Items.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Creditmemo/Create/Items.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Creditmemo/Totals.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Creditmemo/Totals.php index cebcdece4ba887e39a5ca821f8401c9e70b93736..c7d3ca3ec21899b8ea06a05f92052079cb1f7983 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Creditmemo/Totals.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Creditmemo/Totals.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Creditmemo/View.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Creditmemo/View.php index d481bb5b768cf27a3573bc19c0ca65e6f2bd3944..5f9f5b33a0699eb71cd49567ddcc6701324ad8c3 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Creditmemo/View.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Creditmemo/View.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Creditmemo/View/Comments.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Creditmemo/View/Comments.php index 3682a24f92a1e126d25d053536ac6eafdc952964..3d56e8d9a3eeef81566ae2f245a028e65b3ab705 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Creditmemo/View/Comments.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Creditmemo/View/Comments.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Creditmemo/View/Form.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Creditmemo/View/Form.php index 7102318d1fccc89f9ae29b1311488a1a381667af..ec09b3cd271322c12684b5b678bd28d2f637d4a9 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Creditmemo/View/Form.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Creditmemo/View/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Creditmemo/View/Items.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Creditmemo/View/Items.php index d4eee55f10fc218d4e6fd99fd48842df18d2e2a1..e2fb588ebc9e9a44397cfaf00b15d170bf9ee5b3 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Creditmemo/View/Items.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Creditmemo/View/Items.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Grid.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Grid.php index 752988342093e8c843c64387cc1ed152c72da0aa..d6bbf664e3440c2597dd67c2005a830cdcaf5fcb 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Grid.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Invoice/Create.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Invoice/Create.php index 9419e350f2cef1ab9a9e42ba7276d819ad399ce2..080cbe6e241fb615609f8ab41582e3a7db553401 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Invoice/Create.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Invoice/Create.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Invoice/Create/Form.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Invoice/Create/Form.php index a6cf419e966937f7088e23b3e48b393dcc80b513..f2d7a2e6f5908d2e461a95bc1fac6ea00aa7cb7d 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Invoice/Create/Form.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Invoice/Create/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Invoice/Create/Items.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Invoice/Create/Items.php index f7bdd62465324113fbcd0227916d0efe0c45a524..9effb90e452183cbe3afac1024541ef0cca8ae92 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Invoice/Create/Items.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Invoice/Create/Items.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Invoice/Create/Tracking.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Invoice/Create/Tracking.php index 4bbccb984dcca3e3c218daa672e210f721595862..7dc25e3002b7cbb388ce39da4e20dc9448c724bf 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Invoice/Create/Tracking.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Invoice/Create/Tracking.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Invoice/Totals.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Invoice/Totals.php index 4acd59041c4f28aed1b4cc8a6b5eaf0a47b668b9..3927e0805edde1f43c12ad58081e7029b7ed1143 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Invoice/Totals.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Invoice/Totals.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Invoice/View.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Invoice/View.php index 1c4ec031024a167e57b83ddcdefeadf0271941c9..d684622be22ae3ff9996074f8f5f386224a81d55 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Invoice/View.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Invoice/View.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Invoice/View/Comments.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Invoice/View/Comments.php index 041066db94461393d3d78a22854a889afcdf8092..e03b0c7171ee38911fdf3f423bb2e7b6e86d04fb 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Invoice/View/Comments.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Invoice/View/Comments.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Invoice/View/Form.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Invoice/View/Form.php index f682c945c5e221e911c5826a3fc974e7aba765ba..81f0f3db170264dbc9f5681b52c86f8207f1e843 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Invoice/View/Form.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Invoice/View/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Invoice/View/Items.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Invoice/View/Items.php index e4b2398bf4e153f8079ae16d279abb1d1ca11973..4c801ac08c61c119a09041af7a0b8a5bda193e37 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Invoice/View/Items.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Invoice/View/Items.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Payment.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Payment.php index 41caf9d11980ba3dc31daa935eacd88a24adeabf..36a1b3559943808a82bc2aa0adf8ce2b243b5083 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Payment.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Payment.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/Create.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/Create.php index 2a62c4538ba634bf34fb68334d0f3e88a445bf0c..8867ec5eef20de4c47fd37b724ca4a02be5d9814 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/Create.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/Create.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/Create/Form.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/Create/Form.php index 0a592cac8efc4244be9213b0745a51ae9d4e0cff..61499b9345b92e261e8032a03a3ffdc46a4eb52c 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/Create/Form.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/Create/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/Create/Items.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/Create/Items.php index a25623f2e80725b6432c2dbc21166df294d16cec..0860e68c2abfcd1a327bf5e9ff5b9a83677476a2 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/Create/Items.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/Create/Items.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/Create/Tracking.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/Create/Tracking.php index 84109fce622b49c2ee97b715368dfca353c85780..03d2afcb8b8fe2b54aff5797bd5ae8e139d199b7 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/Create/Tracking.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/Create/Tracking.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/Packaging.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/Packaging.php index 15d99bc9a93bf0abdf5d49ebf630fa78f5248a07..b47c471082153634b98585830792c3f7358a7a06 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/Packaging.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/Packaging.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/Packaging/Grid.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/Packaging/Grid.php index 38319b89a0c439133c71fa1680534c1f089f32cb..367468f366fe9a68be17baa8d50ddc1a7ead57e4 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/Packaging/Grid.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/Packaging/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Bundle - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/Tracking/Info.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/Tracking/Info.php index 2b25127d4a1889ad7f9fdd8de6d49ed103f4e860..ddd4595693510c649706e7c8f4929c44069cb6f4 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/Tracking/Info.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/Tracking/Info.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/View.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/View.php index 8bd2083ef8e840e137686e506c77f8f44de77546..49ab3385041b616a589fb09752e719896e116672 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/View.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/View.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/View/Comments.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/View/Comments.php index b2243342187d626ff9b48ae4f7e40619449ca276..91a933bca3448a3d02a9ac18f7c609265ff287e4 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/View/Comments.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/View/Comments.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/View/Form.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/View/Form.php index df2e584c1cd783ed1f1bfe31e6f5cc5c3e017fc1..d3ce59d6bb3d1d2ebc60fbfc92420023e55e91c3 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/View/Form.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/View/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/View/Items.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/View/Items.php index 5fd37a5d550f8ebfec13c6f1edfc589df6ab378b..6d02a5c91d9378f914e53f72cf5e243b98bf3683 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/View/Items.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/View/Items.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/View/Tracking.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/View/Tracking.php index 14612a9b907dd603e45e2d3946a27f6e83b18845..4b37f7a8a8d7d41feb653d481abfbc03571dbc4e 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/View/Tracking.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/View/Tracking.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Status.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Status.php index 12e708194bfdb3b5719da83804d6ea389919eece..4bbbe2e6422a06190e62a110ff8ae3ef7d51a480 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Status.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Status.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Status/Assign.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Status/Assign.php index c5b73e93efec3fe521d8788d06040f53c28618e0..ab2e2f3c47be9ed2a6a8579f46eb232ba151deed 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Status/Assign.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Status/Assign.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Status/Assign/Form.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Status/Assign/Form.php index e7f0b4c56b4fcde6cb0a2096dfee8c9a6aaa3593..38e5310f4cd1d148debb867ccedf10cc23a47347 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Status/Assign/Form.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Status/Assign/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Status/Edit.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Status/Edit.php index c9531f35a384625f31d092619399898b03c3174f..778c0e9151eb93b265fadcb2a3a3aa2069d4062d 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Status/Edit.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Status/Edit.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Status/Edit/Form.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Status/Edit/Form.php index b50790d0aba15635275d2ab772209ce9f777907e..7da893c4bc7e5e605cf7944207295d7575cf96da 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Status/Edit/Form.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Status/Edit/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Status/Grid.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Status/Grid.php index 9f867aca550e3168d44dce872e3fd558825ce6fa..96d9749d74362407ca720a6ae8418bd26fbf19b9 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Status/Grid.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Status/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Status/New.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Status/New.php index 18d328557933ebfd0a83840de3c387f534dd97fc..e0b1a375c14dea7fdb5c3eef8ed61e4a37feaac9 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Status/New.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Status/New.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Status/New/Form.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Status/New/Form.php index d821d24b43c5bb1596cbdef42743fb16ec707cad..394ac7c66ae319f4063282204eeca2dc734c9500 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Status/New/Form.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Status/New/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Totalbar.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Totalbar.php index ad9d276c37a4f86fe46c8bf29463f529e7e4b032..4b639a163a33e44c7c4a3927f249475d61dfaa89 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Totalbar.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Totalbar.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Totals.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Totals.php index 7c35f85759f801b321639309cd37d7f65c89c8f0..723be31c08bac49781ba7d492b2d89393ea3db20 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Totals.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Totals.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Totals/Item.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Totals/Item.php index 6328ca623a654446edf85f8a3c30c6e45356c7da..d621c10f27cb7c6707fffd9ccf1f3497c2ae261e 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Totals/Item.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Totals/Item.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Totals/Tax.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Totals/Tax.php index 80526b64a6d2f6e4bc5d0652d5cd4558fb7591b9..f16c550dd8dc926e321541ff6a169fcf3e1eee12 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Totals/Tax.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Totals/Tax.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/View.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/View.php index 6f02d7602c09d1d5ffaf6379140934bda679322a..618acca21425a8dc1b13d4b23a805d3153c4d95b 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/View.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/View.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Form.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Form.php index 02dbb78a8990a53d2fe0bf4e66d436d4f54ff7df..7d67934251053f3bdc0acfdd85339cb84120b07f 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Form.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Giftmessage.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Giftmessage.php index 1c75c0b7c8596431813b0156a3d1d4a2b2514066..51da81704770d3090a239a82b151b4a45f1e1dec 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Giftmessage.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Giftmessage.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/History.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/History.php index 0805363a1a8dbb00ff95e64fa450e1cb06e02f6c..c6012f724c30075f3f03bffd8f97304172730030 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/History.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/History.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Info.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Info.php index bba7baa2438edadfbef001ba1d0f5e0785021825..b1dd21a6215c267d41a9f9eaf998fb6718a18204 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Info.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Info.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Items.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Items.php index 0158b0a700fa17ca04e3a43a2fd68108ee604ca1..3bb6b8bb29a83ffba6295e5d64dbd3307053b6c4 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Items.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Items.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Items/Renderer/Default.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Items/Renderer/Default.php index 45e90c04f91c2586baec1a3fdf318c1364ae58a1..b5540070647424bf0e90f7adb54c5b4ad1ea423b 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Items/Renderer/Default.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Items/Renderer/Default.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Messages.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Messages.php index 260d4ebcbc8f3f53b6dd90cd5dfaa8ca8dd653a7..649fbf39db9cceb2bc699931362f43a177be8d00 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Messages.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Messages.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Tab/Creditmemos.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Tab/Creditmemos.php index 65b9df855cc4025f569c8adb262e6cd6ba79c624..091484b9add411440e84a6e95913dc1472b5cc5c 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Tab/Creditmemos.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Tab/Creditmemos.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Tab/History.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Tab/History.php index 60b9ac8a75d04af99e968397dea2758eee4ea802..5d7de9105115b4ad03068c13b60b06b319106d6a 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Tab/History.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Tab/History.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Tab/Info.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Tab/Info.php index 3ba764683d82f4a29ad81b707d698e9e2a11ef7e..848605d2602793b57f42dd77d12919cff122b558 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Tab/Info.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Tab/Info.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Tab/Invoices.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Tab/Invoices.php index e88a4517f1e3953cac699c555bc75b5674cf3443..63e393f62df2d6535fb68dd40f63bdfa7ec78f6b 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Tab/Invoices.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Tab/Invoices.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Tab/Shipments.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Tab/Shipments.php index eec1f547c8bd2585303a16e0117508321da32e65..dd73813c98d0e88c9ac1bd78fc9c38e9764232ad 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Tab/Shipments.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Tab/Shipments.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Tab/Transactions.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Tab/Transactions.php index da50b4f87b905219de86150bc26f0d74446f8eda..d80ac2b102e0d2cefeaf188412f4c1387784185c 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Tab/Transactions.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Tab/Transactions.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Tabs.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Tabs.php index 598d4151866f205ccb232090deaf784d3f7d3470..f12dfa99b5a769441b5c3c00411004cd933e0642 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Tabs.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Tabs.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Reorder/Renderer/Action.php b/app/code/core/Mage/Adminhtml/Block/Sales/Reorder/Renderer/Action.php index a80a10a6a3ffcb16aba4b644108c1ba4bc8253a8..059fa3032c11d669b439a96899aa469d15b5230a 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Reorder/Renderer/Action.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Reorder/Renderer/Action.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Shipment.php b/app/code/core/Mage/Adminhtml/Block/Sales/Shipment.php index 3152ec51cb76c927390f6d3fe3dce5b0b9e5935d..e7174ee67a3e284f3b56f48e260ab50e331b8009 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Shipment.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Shipment.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Shipment/Grid.php b/app/code/core/Mage/Adminhtml/Block/Sales/Shipment/Grid.php index e90d8f7d2c1564d98707d75a382578bf78e65369..ca28389bb446d664f8bb14c53ae7609799d00ebf 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Shipment/Grid.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Shipment/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Totals.php b/app/code/core/Mage/Adminhtml/Block/Sales/Totals.php index 6a74dbf1874e94cea660d24bce01748151a88490..acc5457bddc7975f9dc4371a65d3eddbf71b34e8 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Totals.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Totals.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Transactions.php b/app/code/core/Mage/Adminhtml/Block/Sales/Transactions.php index 41dece4f8ac3d794cd089d884b7c11d1c7605bef..40137898b47abbfc645f18988b0e3a76efcd0ec2 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Transactions.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Transactions.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Transactions/Child/Grid.php b/app/code/core/Mage/Adminhtml/Block/Sales/Transactions/Child/Grid.php index 0126b6de9b91a1ff358728b79044dadb8a119f1d..5dc387459e8fe573318130f2a63912c4e35acef9 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Transactions/Child/Grid.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Transactions/Child/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Transactions/Detail.php b/app/code/core/Mage/Adminhtml/Block/Sales/Transactions/Detail.php index c353738d819f9923a4349235cdd861d93e39d82f..0455f61f0c7fde1c97818cb9fbbc67d7697cc1ea 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Transactions/Detail.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Transactions/Detail.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Transactions/Detail/Grid.php b/app/code/core/Mage/Adminhtml/Block/Sales/Transactions/Detail/Grid.php index cccc34ca6b8f0300db535880a729fddfa1ba4b42..f43e033108b4ddf6907bf2e5470f77f146a54e09 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Transactions/Detail/Grid.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Transactions/Detail/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Transactions/Grid.php b/app/code/core/Mage/Adminhtml/Block/Sales/Transactions/Grid.php index 41d24ee5a0f3b7a4f2d69099e90dd6115e434c09..ac62611078982ea25ead9022aecd482c407ce8fb 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Transactions/Grid.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Transactions/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Shipping/Carrier/Tablerate/Grid.php b/app/code/core/Mage/Adminhtml/Block/Shipping/Carrier/Tablerate/Grid.php index 8709defa03ed1f7fc14adce8a2ee784d399a5671..14dfb5787c146d64c927f04775a225c8547a7ba1 100644 --- a/app/code/core/Mage/Adminhtml/Block/Shipping/Carrier/Tablerate/Grid.php +++ b/app/code/core/Mage/Adminhtml/Block/Shipping/Carrier/Tablerate/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sitemap.php b/app/code/core/Mage/Adminhtml/Block/Sitemap.php index 7156d75a520b58dce1878b9825cb8e536b615d31..89cd12bf9f3cf8a87cf19ca4f6ccd21003e485fe 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sitemap.php +++ b/app/code/core/Mage/Adminhtml/Block/Sitemap.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sitemap/Edit.php b/app/code/core/Mage/Adminhtml/Block/Sitemap/Edit.php index 64ab699fc4a55d2d891171d50bd5ce0811c5f5fb..88e7cda175b8c907a7dae5e76b5cfd952a373fbd 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sitemap/Edit.php +++ b/app/code/core/Mage/Adminhtml/Block/Sitemap/Edit.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sitemap/Edit/Form.php b/app/code/core/Mage/Adminhtml/Block/Sitemap/Edit/Form.php index f5b0bcdedd9565ede25e60cf7a61b6337ef57abf..8073817d3385b20666b5cbe7c9bde527d9a31c5f 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sitemap/Edit/Form.php +++ b/app/code/core/Mage/Adminhtml/Block/Sitemap/Edit/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sitemap/Grid/Renderer/Action.php b/app/code/core/Mage/Adminhtml/Block/Sitemap/Grid/Renderer/Action.php index 43ee1286a284b1d508169a76747e888a05e25e1b..c4bdcc0c4a6e88648067b3cc73638429367fc2f0 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sitemap/Grid/Renderer/Action.php +++ b/app/code/core/Mage/Adminhtml/Block/Sitemap/Grid/Renderer/Action.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sitemap/Grid/Renderer/Link.php b/app/code/core/Mage/Adminhtml/Block/Sitemap/Grid/Renderer/Link.php index d693233fb7efad70710eda77802ce09ddbd67152..c84645d7c910e6c507169056628d2a305b39b857 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sitemap/Grid/Renderer/Link.php +++ b/app/code/core/Mage/Adminhtml/Block/Sitemap/Grid/Renderer/Link.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Sitemap/Grid/Renderer/Time.php b/app/code/core/Mage/Adminhtml/Block/Sitemap/Grid/Renderer/Time.php index fe78a9fe4a3d5156d8e183789e58d913352ecee8..8633720baebf138b1c589f4cce8819cbd9542e2a 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sitemap/Grid/Renderer/Time.php +++ b/app/code/core/Mage/Adminhtml/Block/Sitemap/Grid/Renderer/Time.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/System/Account/Edit.php b/app/code/core/Mage/Adminhtml/Block/System/Account/Edit.php index aa54515c0e0d9eca92d99401767ce880f500e0cc..dc7cc106b0fd7595ad8097397a86a8427d4cefcd 100644 --- a/app/code/core/Mage/Adminhtml/Block/System/Account/Edit.php +++ b/app/code/core/Mage/Adminhtml/Block/System/Account/Edit.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/System/Account/Edit/Form.php b/app/code/core/Mage/Adminhtml/Block/System/Account/Edit/Form.php index 8be1b4ddd801c25ea575ca0cd50008c030387abf..4f4f269c38eebce9ff1dd3cc33a5a9e3723d5ea0 100644 --- a/app/code/core/Mage/Adminhtml/Block/System/Account/Edit/Form.php +++ b/app/code/core/Mage/Adminhtml/Block/System/Account/Edit/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/System/Cache/Edit.php b/app/code/core/Mage/Adminhtml/Block/System/Cache/Edit.php index 468e9351e20f10727540e5425e2c434bfc3e292f..2309e8a0a0a4d38a2314bf3b2334fe42d9a91f23 100644 --- a/app/code/core/Mage/Adminhtml/Block/System/Cache/Edit.php +++ b/app/code/core/Mage/Adminhtml/Block/System/Cache/Edit.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/System/Cache/Form.php b/app/code/core/Mage/Adminhtml/Block/System/Cache/Form.php index 2c71d52839ff4c210c046d9e803ac72eac982f63..7782ed17722fa50262c9a64dee16deb3a2d8f0df 100644 --- a/app/code/core/Mage/Adminhtml/Block/System/Cache/Form.php +++ b/app/code/core/Mage/Adminhtml/Block/System/Cache/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/System/Currency.php b/app/code/core/Mage/Adminhtml/Block/System/Currency.php index 364c1624fe95ea18a1db8125cc3a7a70878e17d4..48a52eb4abda6505e0c30d0b4ebffc0a8e7ca77b 100644 --- a/app/code/core/Mage/Adminhtml/Block/System/Currency.php +++ b/app/code/core/Mage/Adminhtml/Block/System/Currency.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/System/Currency/Edit/Form.php b/app/code/core/Mage/Adminhtml/Block/System/Currency/Edit/Form.php index 088dc0675e56f92627fd8963f8927e58d204fc4c..eb0f91860de01cdb68a67b5e6fedc797f1d49c99 100644 --- a/app/code/core/Mage/Adminhtml/Block/System/Currency/Edit/Form.php +++ b/app/code/core/Mage/Adminhtml/Block/System/Currency/Edit/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/System/Currency/Edit/Tab/Main.php b/app/code/core/Mage/Adminhtml/Block/System/Currency/Edit/Tab/Main.php index a17d832d626fe98bf3d2f410a497b94d378c3ad7..77885122f0c95f34bf964c615a01e51bb3a6adf2 100644 --- a/app/code/core/Mage/Adminhtml/Block/System/Currency/Edit/Tab/Main.php +++ b/app/code/core/Mage/Adminhtml/Block/System/Currency/Edit/Tab/Main.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/System/Currency/Edit/Tab/Rates.php b/app/code/core/Mage/Adminhtml/Block/System/Currency/Edit/Tab/Rates.php index 32ecf28cd9a55fd2843701f9fd52b9d1c8785314..e855bd765e0d44c9d671c6c20138da479459bdd5 100644 --- a/app/code/core/Mage/Adminhtml/Block/System/Currency/Edit/Tab/Rates.php +++ b/app/code/core/Mage/Adminhtml/Block/System/Currency/Edit/Tab/Rates.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/System/Currency/Edit/Tabs.php b/app/code/core/Mage/Adminhtml/Block/System/Currency/Edit/Tabs.php index 3821c4bffa06e4e769e85e60dea6f31fdbd5714e..c0281e7e3da98974956b124c0fdee91e442f935f 100644 --- a/app/code/core/Mage/Adminhtml/Block/System/Currency/Edit/Tabs.php +++ b/app/code/core/Mage/Adminhtml/Block/System/Currency/Edit/Tabs.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/System/Currency/Rate/Matrix.php b/app/code/core/Mage/Adminhtml/Block/System/Currency/Rate/Matrix.php index 2ffc89903badf9726a8e6878d3dea6d047fb0690..ddef04cef89eae8008106263625e95e58064276e 100644 --- a/app/code/core/Mage/Adminhtml/Block/System/Currency/Rate/Matrix.php +++ b/app/code/core/Mage/Adminhtml/Block/System/Currency/Rate/Matrix.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/System/Currency/Rate/Services.php b/app/code/core/Mage/Adminhtml/Block/System/Currency/Rate/Services.php index 5395de9c8811771baded65794237c440d9ee413c..d29e500b04c452a62fa72fa051ef3522cd6111a7 100644 --- a/app/code/core/Mage/Adminhtml/Block/System/Currency/Rate/Services.php +++ b/app/code/core/Mage/Adminhtml/Block/System/Currency/Rate/Services.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/System/Design.php b/app/code/core/Mage/Adminhtml/Block/System/Design.php index 28c0d8e98e78ad726265cbdd26a2c3fee1a299fa..b07b38302cc9f1c8750455a2406dd1a8b300dd67 100644 --- a/app/code/core/Mage/Adminhtml/Block/System/Design.php +++ b/app/code/core/Mage/Adminhtml/Block/System/Design.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/System/Design/Edit.php b/app/code/core/Mage/Adminhtml/Block/System/Design/Edit.php index cda7834ea1ceb7690994900bd5bf5da5dfc30dc7..7e5c6b4b17020c139e1c47233e85129a6a2c3f00 100644 --- a/app/code/core/Mage/Adminhtml/Block/System/Design/Edit.php +++ b/app/code/core/Mage/Adminhtml/Block/System/Design/Edit.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/System/Design/Edit/Tab/General.php b/app/code/core/Mage/Adminhtml/Block/System/Design/Edit/Tab/General.php index c92478dc69463b91770ce03afbf04a3cc791a196..93b4f0dc92b5b03f13e51ac934a5eb8a7065fc3a 100644 --- a/app/code/core/Mage/Adminhtml/Block/System/Design/Edit/Tab/General.php +++ b/app/code/core/Mage/Adminhtml/Block/System/Design/Edit/Tab/General.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Adminhtml_Block_System_Design_Edit_Tab_General extends Mage_Adminhtml_Block_Widget_Form diff --git a/app/code/core/Mage/Adminhtml/Block/System/Design/Edit/Tabs.php b/app/code/core/Mage/Adminhtml/Block/System/Design/Edit/Tabs.php index 406848cacfd1eba686063fff7e97dca46788847c..d86ad0db82abcf4e4c16d612b817c4a47c8dc49d 100644 --- a/app/code/core/Mage/Adminhtml/Block/System/Design/Edit/Tabs.php +++ b/app/code/core/Mage/Adminhtml/Block/System/Design/Edit/Tabs.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/System/Email/Template.php b/app/code/core/Mage/Adminhtml/Block/System/Email/Template.php index ada70cdd74f6a8e10f3090c4adfbdf3488f96cad..1651354c16ccaad9e70b23cc15b5605490c15286 100644 --- a/app/code/core/Mage/Adminhtml/Block/System/Email/Template.php +++ b/app/code/core/Mage/Adminhtml/Block/System/Email/Template.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/System/Email/Template/Edit.php b/app/code/core/Mage/Adminhtml/Block/System/Email/Template/Edit.php index f29aa2d2f486138d259fc80afc876ff400cef021..d7ce331d6ef8b7e01226b536fc1c8eb47d00c173 100644 --- a/app/code/core/Mage/Adminhtml/Block/System/Email/Template/Edit.php +++ b/app/code/core/Mage/Adminhtml/Block/System/Email/Template/Edit.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/System/Email/Template/Edit/Form.php b/app/code/core/Mage/Adminhtml/Block/System/Email/Template/Edit/Form.php index 48aff16df126a9fd0fbebbfa97c9f1f6a505d000..b5f4d35ba57f8efb8d88c7858bc3f25c73ebbc78 100644 --- a/app/code/core/Mage/Adminhtml/Block/System/Email/Template/Edit/Form.php +++ b/app/code/core/Mage/Adminhtml/Block/System/Email/Template/Edit/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/System/Email/Template/Grid/Filter/Type.php b/app/code/core/Mage/Adminhtml/Block/System/Email/Template/Grid/Filter/Type.php index c5543b81fe2093b1deddfafc952c65f6db88b42b..b5c1cc44693afd718eea6cc3681a6be5924925d2 100644 --- a/app/code/core/Mage/Adminhtml/Block/System/Email/Template/Grid/Filter/Type.php +++ b/app/code/core/Mage/Adminhtml/Block/System/Email/Template/Grid/Filter/Type.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/System/Email/Template/Grid/Renderer/Action.php b/app/code/core/Mage/Adminhtml/Block/System/Email/Template/Grid/Renderer/Action.php index 18f3693a3f9e530a9818d840281a871bef4dd7d4..b84a9f16fc70227a061361e3a985fafc7675eabd 100644 --- a/app/code/core/Mage/Adminhtml/Block/System/Email/Template/Grid/Renderer/Action.php +++ b/app/code/core/Mage/Adminhtml/Block/System/Email/Template/Grid/Renderer/Action.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/System/Email/Template/Grid/Renderer/Sender.php b/app/code/core/Mage/Adminhtml/Block/System/Email/Template/Grid/Renderer/Sender.php index abc3e3e19a92888b16be5be082800313b0743988..78089732b940cfdd59313661e3288bf7f364e90f 100644 --- a/app/code/core/Mage/Adminhtml/Block/System/Email/Template/Grid/Renderer/Sender.php +++ b/app/code/core/Mage/Adminhtml/Block/System/Email/Template/Grid/Renderer/Sender.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/System/Email/Template/Grid/Renderer/Type.php b/app/code/core/Mage/Adminhtml/Block/System/Email/Template/Grid/Renderer/Type.php index f456c0d48efb9fe602d89837a06f0c4f62768097..c1043a7706b3270dda52aea4675a2c28c41bea7b 100644 --- a/app/code/core/Mage/Adminhtml/Block/System/Email/Template/Grid/Renderer/Type.php +++ b/app/code/core/Mage/Adminhtml/Block/System/Email/Template/Grid/Renderer/Type.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/System/Email/Template/Preview.php b/app/code/core/Mage/Adminhtml/Block/System/Email/Template/Preview.php index d2a6e78f5c4edd90480e20dbca5bfa2ead6140d7..8dd9329866fd1af562c3a18b2f63d0b8ac324f43 100644 --- a/app/code/core/Mage/Adminhtml/Block/System/Email/Template/Preview.php +++ b/app/code/core/Mage/Adminhtml/Block/System/Email/Template/Preview.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/System/Store/Delete.php b/app/code/core/Mage/Adminhtml/Block/System/Store/Delete.php index 4a87054b1eaef978336be962852afcff5119b706..e1bd02fe291c20319f18df7b82ef8b7ad53f204d 100644 --- a/app/code/core/Mage/Adminhtml/Block/System/Store/Delete.php +++ b/app/code/core/Mage/Adminhtml/Block/System/Store/Delete.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/System/Store/Delete/Form.php b/app/code/core/Mage/Adminhtml/Block/System/Store/Delete/Form.php index 192e46dc15045db1f7814d8d164ade9f9ddf7b82..0f590d6582a207a53cdec8be0318724c76c25d0c 100644 --- a/app/code/core/Mage/Adminhtml/Block/System/Store/Delete/Form.php +++ b/app/code/core/Mage/Adminhtml/Block/System/Store/Delete/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/System/Store/Delete/Group.php b/app/code/core/Mage/Adminhtml/Block/System/Store/Delete/Group.php index d276307b74ccb55329bb7fa0301d26482b69d714..544233a87e81dbe91a19adbe0cb161f2de39304a 100644 --- a/app/code/core/Mage/Adminhtml/Block/System/Store/Delete/Group.php +++ b/app/code/core/Mage/Adminhtml/Block/System/Store/Delete/Group.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/System/Store/Delete/Website.php b/app/code/core/Mage/Adminhtml/Block/System/Store/Delete/Website.php index c34b8a64b904c8ba713c36e7796b1f0dbecf5540..92cb7f04072b53a48142249c44bb91ee54e19ff8 100644 --- a/app/code/core/Mage/Adminhtml/Block/System/Store/Delete/Website.php +++ b/app/code/core/Mage/Adminhtml/Block/System/Store/Delete/Website.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/System/Store/Edit.php b/app/code/core/Mage/Adminhtml/Block/System/Store/Edit.php index ba05f17baea47c11afd9700bcf841d6b6800cbe0..1caf26e7ed58c5269185cd207811641a68e271af 100644 --- a/app/code/core/Mage/Adminhtml/Block/System/Store/Edit.php +++ b/app/code/core/Mage/Adminhtml/Block/System/Store/Edit.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/System/Store/Edit/Form/Group.php b/app/code/core/Mage/Adminhtml/Block/System/Store/Edit/Form/Group.php index cd2abe5f9c562576bb030d958d9c09678cff21c4..c7b728caf089a694ae2c45ea98b8e4f4595641e3 100644 --- a/app/code/core/Mage/Adminhtml/Block/System/Store/Edit/Form/Group.php +++ b/app/code/core/Mage/Adminhtml/Block/System/Store/Edit/Form/Group.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/System/Store/Edit/Form/Store.php b/app/code/core/Mage/Adminhtml/Block/System/Store/Edit/Form/Store.php index e444897cd1b40f7f3dfd1f06a79568bc74dce443..af1ace2c710163d4dfafc42d93ef23d41413c5b1 100644 --- a/app/code/core/Mage/Adminhtml/Block/System/Store/Edit/Form/Store.php +++ b/app/code/core/Mage/Adminhtml/Block/System/Store/Edit/Form/Store.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/System/Store/Edit/Form/Website.php b/app/code/core/Mage/Adminhtml/Block/System/Store/Edit/Form/Website.php index 88f29cfa77353000be0f3dc49613b6329ff66ef2..753a6b3a4185f66ae7ee9051c34d84196ffae18b 100644 --- a/app/code/core/Mage/Adminhtml/Block/System/Store/Edit/Form/Website.php +++ b/app/code/core/Mage/Adminhtml/Block/System/Store/Edit/Form/Website.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/System/Store/Edit/FormAbstract.php b/app/code/core/Mage/Adminhtml/Block/System/Store/Edit/FormAbstract.php index d52a1680981a751530a2584d4df00283a9f60e4e..31c9a6bc7f06c2ee678c1e654076c63e67d04393 100644 --- a/app/code/core/Mage/Adminhtml/Block/System/Store/Edit/FormAbstract.php +++ b/app/code/core/Mage/Adminhtml/Block/System/Store/Edit/FormAbstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/System/Store/Grid/Render/Group.php b/app/code/core/Mage/Adminhtml/Block/System/Store/Grid/Render/Group.php index dbfea884050188796ddc89e9098a87b65a28c249..cf467276d3c33bd52e6bd4b214d807b1ffbbd314 100644 --- a/app/code/core/Mage/Adminhtml/Block/System/Store/Grid/Render/Group.php +++ b/app/code/core/Mage/Adminhtml/Block/System/Store/Grid/Render/Group.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/System/Store/Grid/Render/Store.php b/app/code/core/Mage/Adminhtml/Block/System/Store/Grid/Render/Store.php index a154271241f25719aa59fd3752efbdb1f2d68f31..c9ddd64f183810028431430e2e00e1de9b358999 100644 --- a/app/code/core/Mage/Adminhtml/Block/System/Store/Grid/Render/Store.php +++ b/app/code/core/Mage/Adminhtml/Block/System/Store/Grid/Render/Store.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/System/Store/Grid/Render/Website.php b/app/code/core/Mage/Adminhtml/Block/System/Store/Grid/Render/Website.php index 811301764396da4a07bd74579b4b5265132557c3..36e2d95cc9a6641017b25c0de8379e42c97561ff 100644 --- a/app/code/core/Mage/Adminhtml/Block/System/Store/Grid/Render/Website.php +++ b/app/code/core/Mage/Adminhtml/Block/System/Store/Grid/Render/Website.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/System/Store/Store.php b/app/code/core/Mage/Adminhtml/Block/System/Store/Store.php index 17f3f853dc27f2a4b3a6d277f521b8a609bb2678..cb62c679b22720aedc7e96fbb9b5a82c3405ec33 100644 --- a/app/code/core/Mage/Adminhtml/Block/System/Store/Store.php +++ b/app/code/core/Mage/Adminhtml/Block/System/Store/Store.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/System/Variable.php b/app/code/core/Mage/Adminhtml/Block/System/Variable.php index a49b6a4799042e921cc615844b6e0b202abeefc3..ba30f54750034ac887f72e1e1c2eb5855813921f 100644 --- a/app/code/core/Mage/Adminhtml/Block/System/Variable.php +++ b/app/code/core/Mage/Adminhtml/Block/System/Variable.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/System/Variable/Edit.php b/app/code/core/Mage/Adminhtml/Block/System/Variable/Edit.php index 6816f6b8dccefbaa8a470cfc29b21517687cf2bd..40d9e69a81208301aeb2e8ad1795756229d4dac2 100644 --- a/app/code/core/Mage/Adminhtml/Block/System/Variable/Edit.php +++ b/app/code/core/Mage/Adminhtml/Block/System/Variable/Edit.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/System/Variable/Edit/Form.php b/app/code/core/Mage/Adminhtml/Block/System/Variable/Edit/Form.php index ced14bcdb4e815163316f8bf4397494669bf0ff2..3f8869160165564aaa811cef2e66162cef23c82a 100644 --- a/app/code/core/Mage/Adminhtml/Block/System/Variable/Edit/Form.php +++ b/app/code/core/Mage/Adminhtml/Block/System/Variable/Edit/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Tax/Rate/Form.php b/app/code/core/Mage/Adminhtml/Block/Tax/Rate/Form.php index 7352eb6891063836b13765ecdb88150efdfd0761..87bed8c704bad3602efd9a14d04f128bb45f7255 100644 --- a/app/code/core/Mage/Adminhtml/Block/Tax/Rate/Form.php +++ b/app/code/core/Mage/Adminhtml/Block/Tax/Rate/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Tax/Rate/Grid/Renderer/Country.php b/app/code/core/Mage/Adminhtml/Block/Tax/Rate/Grid/Renderer/Country.php index 8b97da1017f4968204832947af646e13c239430a..a68f0f6fe37125571e1f0c7792048acc9d492185 100644 --- a/app/code/core/Mage/Adminhtml/Block/Tax/Rate/Grid/Renderer/Country.php +++ b/app/code/core/Mage/Adminhtml/Block/Tax/Rate/Grid/Renderer/Country.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Tax/Rate/Grid/Renderer/Data.php b/app/code/core/Mage/Adminhtml/Block/Tax/Rate/Grid/Renderer/Data.php index bda76902f18bd4fc5efa0a45db32f0fd719c82fa..54766946ff8f822d0d9110ab9baff9c02024adf4 100644 --- a/app/code/core/Mage/Adminhtml/Block/Tax/Rate/Grid/Renderer/Data.php +++ b/app/code/core/Mage/Adminhtml/Block/Tax/Rate/Grid/Renderer/Data.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Tax/Rate/ImportExport.php b/app/code/core/Mage/Adminhtml/Block/Tax/Rate/ImportExport.php index 21eff2084d17c63b8f24778855d886c93a4b9765..cf378054cded39a142941852cec23712a8d4cb2a 100644 --- a/app/code/core/Mage/Adminhtml/Block/Tax/Rate/ImportExport.php +++ b/app/code/core/Mage/Adminhtml/Block/Tax/Rate/ImportExport.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Tax/Rate/ImportExportHeader.php b/app/code/core/Mage/Adminhtml/Block/Tax/Rate/ImportExportHeader.php index 02061864ef40fd668216e5fd42c8c66b478bba56..e583907430ad8bce980613c9608b443d28ee9be1 100644 --- a/app/code/core/Mage/Adminhtml/Block/Tax/Rate/ImportExportHeader.php +++ b/app/code/core/Mage/Adminhtml/Block/Tax/Rate/ImportExportHeader.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Tax/Rate/Title.php b/app/code/core/Mage/Adminhtml/Block/Tax/Rate/Title.php index 4af8864fbfab65b701be8c0717a43aef7a3fba6e..0ffd86a4e7c38e7df732a33d0d498d2095b43c5f 100644 --- a/app/code/core/Mage/Adminhtml/Block/Tax/Rate/Title.php +++ b/app/code/core/Mage/Adminhtml/Block/Tax/Rate/Title.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Tax/Rate/Title/Fieldset.php b/app/code/core/Mage/Adminhtml/Block/Tax/Rate/Title/Fieldset.php index 6fa49e19eb02741c438921618d65e78682051282..e3897247d6290d380791007c6dfb851d3d4763a2 100644 --- a/app/code/core/Mage/Adminhtml/Block/Tax/Rate/Title/Fieldset.php +++ b/app/code/core/Mage/Adminhtml/Block/Tax/Rate/Title/Fieldset.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Tax/Rate/Toolbar/Add.php b/app/code/core/Mage/Adminhtml/Block/Tax/Rate/Toolbar/Add.php index 4fb9f68c948abb54993a73b28eaa43a6be690fe1..5b25189305e3484aaebfff15358f8191fb3bcfa2 100644 --- a/app/code/core/Mage/Adminhtml/Block/Tax/Rate/Toolbar/Add.php +++ b/app/code/core/Mage/Adminhtml/Block/Tax/Rate/Toolbar/Add.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Tax/Rate/Toolbar/Save.php b/app/code/core/Mage/Adminhtml/Block/Tax/Rate/Toolbar/Save.php index ba08fe32e6cf27b808ffd53302184d8d655c5528..bc7e53ad917eb1987aa3f7bcb3ff6cd8e0397c7f 100644 --- a/app/code/core/Mage/Adminhtml/Block/Tax/Rate/Toolbar/Save.php +++ b/app/code/core/Mage/Adminhtml/Block/Tax/Rate/Toolbar/Save.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Tax/Rule.php b/app/code/core/Mage/Adminhtml/Block/Tax/Rule.php index 2cb5d5ab3633c4f89ab90d4486f981fb5472bcda..5f71c9069d947f0209abd633dd08dbac5cbaca8f 100644 --- a/app/code/core/Mage/Adminhtml/Block/Tax/Rule.php +++ b/app/code/core/Mage/Adminhtml/Block/Tax/Rule.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Tax/Rule/Edit.php b/app/code/core/Mage/Adminhtml/Block/Tax/Rule/Edit.php index 001315036580c4093c6662b909e55ad3b4adf68f..2a467a4969c9fe2a5f5ab8475ab56b6527b64883 100644 --- a/app/code/core/Mage/Adminhtml/Block/Tax/Rule/Edit.php +++ b/app/code/core/Mage/Adminhtml/Block/Tax/Rule/Edit.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Tax/Rule/Edit/Form.php b/app/code/core/Mage/Adminhtml/Block/Tax/Rule/Edit/Form.php index 58a47320e5543b90812c8922c45b72fabaeebaa9..a0530d0070169e9a2805a08b0e726929d13cac2d 100644 --- a/app/code/core/Mage/Adminhtml/Block/Tax/Rule/Edit/Form.php +++ b/app/code/core/Mage/Adminhtml/Block/Tax/Rule/Edit/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Tax/Rule/Grid.php b/app/code/core/Mage/Adminhtml/Block/Tax/Rule/Grid.php index ac5e311f9adb3e19f98e78058cc5009c661e4aba..5f729fa9a151ef14cc04810a5e81a6f80e293775 100644 --- a/app/code/core/Mage/Adminhtml/Block/Tax/Rule/Grid.php +++ b/app/code/core/Mage/Adminhtml/Block/Tax/Rule/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Adminhtml_Block_Tax_Rule_Grid extends Mage_Adminhtml_Block_Widget_Grid diff --git a/app/code/core/Mage/Adminhtml/Block/Template.php b/app/code/core/Mage/Adminhtml/Block/Template.php index 82befa6ed57eac4407980736d543caa38c931d26..23f6d02bed71a34972127d81b5e2079c6af28c9d 100644 --- a/app/code/core/Mage/Adminhtml/Block/Template.php +++ b/app/code/core/Mage/Adminhtml/Block/Template.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Text/List.php b/app/code/core/Mage/Adminhtml/Block/Text/List.php index 62cfa38a405a640254a20f8c32d633e06e56ea3a..643c6f82d0aa3c8791f8c9cafbcbabb115d8f498 100644 --- a/app/code/core/Mage/Adminhtml/Block/Text/List.php +++ b/app/code/core/Mage/Adminhtml/Block/Text/List.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Urlrewrite.php b/app/code/core/Mage/Adminhtml/Block/Urlrewrite.php index 7fe58afe9ad38dd4b50130a280323b58f3105c38..5560fe22910921bda82c5d94efae45f9c64d7613 100644 --- a/app/code/core/Mage/Adminhtml/Block/Urlrewrite.php +++ b/app/code/core/Mage/Adminhtml/Block/Urlrewrite.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Urlrewrite/Catalog/Category/Edit.php b/app/code/core/Mage/Adminhtml/Block/Urlrewrite/Catalog/Category/Edit.php index 067b8f356682064a140463b4d47ca9f5c7fd8891..7a302becffea5d3852f11db8adf8e5e15e216b29 100644 --- a/app/code/core/Mage/Adminhtml/Block/Urlrewrite/Catalog/Category/Edit.php +++ b/app/code/core/Mage/Adminhtml/Block/Urlrewrite/Catalog/Category/Edit.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Urlrewrite/Catalog/Category/Tree.php b/app/code/core/Mage/Adminhtml/Block/Urlrewrite/Catalog/Category/Tree.php index 9c1aa5ff1cba5dac1dd9e0d0dbf0dddd0ecb48d9..e4563e0fd775abb030e096f9508b7eeb4f3d155a 100644 --- a/app/code/core/Mage/Adminhtml/Block/Urlrewrite/Catalog/Category/Tree.php +++ b/app/code/core/Mage/Adminhtml/Block/Urlrewrite/Catalog/Category/Tree.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Urlrewrite/Catalog/Edit/Form.php b/app/code/core/Mage/Adminhtml/Block/Urlrewrite/Catalog/Edit/Form.php index 4b2ece113642090c930637d146809fe4cbe483f2..bf70341564e0b8ad436e7dc3a5c6f9da5d0db112 100644 --- a/app/code/core/Mage/Adminhtml/Block/Urlrewrite/Catalog/Edit/Form.php +++ b/app/code/core/Mage/Adminhtml/Block/Urlrewrite/Catalog/Edit/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Urlrewrite/Catalog/Product/Edit.php b/app/code/core/Mage/Adminhtml/Block/Urlrewrite/Catalog/Product/Edit.php index 9e04ea51ede8ea91d24f39774b404c731f24b084..8086290b417b7cbaae32c4596f1ed20412ea794a 100644 --- a/app/code/core/Mage/Adminhtml/Block/Urlrewrite/Catalog/Product/Edit.php +++ b/app/code/core/Mage/Adminhtml/Block/Urlrewrite/Catalog/Product/Edit.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Urlrewrite/Catalog/Product/Grid.php b/app/code/core/Mage/Adminhtml/Block/Urlrewrite/Catalog/Product/Grid.php index a21bafec41f2f6078846de540b7058071a59f316..9d94d6b25f6676bcfe3e0c79f57172b943032df6 100644 --- a/app/code/core/Mage/Adminhtml/Block/Urlrewrite/Catalog/Product/Grid.php +++ b/app/code/core/Mage/Adminhtml/Block/Urlrewrite/Catalog/Product/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Urlrewrite/Cms/Page/Edit.php b/app/code/core/Mage/Adminhtml/Block/Urlrewrite/Cms/Page/Edit.php index 85dd74508920e2d3be81dc577cd3030e60ded757..4b3fe0a349c0aba481533ab8c00feb0b21391233 100644 --- a/app/code/core/Mage/Adminhtml/Block/Urlrewrite/Cms/Page/Edit.php +++ b/app/code/core/Mage/Adminhtml/Block/Urlrewrite/Cms/Page/Edit.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Urlrewrite/Cms/Page/Edit/Form.php b/app/code/core/Mage/Adminhtml/Block/Urlrewrite/Cms/Page/Edit/Form.php index 48a2039e6c47bd1ea4f7ddff9ca03701a3143125..947d0e5d4f8c4ce84a41655bbfda66f9eed13e50 100644 --- a/app/code/core/Mage/Adminhtml/Block/Urlrewrite/Cms/Page/Edit/Form.php +++ b/app/code/core/Mage/Adminhtml/Block/Urlrewrite/Cms/Page/Edit/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Urlrewrite/Cms/Page/Grid.php b/app/code/core/Mage/Adminhtml/Block/Urlrewrite/Cms/Page/Grid.php index 00d94638831dce7052867f54c585d51a6a2af027..aa2a0d555d7e17a357a5e6808e5117c2f5fc591e 100644 --- a/app/code/core/Mage/Adminhtml/Block/Urlrewrite/Cms/Page/Grid.php +++ b/app/code/core/Mage/Adminhtml/Block/Urlrewrite/Cms/Page/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Urlrewrite/Edit.php b/app/code/core/Mage/Adminhtml/Block/Urlrewrite/Edit.php index fabd93b6c6717c223e930f2283e5197466280316..258aeccaaf4ddc6e06b99fbe24a69dbaa3bc85ae 100644 --- a/app/code/core/Mage/Adminhtml/Block/Urlrewrite/Edit.php +++ b/app/code/core/Mage/Adminhtml/Block/Urlrewrite/Edit.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Urlrewrite/Edit/Form.php b/app/code/core/Mage/Adminhtml/Block/Urlrewrite/Edit/Form.php index 776a6cc9cdf46c2e41c6d4fcd95bc4bee9127992..e37bd02ae6feb655b1f42b147f7eceaa35cccd09 100644 --- a/app/code/core/Mage/Adminhtml/Block/Urlrewrite/Edit/Form.php +++ b/app/code/core/Mage/Adminhtml/Block/Urlrewrite/Edit/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Urlrewrite/Link.php b/app/code/core/Mage/Adminhtml/Block/Urlrewrite/Link.php index 0a2b0d9010fc31f288bc8674e7bb5e637c2def75..a5e1790d54b811785f059827c1d273e77e0cf16f 100644 --- a/app/code/core/Mage/Adminhtml/Block/Urlrewrite/Link.php +++ b/app/code/core/Mage/Adminhtml/Block/Urlrewrite/Link.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Urlrewrite/Selector.php b/app/code/core/Mage/Adminhtml/Block/Urlrewrite/Selector.php index b3fc1a22443ced3c8d50b768e34f22c0b7f933f6..60580a2d0ecdc07a52ba024bf1c0b2ad72c139f4 100644 --- a/app/code/core/Mage/Adminhtml/Block/Urlrewrite/Selector.php +++ b/app/code/core/Mage/Adminhtml/Block/Urlrewrite/Selector.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Widget.php b/app/code/core/Mage/Adminhtml/Block/Widget.php index b642e7b30e22eb0d4625ce8857f17b1544b0ae9a..50a32a99445ff9895df0034dfc0c5437d7f96cd5 100644 --- a/app/code/core/Mage/Adminhtml/Block/Widget.php +++ b/app/code/core/Mage/Adminhtml/Block/Widget.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Widget/Accordion.php b/app/code/core/Mage/Adminhtml/Block/Widget/Accordion.php index 1662c25247a9bf1d639eeb27a167008830427089..501bd591549261cb9ae82b880c1443e3c986bcbc 100644 --- a/app/code/core/Mage/Adminhtml/Block/Widget/Accordion.php +++ b/app/code/core/Mage/Adminhtml/Block/Widget/Accordion.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Widget/Accordion/Item.php b/app/code/core/Mage/Adminhtml/Block/Widget/Accordion/Item.php index f547063d460afd233bfed48e9b6394b86520f0de..8f0fa961372eb5375059167683f95aaceefd22b7 100644 --- a/app/code/core/Mage/Adminhtml/Block/Widget/Accordion/Item.php +++ b/app/code/core/Mage/Adminhtml/Block/Widget/Accordion/Item.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Widget/Breadcrumbs.php b/app/code/core/Mage/Adminhtml/Block/Widget/Breadcrumbs.php index 616f52548666e9217b26c6baad7b3642eddb0944..66a69a5ceb6bb2aad43708110ff08057d4a2709e 100644 --- a/app/code/core/Mage/Adminhtml/Block/Widget/Breadcrumbs.php +++ b/app/code/core/Mage/Adminhtml/Block/Widget/Breadcrumbs.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Widget/Button.php b/app/code/core/Mage/Adminhtml/Block/Widget/Button.php index 56cd657ff11f2730ae09733ae72076496fcf32a4..e500b5c54e6773163f4d967be0a26e60e28ff4d8 100644 --- a/app/code/core/Mage/Adminhtml/Block/Widget/Button.php +++ b/app/code/core/Mage/Adminhtml/Block/Widget/Button.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Widget/Container.php b/app/code/core/Mage/Adminhtml/Block/Widget/Container.php index cf5eb53fbbaaeba8ca81dd9a98066a8fe0c80aab..3dd22be1b9a1bb3ee571144d5cfedd55ba6355f3 100644 --- a/app/code/core/Mage/Adminhtml/Block/Widget/Container.php +++ b/app/code/core/Mage/Adminhtml/Block/Widget/Container.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Widget/Form.php b/app/code/core/Mage/Adminhtml/Block/Widget/Form.php index 9aef4156594ae7a87897b03934730540894485bb..6f0519f6e73fa97559514a084373f4e0c4a0a195 100644 --- a/app/code/core/Mage/Adminhtml/Block/Widget/Form.php +++ b/app/code/core/Mage/Adminhtml/Block/Widget/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Widget/Form/Container.php b/app/code/core/Mage/Adminhtml/Block/Widget/Form/Container.php index ae949f4fbd624f527097e54228cb35029e2d210f..9ba542ba44002129254a24264d48f28c093e6d60 100644 --- a/app/code/core/Mage/Adminhtml/Block/Widget/Form/Container.php +++ b/app/code/core/Mage/Adminhtml/Block/Widget/Form/Container.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Widget/Form/Element.php b/app/code/core/Mage/Adminhtml/Block/Widget/Form/Element.php index eed35f31a929ac806f981bbfc4d154f6546d311b..342296039c405d16985c41862a4cdb4489f78f45 100644 --- a/app/code/core/Mage/Adminhtml/Block/Widget/Form/Element.php +++ b/app/code/core/Mage/Adminhtml/Block/Widget/Form/Element.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Widget/Form/Element/Dependence.php b/app/code/core/Mage/Adminhtml/Block/Widget/Form/Element/Dependence.php index 1b7c5c17d0449a7b10ff35798358d4c7fd7f4a70..85b1f38f39626933635aa42b43b7c2a571b1b483 100644 --- a/app/code/core/Mage/Adminhtml/Block/Widget/Form/Element/Dependence.php +++ b/app/code/core/Mage/Adminhtml/Block/Widget/Form/Element/Dependence.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Widget/Form/Element/Gallery.php b/app/code/core/Mage/Adminhtml/Block/Widget/Form/Element/Gallery.php index c2c16718e176e1ef8dd3b2383514852e9af2762c..4dbdf4c2aa01031f23874421697107d0b5b8ed96 100644 --- a/app/code/core/Mage/Adminhtml/Block/Widget/Form/Element/Gallery.php +++ b/app/code/core/Mage/Adminhtml/Block/Widget/Form/Element/Gallery.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Widget/Form/Renderer/Element.php b/app/code/core/Mage/Adminhtml/Block/Widget/Form/Renderer/Element.php index 0bc0cc5a55ac93f961f3887f419342e8c9fa5887..c5d0b93838c79be2981e3bd1dee313e86fa14018 100644 --- a/app/code/core/Mage/Adminhtml/Block/Widget/Form/Renderer/Element.php +++ b/app/code/core/Mage/Adminhtml/Block/Widget/Form/Renderer/Element.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Widget/Form/Renderer/Fieldset.php b/app/code/core/Mage/Adminhtml/Block/Widget/Form/Renderer/Fieldset.php index 83f49f234f3d5edcb08ee1b7f0568393710e81c7..bb3fabb7e01d3736e9a8d1bc8533665cf361e34b 100644 --- a/app/code/core/Mage/Adminhtml/Block/Widget/Form/Renderer/Fieldset.php +++ b/app/code/core/Mage/Adminhtml/Block/Widget/Form/Renderer/Fieldset.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Widget/Form/Renderer/Fieldset/Element.php b/app/code/core/Mage/Adminhtml/Block/Widget/Form/Renderer/Fieldset/Element.php index 03f640329172b9e2a7cde27c3a5fa2894b15402e..f8a7034271e67d782bbbaac802b1beb3e7bbc75e 100644 --- a/app/code/core/Mage/Adminhtml/Block/Widget/Form/Renderer/Fieldset/Element.php +++ b/app/code/core/Mage/Adminhtml/Block/Widget/Form/Renderer/Fieldset/Element.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Widget/Grid.php b/app/code/core/Mage/Adminhtml/Block/Widget/Grid.php index 44eb79ab025f5455bf715b86e24a8a3375b3a8ac..80d332092fe80d3b18146195fb61956a6176aad7 100644 --- a/app/code/core/Mage/Adminhtml/Block/Widget/Grid.php +++ b/app/code/core/Mage/Adminhtml/Block/Widget/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column.php b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column.php index a654da6904dc6207a6831127eae1561031038b2f..2acf1a9f5106223d9e8b089d39cb04807d2c8b66 100644 --- a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column.php +++ b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Abstract.php b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Abstract.php index 155c616f65b231906de1329d457232bd88075278..e11b6fc91601eef66b871804263d7a7ef8582dff 100644 --- a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Abstract.php +++ b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Checkbox.php b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Checkbox.php index 820da2a4ed11a9bdc1fbed2de681d0d1d2a6c902..bdb272c78db45c1c73a090107138a580f0c65668 100644 --- a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Checkbox.php +++ b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Checkbox.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Country.php b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Country.php index 1411ebe5152647c276841499477af8070efb276d..a7e00f65a84dc15d72738c4c17b5a72dcef79598 100644 --- a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Country.php +++ b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Country.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Date.php b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Date.php index 157234b85a808cb2982de7ebe59a7208eb754c4e..7134601de1af519388dd0fe3effc809816b08192 100644 --- a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Date.php +++ b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Date.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Datetime.php b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Datetime.php index 125adaf10a811855487aa76eb80081794787a5e9..e2ac5963fbdd603e9c28bd2ccf5e0d05f485188e 100644 --- a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Datetime.php +++ b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Datetime.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Interface.php b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Interface.php index 206002114aaebe90e76e334d355105dfb15f3c68..6a7656e8f19acef7266154ea84cfbd26272b6057 100644 --- a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Interface.php +++ b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Interface.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Massaction.php b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Massaction.php index e4adb88e574acb7d3acbc9abf6e5774e58a4aacd..d5cd91791702b608201e70412d57cfc6cfbf6f6c 100644 --- a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Massaction.php +++ b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Massaction.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Price.php b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Price.php index 9d36af0b89baffe30364e4fa2a91b2b14312a3ce..fc5e7b5006dd733544d456d2e7bd302a6b21a640 100644 --- a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Price.php +++ b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Price.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Radio.php b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Radio.php index 472ff8bbe2e5e112b0c91cde10526b050657a7e7..2fc5e19bae6634c1a1e0ea5c990779c994db49be 100644 --- a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Radio.php +++ b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Radio.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Range.php b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Range.php index 57743e9f8fe99a2092cae03c5ca939254404194c..9a3c7a69f6eb411c99b4790a2a69ccd8f5f4744a 100644 --- a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Range.php +++ b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Range.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Select.php b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Select.php index 203a7bdd6e2c6b02b2b29780284a318b307d7a8b..4630dc8b109d004ea1adf1779ceda066bd7e2e93 100644 --- a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Select.php +++ b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Select.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Store.php b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Store.php index 92b6c91e2de881cab49ea182de6f8be9568da316..28a1a9a9740fd1d9ecee5165b6a7a3064538e814 100644 --- a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Store.php +++ b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Store.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Text.php b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Text.php index 40bcc4fd2686f341fd70762500a3353935fbb8a1..90cf1a7f96a702b62c650b1996c8a08c17ab6a07 100644 --- a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Text.php +++ b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Text.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Theme.php b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Theme.php index f13f3c653d189b8fd06d218aab0e01528d8f393a..9caf6f1062962d33bbcb1b17c5d5f5a3beb6978b 100644 --- a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Theme.php +++ b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Theme.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Abstract.php b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Abstract.php index a99af00fbaec0e12c0aed47e9048ce4f8ab7e390..2d42cbc51b62025ef838a54052eca2131813c2c8 100644 --- a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Abstract.php +++ b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Action.php b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Action.php index f2786e3ed67b253125e4d22cf87496ff16bbee26..2d3e531023eccbfc7f05a2ce35223942bede9ea9 100644 --- a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Action.php +++ b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Action.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Checkbox.php b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Checkbox.php index 251df6ab6312f3ae9280e6cc1c224d29be590394..b38f59bd130d620ecd64ed9e9e4ae46b12ebca15 100644 --- a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Checkbox.php +++ b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Checkbox.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Concat.php b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Concat.php index ba45118cd7aad3d3801d0d811eac71330d0c6232..1b1dd9dda2d1da699f6828fd36b04aae0651688c 100644 --- a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Concat.php +++ b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Concat.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Country.php b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Country.php index d6755cdbb1d8b1ee744c9d08c18da19dd80dc317..138f2a4245824d9c911f049d6aeedf903a3dc9ae 100644 --- a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Country.php +++ b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Country.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Currency.php b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Currency.php index bc961cbb473b01c06cba6aec31430a2eb364e608..8f7c1cc0d5eb1a46aa48aa84c6bb2491e21ec5ec 100644 --- a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Currency.php +++ b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Currency.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Date.php b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Date.php index 262dcb401cd8746b710ad30a85b4117983688f0d..c72c53ea3cb2910a556b61e8ce0bdb1e4365abb6 100644 --- a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Date.php +++ b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Date.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Datetime.php b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Datetime.php index 9804ba7f309419e4c654a4dee13895a266c590c7..48dcb2bd48ffabf0449bb959e155c6b161856f8c 100644 --- a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Datetime.php +++ b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Datetime.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Input.php b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Input.php index 51644845df363bb515c5f487aae5b2100adb77d6..685e5fa61005f2529f8c6e8c24405822fae04172 100644 --- a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Input.php +++ b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Input.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Interface.php b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Interface.php index 135ebf5ae94c62a8d0d42624b71b4a1b271dd7d5..0f1b8b30aaf5039d9b9ef51f648014b694a3c980 100644 --- a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Interface.php +++ b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Interface.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Ip.php b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Ip.php index 632ce47624a64b96deb1a5b862fe516851644744..9e12f214a8117859fe572164adedec58b010b81c 100644 --- a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Ip.php +++ b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Ip.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Longtext.php b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Longtext.php index db61fce12d4009f8156d8e1cfe32ccc008a69ba1..70278e790db677e2517f6edf2ac25a7d169796a1 100644 --- a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Longtext.php +++ b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Longtext.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Massaction.php b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Massaction.php index d5933776f64f9777bd67d911205e4a6fb9859544..0573ff28ec97e1f5ade4b97c0f77bb92f0b3335a 100644 --- a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Massaction.php +++ b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Massaction.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Number.php b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Number.php index 81d3390d180494f7e5675942b43aded57ee074af..439aa3bc5c23c491cc195e9d39b297e8e2247b41 100644 --- a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Number.php +++ b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Number.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Options.php b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Options.php index 09404cd7982c369398a75ab55209becd15e0bdab..43f4650270db0fe57dab9a79ca2f672afe52a30e 100644 --- a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Options.php +++ b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Options.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Price.php b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Price.php index 36d0a20307ce98003dd4c6de7996d610756745ae..f06fabf4187e29dc682d94d0ad3da26bc172a134 100644 --- a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Price.php +++ b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Price.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Radio.php b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Radio.php index 202fc20298149aff57a92764b0c886b5dbb0d8dc..76e31eb1c5edd1649713d688680f937d7d290432 100644 --- a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Radio.php +++ b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Radio.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Select.php b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Select.php index 84c1c9a65659aedbecae5d4e0e864a5c04d2322d..610908238d325870ed23df9947517e14a8602418 100644 --- a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Select.php +++ b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Select.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Store.php b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Store.php index 55c9a7fa56d071e1d8118c94b4547fdfcf30ee22..369f2a6980f431b208ad3002ad288967a28b78c0 100644 --- a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Store.php +++ b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Store.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Text.php b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Text.php index 4ef8522e997460ab5dafb030a6e041c8d743d73b..bd6008877b93e004c54d48397c9909bc54435a5d 100644 --- a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Text.php +++ b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Text.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Wrapline.php b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Wrapline.php index da758a5138dce3e8f771e984604705a79fa06a5b..295f8340d10c7faee3b7b3a29f2183aa55ba9768 100644 --- a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Wrapline.php +++ b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Wrapline.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Container.php b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Container.php index 4d59ab4e2ec83cf21dd24b85b38385d94ae6963e..6be82cb2a0bddb9db5d4c034aa652f7a094d77a6 100644 --- a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Container.php +++ b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Container.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Massaction.php b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Massaction.php index ba58bbcd129ee91c4610fd565840edfe73e54996..8563677004f103ee4089d2578852f60182b9a31a 100644 --- a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Massaction.php +++ b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Massaction.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Massaction/Abstract.php b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Massaction/Abstract.php index 1c332e174220a7fddc18c1221f3d8b427a304125..ec1d1be6f5dcf42853198f20e0574f852ed0b7bc 100644 --- a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Massaction/Abstract.php +++ b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Massaction/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Massaction/Item.php b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Massaction/Item.php index 5fc910be95810f6da6c0e6bf631dd4cd78e837d3..40b9b40dd6cae44b30423c456ec4a8d76413c140 100644 --- a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Massaction/Item.php +++ b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Massaction/Item.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Massaction/Item/Additional/Default.php b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Massaction/Item/Additional/Default.php index 2d23ffd90b9565f9d1e45d47b9c6ac0082151276..b6ba1349f91e567273fc5170d18b610ea11ed44f 100644 --- a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Massaction/Item/Additional/Default.php +++ b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Massaction/Item/Additional/Default.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Massaction/Item/Additional/Interface.php b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Massaction/Item/Additional/Interface.php index 2d6959e319325708b6be0f29fca2ae205d1d2b77..8db24bf603699298e2870c472818ce44fb38f4c3 100644 --- a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Massaction/Item/Additional/Interface.php +++ b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Massaction/Item/Additional/Interface.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Serializer.php b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Serializer.php index 89f9478bbf9ada0462640e800a53ef0d79bb7929..952bf400311f0d4c9ce360fb6900f7c382466797 100644 --- a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Serializer.php +++ b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Serializer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Widget/Tab/Interface.php b/app/code/core/Mage/Adminhtml/Block/Widget/Tab/Interface.php index 3bafed0f2d8e7e79761056e4c8548ff5a9bdf261..d864dbb6ecdcb5c5e033db090def3b27fda2769f 100644 --- a/app/code/core/Mage/Adminhtml/Block/Widget/Tab/Interface.php +++ b/app/code/core/Mage/Adminhtml/Block/Widget/Tab/Interface.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Widget/Tabs.php b/app/code/core/Mage/Adminhtml/Block/Widget/Tabs.php index 0d93ec21f25ad6768d1946ae9bc0c98aba6438a5..4ca41782568c1204c2a201dea8b68022544d4318 100644 --- a/app/code/core/Mage/Adminhtml/Block/Widget/Tabs.php +++ b/app/code/core/Mage/Adminhtml/Block/Widget/Tabs.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Block/Widget/View/Container.php b/app/code/core/Mage/Adminhtml/Block/Widget/View/Container.php index b8b1bbc48c28e96be05b0dd41c182c4eca3939f4..f840d8c583b86dcbce49b31e2ec4155851b14a6c 100644 --- a/app/code/core/Mage/Adminhtml/Block/Widget/View/Container.php +++ b/app/code/core/Mage/Adminhtml/Block/Widget/View/Container.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Controller/Action.php b/app/code/core/Mage/Adminhtml/Controller/Action.php index 47d9b5ef84fe07df75325ec38415b02c9580f9f9..8a7c8dc94c8442dd68e466ff77fb689a2da6ac74 100644 --- a/app/code/core/Mage/Adminhtml/Controller/Action.php +++ b/app/code/core/Mage/Adminhtml/Controller/Action.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Controller/Report/Abstract.php b/app/code/core/Mage/Adminhtml/Controller/Report/Abstract.php index 3062b73c2b2973f7927db410a8ec7a951a79e571..088bdaff2491026b7efe76df01e7ada2192f2cd4 100644 --- a/app/code/core/Mage/Adminhtml/Controller/Report/Abstract.php +++ b/app/code/core/Mage/Adminhtml/Controller/Report/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Controller/Sales/Creditmemo.php b/app/code/core/Mage/Adminhtml/Controller/Sales/Creditmemo.php index 253e70706c00fdac988c51bb9da6457284dff201..f9c70e2ddc980634626f47f123163620c7eac966 100644 --- a/app/code/core/Mage/Adminhtml/Controller/Sales/Creditmemo.php +++ b/app/code/core/Mage/Adminhtml/Controller/Sales/Creditmemo.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Controller/Sales/Invoice.php b/app/code/core/Mage/Adminhtml/Controller/Sales/Invoice.php index b069613499c55124223c755ee25bde4195b7a104..bbf7e048512ccf70f4ab568a40b79043e3e265d2 100644 --- a/app/code/core/Mage/Adminhtml/Controller/Sales/Invoice.php +++ b/app/code/core/Mage/Adminhtml/Controller/Sales/Invoice.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Controller/Sales/Shipment.php b/app/code/core/Mage/Adminhtml/Controller/Sales/Shipment.php index 3e388ff4edf1c94c68edf206c2b493d22bbe8075..4eeb32065def4b964cc79192691c8feda0d312b4 100644 --- a/app/code/core/Mage/Adminhtml/Controller/Sales/Shipment.php +++ b/app/code/core/Mage/Adminhtml/Controller/Sales/Shipment.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Exception.php b/app/code/core/Mage/Adminhtml/Exception.php index f1d51d311b208eacb4e1c824169582af55795d91..91d948bfb5fb175dcf40fa3c654923ef7f7ec75f 100644 --- a/app/code/core/Mage/Adminhtml/Exception.php +++ b/app/code/core/Mage/Adminhtml/Exception.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Helper/Addresses.php b/app/code/core/Mage/Adminhtml/Helper/Addresses.php index 54dcb194e767d4c6d02bfbf8e0551b6113ff4e1f..578ef625be2ad300955c0bdfc7ff11a87e5b814a 100644 --- a/app/code/core/Mage/Adminhtml/Helper/Addresses.php +++ b/app/code/core/Mage/Adminhtml/Helper/Addresses.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Helper/Catalog.php b/app/code/core/Mage/Adminhtml/Helper/Catalog.php index 97196db27c98faa924d88364a0ac8af19e46c418..243ccbeddd3c6ab234da9aad40e134a4f9054a04 100644 --- a/app/code/core/Mage/Adminhtml/Helper/Catalog.php +++ b/app/code/core/Mage/Adminhtml/Helper/Catalog.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Helper/Catalog/Product/Composite.php b/app/code/core/Mage/Adminhtml/Helper/Catalog/Product/Composite.php index 5cdf5b8617dcdd19507004e1c04b66736e8cc5ed..e9dcee1c9b81c236d196d9eb2e7f80ffe8124717 100644 --- a/app/code/core/Mage/Adminhtml/Helper/Catalog/Product/Composite.php +++ b/app/code/core/Mage/Adminhtml/Helper/Catalog/Product/Composite.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Helper/Catalog/Product/Edit/Action/Attribute.php b/app/code/core/Mage/Adminhtml/Helper/Catalog/Product/Edit/Action/Attribute.php index b30a52d018b787553f204b86a0429eaa8ddccb9e..9ceab88e196989b8512d520fa166b6f43ee68c58 100644 --- a/app/code/core/Mage/Adminhtml/Helper/Catalog/Product/Edit/Action/Attribute.php +++ b/app/code/core/Mage/Adminhtml/Helper/Catalog/Product/Edit/Action/Attribute.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Helper/Dashboard/Abstract.php b/app/code/core/Mage/Adminhtml/Helper/Dashboard/Abstract.php index 0c432d91b38298cb2ca5b29c7bc436469baef582..f107968438aed7b8afc917c347640fb35de15923 100644 --- a/app/code/core/Mage/Adminhtml/Helper/Dashboard/Abstract.php +++ b/app/code/core/Mage/Adminhtml/Helper/Dashboard/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Helper/Dashboard/Data.php b/app/code/core/Mage/Adminhtml/Helper/Dashboard/Data.php index 07a911fc6cde2060e665193e9bb3a538432edbfa..bf9e7bee9d98071e6f9851a5f949a8e7f96304b9 100644 --- a/app/code/core/Mage/Adminhtml/Helper/Dashboard/Data.php +++ b/app/code/core/Mage/Adminhtml/Helper/Dashboard/Data.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Helper/Dashboard/Order.php b/app/code/core/Mage/Adminhtml/Helper/Dashboard/Order.php index 74bba645bbbbeec49746ee71dc523a5c69bf0707..a29fbfcdf71f004050612b40ea64930538dd3603 100644 --- a/app/code/core/Mage/Adminhtml/Helper/Dashboard/Order.php +++ b/app/code/core/Mage/Adminhtml/Helper/Dashboard/Order.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Helper/Data.php b/app/code/core/Mage/Adminhtml/Helper/Data.php index 6031f4e41b257563ece9e7cacf112aa05667ae6e..71ce72b92874a74e7b5e639936c1dd40b8b7c31f 100644 --- a/app/code/core/Mage/Adminhtml/Helper/Data.php +++ b/app/code/core/Mage/Adminhtml/Helper/Data.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Helper/Js.php b/app/code/core/Mage/Adminhtml/Helper/Js.php index 840365b68504a316be1c4b9fd545dd1e1b525379..22874b84aa5e5d6f2d8043b4be3270d5d8cc7ab3 100644 --- a/app/code/core/Mage/Adminhtml/Helper/Js.php +++ b/app/code/core/Mage/Adminhtml/Helper/Js.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Helper/Media/Js.php b/app/code/core/Mage/Adminhtml/Helper/Media/Js.php index e94af378a8a0a7bf1da4e287e3bc070931867ea4..e96501876b9a616cfae4d972990255c9c8bf5733 100644 --- a/app/code/core/Mage/Adminhtml/Helper/Media/Js.php +++ b/app/code/core/Mage/Adminhtml/Helper/Media/Js.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Helper/Sales.php b/app/code/core/Mage/Adminhtml/Helper/Sales.php index 8d0859257a2897f54f0732665b1d8bf4597466f2..74b4bfa53cff648954db9eef3dff91818aea6ab3 100644 --- a/app/code/core/Mage/Adminhtml/Helper/Sales.php +++ b/app/code/core/Mage/Adminhtml/Helper/Sales.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Model/Customer/Renderer/Region.php b/app/code/core/Mage/Adminhtml/Model/Customer/Renderer/Region.php index f8a25dd61317be572cf69e7be783aa1882c042a4..4e6139e57206162691afbffc2b53b071053ad812 100644 --- a/app/code/core/Mage/Adminhtml/Model/Customer/Renderer/Region.php +++ b/app/code/core/Mage/Adminhtml/Model/Customer/Renderer/Region.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Model/Email/Template.php b/app/code/core/Mage/Adminhtml/Model/Email/Template.php index b6d173e97d8028b7cdff307e5016a354c948c662..78f967d401659058a04a068f4f3edb403bca6758 100644 --- a/app/code/core/Mage/Adminhtml/Model/Email/Template.php +++ b/app/code/core/Mage/Adminhtml/Model/Email/Template.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Model/Extension.php b/app/code/core/Mage/Adminhtml/Model/Extension.php index 75dd0b8565021f21a5433e92bf1ef21fec55d691..a2c43b27c9bc166689b84cdd5daa3a1cff4bb301 100644 --- a/app/code/core/Mage/Adminhtml/Model/Extension.php +++ b/app/code/core/Mage/Adminhtml/Model/Extension.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Model/Giftmessage/Save.php b/app/code/core/Mage/Adminhtml/Model/Giftmessage/Save.php index a1cbad2622ffcd7d192832b34a89c72117a47984..b4f0cdfb977d1f635b26fcfec1aa6b649198b3ce 100644 --- a/app/code/core/Mage/Adminhtml/Model/Giftmessage/Save.php +++ b/app/code/core/Mage/Adminhtml/Model/Giftmessage/Save.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Model/LayoutUpdate/Validator.php b/app/code/core/Mage/Adminhtml/Model/LayoutUpdate/Validator.php index 6dde488a4671fd84a9eb61e1eaa9cdf7e44b81a3..14d8d1fef6f2ef3585d0388e6a4b578838d0b002 100644 --- a/app/code/core/Mage/Adminhtml/Model/LayoutUpdate/Validator.php +++ b/app/code/core/Mage/Adminhtml/Model/LayoutUpdate/Validator.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Model/Newsletter/Renderer/Text.php b/app/code/core/Mage/Adminhtml/Model/Newsletter/Renderer/Text.php index 629bfb1130d50c6061d0655ca0447ca3e86b36ba..50322f2aecde5936b01da55fdbaf7ca6615bab95 100644 --- a/app/code/core/Mage/Adminhtml/Model/Newsletter/Renderer/Text.php +++ b/app/code/core/Mage/Adminhtml/Model/Newsletter/Renderer/Text.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Model/Observer.php b/app/code/core/Mage/Adminhtml/Model/Observer.php index b5730a3d0275a9b496e3c3ba8e2e852e05eb86d9..8f60b2e56d2b74eab62d062bf9da57cf4934da63 100644 --- a/app/code/core/Mage/Adminhtml/Model/Observer.php +++ b/app/code/core/Mage/Adminhtml/Model/Observer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Model/Report/Item.php b/app/code/core/Mage/Adminhtml/Model/Report/Item.php index dc4d6280e7b6266da15ca8807f1b3b73db115a0d..f95d9238ba3b8cc74c57f08b987d0ad2222a982e 100644 --- a/app/code/core/Mage/Adminhtml/Model/Report/Item.php +++ b/app/code/core/Mage/Adminhtml/Model/Report/Item.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Adminhtml_Model_Report_Item extends Varien_Object diff --git a/app/code/core/Mage/Adminhtml/Model/Sales/Order.php b/app/code/core/Mage/Adminhtml/Model/Sales/Order.php index 713f179a8de651531749b4c4e1d6b117b0121ab4..0a0ff8f14a2b486cb2304301e7100eccc8b2dd25 100644 --- a/app/code/core/Mage/Adminhtml/Model/Sales/Order.php +++ b/app/code/core/Mage/Adminhtml/Model/Sales/Order.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Model/Sales/Order/Create.php b/app/code/core/Mage/Adminhtml/Model/Sales/Order/Create.php index 401626efeff3a87aa4a6d23ab7432ac66322fa88..1c8af3fb193634e199b02eed6628cde7c48e5d88 100644 --- a/app/code/core/Mage/Adminhtml/Model/Sales/Order/Create.php +++ b/app/code/core/Mage/Adminhtml/Model/Sales/Order/Create.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Model/Sales/Order/Random.php b/app/code/core/Mage/Adminhtml/Model/Sales/Order/Random.php index 45ecd188d4e8f4180d915b070b20bbb7848bba89..d0693a5b1018895b94a245bdd010e3d50d14372f 100644 --- a/app/code/core/Mage/Adminhtml/Model/Sales/Order/Random.php +++ b/app/code/core/Mage/Adminhtml/Model/Sales/Order/Random.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Model/Search/Catalog.php b/app/code/core/Mage/Adminhtml/Model/Search/Catalog.php index 99011f1369ee628da573d4f570782fc22ec2880e..e71643e2f4acdf8ec7e79e6dccc729a1534381b1 100644 --- a/app/code/core/Mage/Adminhtml/Model/Search/Catalog.php +++ b/app/code/core/Mage/Adminhtml/Model/Search/Catalog.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Model/Search/Customer.php b/app/code/core/Mage/Adminhtml/Model/Search/Customer.php index 22d3e190628351d715a62ce2de9848bd0381b590..923f9b3e684e414f4f90e905effaf21a1801f6c2 100644 --- a/app/code/core/Mage/Adminhtml/Model/Search/Customer.php +++ b/app/code/core/Mage/Adminhtml/Model/Search/Customer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Model/Search/Order.php b/app/code/core/Mage/Adminhtml/Model/Search/Order.php index ad4d27f2d1c34d03383f45c2271bca3ef18cb135..42550603c54dc9f06da59761adfba59ad8c111bb 100644 --- a/app/code/core/Mage/Adminhtml/Model/Search/Order.php +++ b/app/code/core/Mage/Adminhtml/Model/Search/Order.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Model/Session.php b/app/code/core/Mage/Adminhtml/Model/Session.php index f505170acf8f4395a8fd8a5091a1ee5a51c8e397..30767f130764421b674fff9ec24d75f12baf36f4 100644 --- a/app/code/core/Mage/Adminhtml/Model/Session.php +++ b/app/code/core/Mage/Adminhtml/Model/Session.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Model/Session/Quote.php b/app/code/core/Mage/Adminhtml/Model/Session/Quote.php index dc4e833c6c14ec6f23184ba22fce849947f73cfc..32c68ff71384d0ab42d9d9e241d5661c6774bd08 100644 --- a/app/code/core/Mage/Adminhtml/Model/Session/Quote.php +++ b/app/code/core/Mage/Adminhtml/Model/Session/Quote.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/Model/UrlRewriteOptions.php b/app/code/core/Mage/Adminhtml/Model/UrlRewriteOptions.php index a4bf483602112885086cbde5370a35d35d53122c..9b6c93729b4da962abdb59d213fb0d38b619c8ef 100644 --- a/app/code/core/Mage/Adminhtml/Model/UrlRewriteOptions.php +++ b/app/code/core/Mage/Adminhtml/Model/UrlRewriteOptions.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Users - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/controllers/AjaxController.php b/app/code/core/Mage/Adminhtml/controllers/AjaxController.php index 34edbf5e0f84ef13b1dae9fae53e141248a86c7d..e58bd5f76ce7cf8a057db5915e1f5215466b24d7 100644 --- a/app/code/core/Mage/Adminhtml/controllers/AjaxController.php +++ b/app/code/core/Mage/Adminhtml/controllers/AjaxController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/controllers/CacheController.php b/app/code/core/Mage/Adminhtml/controllers/CacheController.php index e9f80b077dd2f3e5e629bc4c61b0c9ef45472c39..fa1e51367139611bef7631f9fe7637356c3e512c 100644 --- a/app/code/core/Mage/Adminhtml/controllers/CacheController.php +++ b/app/code/core/Mage/Adminhtml/controllers/CacheController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/controllers/Catalog/Category/WidgetController.php b/app/code/core/Mage/Adminhtml/controllers/Catalog/Category/WidgetController.php index 4cc066e81c57f4e0151a65faeaa95e4c7b64eb27..1d458835ac67d4432ba92579f170acf9590e05da 100644 --- a/app/code/core/Mage/Adminhtml/controllers/Catalog/Category/WidgetController.php +++ b/app/code/core/Mage/Adminhtml/controllers/Catalog/Category/WidgetController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/controllers/Catalog/CategoryController.php b/app/code/core/Mage/Adminhtml/controllers/Catalog/CategoryController.php index 5e467fbcab64eefead60df57bde0f526e35b6d06..9eb5d4752d54763f6f3dbe083179e6c54836984f 100644 --- a/app/code/core/Mage/Adminhtml/controllers/Catalog/CategoryController.php +++ b/app/code/core/Mage/Adminhtml/controllers/Catalog/CategoryController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/controllers/Catalog/Product/Action/AttributeController.php b/app/code/core/Mage/Adminhtml/controllers/Catalog/Product/Action/AttributeController.php index 2ad94f15df5eed9f8aa4aa52cfdf44b2b6cd8e50..0659bd0e2cd9b86b3e430d420d4a27a65aca8ea6 100644 --- a/app/code/core/Mage/Adminhtml/controllers/Catalog/Product/Action/AttributeController.php +++ b/app/code/core/Mage/Adminhtml/controllers/Catalog/Product/Action/AttributeController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/controllers/Catalog/Product/AttributeController.php b/app/code/core/Mage/Adminhtml/controllers/Catalog/Product/AttributeController.php index 97f85823609473e499fb1825eb625fa1a79320ce..4c15e5f95d2277cd9849e9f2304555ac3a223ecf 100644 --- a/app/code/core/Mage/Adminhtml/controllers/Catalog/Product/AttributeController.php +++ b/app/code/core/Mage/Adminhtml/controllers/Catalog/Product/AttributeController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/controllers/Catalog/Product/DatafeedsController.php b/app/code/core/Mage/Adminhtml/controllers/Catalog/Product/DatafeedsController.php index 8cbf9c685155913943e0460ed8e618742a7e0e40..7569a5137dfe2795c6c6ca67efdddc5c08d194a1 100644 --- a/app/code/core/Mage/Adminhtml/controllers/Catalog/Product/DatafeedsController.php +++ b/app/code/core/Mage/Adminhtml/controllers/Catalog/Product/DatafeedsController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/controllers/Catalog/Product/GalleryController.php b/app/code/core/Mage/Adminhtml/controllers/Catalog/Product/GalleryController.php index ac588e7a358c902cc1d28935c37e91909b724dee..ff78cc884d07dcc6facd032bf0f5069e2631abe5 100644 --- a/app/code/core/Mage/Adminhtml/controllers/Catalog/Product/GalleryController.php +++ b/app/code/core/Mage/Adminhtml/controllers/Catalog/Product/GalleryController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/controllers/Catalog/Product/GroupController.php b/app/code/core/Mage/Adminhtml/controllers/Catalog/Product/GroupController.php index ad671a70447eab33281075cd60c4985bae14af6d..43e356171720876875b0ef87da21d8ad9864673d 100644 --- a/app/code/core/Mage/Adminhtml/controllers/Catalog/Product/GroupController.php +++ b/app/code/core/Mage/Adminhtml/controllers/Catalog/Product/GroupController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/controllers/Catalog/Product/ReviewController.php b/app/code/core/Mage/Adminhtml/controllers/Catalog/Product/ReviewController.php index 66bcfbbf07836cc0c87984f80c836a53c0c8a969..b94587a4a1b02a134e747196a70af075801cb778 100644 --- a/app/code/core/Mage/Adminhtml/controllers/Catalog/Product/ReviewController.php +++ b/app/code/core/Mage/Adminhtml/controllers/Catalog/Product/ReviewController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/controllers/Catalog/Product/SetController.php b/app/code/core/Mage/Adminhtml/controllers/Catalog/Product/SetController.php index fcb33e1896c31e2ebab10aacba9620f216805f79..3e85130d30597d8f66a978e6a47276b1c11cd131 100644 --- a/app/code/core/Mage/Adminhtml/controllers/Catalog/Product/SetController.php +++ b/app/code/core/Mage/Adminhtml/controllers/Catalog/Product/SetController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/controllers/Catalog/Product/WidgetController.php b/app/code/core/Mage/Adminhtml/controllers/Catalog/Product/WidgetController.php index abb377350eea73d123528b8914de937a31c4380b..85b35919cd17d54c22c0e12419abcf6a413cfa41 100644 --- a/app/code/core/Mage/Adminhtml/controllers/Catalog/Product/WidgetController.php +++ b/app/code/core/Mage/Adminhtml/controllers/Catalog/Product/WidgetController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/controllers/Catalog/ProductController.php b/app/code/core/Mage/Adminhtml/controllers/Catalog/ProductController.php index a113a4503c0bee40dac3460ea33e1dfee98a9077..93e33862e5ae7b4898dd608d41a59a044735cce8 100644 --- a/app/code/core/Mage/Adminhtml/controllers/Catalog/ProductController.php +++ b/app/code/core/Mage/Adminhtml/controllers/Catalog/ProductController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/controllers/Catalog/SearchController.php b/app/code/core/Mage/Adminhtml/controllers/Catalog/SearchController.php index 807cfab3974a0524813fa832dd684aad29d50074..cc535f084dc0e4f3f7a5f57d1f2d99a432169c98 100644 --- a/app/code/core/Mage/Adminhtml/controllers/Catalog/SearchController.php +++ b/app/code/core/Mage/Adminhtml/controllers/Catalog/SearchController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/controllers/Checkout/AgreementController.php b/app/code/core/Mage/Adminhtml/controllers/Checkout/AgreementController.php index ff424bea1b41090689083f54ef708c7bf5ef486a..3f24d8e53b82c0443a6824d822e2b9c09afdac79 100644 --- a/app/code/core/Mage/Adminhtml/controllers/Checkout/AgreementController.php +++ b/app/code/core/Mage/Adminhtml/controllers/Checkout/AgreementController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/controllers/Cms/Block/WidgetController.php b/app/code/core/Mage/Adminhtml/controllers/Cms/Block/WidgetController.php index a35be9476863def95d2d5824bdc7fe626e4b5b79..a697f6c369315dab49f14f11171bfc243ab57074 100644 --- a/app/code/core/Mage/Adminhtml/controllers/Cms/Block/WidgetController.php +++ b/app/code/core/Mage/Adminhtml/controllers/Cms/Block/WidgetController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/controllers/Cms/BlockController.php b/app/code/core/Mage/Adminhtml/controllers/Cms/BlockController.php index a8c16ccc4acce59889b52b5ff749a2df881ac066..6711aca199e79e8896f3db6ecbcc7f2aac6e45ee 100644 --- a/app/code/core/Mage/Adminhtml/controllers/Cms/BlockController.php +++ b/app/code/core/Mage/Adminhtml/controllers/Cms/BlockController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/controllers/Cms/Page/WidgetController.php b/app/code/core/Mage/Adminhtml/controllers/Cms/Page/WidgetController.php index fed2fc7e08aaac9a8a9b2f994c182045cbdf9049..76b10c436d966f740d85cdfb7ac8b71ddaea8727 100644 --- a/app/code/core/Mage/Adminhtml/controllers/Cms/Page/WidgetController.php +++ b/app/code/core/Mage/Adminhtml/controllers/Cms/Page/WidgetController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/controllers/Cms/PageController.php b/app/code/core/Mage/Adminhtml/controllers/Cms/PageController.php index 821c55e2547be4476161502c49b939c2cc4fc314..92337cfe772715ed8d33503362cee202c6aead81 100644 --- a/app/code/core/Mage/Adminhtml/controllers/Cms/PageController.php +++ b/app/code/core/Mage/Adminhtml/controllers/Cms/PageController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/controllers/Cms/Wysiwyg/ImagesController.php b/app/code/core/Mage/Adminhtml/controllers/Cms/Wysiwyg/ImagesController.php index 1c776b3918d1b487f2764ad3a826142461a6f7b7..f9adafc7f65112f13ba2fa5b8d33133bf26ce9f0 100644 --- a/app/code/core/Mage/Adminhtml/controllers/Cms/Wysiwyg/ImagesController.php +++ b/app/code/core/Mage/Adminhtml/controllers/Cms/Wysiwyg/ImagesController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/controllers/Cms/WysiwygController.php b/app/code/core/Mage/Adminhtml/controllers/Cms/WysiwygController.php index 414028808a9ca3b162ffe23aa8092de0568d2a38..b65f8c49b951681398d8b6c882d44a15c4a28297 100644 --- a/app/code/core/Mage/Adminhtml/controllers/Cms/WysiwygController.php +++ b/app/code/core/Mage/Adminhtml/controllers/Cms/WysiwygController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/controllers/Customer/Cart/Product/Composite/CartController.php b/app/code/core/Mage/Adminhtml/controllers/Customer/Cart/Product/Composite/CartController.php index a55b6c3b8ea637ab4c755c437faff143b2c5249a..a46cd8be378ddb50139e0e47837664c0d6e26af2 100644 --- a/app/code/core/Mage/Adminhtml/controllers/Customer/Cart/Product/Composite/CartController.php +++ b/app/code/core/Mage/Adminhtml/controllers/Customer/Cart/Product/Composite/CartController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/controllers/Customer/GroupController.php b/app/code/core/Mage/Adminhtml/controllers/Customer/GroupController.php index e43ec852270aaacaa73ac794dca23a43057ee1fa..58155838a9e02f88ab938774f3d1906890e0efcb 100644 --- a/app/code/core/Mage/Adminhtml/controllers/Customer/GroupController.php +++ b/app/code/core/Mage/Adminhtml/controllers/Customer/GroupController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/controllers/Customer/OnlineController.php b/app/code/core/Mage/Adminhtml/controllers/Customer/OnlineController.php index 0b2626706d925d00f51837a85bf3ac190dea2c68..6abac40f77879828103e787e2d307cccee180607 100644 --- a/app/code/core/Mage/Adminhtml/controllers/Customer/OnlineController.php +++ b/app/code/core/Mage/Adminhtml/controllers/Customer/OnlineController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Adminhtml_Customer_OnlineController extends Mage_Adminhtml_Controller_Action diff --git a/app/code/core/Mage/Adminhtml/controllers/Customer/System/Config/ValidatevatController.php b/app/code/core/Mage/Adminhtml/controllers/Customer/System/Config/ValidatevatController.php index 03d7fa0c5fe5829853c95c15914bb377568c48a4..ab140a92e76f2b60cd347ecca271771b6e318238 100644 --- a/app/code/core/Mage/Adminhtml/controllers/Customer/System/Config/ValidatevatController.php +++ b/app/code/core/Mage/Adminhtml/controllers/Customer/System/Config/ValidatevatController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/controllers/Customer/Wishlist/Product/Composite/WishlistController.php b/app/code/core/Mage/Adminhtml/controllers/Customer/Wishlist/Product/Composite/WishlistController.php index c24f11837abd434f387ed7a076d6d6dd05b51280..59141a2d1d6a805b8a25ea08d2d1a73fbdde5c68 100644 --- a/app/code/core/Mage/Adminhtml/controllers/Customer/Wishlist/Product/Composite/WishlistController.php +++ b/app/code/core/Mage/Adminhtml/controllers/Customer/Wishlist/Product/Composite/WishlistController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/controllers/CustomerController.php b/app/code/core/Mage/Adminhtml/controllers/CustomerController.php index efee4a08e9022fffa70521bd23fc3ac8ae73ffad..0ccaa35c640b5cf9543cdd7b959f3904e8da067e 100644 --- a/app/code/core/Mage/Adminhtml/controllers/CustomerController.php +++ b/app/code/core/Mage/Adminhtml/controllers/CustomerController.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Adminhtml_CustomerController extends Mage_Adminhtml_Controller_Action diff --git a/app/code/core/Mage/Adminhtml/controllers/DashboardController.php b/app/code/core/Mage/Adminhtml/controllers/DashboardController.php index 29446fa06aa6fed4d5f56c5db13f2dd5392208e2..133bd8177cb8b4be9faa08573b3ca6b64488f98f 100644 --- a/app/code/core/Mage/Adminhtml/controllers/DashboardController.php +++ b/app/code/core/Mage/Adminhtml/controllers/DashboardController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/controllers/IndexController.php b/app/code/core/Mage/Adminhtml/controllers/IndexController.php index ca0fb6594b2bad03901da7b01b4241e37c0e1020..e9349e73bbef27f399236d6d115f981ab308a79d 100644 --- a/app/code/core/Mage/Adminhtml/controllers/IndexController.php +++ b/app/code/core/Mage/Adminhtml/controllers/IndexController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/controllers/JsonController.php b/app/code/core/Mage/Adminhtml/controllers/JsonController.php index 637f56c357447d062ea2a3e00bb8eaadc629a3af..8fbccee99308d5c145410897b4392d6596429fab 100644 --- a/app/code/core/Mage/Adminhtml/controllers/JsonController.php +++ b/app/code/core/Mage/Adminhtml/controllers/JsonController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/controllers/Newsletter/ProblemController.php b/app/code/core/Mage/Adminhtml/controllers/Newsletter/ProblemController.php index a916b3b4ed23399385946070b624f1b6b7d7efca..29ed10916424faea2d8b77be7103137ede29103f 100644 --- a/app/code/core/Mage/Adminhtml/controllers/Newsletter/ProblemController.php +++ b/app/code/core/Mage/Adminhtml/controllers/Newsletter/ProblemController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/controllers/Newsletter/QueueController.php b/app/code/core/Mage/Adminhtml/controllers/Newsletter/QueueController.php index 07d9a1cfff6b6d23dd108e56c68a97ff750a337e..df2a565da62e772608aaa364df39894ee0c74695 100644 --- a/app/code/core/Mage/Adminhtml/controllers/Newsletter/QueueController.php +++ b/app/code/core/Mage/Adminhtml/controllers/Newsletter/QueueController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/controllers/Newsletter/SubscriberController.php b/app/code/core/Mage/Adminhtml/controllers/Newsletter/SubscriberController.php index 1b6dd8ec1f573b691194480b4f55309969ac94ea..798195de3a5c7253e3eafd33da9917fce123e5f7 100644 --- a/app/code/core/Mage/Adminhtml/controllers/Newsletter/SubscriberController.php +++ b/app/code/core/Mage/Adminhtml/controllers/Newsletter/SubscriberController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/controllers/Newsletter/TemplateController.php b/app/code/core/Mage/Adminhtml/controllers/Newsletter/TemplateController.php index 52e8df9d63c54a0699a3276ac81ff53f8d8bb993..fd69ea3af03138ed65b412e97903d009f2c6ba76 100644 --- a/app/code/core/Mage/Adminhtml/controllers/Newsletter/TemplateController.php +++ b/app/code/core/Mage/Adminhtml/controllers/Newsletter/TemplateController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ /** diff --git a/app/code/core/Mage/Adminhtml/controllers/NotificationController.php b/app/code/core/Mage/Adminhtml/controllers/NotificationController.php index 02a4fe49d2d338c3597f1d188624290c125c7c08..461b3fd851b908df10526224efd8c5d9d409d0f4 100644 --- a/app/code/core/Mage/Adminhtml/controllers/NotificationController.php +++ b/app/code/core/Mage/Adminhtml/controllers/NotificationController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/controllers/Poll/AnswerController.php b/app/code/core/Mage/Adminhtml/controllers/Poll/AnswerController.php index c99fd890181726db923540ad5b84cefabaf73d85..a1608a6870999ab12dbce84091ae7de0fddcfa6c 100644 --- a/app/code/core/Mage/Adminhtml/controllers/Poll/AnswerController.php +++ b/app/code/core/Mage/Adminhtml/controllers/Poll/AnswerController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/controllers/PollController.php b/app/code/core/Mage/Adminhtml/controllers/PollController.php index 697cff12690f954c37bd6c339fe47679ec47612f..810618674c43d8e9410337a5092a1f12ed8a14dc 100644 --- a/app/code/core/Mage/Adminhtml/controllers/PollController.php +++ b/app/code/core/Mage/Adminhtml/controllers/PollController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/controllers/Promo/CatalogController.php b/app/code/core/Mage/Adminhtml/controllers/Promo/CatalogController.php index 6e138d1a44cf44334a13c77156440a4e114ecf6c..9a2e5b34957e46570f9441c023959de3f4341ca7 100644 --- a/app/code/core/Mage/Adminhtml/controllers/Promo/CatalogController.php +++ b/app/code/core/Mage/Adminhtml/controllers/Promo/CatalogController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/controllers/Promo/QuoteController.php b/app/code/core/Mage/Adminhtml/controllers/Promo/QuoteController.php index a44c3ebe04f339ac7dabdbb133cd6e04ad0dda96..21133f219ec5ba13c30e9efa55f1fd2b384f2e8a 100644 --- a/app/code/core/Mage/Adminhtml/controllers/Promo/QuoteController.php +++ b/app/code/core/Mage/Adminhtml/controllers/Promo/QuoteController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/controllers/Promo/WidgetController.php b/app/code/core/Mage/Adminhtml/controllers/Promo/WidgetController.php index c272dfbc68f245f88ae0793a83bd03d64a9efe49..9bebca055032a5b85253e8d7a572f801b79ef91c 100644 --- a/app/code/core/Mage/Adminhtml/controllers/Promo/WidgetController.php +++ b/app/code/core/Mage/Adminhtml/controllers/Promo/WidgetController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/controllers/PromoController.php b/app/code/core/Mage/Adminhtml/controllers/PromoController.php index 686625afbb2d92305ef66572ee322ac5416c735d..29945aa97e0c166e75a6fbed05136958953b217f 100644 --- a/app/code/core/Mage/Adminhtml/controllers/PromoController.php +++ b/app/code/core/Mage/Adminhtml/controllers/PromoController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/controllers/RatingController.php b/app/code/core/Mage/Adminhtml/controllers/RatingController.php index ca2aa2a58f7ed3e3d0ac1ac50534e752d4163c41..9c2b9e9e515b4f107996ce799f69acdb80b52e0e 100644 --- a/app/code/core/Mage/Adminhtml/controllers/RatingController.php +++ b/app/code/core/Mage/Adminhtml/controllers/RatingController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/controllers/Report/CustomerController.php b/app/code/core/Mage/Adminhtml/controllers/Report/CustomerController.php index dbec09e63e820d2e2f011ca320259e554c0e9c27..ea962fa26537884e3c2765c2d6358884f9e55fb8 100644 --- a/app/code/core/Mage/Adminhtml/controllers/Report/CustomerController.php +++ b/app/code/core/Mage/Adminhtml/controllers/Report/CustomerController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/controllers/Report/ProductController.php b/app/code/core/Mage/Adminhtml/controllers/Report/ProductController.php index 71cf89297f351546a09e8460e3112db2cecb21b8..c61ea52b8d8201712b00449f61d0eaa6b4dea6e9 100644 --- a/app/code/core/Mage/Adminhtml/controllers/Report/ProductController.php +++ b/app/code/core/Mage/Adminhtml/controllers/Report/ProductController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/controllers/Report/ReviewController.php b/app/code/core/Mage/Adminhtml/controllers/Report/ReviewController.php index a3e147891b1c8062d72865bac08fdbd26b624a61..23d1289f3fcb7f9377ee0c65d61af27d2d51e69a 100644 --- a/app/code/core/Mage/Adminhtml/controllers/Report/ReviewController.php +++ b/app/code/core/Mage/Adminhtml/controllers/Report/ReviewController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/controllers/Report/SalesController.php b/app/code/core/Mage/Adminhtml/controllers/Report/SalesController.php index 41b7ad5ef197150d07ec5f8c56e943a5eb6b46fb..49e353bdea5bc435cdefa120e68e60776788d88d 100644 --- a/app/code/core/Mage/Adminhtml/controllers/Report/SalesController.php +++ b/app/code/core/Mage/Adminhtml/controllers/Report/SalesController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/controllers/Report/ShopcartController.php b/app/code/core/Mage/Adminhtml/controllers/Report/ShopcartController.php index c94ada01a7869185e80e63b51790b22966e99ead..2a0deba0615f33a7706110c0fafa8294482a9f0a 100644 --- a/app/code/core/Mage/Adminhtml/controllers/Report/ShopcartController.php +++ b/app/code/core/Mage/Adminhtml/controllers/Report/ShopcartController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/controllers/Report/StatisticsController.php b/app/code/core/Mage/Adminhtml/controllers/Report/StatisticsController.php index 46283c2de35c7ba5b247caf460ab6f3c44c7ffa9..c1f4e5ba3953de94b540175e3e5de0970bc29f53 100644 --- a/app/code/core/Mage/Adminhtml/controllers/Report/StatisticsController.php +++ b/app/code/core/Mage/Adminhtml/controllers/Report/StatisticsController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/controllers/ReportController.php b/app/code/core/Mage/Adminhtml/controllers/ReportController.php index 03f3189285b07c2670e052f6317ccb7f987ed246..6a35e0b1eddb16694db89c7f7646f714d7d4f774 100644 --- a/app/code/core/Mage/Adminhtml/controllers/ReportController.php +++ b/app/code/core/Mage/Adminhtml/controllers/ReportController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/controllers/Sales/Billing/AgreementController.php b/app/code/core/Mage/Adminhtml/controllers/Sales/Billing/AgreementController.php index 04056667e531af9f271685c5d8ff349f6cefdc69..ba632512fd73ab77d2d66195c0bd22d2aba1dc8a 100644 --- a/app/code/core/Mage/Adminhtml/controllers/Sales/Billing/AgreementController.php +++ b/app/code/core/Mage/Adminhtml/controllers/Sales/Billing/AgreementController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/controllers/Sales/CreditmemoController.php b/app/code/core/Mage/Adminhtml/controllers/Sales/CreditmemoController.php index 5a2e94d88c1bd5187c1b46bc18656174cb6229e0..e5b76d5a4e3a1fef5c83f8cf9b4cbfa851df8ec7 100644 --- a/app/code/core/Mage/Adminhtml/controllers/Sales/CreditmemoController.php +++ b/app/code/core/Mage/Adminhtml/controllers/Sales/CreditmemoController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/controllers/Sales/InvoiceController.php b/app/code/core/Mage/Adminhtml/controllers/Sales/InvoiceController.php index 1a4db88242099483a924afc82f9aad197951162f..f330897a7861bd1523dd075efd4fc55a0be79489 100644 --- a/app/code/core/Mage/Adminhtml/controllers/Sales/InvoiceController.php +++ b/app/code/core/Mage/Adminhtml/controllers/Sales/InvoiceController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/controllers/Sales/Order/CreateController.php b/app/code/core/Mage/Adminhtml/controllers/Sales/Order/CreateController.php index c02d1307af801f3ce378d1a0154d0add41003d3a..1cc55967e407aefe0c02fe7db3d66c0f04ebda81 100644 --- a/app/code/core/Mage/Adminhtml/controllers/Sales/Order/CreateController.php +++ b/app/code/core/Mage/Adminhtml/controllers/Sales/Order/CreateController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/controllers/Sales/Order/CreditmemoController.php b/app/code/core/Mage/Adminhtml/controllers/Sales/Order/CreditmemoController.php index 127ff0f4c11205479b1cfed701d081df61dc1891..7d6a03fc268a748c076f44ace792a499eb7c5fa1 100644 --- a/app/code/core/Mage/Adminhtml/controllers/Sales/Order/CreditmemoController.php +++ b/app/code/core/Mage/Adminhtml/controllers/Sales/Order/CreditmemoController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/controllers/Sales/Order/EditController.php b/app/code/core/Mage/Adminhtml/controllers/Sales/Order/EditController.php index d10f5e6bd3d159403902dbeb8fc2667cde003df9..cb2a986ece385e7362e65a6bb580356931d63635 100644 --- a/app/code/core/Mage/Adminhtml/controllers/Sales/Order/EditController.php +++ b/app/code/core/Mage/Adminhtml/controllers/Sales/Order/EditController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/controllers/Sales/Order/InvoiceController.php b/app/code/core/Mage/Adminhtml/controllers/Sales/Order/InvoiceController.php index bb21a679ce9f6b12d4e50366759c38e6731209f3..b7446a018edc12ffad6479d3c6e83106122234c9 100644 --- a/app/code/core/Mage/Adminhtml/controllers/Sales/Order/InvoiceController.php +++ b/app/code/core/Mage/Adminhtml/controllers/Sales/Order/InvoiceController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/controllers/Sales/Order/ShipmentController.php b/app/code/core/Mage/Adminhtml/controllers/Sales/Order/ShipmentController.php index 5e7f388a9db239a1accc2ab2f0df830ba3ae45ac..64a086ba16a7fab6f8420d9d128783515454b77f 100644 --- a/app/code/core/Mage/Adminhtml/controllers/Sales/Order/ShipmentController.php +++ b/app/code/core/Mage/Adminhtml/controllers/Sales/Order/ShipmentController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/controllers/Sales/Order/StatusController.php b/app/code/core/Mage/Adminhtml/controllers/Sales/Order/StatusController.php index 86c967d835703bd623c4893853d7fd3b00fb32ea..b245ee796d17d95132c053c27aa3ac21759d525f 100644 --- a/app/code/core/Mage/Adminhtml/controllers/Sales/Order/StatusController.php +++ b/app/code/core/Mage/Adminhtml/controllers/Sales/Order/StatusController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/controllers/Sales/Order/View/GiftmessageController.php b/app/code/core/Mage/Adminhtml/controllers/Sales/Order/View/GiftmessageController.php index 3a67ca7b681fda7b1811b3555fc4f6f7441f9b48..a032b8b94cd5e5d9e040be7043f0019ab80916c1 100644 --- a/app/code/core/Mage/Adminhtml/controllers/Sales/Order/View/GiftmessageController.php +++ b/app/code/core/Mage/Adminhtml/controllers/Sales/Order/View/GiftmessageController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/controllers/Sales/OrderController.php b/app/code/core/Mage/Adminhtml/controllers/Sales/OrderController.php index 0570f8787ec01a89b341e830d910ec6c8927c21d..c5837ba865725b1cdd5ff61fbef740c01c47fbe8 100644 --- a/app/code/core/Mage/Adminhtml/controllers/Sales/OrderController.php +++ b/app/code/core/Mage/Adminhtml/controllers/Sales/OrderController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/controllers/Sales/Recurring/ProfileController.php b/app/code/core/Mage/Adminhtml/controllers/Sales/Recurring/ProfileController.php index 13d53faa0cb430aa717d48363fb467354091ca79..ac0baa06c95560cbdf24bed9b63383d6b26673ed 100644 --- a/app/code/core/Mage/Adminhtml/controllers/Sales/Recurring/ProfileController.php +++ b/app/code/core/Mage/Adminhtml/controllers/Sales/Recurring/ProfileController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/controllers/Sales/ShipmentController.php b/app/code/core/Mage/Adminhtml/controllers/Sales/ShipmentController.php index 40a40be264bab307a3746833d0878dc7e923f1a3..62f225f4593e5c96b56d5b2046d407601e4d72f5 100644 --- a/app/code/core/Mage/Adminhtml/controllers/Sales/ShipmentController.php +++ b/app/code/core/Mage/Adminhtml/controllers/Sales/ShipmentController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/controllers/Sales/TransactionsController.php b/app/code/core/Mage/Adminhtml/controllers/Sales/TransactionsController.php index 33d96f374cc926bdef25ecc3a6fcfad3689efe49..f7d51e7046cf17d57161c11e1068af11d034dc2e 100644 --- a/app/code/core/Mage/Adminhtml/controllers/Sales/TransactionsController.php +++ b/app/code/core/Mage/Adminhtml/controllers/Sales/TransactionsController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/controllers/SitemapController.php b/app/code/core/Mage/Adminhtml/controllers/SitemapController.php index a0d378133e83c0fba4e94d8f11016357ffb6fc24..a12f348adfcb32af13e9fd17dabfe69c42ab580d 100644 --- a/app/code/core/Mage/Adminhtml/controllers/SitemapController.php +++ b/app/code/core/Mage/Adminhtml/controllers/SitemapController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/controllers/SurveyController.php b/app/code/core/Mage/Adminhtml/controllers/SurveyController.php index 42fdba3edc9d0722cf857f2b6dacd5e1c46c1b0d..eb65a10278e73531bfc37ba99c7659be2e53ec83 100644 --- a/app/code/core/Mage/Adminhtml/controllers/SurveyController.php +++ b/app/code/core/Mage/Adminhtml/controllers/SurveyController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/controllers/System/AccountController.php b/app/code/core/Mage/Adminhtml/controllers/System/AccountController.php index 7302d9de5ad692589d9753296f500adc596fe9f8..c31828c0d38b3e9757ae31dc690fca0177b92811 100644 --- a/app/code/core/Mage/Adminhtml/controllers/System/AccountController.php +++ b/app/code/core/Mage/Adminhtml/controllers/System/AccountController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/controllers/System/BackupController.php b/app/code/core/Mage/Adminhtml/controllers/System/BackupController.php index 34135e8d841dbc0d0be20d4f54983f79e66d6aa9..6307e04a2172095d0430eb304ecbb7f2066de289 100644 --- a/app/code/core/Mage/Adminhtml/controllers/System/BackupController.php +++ b/app/code/core/Mage/Adminhtml/controllers/System/BackupController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/controllers/System/Config/System/StorageController.php b/app/code/core/Mage/Adminhtml/controllers/System/Config/System/StorageController.php index f5efa23821b50d9002dd2649e3f28329f8c0433d..f902b4fcb9acabdd0fea8b0f728142f9d237b4d0 100644 --- a/app/code/core/Mage/Adminhtml/controllers/System/Config/System/StorageController.php +++ b/app/code/core/Mage/Adminhtml/controllers/System/Config/System/StorageController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/controllers/System/CurrencyController.php b/app/code/core/Mage/Adminhtml/controllers/System/CurrencyController.php index ea9a0145e997df81c48ed9b726858b33e1584055..21f839006529d2ebe245cecc5243f62cb2b893ef 100644 --- a/app/code/core/Mage/Adminhtml/controllers/System/CurrencyController.php +++ b/app/code/core/Mage/Adminhtml/controllers/System/CurrencyController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/controllers/System/DesignController.php b/app/code/core/Mage/Adminhtml/controllers/System/DesignController.php index 5d5c73ee1350dd14e5f272ddf6ff3f9e850e22c9..b75c9819f5450f0a7e3017c4cbd7564f905063f4 100644 --- a/app/code/core/Mage/Adminhtml/controllers/System/DesignController.php +++ b/app/code/core/Mage/Adminhtml/controllers/System/DesignController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/controllers/System/Email/TemplateController.php b/app/code/core/Mage/Adminhtml/controllers/System/Email/TemplateController.php index baebb6706324f8447cb1e04197d7076cc211a963..565f63e1c4a5c8b7baa9e83daab5c16aaaeade31 100644 --- a/app/code/core/Mage/Adminhtml/controllers/System/Email/TemplateController.php +++ b/app/code/core/Mage/Adminhtml/controllers/System/Email/TemplateController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/controllers/System/StoreController.php b/app/code/core/Mage/Adminhtml/controllers/System/StoreController.php index 561a30297ce612a0d754a297923d77c49c6ddae6..bfb25b65c38c53a0e7aefa0f8f0189d9242dc358 100644 --- a/app/code/core/Mage/Adminhtml/controllers/System/StoreController.php +++ b/app/code/core/Mage/Adminhtml/controllers/System/StoreController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/controllers/System/VariableController.php b/app/code/core/Mage/Adminhtml/controllers/System/VariableController.php index 40fbb14e26ebab21d965390f728cd680e98c0850..3ce338cfdd689fddab8c9f2b18e7dec20885af6f 100644 --- a/app/code/core/Mage/Adminhtml/controllers/System/VariableController.php +++ b/app/code/core/Mage/Adminhtml/controllers/System/VariableController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/controllers/Tax/ClassController.php b/app/code/core/Mage/Adminhtml/controllers/Tax/ClassController.php index ba13e2efe968008762cb94a07e35777c5eeb9638..68cade209c47a851b6deecc39eb5ca37cc29a670 100644 --- a/app/code/core/Mage/Adminhtml/controllers/Tax/ClassController.php +++ b/app/code/core/Mage/Adminhtml/controllers/Tax/ClassController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/controllers/Tax/RateController.php b/app/code/core/Mage/Adminhtml/controllers/Tax/RateController.php index b6f2aa232866a5e399647e1359475feb067ddad8..b2e084d203e1faab5fd5b43209f5f77388d94446 100644 --- a/app/code/core/Mage/Adminhtml/controllers/Tax/RateController.php +++ b/app/code/core/Mage/Adminhtml/controllers/Tax/RateController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/controllers/Tax/RuleController.php b/app/code/core/Mage/Adminhtml/controllers/Tax/RuleController.php index a14d863307fe003e610369c12e9cb5b31b4575f3..8b834b3aba37791b75cf825ca0f18e4b9fbbc223 100644 --- a/app/code/core/Mage/Adminhtml/controllers/Tax/RuleController.php +++ b/app/code/core/Mage/Adminhtml/controllers/Tax/RuleController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/controllers/UrlrewriteController.php b/app/code/core/Mage/Adminhtml/controllers/UrlrewriteController.php index ba5735e09479a4603489c203c1e2507d9c036c8a..eac20412852fd9dc390b416341ba8fc3619b24b7 100644 --- a/app/code/core/Mage/Adminhtml/controllers/UrlrewriteController.php +++ b/app/code/core/Mage/Adminhtml/controllers/UrlrewriteController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/etc/adminhtml/acl.xml b/app/code/core/Mage/Adminhtml/etc/adminhtml/acl.xml index c52b60e1aaa6cabaf9a5f8b0e9f08d17356314d0..84da7147c3957dff7a85828ee07a0edde9291e80 100644 --- a/app/code/core/Mage/Adminhtml/etc/adminhtml/acl.xml +++ b/app/code/core/Mage/Adminhtml/etc/adminhtml/acl.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Adminhtml/etc/adminhtml/menu.xml b/app/code/core/Mage/Adminhtml/etc/adminhtml/menu.xml index 85aeb34c6ed6ba9a7b94261c45aafb14e72fa54c..ff092946bad04493cd5b76c215a639c5306fb1ad 100644 --- a/app/code/core/Mage/Adminhtml/etc/adminhtml/menu.xml +++ b/app/code/core/Mage/Adminhtml/etc/adminhtml/menu.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Adminhtml/etc/config.xml b/app/code/core/Mage/Adminhtml/etc/config.xml index f07451dcd824b6e3297ff5752afe8c155609389d..2a48404f4a06f25838764f63b3515fe65220be19 100644 --- a/app/code/core/Mage/Adminhtml/etc/config.xml +++ b/app/code/core/Mage/Adminhtml/etc/config.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Adminhtml/etc/jstranslator.xml b/app/code/core/Mage/Adminhtml/etc/jstranslator.xml index b5e21ab23a2ccafe31825b6349249b3cea9a2e44..0b22d7b1855bb63581feaa7ae210d27f353137fd 100644 --- a/app/code/core/Mage/Adminhtml/etc/jstranslator.xml +++ b/app/code/core/Mage/Adminhtml/etc/jstranslator.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/admin.xml b/app/code/core/Mage/Adminhtml/view/adminhtml/admin.xml index bd2d0b4cd8c4c53d54ea9c37582b76cee8a1a465..e42ba0570fee8130bafd905597fdf360909d67b8 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/admin.xml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/admin.xml @@ -21,7 +21,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/admin/access_denied.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/admin/access_denied.phtml index 727b07a7f2739a1ad230450a1ca5cc87ebe1b998..1130c8aafa49db077d3b5ca332c1e71c5b61f62e 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/admin/access_denied.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/admin/access_denied.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/admin/formkey.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/admin/formkey.phtml index f0405ec2928656a68e3b6a5d0007ff592bc76e5a..2e38fc5eb7a6ce3ea736156de101140b0eecff02 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/admin/formkey.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/admin/formkey.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/admin/overlay_popup.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/admin/overlay_popup.phtml index 26c4fff02a7cb2d890ad0d31a50d771d173d1afc..799204cda9688c8b24ecfaacf7b7df62c5be8264 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/admin/overlay_popup.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/admin/overlay_popup.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/admin/page.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/admin/page.phtml index 670b58812358bf5007de90852f6938ac5f1dcbff..229f8befe96cdbf80a15b2a808831dce8dca37fa 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/admin/page.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/admin/page.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/admin/popup.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/admin/popup.phtml index 05dab2430c975d892cda403072ef8058320e51b1..15977fdb50de5b52979859a5cf2d8fd0c5978237 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/admin/popup.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/admin/popup.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/adminnotification.xml b/app/code/core/Mage/Adminhtml/view/adminhtml/adminnotification.xml index 257bf4ed3d733e50cea227d9c887810a0b6a6a8f..08aa647592617231c13a55a193fc57a713411435 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/adminnotification.xml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/adminnotification.xml @@ -21,7 +21,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/backup.xml b/app/code/core/Mage/Adminhtml/view/adminhtml/backup.xml index 03ab7e8dca1179518d5e143d3dd449c28ce96876..706757bd8612e93898fb411dca2c730f0454ed5f 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/backup.xml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/backup.xml @@ -21,7 +21,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> @@ -54,7 +54,7 @@ <arguments> <massaction_id_field>id</massaction_id_field> <form_field_name>ids</form_field_name> - <use_select_all>0</use_select_all> + <use_select_all>1</use_select_all> <options> <delete> <label translate='true' module='Mage_Adminhtml'>Delete</label> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/backup/dialogs.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/backup/dialogs.phtml index 6b9918ffa5b9c723abcf468dd77c0e56ed6be28e..c49eec828d6ae5251273e4443579ff491ef67469 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/backup/dialogs.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/backup/dialogs.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/backup/left.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/backup/left.phtml index 6b25b448c7c511b0f489a5adf0ece3f15dcbf01c..739cf45f77d4e1b8077e39e9a2c58045ca78cc40 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/backup/left.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/backup/left.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/backup/list.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/backup/list.phtml index 222f7875e39291e7df94b44fc7cbfc16bc796e76..a57455a1cdfe5919520011c8da6fc5a0a099d51d 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/backup/list.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/backup/list.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog.xml b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog.xml index 9f3f40417072655c39e6b0aafd27f6a4f634bdaf..ebfd2b3a2e15d004aba6c029e0d09c872520a5f8 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog.xml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog.xml @@ -21,7 +21,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/base-image-uploader.css b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/base-image-uploader.css index 2d947376687ba326bf15feb17681da01880643fd..6921b01e0fe2b5fc6158da4a594a892351e1c7f5 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/base-image-uploader.css +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/base-image-uploader.css @@ -19,7 +19,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/base-image-uploader.js b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/base-image-uploader.js index 2613c8a704f384429c94580ac8720deee46194d0..ac7bebe4e8879f0e9a5ea207b5958f7f7b7771a8 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/base-image-uploader.js +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/base-image-uploader.js @@ -19,7 +19,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ function BaseImageUploader(id, maxFileSize) { diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/category-selector.css b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/category-selector.css index 47aba2552f20596096f258f67e7f5cf8586d6513..bc222a1b47b90bcfb3e0da3b43d6f26fe5955958 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/category-selector.css +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/category-selector.css @@ -19,7 +19,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ .category-selector-container { diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/category-selector.js b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/category-selector.js index 6a22e9b20df93a751967d437d7c2673af185297c..1f7be5564d06aac3af9109a2c3f4311d3ffab7f9 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/category-selector.js +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/category-selector.js @@ -19,7 +19,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ (function ($) { diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/category/checkboxes/tree.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/category/checkboxes/tree.phtml index 6a37b9e1669a83c097692a22982d3b4a3415c741..2f6d56fe3f4aac23474badac075b73d19ecd2fed 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/category/checkboxes/tree.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/category/checkboxes/tree.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/category/edit.js b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/category/edit.js index b37a56474ce6e34e52075e88dbdcf7b0b9be9f48..7ea1a5d0ca2f5dfe51af9793932c9cff7cdc0a51 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/category/edit.js +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/category/edit.js @@ -19,7 +19,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ (function($){ diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/category/edit.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/category/edit.phtml index d042399ea67f29a63c8601ac418589ad7665205f..f72fdc529787e6bc5395319385dd590db0d4dc1e 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/category/edit.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/category/edit.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/category/edit/form.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/category/edit/form.phtml index d2102ac11916cd10f3c21f28059c338303bbea84..6c7729cd7bee4fb67e04fd27bee58d43d8129330 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/category/edit/form.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/category/edit/form.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/category/tree.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/category/tree.phtml index 2bc2872bcb611a02c84c8ed742241f0d4562c3fb..08791d07d511256e1d08c8c41483b17c1d516fcf 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/category/tree.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/category/tree.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/category/widget/tree.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/category/widget/tree.phtml index 5dddffce433f3a91e2ae69184ebb3ca3fcc05e04..dbf67ed8ba3c8c1722fff0a6868fd6c5656033e7 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/category/widget/tree.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/category/widget/tree.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/configurable-product.css b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/configurable-product.css index 1c922f39e43d271fefdaa120ebe1c72f579027fc..496cf99a028c2aec6648fcdf0c0b1ee54ad1d79b 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/configurable-product.css +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/configurable-product.css @@ -19,7 +19,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ #configurable_associated_products_grid .filter-actions, diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/form/renderer/fieldset/element.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/form/renderer/fieldset/element.phtml index 0ac56242745b815d284e070d6dcacfb3cc65a4a8..50b7fa4f54b7336cfaad5ad2f756c34fc554424f 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/form/renderer/fieldset/element.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/form/renderer/fieldset/element.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product.js b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product.js index d8bf8f5b82e822ce508389fbb1168d3a2b23b957..7989ebf420ef7b62cc9a6c588b2632288c070bf6 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product.js +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product.js @@ -19,7 +19,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product.phtml index 9d71dcd2a50e726fd5d88a84482c5e23c32519f9..95a7227f1f9b8653fc62a2c4affa2b701c958979 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/attribute/js.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/attribute/js.phtml index ea236abb3a7c87203f4a43bdf75240214643f073..720cc0ab28b5b15c4028882792cf0f690894c2b9 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/attribute/js.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/attribute/js.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/attribute/new/created.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/attribute/new/created.phtml index e0c6977c5e7055ae6f6730fb92828c9bb9e1d8fd..8c1f499e0b00fe0a36c9a1c82a4f73b6ebe185fe 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/attribute/new/created.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/attribute/new/created.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/attribute/options.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/attribute/options.phtml index f6ac8cb0950974bbd7ddc0f03d2b2dbf56e61829..f70691c02a159f7bb0398a6853a88e3433098a0d 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/attribute/options.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/attribute/options.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/attribute/set/main.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/attribute/set/main.phtml index 124e57303552e0861fa64f59a2505fcb25ddf170..c409fd87b6101c754dd2527fb02f9f4e13e35220 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/attribute/set/main.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/attribute/set/main.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/attribute/set/main/tree/attribute.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/attribute/set/main/tree/attribute.phtml index 4f7c2b89850eb1c69a259bcee5f432ab0c221d8c..3c4b39e1837e9eb3012b02daad3ae8094264164d 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/attribute/set/main/tree/attribute.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/attribute/set/main/tree/attribute.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/attribute/set/main/tree/group.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/attribute/set/main/tree/group.phtml index 6ffeb296e8acb375aabc218fc3053f67c364198a..695ad45705c59e7e6cebe44c6021f9a8219ea25b 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/attribute/set/main/tree/group.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/attribute/set/main/tree/group.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/attribute/set/toolbar/add.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/attribute/set/toolbar/add.phtml index 28797cf370969aedcddecea4cc0e8f4380114a37..9054cd22406b37c0952bf426f41e06d70dd0a764 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/attribute/set/toolbar/add.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/attribute/set/toolbar/add.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/attribute/set/toolbar/main.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/attribute/set/toolbar/main.phtml index 64080b3ca8714043eb1a96d8f82ed0fed9c75d60..13609d8e159f691e17c232dff105f421196dd514 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/attribute/set/toolbar/main.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/attribute/set/toolbar/main.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/change_attribute_set_widget.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/change_attribute_set_widget.phtml index d573e98b62419d8d931999713e806428604b3750..a0315b607695c534522bdf22921a1bbffb6c34f1 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/change_attribute_set_widget.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/change_attribute_set_widget.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /* @var $this Mage_Core_Block_Template */ diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/composite/configure.js b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/composite/configure.js index 356cd4248e22aa68bef51d376ffbe44e2868d987..1217f2cc33365913abb285a5a609adcb8eff2cc2 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/composite/configure.js +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/composite/configure.js @@ -19,7 +19,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/composite/configure.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/composite/configure.phtml index c6c55d3f809b53255c13bbce7e3dec8d4e24c120..0470bff7c3abd27c3ca060570d3305b730f33f8b 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/composite/configure.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/composite/configure.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/composite/fieldset/configurable.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/composite/fieldset/configurable.phtml index e2f846b2cf2d6d8e783aef2e546d5c1fd880f432..7628c0173898dcd234c698b7a528dbbfc4de44ca 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/composite/fieldset/configurable.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/composite/fieldset/configurable.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/composite/fieldset/grouped.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/composite/fieldset/grouped.phtml index 96554b2f3ac0aaead0405040e12a0599e76b0322..a48249c31ddf87d7eca53b115d7241750f38477e 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/composite/fieldset/grouped.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/composite/fieldset/grouped.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/composite/fieldset/options.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/composite/fieldset/options.phtml index df6a21fcf374ee07ef44439438c908014fb44766..ed4868e1142d051e81560b204431109ec3158aa8 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/composite/fieldset/options.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/composite/fieldset/options.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/composite/fieldset/options/js.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/composite/fieldset/options/js.phtml index 584c211ae34a91775de634c89f33c898641ab2db..3dc24dbe81c9c80f3a43c5e5e05d7c605174e81a 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/composite/fieldset/options/js.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/composite/fieldset/options/js.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/composite/fieldset/options/type/date.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/composite/fieldset/options/type/date.phtml index c9fb91a9cbc779a33f3cf40b3b346d16863bc692..d2d3b7d8aadf76b23dc170f9d369a185e4069a9e 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/composite/fieldset/options/type/date.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/composite/fieldset/options/type/date.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/composite/fieldset/options/type/default.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/composite/fieldset/options/type/default.phtml index 891034efacd2196fb7dae9c7d9ceacd92bd08179..d90824f43b40649a82b40e56c9cf8010d153e9ca 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/composite/fieldset/options/type/default.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/composite/fieldset/options/type/default.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/composite/fieldset/options/type/file.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/composite/fieldset/options/type/file.phtml index ca1b9c899a2179ee89dfcb4bf26e00170fbc3294..1e640fecbf44cfe0d0aa8aca06b386f71c3918bd 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/composite/fieldset/options/type/file.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/composite/fieldset/options/type/file.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/composite/fieldset/options/type/select.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/composite/fieldset/options/type/select.phtml index 25a8853196d14cc8ac0b1c7d12068dede93b86d0..67f51f91a8217cd5487f80bb3b20e44e78425322 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/composite/fieldset/options/type/select.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/composite/fieldset/options/type/select.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/composite/fieldset/options/type/text.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/composite/fieldset/options/type/text.phtml index a4ed3b6bf84e41bf7ee6737f1f69866d49f241a5..bcba39eaa2c1d789383383ebe0fd5057b941b602 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/composite/fieldset/options/type/text.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/composite/fieldset/options/type/text.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/composite/fieldset/qty.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/composite/fieldset/qty.phtml index 9893d8b4c0637582b92052dfb8c63dd7fa8027b0..92a52e760eef736dc1c7ed26802fc819696c1353 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/composite/fieldset/qty.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/composite/fieldset/qty.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/created.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/created.phtml index d705c04e6a68b9f7893a5be79b1721fd6cea1dcc..a1397f44636c34b09b76e136b0d2d1665ffe828a 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/created.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/created.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/edit.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/edit.phtml index 09512e0f01c46c80954ed66a3604b43e99ce0973..f415d650888706bb1e23efff5e0d56186c833dc1 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/edit.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/edit.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/edit/action/attribute.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/edit/action/attribute.phtml index 1128b4539bd592723efe31fcbb50e4f68b57282b..f41f930d1db1d3379c75dfcc2fef979ca7c12f49 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/edit/action/attribute.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/edit/action/attribute.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/edit/action/inventory.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/edit/action/inventory.phtml index 0074b0ee82ecbac12568dd03b64bef46816d8710..39750dbfeafa4fc20514fa722e219e1b36b6c638 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/edit/action/inventory.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/edit/action/inventory.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/edit/action/websites.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/edit/action/websites.phtml index beefeed3d1aed16b6498f3bfc5135b56b819aeae..fb4f85c998f6e4ed9b4bf04a82330da983835160 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/edit/action/websites.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/edit/action/websites.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/edit/attribute_set.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/edit/attribute_set.phtml index efd498fad1e96f5216e75ca432dc0b070a8b2279..683d1b0d393d6f147764e553508fd896b4391d78 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/edit/attribute_set.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/edit/attribute_set.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /* @var $this Mage_Adminhtml_Block_Catalog_Product_Edit_AttributeSet */ diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/edit/category/new/form.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/edit/category/new/form.phtml index faaaf509467e386d9db63b36a2a6fb62203c5c72..3be91793c89b7e06dae7029f77ef88ec0e4464f4 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/edit/category/new/form.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/edit/category/new/form.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /* @var $this Mage_Adminhtml_Block_Catalog_Product_Edit_NewCategory */ diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/edit/category/new/js.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/edit/category/new/js.phtml index c6b426e1be52f160632250dab4ea2c492fb4b226..0df1d1b1614b0b6a94924952d9a561d4f0b2b187 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/edit/category/new/js.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/edit/category/new/js.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/edit/options.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/edit/options.phtml index 3d39ca6a143a3dc97649c60c52f608dcec3af44f..7b77b65c6a47e3583ba67df4085af68480dae47b 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/edit/options.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/edit/options.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/edit/options/option.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/edit/options/option.phtml index 11c31555569bd101c2ad9d5e0a5d0ac2228260a2..4a9dec2c885df314b0b9599a8a9febd03f2b6b53 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/edit/options/option.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/edit/options/option.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/edit/options/type/date.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/edit/options/type/date.phtml index 6b3bca840fe8df77d9ed379487ef0717f96b580d..e87a5d03857bfa001ca3f745595f54ba8374a1b0 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/edit/options/type/date.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/edit/options/type/date.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/edit/options/type/file.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/edit/options/type/file.phtml index 5cbf8c0cf26c78115393a93dd585d813481b56a4..b7b8acbd013049300ead5228c8550be844d8fc09 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/edit/options/type/file.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/edit/options/type/file.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/edit/options/type/select.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/edit/options/type/select.phtml index cc82534c044b8986e79ae360f782f26fffffaf01..7ee4245dd379c5d870c6e5d80ee214f604511f96 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/edit/options/type/select.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/edit/options/type/select.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/edit/options/type/text.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/edit/options/type/text.phtml index fd3ae301748938855e6b886bb6ff5dbb1b45dc51..8b9f3583022ccab7fc969eccff6bbaf894fd204b 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/edit/options/type/text.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/edit/options/type/text.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/edit/price/group.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/edit/price/group.phtml index d03e94aa439bddd109a148f9e06ad86c742d04ae..84a39696166c3446dfc01819863509cb372d21ed 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/edit/price/group.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/edit/price/group.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/edit/price/tier.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/edit/price/tier.phtml index 5837cd3493df234a30f63d3a23959bb86881faea..641603eb2869b84b38b03269092ab5883e3665e9 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/edit/price/tier.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/edit/price/tier.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /* @var $this Mage_Adminhtml_Block_Catalog_Product_Edit_Tab_Price_Tier */ diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/edit/serializer.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/edit/serializer.phtml index b476a9cc5c852400e59a6f11fab4997e1b2cdb90..5e24c02e5f48bfc1fbc1b1ad8571afd97c59ca26 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/edit/serializer.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/edit/serializer.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/edit/super/config.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/edit/super/config.phtml index 26870f0fe0090ee184ad1ab0d3f431a77ec5b9b5..a5f8b7b4a3b58eaf09f4938ef88880059e92cbed 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/edit/super/config.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/edit/super/config.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /** @var $this Mage_Adminhtml_Block_Catalog_Product_Edit_Tab_Super_Config */ diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/edit/websites.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/edit/websites.phtml index 51ef7707a32759745c5d3350f6d9733da8432288..85de3ec58a48ce7b8a601109bb58efc4bd9e16b5 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/edit/websites.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/edit/websites.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/helper/gallery.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/helper/gallery.phtml index 14fec8049300e19898d4716d340c2e4a76323ceb..46cd83ab91fae02ad7ef644dfc211decfaf8fb2f 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/helper/gallery.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/helper/gallery.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/js.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/js.phtml index 9b72f4032824b8457407a65e3a7d46f70e0959d8..63202f820f8d1facb5f4f02615b2585b389ab2d0 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/js.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/js.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/price.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/price.phtml index 1c1639af0ddda3fd10e66e77dd9c251c339a7f0a..eb657e25b01dcb792bc507bf7a7f8473e106efd4 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/price.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/price.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/tab/alert.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/tab/alert.phtml index 683b507f3be7dc6a3cc7488a4750c7cf302aa7a1..9ac2707f1fc98539892e44a1ff7663cd89bc9be5 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/tab/alert.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/tab/alert.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/tab/inventory.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/tab/inventory.phtml index 5a871bc0b058b3d1ca72bbb84c6b258ad7ba5321..21fbab070863b35dcb89f99b2bbcc96f0fdad75c 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/tab/inventory.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/tab/inventory.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /** @var $this Mage_Adminhtml_Block_Catalog_Product_Edit_Tab_Inventory */ diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/widget/chooser/container.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/widget/chooser/container.phtml index aebbf532f2a9fc93ab30a218c4e5eba9930e14fa..2ce5dfa407140b41135a0b60c820c9a62d85d7a7 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/widget/chooser/container.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/product/widget/chooser/container.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/type-switcher.js b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/type-switcher.js index bec8629de4deae4a2282aeb7f6ac7889eb28f525..24ead0511beb7cf912ec94112f51a61223ff3520 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/type-switcher.js +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/type-switcher.js @@ -19,7 +19,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ (function ($) { diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/wysiwyg/js.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/wysiwyg/js.phtml index 37f8613a9186ad61e3230c313cc593aa6cfb64f9..ccdd539254423f6dc311bcfe190f137ba08d5b16 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/wysiwyg/js.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/catalog/wysiwyg/js.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/cms.xml b/app/code/core/Mage/Adminhtml/view/adminhtml/cms.xml index a64c4e0a591cdb71d23522706750a7964b68048a..2976a61e69f6f6dd5b7e9271489cdb5c9a6bd82b 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/cms.xml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/cms.xml @@ -21,7 +21,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/cms/browser/content.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/cms/browser/content.phtml index e05ce6898b4cabfbd3345d8db897b8e30423651f..0959d7b88d95971c0ee0994e10138958830a1fc2 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/cms/browser/content.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/cms/browser/content.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/cms/browser/content/files.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/cms/browser/content/files.phtml index cadd3b01eb18a2947ac92b3bc275b889d242f9a1..aeb9693792a1f1ec4ac2913dcc4d8bc9d4b5771c 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/cms/browser/content/files.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/cms/browser/content/files.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/cms/browser/content/newfolder.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/cms/browser/content/newfolder.phtml index 2c9c0f5f3c62d2c84e2884b3eb513050964465e7..3c4d835ad093ab5f9a064126d76ea84787e79651 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/cms/browser/content/newfolder.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/cms/browser/content/newfolder.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/cms/browser/content/uploader.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/cms/browser/content/uploader.phtml index 38b7e6d4533a648edb3630952c540a7dce07b7c1..0b3dfc6bfa33ddd9550d570d4bc010b38f0ed0b9 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/cms/browser/content/uploader.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/cms/browser/content/uploader.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/cms/browser/js.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/cms/browser/js.phtml index da4f1a7811437fc652d516ce0d596bcc725ba9d2..89a321d18493ef7eab4222b9cde6cb76bb124d4a 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/cms/browser/js.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/cms/browser/js.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/cms/browser/tree.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/cms/browser/tree.phtml index a15a04dd54fcb8116741ae16a7128b5ac30d3eaf..1a399a837b0c0becb0b4ed98b4e653aab8405177 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/cms/browser/tree.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/cms/browser/tree.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/cms/page/edit/form/renderer/content.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/cms/page/edit/form/renderer/content.phtml index a0e365f9e0a74fb3c4250940ddcbb7fe8de58589..6b777397f8dae858574fb178e8b3d16aeb720906 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/cms/page/edit/form/renderer/content.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/cms/page/edit/form/renderer/content.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/css/ui-lightness/jquery-ui-1.8.21.custom.css b/app/code/core/Mage/Adminhtml/view/adminhtml/css/ui-lightness/jquery-ui-1.8.21.custom.css index 56e68d5d1763efc6b2248d4d0e97ae1d8a6de5ab..50ee8c595b2afa149f430e97478a7baca341ab7b 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/css/ui-lightness/jquery-ui-1.8.21.custom.css +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/css/ui-lightness/jquery-ui-1.8.21.custom.css @@ -19,7 +19,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/css/ui-lightness/tabs.css b/app/code/core/Mage/Adminhtml/view/adminhtml/css/ui-lightness/tabs.css index 80b9e5bc59285dfb7eb186fd4633640d4c424ab9..63d68fd59dab792bb81c79362fc6d9894485c84d 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/css/ui-lightness/tabs.css +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/css/ui-lightness/tabs.css @@ -19,7 +19,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /* TABS diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/customer.xml b/app/code/core/Mage/Adminhtml/view/adminhtml/customer.xml index 642edcec10b96160e97b31efc79b52f8bea39081..6b4a5e6e58f41284143f9348d5fa58153cb115d1 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/customer.xml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/customer.xml @@ -21,7 +21,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/customer/edit/js.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/customer/edit/js.phtml index 75f531beb5dfcdc69ce0bfaf858e5308261bb5c2..dec78e2d04beb7991e3b4bfc0be131336ad2a955 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/customer/edit/js.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/customer/edit/js.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/customer/edit/tab/account/form/renderer/group.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/customer/edit/tab/account/form/renderer/group.phtml index c4877e4fb7a9194faf61f0b9296c23209c190346..0c58f7fce3732ef03dfb040d6970fcc00f0c82c7 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/customer/edit/tab/account/form/renderer/group.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/customer/edit/tab/account/form/renderer/group.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/customer/edit/tab/view/grid/item.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/customer/edit/tab/view/grid/item.phtml index a4a93852b6c3ada0528bc7990895c043af89c516..dbca7613b8b5eaa208cb3a280c89d94488567e7f 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/customer/edit/tab/view/grid/item.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/customer/edit/tab/view/grid/item.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/customer/online.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/customer/online.phtml index 48b17500fb4336b020b6ddf3b4b37322469aff64..d978a17da7ca26cf8eb23f2d42b77463407758c9 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/customer/online.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/customer/online.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/customer/sales/order/create/address/form/renderer/vat.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/customer/sales/order/create/address/form/renderer/vat.phtml index 0ef4c6c66339238e4c01c3f8a65a68b841925520..0c6eabb6a3d524736692a7012457ebfae4dc9a58 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/customer/sales/order/create/address/form/renderer/vat.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/customer/sales/order/create/address/form/renderer/vat.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/customer/system/config/validatevat.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/customer/system/config/validatevat.phtml index d5e7d7e472d0ba954b919ec7acc14e8ee55e333f..02bd36fa951364524928e74ba4b3f22ae007e938 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/customer/system/config/validatevat.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/customer/system/config/validatevat.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/customer/tab/addresses.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/customer/tab/addresses.phtml index 12a8b8f818681e2375424ef8a590b1aa6fbb16cf..3c3ca0ba97ce72cb789ae7c2feea336ca9eb217a 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/customer/tab/addresses.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/customer/tab/addresses.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/customer/tab/cart.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/customer/tab/cart.phtml index 7acff7be96a0ed002e3ed17939a127e9e6ba21da..4feccfab3d818315fdda2d398ac6130dc9573b8b 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/customer/tab/cart.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/customer/tab/cart.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/customer/tab/newsletter.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/customer/tab/newsletter.phtml index c052f0234744a4a3ea8b034bab4ed1a8b960b5bd..7b041a03640d25774e2b870cf865d5045f34b494 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/customer/tab/newsletter.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/customer/tab/newsletter.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/customer/tab/view.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/customer/tab/view.phtml index 9cf2c7d710b183141fc78579d3aba8ed9c87561e..dcd1ecafdc47fa4ca250b64eedf6e9eea96d7aae 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/customer/tab/view.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/customer/tab/view.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/customer/tab/view/sales.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/customer/tab/view/sales.phtml index 0facd02edc45642e2fe2c18481fb47951519181f..c603971c81d2166039d75de3cbb9b362db0630f2 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/customer/tab/view/sales.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/customer/tab/view/sales.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/dashboard/graph.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/dashboard/graph.phtml index bdc8b0608c288ac7092644b20ff3c04433670064..1bbc8eb437cae0985498c3e14b83d815e2965770 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/dashboard/graph.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/dashboard/graph.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /* diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/dashboard/graph/disabled.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/dashboard/graph/disabled.phtml index 539701555636d92370b8cfb891b006134a1e64b4..d683615810e58addfe90de6b369169025f4f5319 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/dashboard/graph/disabled.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/dashboard/graph/disabled.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/dashboard/grid.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/dashboard/grid.phtml index d16c08c250132bf34cfd503a9c7aea58859efbd5..e98bbf89e3f5a0b1cc71f74dee8c473f70c79241 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/dashboard/grid.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/dashboard/grid.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/dashboard/index.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/dashboard/index.phtml index d72c4a068d6a9de95e9f5a0554ef05d838dd0acf..bba2cc0db4ec7e60925d397091d0c8c9378d146b 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/dashboard/index.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/dashboard/index.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/dashboard/salebar.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/dashboard/salebar.phtml index 482078fa7015c8bb82b4208249ebfeb7d9322148..76ada03d5af8d5ef4b4e814b08f63e9a06a2cf2b 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/dashboard/salebar.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/dashboard/salebar.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/dashboard/searches.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/dashboard/searches.phtml index bb5eb7820ed90b72b46b0237dd3596e8233cfef5..783931f9d06a66ae8a5279c3ba19d473a89a8615 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/dashboard/searches.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/dashboard/searches.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/dashboard/store/switcher.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/dashboard/store/switcher.phtml index 23f01a39eb1d1937e7413b61e3e82327cb4aa60b..2f3754b4f547a951440cac688274f0035fd5232d 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/dashboard/store/switcher.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/dashboard/store/switcher.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/dashboard/totalbar.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/dashboard/totalbar.phtml index 5e682fe90e4b355f8d1a63d83941cc8c5acc1eac..647a23c79f9d99f352f3d05787cfa3228ed1fcce 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/dashboard/totalbar.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/dashboard/totalbar.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/email/order/items.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/email/order/items.phtml index 1214eeca154d758c6f06dc87b2eca06aef3b858d..c85748f1be596a1a0a80fdcf6f3cac179804d2b3 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/email/order/items.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/email/order/items.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/main.xml b/app/code/core/Mage/Adminhtml/view/adminhtml/main.xml index 2189410a47e2a163a2f56b7dc51e47124e660617..41cd8e74876fb8bef49d7e90ff311edb620dec74 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/main.xml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/main.xml @@ -21,7 +21,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ @@ -55,9 +55,9 @@ Supported layout update handles (special): <block type="Mage_Adminhtml_Block_Page" name="root" output="1" template="admin/page.phtml"> <block type="Mage_Adminhtml_Block_Page_Head" name="head" as="head" template="page/head.phtml"> <action method="setTitle" translate="title"><title>Magento Admin</title></action> - <action method="addJs"><file>jquery/jquery-1.8.2.min.js</file></action> + <action method="addJs"><file>jquery/jquery.min.js</file></action> <action method="addJs"><file>mage/jquery-no-conflict.js</file></action> - <action method="addJs"><file>jquery/jquery-ui-1.9.2.custom.min.js</file></action> + <action method="addJs"><file>jquery/jquery-ui.min.js</file></action> <action method="addJs"><file>jquery/jquery.tmpl.min.js</file></action> <action method="addJs"><file>jquery/jquery.validate.js</file></action> <action method="addJs"><file>mage/translate.js</file></action> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/media/uploader.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/media/uploader.phtml index 6b6a39ecba2e5d0062b9212247d3a637a2ac6bfa..c0999782d4e14b85b95ffc17caebd276f1191c1f 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/media/uploader.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/media/uploader.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/newsletter.xml b/app/code/core/Mage/Adminhtml/view/adminhtml/newsletter.xml index 90713f0bfe8a0078154b823b571bfd078f4305bb..9a6e5203c2f6d0e5a5e5bfa5b551218109e89b01 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/newsletter.xml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/newsletter.xml @@ -21,7 +21,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/newsletter/preview/iframeswitcher.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/newsletter/preview/iframeswitcher.phtml index e243dd3d42a89ff26fb8277bc4c13b8a074b7bfe..b0d4d9bcb59a2d31dcf731e92aad25499aa91b79 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/newsletter/preview/iframeswitcher.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/newsletter/preview/iframeswitcher.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/newsletter/preview/store.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/newsletter/preview/store.phtml index a3da348fdccf17798d7c6797d4937e934ad41061..1ebd0308efcecaba94fc4121c11eb2e4399a0307 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/newsletter/preview/store.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/newsletter/preview/store.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/newsletter/problem/list.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/newsletter/problem/list.phtml index 18b53db2c472bd049af6bf5f9da82f33c22f33bf..c8afe2e6ffd1cf5505ef9cdf7ba15bccd60c272e 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/newsletter/problem/list.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/newsletter/problem/list.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/newsletter/queue/edit.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/newsletter/queue/edit.phtml index 63572f178a99f7d0280093264a823f9110d20981..26e7f21726e2437a718607df0f486a308765efad 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/newsletter/queue/edit.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/newsletter/queue/edit.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /* @var $this Mage_Adminhtml_Block_Newsletter_Queue_Edit */ diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/newsletter/queue/list.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/newsletter/queue/list.phtml index b9adc0254a53a6d2cc8fb8cda71d7b735a14e03a..b03f835d63c3b2957f00cc0a2d6258069535c438 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/newsletter/queue/list.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/newsletter/queue/list.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/newsletter/queue/preview.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/newsletter/queue/preview.phtml index bd46ab8590e35d8349f368083e8235cf8db06c41..ad740602ada531c52fe9062e6724b5f1bb2841f9 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/newsletter/queue/preview.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/newsletter/queue/preview.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/newsletter/subscriber/list.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/newsletter/subscriber/list.phtml index 664677cdb8e9c7f95bd89e74434cfe608495c1a6..8162b17c6ec9539f3ba645582a659a582cf5c485 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/newsletter/subscriber/list.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/newsletter/subscriber/list.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/newsletter/template/edit.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/newsletter/template/edit.phtml index 315d8a1aff9d1a5391d857477591fc2d241e827f..dd8fdec8e33e6f1a159e4cf151236c497c65e2cc 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/newsletter/template/edit.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/newsletter/template/edit.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /* @var $this Mage_Adminhtml_Block_Newsletter_Template_Edit */ diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/newsletter/template/list.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/newsletter/template/list.phtml index baf81b88acb785eca22b3bff46a1737de5b7cb1f..0480788fb1e90c5237417f9c0689616342aca307 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/newsletter/template/list.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/newsletter/template/list.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/newsletter/template/preview.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/newsletter/template/preview.phtml index bd46ab8590e35d8349f368083e8235cf8db06c41..ad740602ada531c52fe9062e6724b5f1bb2841f9 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/newsletter/template/preview.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/newsletter/template/preview.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/notification/baseurl.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/notification/baseurl.phtml index 3204a0d56d17d5358e97c37f635966f951622dce..ef5a21c7abcfc0dd4f65d22fcb318808e156602e 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/notification/baseurl.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/notification/baseurl.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /** diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/notification/security.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/notification/security.phtml index b69f10ba2bed4d9e53f9eb876557e702f6d1053f..70500f2eadb5507df74dc80fb956c105511d75e8 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/notification/security.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/notification/security.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /** diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/notification/survey.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/notification/survey.phtml index 44bf4c93367750817eef6980dcf1e97ea43e5ded..28fe9790ec541dd4955cbc15f24c9e8ce7ed31f2 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/notification/survey.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/notification/survey.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/notification/toolbar.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/notification/toolbar.phtml index dd6a0e63f67441588d87f719f4cc2516bba0295f..56c60e63a3085d4a3b3b62029f3745ada866b076 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/notification/toolbar.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/notification/toolbar.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/notification/window.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/notification/window.phtml index 738ea1bb99689a823addcb2dc7948a5d27b3b7dd..dcb7f05987ad4b61f426011d92da3253ca814747 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/notification/window.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/notification/window.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/page/footer.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/page/footer.phtml index 82070d236ad57556d6591db552d91c0dc5b45f7a..68a5805a6aca64243a514633ffe9243ed643584e 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/page/footer.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/page/footer.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/page/head.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/page/head.phtml index 54df4167898679077a0d9a6427e0beae0e357b42..1712908350cf1d1e93c591fc00f4fba2ce718fdc 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/page/head.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/page/head.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/page/header.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/page/header.phtml index 4620805dbf498b25f1deaec9fee92f1be86c307d..1e8a1039d64448b5e1fffa079e29e74c985a3d66 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/page/header.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/page/header.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/page/js/calendar.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/page/js/calendar.phtml index fe7706becbb909e9c3fa660274074f6b5d28252c..0c4f9df12b22c921e93a363fd9379e8f220122e5 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/page/js/calendar.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/page/js/calendar.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ // no notice of license for now diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/page/js/translate.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/page/js/translate.phtml index 4e6cf7493e0d0759a24602edb0be4265c18fc8d6..bf7ffc2ee5d2120098d17e4fca80af6858f1a6c6 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/page/js/translate.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/page/js/translate.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/page/notices.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/page/notices.phtml index cd99059073b6a52398cdd1e776534ce2e36422d7..d807fd9046206f53bd345ae43be68dc3b9089fde 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/page/notices.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/page/notices.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/page/system/config/robots/reset.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/page/system/config/robots/reset.phtml index cf916720d2e24972091b365349ce39a2216735dd..e4f16c103f772afed7e391e1ed08e494597bb350 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/page/system/config/robots/reset.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/page/system/config/robots/reset.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/poll/answers/list.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/poll/answers/list.phtml index b0b8ec0e2b61c29aa72380547a6d60de4c65010d..4a84e1c77c4aba4747038609040bd8f35ab71bf9 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/poll/answers/list.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/poll/answers/list.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/promo.xml b/app/code/core/Mage/Adminhtml/view/adminhtml/promo.xml index 594c0a0a123f8d37e7bf8884261e4467cd97e9dc..b43d060e22f59385d5f62b9869ca09c79e6ff36e 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/promo.xml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/promo.xml @@ -21,7 +21,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/promo/fieldset.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/promo/fieldset.phtml index b2d04dd9e67aab0a7df18b360835ca0214f505c0..bdbb71b32512ff0affc84e8d4776e11ac7b74000 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/promo/fieldset.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/promo/fieldset.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/promo/form.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/promo/form.phtml index e223c6a26e8b64609b8a1f21a9a72b9a3b295764..a7a8dff8fe780cb10420ac7548b717d4a3d49c70 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/promo/form.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/promo/form.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/promo/js.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/promo/js.phtml index 7c2691792e93e97324b2b98f9d941e141e568b52..f7e5dc149cba2e0452120c3f69b1155e82bd3ce2 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/promo/js.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/promo/js.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/promo/rules.js b/app/code/core/Mage/Adminhtml/view/adminhtml/promo/rules.js index 77409eb98c5f740ffc2d0b69d59424bc3d0b1996..ef18fb5cca59fed4e4b1a1969c3f40b3c147835f 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/promo/rules.js +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/promo/rules.js @@ -19,7 +19,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/promo/salesrulejs.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/promo/salesrulejs.phtml index 2016fb3ab40e0d241a577a05a5d2238a6b525081..584c9cab58df553a574a7f697f91939041bae316 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/promo/salesrulejs.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/promo/salesrulejs.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/rating/detailed.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/rating/detailed.phtml index c750247c06f1184dc7f00254fbb7118879cc4221..b728072f8b3436195618ce6426198ad7a41e8ff6 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/rating/detailed.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/rating/detailed.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/rating/options.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/rating/options.phtml index fa07087427bc59ebfa08713a7bd8f4d56d56bc25..9bbde5b08c8337855fa3216339d0c7c30ed6448f 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/rating/options.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/rating/options.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/rating/stars/detailed.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/rating/stars/detailed.phtml index 2a2c883bbb9f70e37e9d9084abf6062fc4938b79..507b6d41d42b0e85ec19748941433fca82bda078 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/rating/stars/detailed.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/rating/stars/detailed.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/rating/stars/summary.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/rating/stars/summary.phtml index c241652af468779e93668c98238ef9c0d7eb90b8..651b3fe8ed609edff02a4df678392541db6c68af 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/rating/stars/summary.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/rating/stars/summary.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/report.xml b/app/code/core/Mage/Adminhtml/view/adminhtml/report.xml index 1218db61d1a3fbbbd79dbad4c187f398d4912934..3a80a2b636f74ed5705855d1a483fcd13b621d16 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/report.xml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/report.xml @@ -21,7 +21,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/report/grid/container.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/report/grid/container.phtml index 80ea2059cf30ec3ea75fa83d8973f14a64a31517..5289e55cb1035436f7df4a64c2cc754638210b85 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/report/grid/container.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/report/grid/container.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/report/refresh/statistics.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/report/refresh/statistics.phtml index b68f8ebc91c93b512bfd36daad56ffd9bb0a8110..eb651e3cb970c2587e9783203f7eb18108028051 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/report/refresh/statistics.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/report/refresh/statistics.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/report/wishlist.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/report/wishlist.phtml index 5e36e512274d04fef2b2e431fd6cf72c7facedf2..7a209b8a95cdf9cf0246d1b427c106d7f0216c9c 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/report/wishlist.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/report/wishlist.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/resetforgottenpassword.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/resetforgottenpassword.phtml index e645d616a9e76ae769cb0c784a8497ebba7c2b11..74e128aa4a227af387103e317e7316e115a798a4 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/resetforgottenpassword.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/resetforgottenpassword.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> @@ -34,9 +34,9 @@ <link rel="icon" href="<?php echo $this->getViewFileUrl('Mage_Page::favicon.ico'); ?>" type="image/x-icon" /> <link rel="shortcut icon" href="<?php echo $this->getViewFileUrl('Mage_Page::favicon.ico'); ?>" type="image/x-icon" /> - <script type="text/javascript" src="<?php echo $this->getViewFileUrl('jquery/jquery-1.8.2.min.js') ?>"></script> + <script type="text/javascript" src="<?php echo $this->getViewFileUrl('jquery/jquery.min.js') ?>"></script> <script type="text/javascript" src="<?php echo $this->getViewFileUrl('mage/jquery-no-conflict.js') ?>"></script> - <script type="text/javascript" src="<?php echo $this->getViewFileUrl('jquery/jquery-ui-1.9.1.custom.min.js') ?>"></script> + <script type="text/javascript" src="<?php echo $this->getViewFileUrl('jquery/jquery-ui.min.js') ?>"></script> <script type="text/javascript" src="<?php echo $this->getViewFileUrl('jquery/jquery.tmpl.min.js') ?>"></script> <script type="text/javascript" src="<?php echo $this->getViewFileUrl('jquery/jquery.validate.js') ?>"></script> <script type="text/javascript" src="<?php echo $this->getViewFileUrl('mage/validation.js') ?>"></script> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/review/add.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/review/add.phtml index 8a7e8a7f172962e05925617908a24ca1fda53824..edfac0b475f6ffd4e95481d005148df9ea3ad840 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/review/add.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/review/add.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales.xml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales.xml index 505e1569b5078f73ad708d978bb81d9adaced265..5f5ea72c5286b0a02e670a80e99e66550b4c5f6f 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales.xml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales.xml @@ -21,7 +21,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/items/column/name.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/items/column/name.phtml index e73e07ace16a9119cd56b392b5a73819220792a6..2652cd40e6c34c5949871d5dba423fd0febc50f3 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/items/column/name.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/items/column/name.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/items/column/qty.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/items/column/qty.phtml index 89061ac73f78520c9b122897c91a6252e77e7512..4c901fc8eda5a92725dd653478dd6e934096495b 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/items/column/qty.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/items/column/qty.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/items/renderer/default.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/items/renderer/default.phtml index 34fcc108d6c0760fb2046fd370e65ae10a4b6cc1..c0de77a89654ee1dfc13603b364ede8c0b050221 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/items/renderer/default.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/items/renderer/default.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/address/form.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/address/form.phtml index 0c85cda4f2bff8fef314b27bdb911ff3e5dd22b9..332e8b74485fd3def584d12d12111e4408cd6d10 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/address/form.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/address/form.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/comments/view.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/comments/view.phtml index af4d630ac24469c0f9bd7de54701e4279bfbb09e..98dbb7f9fe3007c3614a2a67a2d197f1cab3cb70 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/comments/view.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/comments/view.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/abstract.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/abstract.phtml index 0af12240f034a32f88ad0af6e5e1d74237ab93a9..33e7d7dbf392bc1c375c3fcc7d71de48b4470393 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/abstract.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/abstract.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/billing/method/form.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/billing/method/form.phtml index 286f06cca956c2112aa6d35fdf90c45b374942e6..4f2f6ec0556cc341384820151372db6cf28d065c 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/billing/method/form.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/billing/method/form.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/comment.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/comment.phtml index b916ef5b25a6576826634a099e489753e6136fd7..d4466f7a97b520b62624e3ba5137eff000fa5617 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/comment.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/comment.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/coupons/form.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/coupons/form.phtml index 9c663feb8af8685fe42ed3a4121f4c5d727c9419..fbc6c36f5acd5083d9707e0b8467e5156df1aca0 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/coupons/form.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/coupons/form.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/data.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/data.phtml index f42770ee7dff1440f6a9b4ced79984a1a82be63b..f11b7bce1dfcf01149c94bf94cb14857f15739c4 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/data.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/data.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/form.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/form.phtml index cf838c879b4d05b8c6a8b6daf68fab07e4d0b09d..2ad29172cdff170b0b0c6067a824643148471381 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/form.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/form.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/form/account.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/form/account.phtml index 51a7539c6d07473fcaaf857cbb3112af7ce7cea8..7e11ac5ddfa02ed790fe3561f37178265b7192f5 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/form/account.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/form/account.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/form/address.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/form/address.phtml index b5af5768ec56be0f8f14ed224f3e1d24cdcb9602..f0dfcba608cf161cd7eaf425a9eda549435e549f 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/form/address.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/form/address.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ if($this->getIsShipping()): diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/giftmessage.js b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/giftmessage.js index af23821f73e39dc65646d7755d5301a2a4b0b350..ec50242a4112d348cc9dd2a93b6372fc673b6500 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/giftmessage.js +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/giftmessage.js @@ -19,7 +19,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/giftmessage.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/giftmessage.phtml index 652565ad54ea286067751876a0ca960ff1ce9173..457cad500b816cca1aa0c2e6af143e9787091a6b 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/giftmessage.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/giftmessage.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/items.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/items.phtml index 0cfe2f55b2a78f12d23de680152dd7fafafbe542..448f55dcb3f1941477faca54ddc828723c962fbd 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/items.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/items.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/items/grid.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/items/grid.phtml index 168149eb6a426758670141e3b14e6e45fc5d7fa4..1caa1b51376b754a9864bc4aa685a74bf4f04112 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/items/grid.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/items/grid.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/js.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/js.phtml index f711445425e58c4a5de54cdf6b0ba935b853b06d..9f488e5b0dd0e4950c4113cab6b62d8faf22668b 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/js.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/js.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/newsletter/form.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/newsletter/form.phtml index bdc09332333b0ca52d63aa8fea434fff9c6e73e1..c2ab48e23accf7195ea295ffec189998d80d4638 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/newsletter/form.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/newsletter/form.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/scripts.js b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/scripts.js index 01ea3dd3d3308b6c5188a3c519efdcce1b5fed19..d7dd94a7bbf3e1695a16a1c5a98ca458f8ce74ea 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/scripts.js +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/scripts.js @@ -19,7 +19,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ var AdminOrder = new Class.create(); diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/shipping/method/form.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/shipping/method/form.phtml index 061cf55af8b9e6849e3cabd8ccc39200cd45076f..e83a5fbe8c2c6a8e4b80a93790f385f7efb1b08b 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/shipping/method/form.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/shipping/method/form.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/sidebar.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/sidebar.phtml index 23b0f238979f1e14d5b4eecb7b2bef43578c1323..e7ac9dbddecd95d6f0706e096a811e0cda0db395 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/sidebar.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/sidebar.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/sidebar/items.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/sidebar/items.phtml index e4710ec8751a5af52b181b9476e049523b79731e..d09814c990b2e11a04ccd5f3d7f2194a67a55820 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/sidebar/items.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/sidebar/items.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/store/select.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/store/select.phtml index 22c601f615983c7b44a3fbb85510eeedfbb525be..baca1f5112d5af43e37a5b574bb8e4669a6facdc 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/store/select.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/store/select.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/totals.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/totals.phtml index f3715941f11190598047f6bf7958014aeca8de12..78096966af287fe48e6d31ef63d74f06eafe4c5a 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/totals.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/totals.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/totals/default.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/totals/default.phtml index 6e5da256abf3e59356729256158f0fac9ba7e347..34454da994a99a594b37fbaf1c2fdf5b1448763c 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/totals/default.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/totals/default.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/totals/grandtotal.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/totals/grandtotal.phtml index 8e1d0d7457ff4c26fda78badbbe881ca3810d249..838105a075dcb054e62e7d5be6839d27c8e92a29 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/totals/grandtotal.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/totals/grandtotal.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /** diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/totals/shipping.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/totals/shipping.phtml index 6f68f029ef7ff8f3258d6cd58eb915dc4ef7eec6..db1b0799350f80dccd7da4bb665c830d8bd4415b 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/totals/shipping.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/totals/shipping.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /** diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/totals/subtotal.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/totals/subtotal.phtml index ce33dd51faa9c286a0188b61e5eb78d76bfbc363..013fb5eac4f02a2d5108b25a5cf2482682e06462 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/totals/subtotal.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/totals/subtotal.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /** diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/totals/tax.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/totals/tax.phtml index 2a06e3535aa974637bf86c9d3653e18e3e08dc34..483bdb11986214bc8db94499842eabd1fe26770b 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/totals/tax.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/create/totals/tax.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/creditmemo/create/form.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/creditmemo/create/form.phtml index 11797fc7833528c5f4f6d7af80512dc82fd96578..8a42140e8d20991f57549739b58c87fef9764d3a 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/creditmemo/create/form.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/creditmemo/create/form.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/creditmemo/create/items.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/creditmemo/create/items.phtml index d8a9e71008986fac39f27ed693ea683015e6d2f4..c72bb1c99df63888e52467e03a836745c73d50d4 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/creditmemo/create/items.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/creditmemo/create/items.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/creditmemo/create/items/renderer/configurable.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/creditmemo/create/items/renderer/configurable.phtml index ffbc3e3b49b938266e7901c64588b1e9db04debc..2fbda196fde35a5b59fea7709de51a457e9e0778 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/creditmemo/create/items/renderer/configurable.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/creditmemo/create/items/renderer/configurable.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/creditmemo/create/items/renderer/default.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/creditmemo/create/items/renderer/default.phtml index 3be769f1e3af960f5825da8bd3ce0672df670eb9..0b122fb89d360c4f7a681d3e4a6fb5114156876d 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/creditmemo/create/items/renderer/default.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/creditmemo/create/items/renderer/default.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/creditmemo/create/totals/adjustments.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/creditmemo/create/totals/adjustments.phtml index 5498a5dad36e2bc1c33fe0b916e30931ed0aef87..b0e562e9c5b1d41bcbbb9fe5440262ee190401ec 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/creditmemo/create/totals/adjustments.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/creditmemo/create/totals/adjustments.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/creditmemo/view/form.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/creditmemo/view/form.phtml index 09f62621c62e1f7f6de347bdb7ec0cf1cf9fc6ab..c28680d69ed2176fb2003e5974b19d74d4bfaa6a 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/creditmemo/view/form.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/creditmemo/view/form.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/creditmemo/view/items.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/creditmemo/view/items.phtml index 8eca8f126827fb6a0f06c5e3f7a90504e401630c..952f2de9bf2dcc671d86b22434df38d77982fa21 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/creditmemo/view/items.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/creditmemo/view/items.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/creditmemo/view/items/renderer/configurable.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/creditmemo/view/items/renderer/configurable.phtml index 8b1ee92bb9b75f4f06d8c6bcd7913f4a95026a9f..9ace59dcc47b35a22fc9d90afdd869e01951440a 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/creditmemo/view/items/renderer/configurable.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/creditmemo/view/items/renderer/configurable.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/creditmemo/view/items/renderer/default.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/creditmemo/view/items/renderer/default.phtml index cc1caafaa0e2560f9e3321da9b9661347cc9c4dc..aa815b371bbb259f158cf77dc6af94a17cf4e696 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/creditmemo/view/items/renderer/default.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/creditmemo/view/items/renderer/default.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/giftoptions.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/giftoptions.phtml index 42ac929c11827a1e28d7b8b832a3243399a6b59b..b74eb781d40b7f91e71deffb11729da413f02953 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/giftoptions.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/giftoptions.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/giftoptions_tooltip.js b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/giftoptions_tooltip.js index 5e066f800a6471018b3b817dbccdd44b00711ea2..c1764f19249d9a3ff8acfe6b6e7f048c966daacf 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/giftoptions_tooltip.js +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/giftoptions_tooltip.js @@ -19,7 +19,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/invoice/create/form.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/invoice/create/form.phtml index 624efcb5cfb915f133010282dda362c8c74fb956..b24c05fbb9221055155df2a54e411bf151c90c0a 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/invoice/create/form.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/invoice/create/form.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/invoice/create/items.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/invoice/create/items.phtml index f484417565de27baa9701f9c05f781f7e8c8a8bf..b54f6e12f210df89142f2b668e7e6eea8673067e 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/invoice/create/items.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/invoice/create/items.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/invoice/create/items/renderer/configurable.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/invoice/create/items/renderer/configurable.phtml index 2d899407b1fd1d8015b365ea9c4ee0c34531f102..d364fa1b1c06ce201673671628968b125f53574e 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/invoice/create/items/renderer/configurable.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/invoice/create/items/renderer/configurable.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/invoice/create/items/renderer/default.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/invoice/create/items/renderer/default.phtml index 996040393cc5a2e114e5e2bf5cde9fc821bd52e8..f379510aa8dbcd6acb74798e7dd6401232b4b97b 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/invoice/create/items/renderer/default.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/invoice/create/items/renderer/default.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/invoice/create/tracking.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/invoice/create/tracking.phtml index 5b19358ceeb4460f8bdfe7129e872486458ca2f1..2db6c7cf23e0bd1e736333cc1fe532a3567d442c 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/invoice/create/tracking.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/invoice/create/tracking.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/invoice/view/form.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/invoice/view/form.phtml index c8f942f45100edefed890cbdd0f3e450efe3cc2b..39889dbe02ebd1fa44c4a7676b9cac88133feb5c 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/invoice/view/form.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/invoice/view/form.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/invoice/view/items.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/invoice/view/items.phtml index 67e8e2b0383d313926ce1753bcb2bc52edf33ce0..dbeb1a8a8af3d59c698a8ead61df992dd98c717b 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/invoice/view/items.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/invoice/view/items.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/invoice/view/items/renderer/configurable.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/invoice/view/items/renderer/configurable.phtml index 7a973e99e5bad87c988e55472b3c3f0190e5cc5a..b9708402f00d0fa53003d7af9225eb2bb820f396 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/invoice/view/items/renderer/configurable.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/invoice/view/items/renderer/configurable.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/invoice/view/items/renderer/default.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/invoice/view/items/renderer/default.phtml index f6c952548ba9bf28314c12489edd282841dc831e..9b5306a32ffa28ca69fc366d981cc3557b253f07 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/invoice/view/items/renderer/default.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/invoice/view/items/renderer/default.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/shipment/create/form.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/shipment/create/form.phtml index a7910464afc79b790c4ec66db0093b4f37ff384c..64583330492c80fb32b03548013e7beb9a74dd99 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/shipment/create/form.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/shipment/create/form.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/shipment/create/items.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/shipment/create/items.phtml index 9994c457f37b807146c164dbbdbfae7264a90312..8173c01157ab219fe499e307b47d4917187a405f 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/shipment/create/items.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/shipment/create/items.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/shipment/create/items/renderer/configurable.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/shipment/create/items/renderer/configurable.phtml index 5ffb7689933b1db1fce0ac9394278dc0e93dcf6a..2a493eca83ce47d26e03490cf02fcba7361fb074 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/shipment/create/items/renderer/configurable.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/shipment/create/items/renderer/configurable.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/shipment/create/items/renderer/default.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/shipment/create/items/renderer/default.phtml index 1ee1669719c028fb39dc074e3d9f580e24d82986..b39c614fbc6aa632971439fb27a799b97a324327 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/shipment/create/items/renderer/default.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/shipment/create/items/renderer/default.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/shipment/create/tracking.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/shipment/create/tracking.phtml index 2d60580c9ab0808190acb72176a09116d34317b4..1595d485a5f54b5a596b76bfa1a0d86ab5f793eb 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/shipment/create/tracking.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/shipment/create/tracking.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/shipment/packaging.js b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/shipment/packaging.js index f6f3a5d4c4e47295a4b989278622157b023748c5..6fd369e3e9935dbaecf448f1bb6fce745546ad44 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/shipment/packaging.js +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/shipment/packaging.js @@ -19,7 +19,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ var Packaging = Class.create(); diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/shipment/packaging/grid.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/shipment/packaging/grid.phtml index 36bcf2c17101dedd4d10cd175616d74110239ca2..1cd164225a2b52437a01e25a7dfe590425e7ead4 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/shipment/packaging/grid.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/shipment/packaging/grid.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/shipment/packaging/packed.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/shipment/packaging/packed.phtml index af2c4f4b551869a02f7b3e94684fc4b6a3dbd277..f64d56f47b237b2a3274362523c6f67c21437206 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/shipment/packaging/packed.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/shipment/packaging/packed.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/shipment/packaging/popup.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/shipment/packaging/popup.phtml index 75b7e0f5b83dab66ecc4c8bb2059568ef0117187..6e9f020134dea562668e7391ecf3acd0e2e8aec1 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/shipment/packaging/popup.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/shipment/packaging/popup.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/shipment/tracking/info.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/shipment/tracking/info.phtml index 7492e3dc7d4ca5fa54653e1760a2104437487e9c..e41d0568a9d17c51b21d08e52201bcab8b9dc977 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/shipment/tracking/info.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/shipment/tracking/info.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/shipment/view/form.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/shipment/view/form.phtml index 9f099e857c225522d5d270185800edf038aa9f60..b2e15dcd51b48b989b2ab305df29673024957f52 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/shipment/view/form.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/shipment/view/form.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/shipment/view/items.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/shipment/view/items.phtml index 100249b657336135888a9f194446941e6a95a323..52139b4b081d4371491d6b32629f79572c7dd7c6 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/shipment/view/items.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/shipment/view/items.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/shipment/view/items/renderer/configurable.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/shipment/view/items/renderer/configurable.phtml index d7e606723b0023d1db2547d355b7fc4b61f72890..ee30e488a316237fd62561fd9bbbabb1ba9e5375 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/shipment/view/items/renderer/configurable.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/shipment/view/items/renderer/configurable.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/shipment/view/items/renderer/default.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/shipment/view/items/renderer/default.phtml index 630d07bb4a39f8a6f06a22be9b692abcb39b49e8..a0ef1698792a2d3dac4d44edccd6ca109b6eda09 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/shipment/view/items/renderer/default.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/shipment/view/items/renderer/default.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/shipment/view/tracking.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/shipment/view/tracking.phtml index 7dde17bad833af22fe11f0bd604f2389422da363..f8f0ab1bde2fb39e19b77a0c99ddf5353638dcb4 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/shipment/view/tracking.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/shipment/view/tracking.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/totalbar.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/totalbar.phtml index 3b12dcec75254178b08fe70a4ee20d92acfffe31..f5d4aa2022cddc5e1f1a2e7bafe9e07c0d0ebe47 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/totalbar.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/totalbar.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/totals.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/totals.phtml index d95e49b2e85fecf589e02ebeee9474e78e888e60..c35e60e55f0025dee49b7b3950fc5a6797e45689 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/totals.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/totals.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/totals/discount.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/totals/discount.phtml index 1dd2da6fdfce34ab139102175fbf6f5863b83206..c37e71aa86acd5ba7e179c10083459e304b93e16 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/totals/discount.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/totals/discount.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/totals/due.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/totals/due.phtml index 4c6d444a377966b1fe6d283bdfd27af05e48874b..7633b0a5840dbb622b15225efbae9167ac3bb64c 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/totals/due.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/totals/due.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/totals/footer.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/totals/footer.phtml index cd642ae0e319919c4d01a48d6e5853ceaf4b44c3..9e971ab20f4c7b9a3edda62fd382f1359b416c24 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/totals/footer.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/totals/footer.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/totals/grand.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/totals/grand.phtml index f3e9ee3c067fb0228bbd4e12feb6dd2024364a3e..85ca969d987882e6a851cb65977abeaa7e76f45f 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/totals/grand.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/totals/grand.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/totals/item.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/totals/item.phtml index fa07313e698d1f4e106080ff6ff056bc2bbb5e21..a5476a3979a1a5e643da976eb3d14d25631dbd33 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/totals/item.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/totals/item.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/totals/main.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/totals/main.phtml index 5a363758b20c0f9fa655ee3af456081e682fd153..fd7a06c3088d330e6a42d295c6f5ebae1188aa3f 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/totals/main.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/totals/main.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/totals/paid.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/totals/paid.phtml index 1ee023479b11dbbbfe5ce0f9da1b18827df5c44c..6fa6b5e15ec8a1d514832dd0dfd41fc537afeaaf 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/totals/paid.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/totals/paid.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/totals/refunded.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/totals/refunded.phtml index e80d35b17eef7c5a710bac62496a02e0855dff40..3d7af8e5682bc6bd0f4e507504122e0c48c6ea3b 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/totals/refunded.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/totals/refunded.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/totals/shipping.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/totals/shipping.phtml index c06cb29c332e49444a0b3eab72f9bae5db14b6eb..e308dd94f07b3d9ea595a8e4193bc10ff55d392c 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/totals/shipping.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/totals/shipping.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/totals/tax.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/totals/tax.phtml index e3c965d18c167dd3e7031e6069eb2ce44289c65d..c1735a6a0c4fc4130c554ebbe3930e728875878b 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/totals/tax.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/totals/tax.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /** @var $this Mage_Adminhtml_Block_Sales_Order_Totals_Tax */ diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/view/form.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/view/form.phtml index 88b49ba722b50f76750c36c6ab3c737e8142d895..51da8dc463199956486b8a4e4e95cf5e16fdd8fd 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/view/form.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/view/form.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/view/giftmessage.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/view/giftmessage.phtml index b8b2fcc373604f1cc1744149ed18bffc73e6d4d6..28b3401f8b0cf56720e2250ee9cebd39d2ce215b 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/view/giftmessage.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/view/giftmessage.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/view/history.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/view/history.phtml index 8b7d7abf49f1c9a38a8e4a3e40c7e48d92dcf766..1f9e2af7058982ffcdd320ca97a2d63814a33317 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/view/history.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/view/history.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/view/info.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/view/info.phtml index b0b50e6108c63243787bf35b6e89cc81f9269252..0aed87c35c18c7220b3368b12ea79f7980474985 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/view/info.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/view/info.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/view/items.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/view/items.phtml index 96b585de3e62417b38b4454a16fdc4794f8ba420..64093e04c151442244bb850f39f798ce63fb8f69 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/view/items.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/view/items.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/view/items/renderer/default.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/view/items/renderer/default.phtml index 8ea44d8d16dffe50bc739b2f8620ad1de7abeec3..6e8dfd08d3a28648dab8efc79e0740da2a6970ec 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/view/items/renderer/default.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/view/items/renderer/default.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/view/tab/history.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/view/tab/history.phtml index 7f274d3114115bd34dcc5e846317fd874a68fd85..1fc07eeeafad5b00e58a8a0e9b43eec887d8bec5 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/view/tab/history.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/view/tab/history.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/view/tab/info.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/view/tab/info.phtml index 824b7477ac85dcb4e954f20843fa081f0cafae6e..1f90dd6a0e746f5b84dbb395be4133b01a4085fe 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/view/tab/info.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/view/tab/info.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/view/tracking.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/view/tracking.phtml index 391748e40b3ff3e5e914234dc2bea648084bea2a..e0c898e91c881127d5aebad1972bf8c00489a686 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/view/tracking.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/order/view/tracking.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/transactions/detail.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/transactions/detail.phtml index e62f481d64f3533f055ecc3b77892feefb7b67d7..6b3654c55ca8027983b42c94a4cff9b162a2439f 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/sales/transactions/detail.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/sales/transactions/detail.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/store/switcher/enhanced.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/store/switcher/enhanced.phtml index 2ec28aad9d33f40d6ff60288641d45a8a5387c9d..ffd2ac9c7aa610b1e31fab43984bbcf1d79bf6ff 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/store/switcher/enhanced.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/store/switcher/enhanced.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/system/autocomplete.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/system/autocomplete.phtml index b3a831d3507c4e55b75acb9c6608cba429362b31..35978b11474df3cd61a164c098cccfd0ac7dc967 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/system/autocomplete.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/system/autocomplete.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/system/cache/additional.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/system/cache/additional.phtml index c3240e5d8aed729ffedaf7cf57d2ed91d0dd8e2e..6e24f212ead752a43077eaa561e363b5c6231a23 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/system/cache/additional.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/system/cache/additional.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/system/cache/edit.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/system/cache/edit.phtml index 449a296bb6fa5170dd317d13aaa1f8fb2031b085..490889108affeafe7c1c4cb51f7cec1271627ec2 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/system/cache/edit.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/system/cache/edit.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/system/cache/notifications.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/system/cache/notifications.phtml index 0969ec888dfd59e99d9b300747329ff0c0012854..9cd9d35c06db61aa28f60489b22250776b28f31c 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/system/cache/notifications.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/system/cache/notifications.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/system/currency/rate/matrix.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/system/currency/rate/matrix.phtml index 36448c7d6bd20bca2587fb4f8da8314245bfa9cc..db671f8b869a2b4eddd0bdb4792b61b97309a0fc 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/system/currency/rate/matrix.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/system/currency/rate/matrix.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/system/currency/rate/services.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/system/currency/rate/services.phtml index 0b794a2b49fa8b062ee7f7d752692e33d91b7c0c..d8cb59a37e03900732eda8129c2d657ba6194dad 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/system/currency/rate/services.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/system/currency/rate/services.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/system/currency/rates.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/system/currency/rates.phtml index 109a19982eb3cb61369c3922cc79be61cc06623a..8e7029680d78c68b998910166fd8cbd30e6af319 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/system/currency/rates.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/system/currency/rates.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/system/design/design.xml b/app/code/core/Mage/Adminhtml/view/adminhtml/system/design/design.xml index 7a09d96c88373893150289a7040646754abaac4e..530cf314f4860eedc131d18363e9276800c9b676 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/system/design/design.xml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/system/design/design.xml @@ -21,7 +21,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> @@ -70,8 +70,8 @@ <header translate='true' module='Mage_Catalog'>Store</header> <width>100px</width> <type>store</type> - <store_view>true</store_view> - <sortable>false</sortable> + <store_view>1</store_view> + <sortable>0</sortable> <index>store_id</index> </arguments> </block> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/system/design/edit.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/system/design/edit.phtml index 92c4473ed647f533aeb0f01855d8d05ef3ed9833..ee49c1eebb5ec8996bb53d6546eb364e9ba6ebb6 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/system/design/edit.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/system/design/edit.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/system/design/index.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/system/design/index.phtml index fd56c4c7fcf811a587fe4de7d4f2733a94885795..5007f9b4aac70cedad2cd5afc1941b53f9dae15d 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/system/design/index.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/system/design/index.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/system/email/template.xml b/app/code/core/Mage/Adminhtml/view/adminhtml/system/email/template.xml index 46ff194d7416565c3d772571c31c811b6144503b..26b3e620857ac3e628c4c99236d4fc60d871ec72 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/system/email/template.xml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/system/email/template.xml @@ -21,7 +21,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/system/email/template/edit.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/system/email/template/edit.phtml index 96f41b079ff3e65e4a92363258a656f62b336f21..1d9eae9f7442069e74687496933fca36e2e71abb 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/system/email/template/edit.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/system/email/template/edit.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/system/email/template/list.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/system/email/template/list.phtml index 4fb7c59b3d1f6fa69e8899916a20cf3a280c4f28..17e6dff307f728299af90b3cf0c84399608136e5 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/system/email/template/list.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/system/email/template/list.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/system/email/template/preview.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/system/email/template/preview.phtml index aa45bd643b143d2bed2956f4e7b49ffcf1dc33d7..6c5fe750174f05f266bfc81c2ad5dce10d902e08 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/system/email/template/preview.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/system/email/template/preview.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/system/info.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/system/info.phtml index 96e690b25e615dcbb85de23fb0336e9f633d012e..1bbe0d45357905d8adac28a15989d043fbf9f1c7 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/system/info.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/system/info.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/system/shipping/applicable_country.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/system/shipping/applicable_country.phtml index a749620bfa899b68b582a447001f26e301638fd9..d64fcebf5a4b8db00966dd69fde8a3d8cb1e94fe 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/system/shipping/applicable_country.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/system/shipping/applicable_country.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/system/shipping/ups.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/system/shipping/ups.phtml index 32ecdf1fb98fa4b459940a33de361400984067d6..a6f152f906e97ed1bd4fa8fb971b91923d49e25b 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/system/shipping/ups.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/system/shipping/ups.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/system/store/store.xml b/app/code/core/Mage/Adminhtml/view/adminhtml/system/store/store.xml index edce19a36ba9731dd4b67228866187e1a6bf0b34..9add474ec639366a2e99ea6b9c1bd9e4e3b43bf4 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/system/store/store.xml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/system/store/store.xml @@ -21,7 +21,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/system/variable/js.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/system/variable/js.phtml index 29fa40b166b23c721b8ab2bc7e76f6ea13578f5d..1a62371a4e8110cbfa715fadd91aa2b5bbdfc608 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/system/variable/js.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/system/variable/js.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/tax.xml b/app/code/core/Mage/Adminhtml/view/adminhtml/tax.xml index 740c3cda3c805cd8ec154bc2bed62b4d3e46d5b8..2323759da452aab067d4cf55cd7a582ffa3aad8a 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/tax.xml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/tax.xml @@ -21,7 +21,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/tax/class/page/edit.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/tax/class/page/edit.phtml index 9772c6612e1750d223689201bf52a7358a5bdd9a..36abc4bc19c2017102330fafa8529b7487b83f0e 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/tax/class/page/edit.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/tax/class/page/edit.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/tax/importExport.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/tax/importExport.phtml index 17d6ed05beb7ded589e87897b397e0c4b09a5933..d3088d44684e4fc7833060f90cce851722bc38be 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/tax/importExport.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/tax/importExport.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/tax/importExportHeader.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/tax/importExportHeader.phtml index dc2d79b68121a65ec2c90a3a51b80c4639bd1c77..ebee6ab487affe32407570322af296180ddc3a9d 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/tax/importExportHeader.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/tax/importExportHeader.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/tax/rate/form.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/tax/rate/form.phtml index b1429740d8b6d3f1fcaf2489e5e4ad3b918ded18..a2f4d8ed5f43f0cf6b86d4f07796b968cd3cd27e 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/tax/rate/form.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/tax/rate/form.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/tax/rate/title.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/tax/rate/title.phtml index d0ee481a77eb47ecef6ece3afed70b3a1267c83a..cecede346636b1359cb468ed2141146cdae345ca 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/tax/rate/title.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/tax/rate/title.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/tax/rule/edit.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/tax/rule/edit.phtml index bc923a69d0fe0193d3452e7c17ef5f627644366c..512fd4f47ec13378dbb2c6be8d534b1b8ed3664a 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/tax/rule/edit.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/tax/rule/edit.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/tax/rule/rate/form.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/tax/rule/rate/form.phtml index 3f99b9db9cd5f3f55c0e546eaac9ecf57ad8c4a6..b6be757aec43a4fa52684c188759a94acd7ed504 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/tax/rule/rate/form.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/tax/rule/rate/form.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /* @var $this Mage_Adminhtml_Block_Tax_Rate_Form */ diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/tax/toolbar/class/add.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/tax/toolbar/class/add.phtml index 5d29761782ccaaa25eaf861345f9dd21400d367f..bfeb7b5b4f1c5f9412e1c84a2f6cbfec80bfaa61 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/tax/toolbar/class/add.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/tax/toolbar/class/add.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/tax/toolbar/class/save.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/tax/toolbar/class/save.phtml index 65980b25646dce173512b39d4e1f4124cf2660dc..346b840fe2a495eabe34f2c47eb6ce1d52942b02 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/tax/toolbar/class/save.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/tax/toolbar/class/save.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/tax/toolbar/rate/add.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/tax/toolbar/rate/add.phtml index 50fb7074386c1f6eef61c92ebaf28a16d72bc7d2..1c7f2bd4e1ac4ca76bd9945213e48849b6cbaf57 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/tax/toolbar/rate/add.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/tax/toolbar/rate/add.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/tax/toolbar/rate/save.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/tax/toolbar/rate/save.phtml index de40639d7a95090155ccace66c26c966b028a832..606cec7fb5f009fff8dde8555d5f40fa404d8c1e 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/tax/toolbar/rate/save.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/tax/toolbar/rate/save.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/tax/toolbar/rule/add.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/tax/toolbar/rule/add.phtml index c3fbdd1d3a72d62903372b9536552ac8a9c3053e..1603f7f004fa51bc03bb99347ae20c86c61912cb 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/tax/toolbar/rule/add.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/tax/toolbar/rule/add.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/tax/toolbar/rule/save.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/tax/toolbar/rule/save.phtml index 4f26a351673daa5311153add1478deb3cdae62ce..c892a17af33296631d4a47022883d4ca67353f18 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/tax/toolbar/rule/save.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/tax/toolbar/rule/save.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/urlrewrite.xml b/app/code/core/Mage/Adminhtml/view/adminhtml/urlrewrite.xml index e06558a8dd547b74cdb6b79c64e666820dc337a3..07e8622b0e0f6ee503d8275965e75bb172a2827c 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/urlrewrite.xml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/urlrewrite.xml @@ -21,7 +21,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/urlrewrite/categories.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/urlrewrite/categories.phtml index 0b8b43fe68e272fe3cc90d5dea1f2f9911c9a621..744eb173190f8282f6c429421057c99a21185682 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/urlrewrite/categories.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/urlrewrite/categories.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/urlrewrite/edit.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/urlrewrite/edit.phtml index 61694d39be0ab37acc3cbfd70bd129588803c19f..20e732a6a1cd11ed19a9983a34605c57f2f27687 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/urlrewrite/edit.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/urlrewrite/edit.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/urlrewrite/selector.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/urlrewrite/selector.phtml index b9f0f6ad1235c95bff84c859d7b7cb7c20f57647..cc614ae54f8450a1812fe0c09d802734a709f523 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/urlrewrite/selector.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/urlrewrite/selector.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/variable.xml b/app/code/core/Mage/Adminhtml/view/adminhtml/variable.xml index 3c9e22ecd37a9036ead5ab3cedaed65dacf64f3d..8bda13a9cbe4ae4c76b2d62a7b0c07523007f86e 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/variable.xml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/variable.xml @@ -21,7 +21,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/variables.js b/app/code/core/Mage/Adminhtml/view/adminhtml/variables.js index b1286ab0e1f8c2ce8dfed360a969ed1577fff4e5..9859562360d494213c8dc10edc28b9ca78311afa 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/variables.js +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/variables.js @@ -19,7 +19,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/widget/tabshoriz.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/widget/tabshoriz.phtml index 1f8b472f85c0ca6ad8cfe1f0c30ff26691cec0f8..0d376b4327ba03f7e873ec73efe584ea32ed6ad8 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/widget/tabshoriz.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/widget/tabshoriz.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Adminhtml/view/adminhtml/widget/tabsleft.phtml b/app/code/core/Mage/Adminhtml/view/adminhtml/widget/tabsleft.phtml index 8c10041c32efcf733cbd5a23157eee2f68283183..d1d888f986e4b2c9b6437a0f6efd323f671211f0 100644 --- a/app/code/core/Mage/Adminhtml/view/adminhtml/widget/tabsleft.phtml +++ b/app/code/core/Mage/Adminhtml/view/adminhtml/widget/tabsleft.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Authorizenet/Block/Directpost/Form.php b/app/code/core/Mage/Authorizenet/Block/Directpost/Form.php index 5e593671d8dad4f93041dc5242f181895a447785..f62766f47b1784403681a7fccc882baa2bac0aad 100644 --- a/app/code/core/Mage/Authorizenet/Block/Directpost/Form.php +++ b/app/code/core/Mage/Authorizenet/Block/Directpost/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Authorizenet - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Authorizenet/Block/Directpost/Iframe.php b/app/code/core/Mage/Authorizenet/Block/Directpost/Iframe.php index a8ad7f1496f8fea1b3d02c86621b1e5008aec8a5..380bb49696da0251908b2f5f6fd81c89b673f356 100644 --- a/app/code/core/Mage/Authorizenet/Block/Directpost/Iframe.php +++ b/app/code/core/Mage/Authorizenet/Block/Directpost/Iframe.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Authorizenet - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Authorizenet/Helper/Data.php b/app/code/core/Mage/Authorizenet/Helper/Data.php index 63201dd4b23ba69b61701779158dc6aa7bb7a6bf..bfa5e89969975827ce79536b6eec2eba05482f5b 100755 --- a/app/code/core/Mage/Authorizenet/Helper/Data.php +++ b/app/code/core/Mage/Authorizenet/Helper/Data.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Authorizenet - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ @@ -109,7 +109,7 @@ class Mage_Authorizenet_Helper_Data extends Mage_Core_Helper_Abstract case 'sales_order_create': case 'sales_order_edit': $route = 'adminhtml/authorizenet_directpost_payment/redirect'; - break; + return $this->getAdminUrl($route, $params); default: $route = 'authorizenet/directpost_payment/redirect'; diff --git a/app/code/core/Mage/Authorizenet/Model/Directpost.php b/app/code/core/Mage/Authorizenet/Model/Directpost.php index f915d8fb5328320bdc83595654d617ee186a19ab..12eaf215d28de9db43558e0c3043f8d98d757f14 100644 --- a/app/code/core/Mage/Authorizenet/Model/Directpost.php +++ b/app/code/core/Mage/Authorizenet/Model/Directpost.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Authorizenet - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Authorizenet/Model/Directpost/Observer.php b/app/code/core/Mage/Authorizenet/Model/Directpost/Observer.php index 204afb2d02fada084afc03a763d8dc03d65c18ae..ebb894c6341f95bad6cf7f65f5b457faa3a46a76 100644 --- a/app/code/core/Mage/Authorizenet/Model/Directpost/Observer.php +++ b/app/code/core/Mage/Authorizenet/Model/Directpost/Observer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Authorizenet - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Authorizenet/Model/Directpost/Request.php b/app/code/core/Mage/Authorizenet/Model/Directpost/Request.php index 62ca6f9a64df60a517af39200872c24d6beca6d8..bf90be88523dddce9234308306b513b219b72a48 100644 --- a/app/code/core/Mage/Authorizenet/Model/Directpost/Request.php +++ b/app/code/core/Mage/Authorizenet/Model/Directpost/Request.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Authorizenet - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Authorizenet/Model/Directpost/Response.php b/app/code/core/Mage/Authorizenet/Model/Directpost/Response.php index 861dd3ce91f2a9e30f427d23454033d02a75d906..4488b7b83dad594e51a895e80f64dccec283c0d1 100644 --- a/app/code/core/Mage/Authorizenet/Model/Directpost/Response.php +++ b/app/code/core/Mage/Authorizenet/Model/Directpost/Response.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Authorizenet - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Authorizenet/Model/Directpost/Session.php b/app/code/core/Mage/Authorizenet/Model/Directpost/Session.php index 5ad49fc9a759521841786978344e7154de52684b..1edd626e90be84e741a409b5d0e43c92e9dada76 100644 --- a/app/code/core/Mage/Authorizenet/Model/Directpost/Session.php +++ b/app/code/core/Mage/Authorizenet/Model/Directpost/Session.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Authorizenet - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Authorizenet/controllers/Adminhtml/Authorizenet/Directpost/PaymentController.php b/app/code/core/Mage/Authorizenet/controllers/Adminhtml/Authorizenet/Directpost/PaymentController.php index 950a745af6095224b05aa196c6caa395f3ad3b6a..e2ff4c66cd6b5237fdd04ddf5b6994fe380080f3 100644 --- a/app/code/core/Mage/Authorizenet/controllers/Adminhtml/Authorizenet/Directpost/PaymentController.php +++ b/app/code/core/Mage/Authorizenet/controllers/Adminhtml/Authorizenet/Directpost/PaymentController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Authorizenet - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ @@ -196,10 +196,8 @@ class Mage_Authorizenet_Adminhtml_Authorizenet_Directpost_PaymentController $this->_returnQuote($cancelOrder, $redirectParams['error_msg']); } - $block = $this->getLayout() - ->createBlock('Mage_Authorizenet_Block_Directpost_Iframe') - ->setParams(array_merge($params, $redirectParams)); - $this->getResponse()->setBody($block->toHtml()); + Mage::register('authorizenet_directpost_form_params', array_merge($params, $redirectParams)); + $this->loadLayout(false)->renderLayout(); } /** diff --git a/app/code/core/Mage/Authorizenet/controllers/Directpost/PaymentController.php b/app/code/core/Mage/Authorizenet/controllers/Directpost/PaymentController.php index 3b7fa5273f6f5ff192403330c7865fa584cfccdd..5eaaa681635ae0100786e63eef48b5cbb5f44abf 100644 --- a/app/code/core/Mage/Authorizenet/controllers/Directpost/PaymentController.php +++ b/app/code/core/Mage/Authorizenet/controllers/Directpost/PaymentController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Authorizenet - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Authorizenet/etc/adminhtml/system.xml b/app/code/core/Mage/Authorizenet/etc/adminhtml/system.xml index 2dbfd0d8a3d8bc73a2ffa631d3888a5c4646ca6b..ce225064631630a06526450bbdd2bccbb53e9250 100644 --- a/app/code/core/Mage/Authorizenet/etc/adminhtml/system.xml +++ b/app/code/core/Mage/Authorizenet/etc/adminhtml/system.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Authorizenet - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Authorizenet/etc/config.xml b/app/code/core/Mage/Authorizenet/etc/config.xml index eac9bd27875bc617e79185129d194097211c5046..f091a0ec005725c53ecea12f900a666b5aae7638 100755 --- a/app/code/core/Mage/Authorizenet/etc/config.xml +++ b/app/code/core/Mage/Authorizenet/etc/config.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Authorizenet - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Authorizenet/view/adminhtml/directpost/iframe.phtml b/app/code/core/Mage/Authorizenet/view/adminhtml/directpost/iframe.phtml index 8271abf37368b6bac36403aae660b61e0c8d20fc..18111eec21e249a52f078711838dbed6cc2e2815 100644 --- a/app/code/core/Mage/Authorizenet/view/adminhtml/directpost/iframe.phtml +++ b/app/code/core/Mage/Authorizenet/view/adminhtml/directpost/iframe.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Authorizenet/view/adminhtml/directpost/info.phtml b/app/code/core/Mage/Authorizenet/view/adminhtml/directpost/info.phtml index 1bb09505736dcf6ba04cac6d1dc4ab1d777852db..82bc2939dd42618fa009cef2dda5e0638a35eaea 100644 --- a/app/code/core/Mage/Authorizenet/view/adminhtml/directpost/info.phtml +++ b/app/code/core/Mage/Authorizenet/view/adminhtml/directpost/info.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Authorizenet/view/adminhtml/layout.xml b/app/code/core/Mage/Authorizenet/view/adminhtml/layout.xml index 887e16723b388ed5317d880401dd8325367ea719..8da6793ffd6d8bd2348801864db1c3723ddb9492 100644 --- a/app/code/core/Mage/Authorizenet/view/adminhtml/layout.xml +++ b/app/code/core/Mage/Authorizenet/view/adminhtml/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ @@ -32,4 +32,9 @@ <action method="addJs"><file>mage/directpost.js</file></action> </reference> </adminhtml_sales_order_create_index> -</layout> + <adminhtml_authorizenet_directpost_payment_redirect> + <container name="root" label="Root" output="1"> + <block type="Mage_Authorizenet_Block_Directpost_Iframe" name="iframe" template="directpost/iframe.phtml"/> + </container> + </adminhtml_authorizenet_directpost_payment_redirect> +</layout> \ No newline at end of file diff --git a/app/code/core/Mage/Authorizenet/view/frontend/directpost/form.phtml b/app/code/core/Mage/Authorizenet/view/frontend/directpost/form.phtml index d7fab55d6b3b0fa31a4ab00cb252ddc502cbc404..b80cae0c9454a62e5f2212b588d0714734329252 100644 --- a/app/code/core/Mage/Authorizenet/view/frontend/directpost/form.phtml +++ b/app/code/core/Mage/Authorizenet/view/frontend/directpost/form.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Authorizenet/view/frontend/directpost/iframe.phtml b/app/code/core/Mage/Authorizenet/view/frontend/directpost/iframe.phtml index 3d6969aa139f12fad460cc60ac89128480a8e95e..e164f551f83ea17569c4c912bbd6ea8bd17635e2 100644 --- a/app/code/core/Mage/Authorizenet/view/frontend/directpost/iframe.phtml +++ b/app/code/core/Mage/Authorizenet/view/frontend/directpost/iframe.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Authorizenet/view/frontend/directpost/info.phtml b/app/code/core/Mage/Authorizenet/view/frontend/directpost/info.phtml index c131cf2f04af5a6fa42825010a259dab918ad4fd..f24d3894c12fd3f10442cc02924ced9e3fd3f02a 100644 --- a/app/code/core/Mage/Authorizenet/view/frontend/directpost/info.phtml +++ b/app/code/core/Mage/Authorizenet/view/frontend/directpost/info.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Authorizenet/view/frontend/layout.xml b/app/code/core/Mage/Authorizenet/view/frontend/layout.xml index 931f49622b8a1cac273717a2d9114ada295e9d63..c7781f37f0bb36a443d23ecad7b7e89e5cbd278a 100644 --- a/app/code/core/Mage/Authorizenet/view/frontend/layout.xml +++ b/app/code/core/Mage/Authorizenet/view/frontend/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/Abstract.php b/app/code/core/Mage/Backend/Block/Abstract.php index 25d00de03dcf91f96729d6a532f175fee82565ad..977c6b61f1d70ffb3cb5765b343cce7fa89edea1 100644 --- a/app/code/core/Mage/Backend/Block/Abstract.php +++ b/app/code/core/Mage/Backend/Block/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/Menu.php b/app/code/core/Mage/Backend/Block/Menu.php index 496c6c6b69ff386fba579539c9a7f76b6459a025..ff9043ba04eef267cbb4cf76404bf223be65441e 100644 --- a/app/code/core/Mage/Backend/Block/Menu.php +++ b/app/code/core/Mage/Backend/Block/Menu.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/Store/Switcher.php b/app/code/core/Mage/Backend/Block/Store/Switcher.php index ae60107b6e083a2008e9535d1ab9b5e5197bca64..17ca9a8b74684740c14cfa7f90d7cb472803fa67 100644 --- a/app/code/core/Mage/Backend/Block/Store/Switcher.php +++ b/app/code/core/Mage/Backend/Block/Store/Switcher.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/Store/Switcher/Form/Renderer/Fieldset.php b/app/code/core/Mage/Backend/Block/Store/Switcher/Form/Renderer/Fieldset.php index c97273b9e8e674ae0cdd9dd1d46c5f04354560f0..e748ffeb9d284de1dbd1f2759caea61007823020 100644 --- a/app/code/core/Mage/Backend/Block/Store/Switcher/Form/Renderer/Fieldset.php +++ b/app/code/core/Mage/Backend/Block/Store/Switcher/Form/Renderer/Fieldset.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/Store/Switcher/Form/Renderer/Fieldset/Element.php b/app/code/core/Mage/Backend/Block/Store/Switcher/Form/Renderer/Fieldset/Element.php index c739b755572fca950eacb02810d1dcef71f0b419..c5f646eac9e9bb0a8bb34d139cd33b5a043aa150 100644 --- a/app/code/core/Mage/Backend/Block/Store/Switcher/Form/Renderer/Fieldset/Element.php +++ b/app/code/core/Mage/Backend/Block/Store/Switcher/Form/Renderer/Fieldset/Element.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/System/Config/Dwstree.php b/app/code/core/Mage/Backend/Block/System/Config/Dwstree.php index c784fb553bd535ef75934620e2d9c8c1aeead15a..ca017b381636871ed9bd599888866343f8856c43 100644 --- a/app/code/core/Mage/Backend/Block/System/Config/Dwstree.php +++ b/app/code/core/Mage/Backend/Block/System/Config/Dwstree.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/System/Config/Edit.php b/app/code/core/Mage/Backend/Block/System/Config/Edit.php index 09d3ff3523bab6099f5cb80039d5e0fa1f811a03..a63f7f7d1e0282d3cc9dcfcff3ce4e4eb4f393f3 100644 --- a/app/code/core/Mage/Backend/Block/System/Config/Edit.php +++ b/app/code/core/Mage/Backend/Block/System/Config/Edit.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/System/Config/Form.php b/app/code/core/Mage/Backend/Block/System/Config/Form.php index 47901f262036ce875689b612c431ca9c79a2cf11..70153b77aee71b63f4ef4dc76dcc6e73b759aa45 100644 --- a/app/code/core/Mage/Backend/Block/System/Config/Form.php +++ b/app/code/core/Mage/Backend/Block/System/Config/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/System/Config/Form/Field.php b/app/code/core/Mage/Backend/Block/System/Config/Form/Field.php index 0d23fe718c40a22dfcf095ee409a604d874e49f4..5ebded2e2b7da3e1287a8ca1983bf5eb8d9e3633 100644 --- a/app/code/core/Mage/Backend/Block/System/Config/Form/Field.php +++ b/app/code/core/Mage/Backend/Block/System/Config/Form/Field.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/System/Config/Form/Field/Array/Abstract.php b/app/code/core/Mage/Backend/Block/System/Config/Form/Field/Array/Abstract.php index fbd7e6d91aa965d593ef6f4b97efd196793c44f8..02ba73f5ad0b4ebf2917d1d725e918f5f8b9955f 100644 --- a/app/code/core/Mage/Backend/Block/System/Config/Form/Field/Array/Abstract.php +++ b/app/code/core/Mage/Backend/Block/System/Config/Form/Field/Array/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/System/Config/Form/Field/Datetime.php b/app/code/core/Mage/Backend/Block/System/Config/Form/Field/Datetime.php index a0fd54c1f570e336dae2a83fe60f1c0d5a1e90cc..4bb1d0de1844c1e7936b25fbe1e997619c8f023c 100644 --- a/app/code/core/Mage/Backend/Block/System/Config/Form/Field/Datetime.php +++ b/app/code/core/Mage/Backend/Block/System/Config/Form/Field/Datetime.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/System/Config/Form/Field/Export.php b/app/code/core/Mage/Backend/Block/System/Config/Form/Field/Export.php index 418a52383fb0c437d169a20508f74a0daa3a7d69..3bcb5c0f4d93eb33e64498acd4e0e092990df98d 100644 --- a/app/code/core/Mage/Backend/Block/System/Config/Form/Field/Export.php +++ b/app/code/core/Mage/Backend/Block/System/Config/Form/Field/Export.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/System/Config/Form/Field/Factory.php b/app/code/core/Mage/Backend/Block/System/Config/Form/Field/Factory.php index b666824c165aed837f00c88234b5ad7ff02abf8f..6103780f031d93fea9caef73ca9925df06b6fe7b 100644 --- a/app/code/core/Mage/Backend/Block/System/Config/Form/Field/Factory.php +++ b/app/code/core/Mage/Backend/Block/System/Config/Form/Field/Factory.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/System/Config/Form/Field/File.php b/app/code/core/Mage/Backend/Block/System/Config/Form/Field/File.php index cdc84f51c10e9d086648b88bd1692c551643acf1..b3fa06ea7f3c950fe0191d5f065226727fba27b4 100644 --- a/app/code/core/Mage/Backend/Block/System/Config/Form/Field/File.php +++ b/app/code/core/Mage/Backend/Block/System/Config/Form/Field/File.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/System/Config/Form/Field/Heading.php b/app/code/core/Mage/Backend/Block/System/Config/Form/Field/Heading.php index 67fa8b76e36de97095001528730622d15a584626..037b7de0a44b18acded42d661ad79320093f5bb2 100644 --- a/app/code/core/Mage/Backend/Block/System/Config/Form/Field/Heading.php +++ b/app/code/core/Mage/Backend/Block/System/Config/Form/Field/Heading.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/System/Config/Form/Field/Image.php b/app/code/core/Mage/Backend/Block/System/Config/Form/Field/Image.php index bd002b3e874a664a70884a58525cf29026930a67..8f3b14712d340581c60371b48c98a33ba7b72c66 100644 --- a/app/code/core/Mage/Backend/Block/System/Config/Form/Field/Image.php +++ b/app/code/core/Mage/Backend/Block/System/Config/Form/Field/Image.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/System/Config/Form/Field/Import.php b/app/code/core/Mage/Backend/Block/System/Config/Form/Field/Import.php index 2f86be9db560740c504b39ba4c07c202f7580e8b..b7b38f91c47d3dde9e297bd3fc960b173b60cc1b 100644 --- a/app/code/core/Mage/Backend/Block/System/Config/Form/Field/Import.php +++ b/app/code/core/Mage/Backend/Block/System/Config/Form/Field/Import.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/System/Config/Form/Field/Notification.php b/app/code/core/Mage/Backend/Block/System/Config/Form/Field/Notification.php index 1c4e5faacb1e394b3db988071baa0749446a75c4..ac4a27a408e0f1c1a19514bb39307ae917b59405 100644 --- a/app/code/core/Mage/Backend/Block/System/Config/Form/Field/Notification.php +++ b/app/code/core/Mage/Backend/Block/System/Config/Form/Field/Notification.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/System/Config/Form/Field/Regexceptions.php b/app/code/core/Mage/Backend/Block/System/Config/Form/Field/Regexceptions.php index 7356a14eb5ed4bea73400ef73fd4ed5c2c55a95a..60cba0f35462d02e9a2ee0fc7678efeac1c324ef 100644 --- a/app/code/core/Mage/Backend/Block/System/Config/Form/Field/Regexceptions.php +++ b/app/code/core/Mage/Backend/Block/System/Config/Form/Field/Regexceptions.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/System/Config/Form/Field/Select/Allowspecific.php b/app/code/core/Mage/Backend/Block/System/Config/Form/Field/Select/Allowspecific.php index b72f87e730a80758f457ad57b469974b74d99115..1ccefea7ee5d54bb770267c51b58aba20203ac7c 100644 --- a/app/code/core/Mage/Backend/Block/System/Config/Form/Field/Select/Allowspecific.php +++ b/app/code/core/Mage/Backend/Block/System/Config/Form/Field/Select/Allowspecific.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/System/Config/Form/Fieldset.php b/app/code/core/Mage/Backend/Block/System/Config/Form/Fieldset.php index 6927de08a00f4ea81bf336139da525911354a525..d27d31ecbd80ca22b02245b4b85f32274cf1ede3 100644 --- a/app/code/core/Mage/Backend/Block/System/Config/Form/Fieldset.php +++ b/app/code/core/Mage/Backend/Block/System/Config/Form/Fieldset.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/System/Config/Form/Fieldset/Factory.php b/app/code/core/Mage/Backend/Block/System/Config/Form/Fieldset/Factory.php index 93d5b49f72156f2ed14e6ddd1a6f9ee9c0e1c675..ef9784d834fe14974aa9fbe14759f752a5c5016e 100644 --- a/app/code/core/Mage/Backend/Block/System/Config/Form/Fieldset/Factory.php +++ b/app/code/core/Mage/Backend/Block/System/Config/Form/Fieldset/Factory.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/System/Config/Form/Fieldset/Modules/DisableOutput.php b/app/code/core/Mage/Backend/Block/System/Config/Form/Fieldset/Modules/DisableOutput.php index e2afeeabb25fe5ee9d5c5e05091f6ad1ba3f009d..843b1062b605ccc19eddfb208ce5138e56449d6f 100644 --- a/app/code/core/Mage/Backend/Block/System/Config/Form/Fieldset/Modules/DisableOutput.php +++ b/app/code/core/Mage/Backend/Block/System/Config/Form/Fieldset/Modules/DisableOutput.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/System/Config/Switcher.php b/app/code/core/Mage/Backend/Block/System/Config/Switcher.php index b9f8ff70b0fbdf3b1468bf6fdb1df90206bef03e..7a1f1d40ccc1010436e71b2eb0adb12d0fcc68d8 100644 --- a/app/code/core/Mage/Backend/Block/System/Config/Switcher.php +++ b/app/code/core/Mage/Backend/Block/System/Config/Switcher.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/System/Config/System/Storage/Media/Synchronize.php b/app/code/core/Mage/Backend/Block/System/Config/System/Storage/Media/Synchronize.php index 0ca7201e14b5749103021ebbb6bd29d02d656b9c..93821018cd719ab5ef36d36dfee92cca2d680056 100644 --- a/app/code/core/Mage/Backend/Block/System/Config/System/Storage/Media/Synchronize.php +++ b/app/code/core/Mage/Backend/Block/System/Config/System/Storage/Media/Synchronize.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/System/Config/Tabs.php b/app/code/core/Mage/Backend/Block/System/Config/Tabs.php index b5657f31802dc92da63e19b2e1ad3d87b66d6f08..369a659d4372b6247d10b9eb1ccccd81e8f003c7 100644 --- a/app/code/core/Mage/Backend/Block/System/Config/Tabs.php +++ b/app/code/core/Mage/Backend/Block/System/Config/Tabs.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/Template.php b/app/code/core/Mage/Backend/Block/Template.php index c16ffc32a12b2f0a1a87e89651a8480cd9688dad..616181d03e7a7829ccfae468bad1b79f6268c92a 100644 --- a/app/code/core/Mage/Backend/Block/Template.php +++ b/app/code/core/Mage/Backend/Block/Template.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/Widget.php b/app/code/core/Mage/Backend/Block/Widget.php index 7bb18459fcc007555611e4cf6602e0ffd4b63d9b..ae650e6d7f6b9310f88327f88d72489ef7435871 100644 --- a/app/code/core/Mage/Backend/Block/Widget.php +++ b/app/code/core/Mage/Backend/Block/Widget.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/Widget/Accordion.php b/app/code/core/Mage/Backend/Block/Widget/Accordion.php index fb80636d3b36fc8d1bb6b8e77a16822be821efac..db91a79fd2d88d4290c6a0811f85ff45fb881795 100644 --- a/app/code/core/Mage/Backend/Block/Widget/Accordion.php +++ b/app/code/core/Mage/Backend/Block/Widget/Accordion.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/Widget/Accordion/Item.php b/app/code/core/Mage/Backend/Block/Widget/Accordion/Item.php index ed8b4de7b7f1755a70951ae2e4abbbd122fc75f5..dbe995a3548d7cf0074589e76da4e1e2753e027f 100644 --- a/app/code/core/Mage/Backend/Block/Widget/Accordion/Item.php +++ b/app/code/core/Mage/Backend/Block/Widget/Accordion/Item.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/Widget/Breadcrumbs.php b/app/code/core/Mage/Backend/Block/Widget/Breadcrumbs.php index 9daa65542400c87bd2eea8be36f3d3096b57e8b9..eae38fe5a14a802db25742358942876c94e52daa 100644 --- a/app/code/core/Mage/Backend/Block/Widget/Breadcrumbs.php +++ b/app/code/core/Mage/Backend/Block/Widget/Breadcrumbs.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/Widget/Button.php b/app/code/core/Mage/Backend/Block/Widget/Button.php index a36edc5fcdfd8c5c907ed523c4d4903b7a285f5f..f1cc2894f37c9b31a53ff6dc5a28855929e06dbd 100644 --- a/app/code/core/Mage/Backend/Block/Widget/Button.php +++ b/app/code/core/Mage/Backend/Block/Widget/Button.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/Widget/Button/Split.php b/app/code/core/Mage/Backend/Block/Widget/Button/Split.php index a08592bfe3f9832c0e7ddba94d616e4ff399068f..449b5d70056980a2220b92573e2d17293fb20789 100644 --- a/app/code/core/Mage/Backend/Block/Widget/Button/Split.php +++ b/app/code/core/Mage/Backend/Block/Widget/Button/Split.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/Widget/Container.php b/app/code/core/Mage/Backend/Block/Widget/Container.php index de4dc3a5f23ac266a956042900884273dcfc6a30..bc26ef437dcd4f4d6cb30260ddcaffb762413296 100644 --- a/app/code/core/Mage/Backend/Block/Widget/Container.php +++ b/app/code/core/Mage/Backend/Block/Widget/Container.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/Widget/Form.php b/app/code/core/Mage/Backend/Block/Widget/Form.php index d9f99b967c89f05b44fb41a8df5f5f844fb1456e..3dc283e4ea16d9e5bbeef4219b3c2b2a2f3b110a 100644 --- a/app/code/core/Mage/Backend/Block/Widget/Form.php +++ b/app/code/core/Mage/Backend/Block/Widget/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/Widget/Form/Container.php b/app/code/core/Mage/Backend/Block/Widget/Form/Container.php index 00b3e4e96525d9e0ce9fc31ff8eca52cedcd8e62..8b29923b496992f335af132dc48f7a924d641710 100644 --- a/app/code/core/Mage/Backend/Block/Widget/Form/Container.php +++ b/app/code/core/Mage/Backend/Block/Widget/Form/Container.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/Widget/Form/Element.php b/app/code/core/Mage/Backend/Block/Widget/Form/Element.php index 27c87a37e28dba3cc114634bc33d3aa2f29e9ceb..b77d8bd166976d58778341d964106db56afb7387 100644 --- a/app/code/core/Mage/Backend/Block/Widget/Form/Element.php +++ b/app/code/core/Mage/Backend/Block/Widget/Form/Element.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/Widget/Form/Element/Dependence.php b/app/code/core/Mage/Backend/Block/Widget/Form/Element/Dependence.php index 78ed61b6599888fda560900f825c54711e00c354..9429e122de3aa645aabd4072e6ffc9be8f40be8c 100644 --- a/app/code/core/Mage/Backend/Block/Widget/Form/Element/Dependence.php +++ b/app/code/core/Mage/Backend/Block/Widget/Form/Element/Dependence.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/Widget/Form/Element/Gallery.php b/app/code/core/Mage/Backend/Block/Widget/Form/Element/Gallery.php index 1a45e0b65f7f51da042bfe0fd7277838d82bba8f..93ab6c0902cce0354659db4cc60435442a5cbf1b 100644 --- a/app/code/core/Mage/Backend/Block/Widget/Form/Element/Gallery.php +++ b/app/code/core/Mage/Backend/Block/Widget/Form/Element/Gallery.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/Widget/Form/Renderer/Element.php b/app/code/core/Mage/Backend/Block/Widget/Form/Renderer/Element.php index 07a0bdfb368ba233503b911e37388c370a26e3a7..1aeba589a448b063958c2299ca1627410a0b6ce7 100644 --- a/app/code/core/Mage/Backend/Block/Widget/Form/Renderer/Element.php +++ b/app/code/core/Mage/Backend/Block/Widget/Form/Renderer/Element.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/Widget/Form/Renderer/Fieldset.php b/app/code/core/Mage/Backend/Block/Widget/Form/Renderer/Fieldset.php index f5a08997d83646033c632d10a19d0a481086fa73..bc4ae075d726997ba2be933474c084ff4510c7eb 100644 --- a/app/code/core/Mage/Backend/Block/Widget/Form/Renderer/Fieldset.php +++ b/app/code/core/Mage/Backend/Block/Widget/Form/Renderer/Fieldset.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/Widget/Form/Renderer/Fieldset/Element.php b/app/code/core/Mage/Backend/Block/Widget/Form/Renderer/Fieldset/Element.php index 907219e03667716314bbc5005e1018854d397ea3..1250a43b17f712ba96216ac8337f04e8fb5d0e2a 100644 --- a/app/code/core/Mage/Backend/Block/Widget/Form/Renderer/Fieldset/Element.php +++ b/app/code/core/Mage/Backend/Block/Widget/Form/Renderer/Fieldset/Element.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/Widget/Grid.php b/app/code/core/Mage/Backend/Block/Widget/Grid.php index dcf2b3947eeadd34830a8d05e74d00b04a2b47ab..90d7204f466b8edbd7e7c44118b6818aa63f4965 100644 --- a/app/code/core/Mage/Backend/Block/Widget/Grid.php +++ b/app/code/core/Mage/Backend/Block/Widget/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/Widget/Grid/Column.php b/app/code/core/Mage/Backend/Block/Widget/Grid/Column.php index 3be9a15a987b4ab717d2e3a42cb190dddaa11896..7c45a2c456f26dd50c62ed18f0ce98c011ba3901 100644 --- a/app/code/core/Mage/Backend/Block/Widget/Grid/Column.php +++ b/app/code/core/Mage/Backend/Block/Widget/Grid/Column.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Filter/Abstract.php b/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Filter/Abstract.php index 00b00ef5fbf58731250b6a30ab993daab868dc1e..8ffe8e654359cd6dc821798861c85579b412bfe8 100644 --- a/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Filter/Abstract.php +++ b/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Filter/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Filter/Checkbox.php b/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Filter/Checkbox.php index 8878e01db65187968b16a24a255f4b26019995a1..5750fdf07d982d65a6cb4b3752110ed914a732bf 100644 --- a/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Filter/Checkbox.php +++ b/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Filter/Checkbox.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Filter/Country.php b/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Filter/Country.php index 04d9fe404feea819ff15daabd7d11b735a068ff8..0a2a3219348957f9437b90714e3876405e9bedb6 100644 --- a/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Filter/Country.php +++ b/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Filter/Country.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Filter/Date.php b/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Filter/Date.php index a1ecdb63fcbeed43e08b818d939a39b0e8d45f06..7084742fa9aef664342b0d2183f8645d3b1bbde6 100644 --- a/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Filter/Date.php +++ b/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Filter/Date.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Filter/Datetime.php b/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Filter/Datetime.php index d790d55666e76fd978c5bd1e8657a6fb5ac2521d..e42059d3add672b4a59d04f5ffdb4af10a6f892c 100644 --- a/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Filter/Datetime.php +++ b/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Filter/Datetime.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Filter/Interface.php b/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Filter/Interface.php index cbef880e346338da3bd339743d41221a8b3290a2..eb658a96d56613ce92d18ed13ad767332d204282 100644 --- a/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Filter/Interface.php +++ b/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Filter/Interface.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Filter/Massaction.php b/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Filter/Massaction.php index dde8b9d1b3b343eb018379f04d404e9d2dc8e14b..5248247c362a7cdb2661ce83ce340adfd6a7db08 100644 --- a/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Filter/Massaction.php +++ b/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Filter/Massaction.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Filter/Price.php b/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Filter/Price.php index 10b2fd20fe5f3d225a951276fe77eb154f906d0b..33661750dfec018ddc5a0f087467c3159e70f164 100644 --- a/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Filter/Price.php +++ b/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Filter/Price.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Filter/Radio.php b/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Filter/Radio.php index b82320e2ae5137ae7ce3b7303bc491ea6851145e..6b8c2b7b1cd1fcb9f4b7a826e4f3619252c3094b 100644 --- a/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Filter/Radio.php +++ b/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Filter/Radio.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Filter/Range.php b/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Filter/Range.php index 407f63194b0a319e725038b87cfdbf84024da914..07ddf9bdf6c0fabdf0282879a15fb933556cd1f8 100644 --- a/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Filter/Range.php +++ b/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Filter/Range.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Filter/Select.php b/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Filter/Select.php index cfa02ff9d1df5fda0291166e32f977a175c6fd04..f80ef49dab69e590dfaa8edfef461aa87fa10c22 100644 --- a/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Filter/Select.php +++ b/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Filter/Select.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Filter/Store.php b/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Filter/Store.php index 0d231bdba840ae90c360464bf8280efc1cabb268..8b1bde5c3a98efead5e57d578c439910ee45d020 100644 --- a/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Filter/Store.php +++ b/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Filter/Store.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Filter/Text.php b/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Filter/Text.php index 8934bd4628528796e1e001ffaa9d8ccff73e7ccb..923054d5c4382239615fec529d1aef9b74026977 100644 --- a/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Filter/Text.php +++ b/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Filter/Text.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Filter/Theme.php b/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Filter/Theme.php index 7f1d9594af78009f7a93b0619173f3ae7a7316f6..63416d0f9f12c97822a9cc43c6b6a9f76e9af28f 100644 --- a/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Filter/Theme.php +++ b/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Filter/Theme.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Multistore.php b/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Multistore.php index 1157c959b8c3574007b29be43ae8c8d810cdfb73..8050f01186d53e830c83710c043d75938e6095ff 100644 --- a/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Multistore.php +++ b/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Multistore.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Abstract.php b/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Abstract.php index 2b3143f6c4680732217d6a3dd8e00d780628165f..3d5d3b39490d9133cd1287235b9edf47c68c914f 100644 --- a/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Abstract.php +++ b/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Action.php b/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Action.php index df959c145b6e4aaae21340004bb12a95653b6ae1..cd22633b2dccfcf19fcb1ab6ea4a97043fbbac24 100644 --- a/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Action.php +++ b/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Action.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Checkbox.php b/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Checkbox.php index 103dba701bb95c467395b2934cf3b2987d6f02c5..e5f3ef2129db7829fb6a9ef574456b6df98865c7 100644 --- a/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Checkbox.php +++ b/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Checkbox.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Concat.php b/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Concat.php index 759de2eabd8f97900d98a298bb32942b17eea27b..a5bddee2dcd3a8efe6c1671a5aaa4785a58f82d3 100644 --- a/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Concat.php +++ b/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Concat.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Country.php b/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Country.php index ffa7c2db5c98416d08c20db379f509c8268ef41d..840ac80b62f1549963013e104ab448906293e700 100644 --- a/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Country.php +++ b/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Country.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Currency.php b/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Currency.php index 39ebddbd25ecb841219ecc93544515efd97acd85..8447c8743d5d8a74db0887bbcf6ea9daf891b122 100644 --- a/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Currency.php +++ b/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Currency.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Date.php b/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Date.php index 0c020a708e0094f4137c27b293f6929c08dbaccb..519ad68cde22a75497a9d48d791fff9f1084139a 100644 --- a/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Date.php +++ b/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Date.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Datetime.php b/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Datetime.php index d0b756918e48e9b89842dbd752ab6d19d6e345ca..9f0feea3e7a79da9de48b8e440545cf149b7a2c6 100644 --- a/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Datetime.php +++ b/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Datetime.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Input.php b/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Input.php index 08c0f19622b970454a1801a812171d6e08b4b133..a08388072f81ec032b1ea25561085478c0d6e645 100644 --- a/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Input.php +++ b/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Input.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Interface.php b/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Interface.php index 8d3db629c1b01987f8fec570e90cc7a2e8749fcd..04d2b32915fd8fa2dff6cc28f12473e2670553dc 100644 --- a/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Interface.php +++ b/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Interface.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Ip.php b/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Ip.php index f9ca6a9aa3fe0b2390cfc68a6a775e5b32a3e723..4dfc79016e727f8f89ba4b56ad5b99e3da9e87b4 100644 --- a/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Ip.php +++ b/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Ip.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Longtext.php b/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Longtext.php index f824bd90c01a90de94ce00c1af97877d09b963c3..84993de3b59f02e91dde1ca5ef4909707003ada0 100644 --- a/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Longtext.php +++ b/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Longtext.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Massaction.php b/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Massaction.php index ad8fdf48da87567407b7a0fc940c1957fff7b56f..4bfc470754722f3abed653810a6d62a13acb8836 100644 --- a/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Massaction.php +++ b/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Massaction.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Number.php b/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Number.php index 0601e33e6e50574742a2f55cd788d7df58f74064..809c7bd8d878ee34050e43dab336cb2a874d7b37 100644 --- a/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Number.php +++ b/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Number.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Options.php b/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Options.php index 515f18a21cddc03f99c89f083d094965c822596a..6b2f4df6f7f67f54ed973c1fc99180dc29460308 100644 --- a/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Options.php +++ b/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Options.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Price.php b/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Price.php index 348a4aa3ab7b97ce430a0c3482554c96304d6baf..de5a5be7c330a039128ed1a14dd9cf3c9c8e3a28 100644 --- a/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Price.php +++ b/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Price.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Radio.php b/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Radio.php index 762fa448015c339ec7024fe22f674c9e2a660cb2..f0f3372a35799c79f02d9f319829adce934d4a69 100644 --- a/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Radio.php +++ b/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Radio.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Select.php b/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Select.php index 59c1e5626e4c4a9d8f404c4910bc009bbf8e8d14..6a8522a6bee337fa1e2d158268870e99681fb370 100644 --- a/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Select.php +++ b/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Select.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Store.php b/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Store.php index f6026c2b1153ab6e524d16323ac6b1276318997f..d61ef3839338eee80262455e86728374f0cbe2a0 100644 --- a/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Store.php +++ b/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Store.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Text.php b/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Text.php index 72423c5fa8d6d6fed279132dc7905346e493db3c..ddf3dce0023c6c382281bd442fcd290884534de4 100644 --- a/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Text.php +++ b/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Text.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Wrapline.php b/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Wrapline.php index 1668ddbe99f4dd09c3d9373cb4a53a55fb76570e..720244d175cde20cc814eeaa4689f253dff637ed 100644 --- a/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Wrapline.php +++ b/app/code/core/Mage/Backend/Block/Widget/Grid/Column/Renderer/Wrapline.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/Widget/Grid/ColumnSet.php b/app/code/core/Mage/Backend/Block/Widget/Grid/ColumnSet.php index 440962e4b4b94cd2a1f5409bb716fbc17dd1852b..94f1eb832caff133e446e24c655ffb985cda01c0 100644 --- a/app/code/core/Mage/Backend/Block/Widget/Grid/ColumnSet.php +++ b/app/code/core/Mage/Backend/Block/Widget/Grid/ColumnSet.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/Widget/Grid/Container.php b/app/code/core/Mage/Backend/Block/Widget/Grid/Container.php index 368dabd02da10a2789be61ba7b1e4192239b9d10..cf07f7932c7cce4a8ea3f72e48f46e5c2ee90891 100644 --- a/app/code/core/Mage/Backend/Block/Widget/Grid/Container.php +++ b/app/code/core/Mage/Backend/Block/Widget/Grid/Container.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/Widget/Grid/Export.php b/app/code/core/Mage/Backend/Block/Widget/Grid/Export.php index 2fb2780a8d3205e8ac0cda5cd4163c9cbc138092..69e50098ff8ec3bb18c314980c72a05197892115 100644 --- a/app/code/core/Mage/Backend/Block/Widget/Grid/Export.php +++ b/app/code/core/Mage/Backend/Block/Widget/Grid/Export.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/Widget/Grid/ExportInterface.php b/app/code/core/Mage/Backend/Block/Widget/Grid/ExportInterface.php index 14d9dcdf55e2995841a1e9b1a2777670531630cc..71d850cda66f5f9d177066d1ab3d6af1bf1e8846 100644 --- a/app/code/core/Mage/Backend/Block/Widget/Grid/ExportInterface.php +++ b/app/code/core/Mage/Backend/Block/Widget/Grid/ExportInterface.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/Widget/Grid/Extended.php b/app/code/core/Mage/Backend/Block/Widget/Grid/Extended.php index 7b2cc261348b6b04d6436304115777a9a92ae29f..8df5f22c1e4ff2075739669a532b4cf5d7a326bd 100644 --- a/app/code/core/Mage/Backend/Block/Widget/Grid/Extended.php +++ b/app/code/core/Mage/Backend/Block/Widget/Grid/Extended.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/Widget/Grid/Massaction.php b/app/code/core/Mage/Backend/Block/Widget/Grid/Massaction.php index 9e6d3115fe6a2b4149d5455e7c6aeff6d495b329..27aaf7944c27249f943ab3dcf7ddb66e6e31a45a 100644 --- a/app/code/core/Mage/Backend/Block/Widget/Grid/Massaction.php +++ b/app/code/core/Mage/Backend/Block/Widget/Grid/Massaction.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/Widget/Grid/Massaction/Abstract.php b/app/code/core/Mage/Backend/Block/Widget/Grid/Massaction/Abstract.php index 093b226af592b824bb6e084096b7a8f3b3ecb1eb..69edb6106b76a87cca0a7e1c29b0c1e1dcbaa8eb 100644 --- a/app/code/core/Mage/Backend/Block/Widget/Grid/Massaction/Abstract.php +++ b/app/code/core/Mage/Backend/Block/Widget/Grid/Massaction/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/Widget/Grid/Massaction/Extended.php b/app/code/core/Mage/Backend/Block/Widget/Grid/Massaction/Extended.php index fa0054339c46c1b2af78fc49473ced156a0ee2f2..bbe5f094bbb5de372e65db230ded22c80e614764 100644 --- a/app/code/core/Mage/Backend/Block/Widget/Grid/Massaction/Extended.php +++ b/app/code/core/Mage/Backend/Block/Widget/Grid/Massaction/Extended.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/Widget/Grid/Massaction/Item.php b/app/code/core/Mage/Backend/Block/Widget/Grid/Massaction/Item.php index b2d4b1426b2179eff941b9fb6cc9b95da878541c..d5c1141e6efbc0fed79b2cc51e08e145d688015d 100644 --- a/app/code/core/Mage/Backend/Block/Widget/Grid/Massaction/Item.php +++ b/app/code/core/Mage/Backend/Block/Widget/Grid/Massaction/Item.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/Widget/Grid/Massaction/Item/Additional/Default.php b/app/code/core/Mage/Backend/Block/Widget/Grid/Massaction/Item/Additional/Default.php index b64ffe08b5b942002730c82d276e71cb48ae04fe..2d5cf97cb6b29c883204ce781ed585be168372aa 100644 --- a/app/code/core/Mage/Backend/Block/Widget/Grid/Massaction/Item/Additional/Default.php +++ b/app/code/core/Mage/Backend/Block/Widget/Grid/Massaction/Item/Additional/Default.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/Widget/Grid/Massaction/Item/Additional/Interface.php b/app/code/core/Mage/Backend/Block/Widget/Grid/Massaction/Item/Additional/Interface.php index af52b512c5810e6166113eeca728858dd4b59a49..45030bd5021c6792b15a5d07660e794831a75bf2 100644 --- a/app/code/core/Mage/Backend/Block/Widget/Grid/Massaction/Item/Additional/Interface.php +++ b/app/code/core/Mage/Backend/Block/Widget/Grid/Massaction/Item/Additional/Interface.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/Widget/Grid/Serializer.php b/app/code/core/Mage/Backend/Block/Widget/Grid/Serializer.php index c8a4d3f1d71ee42e0fd903129b45d9c0e8e19a6c..c2207315d381e377bda163db9353e1f8376eeff6 100644 --- a/app/code/core/Mage/Backend/Block/Widget/Grid/Serializer.php +++ b/app/code/core/Mage/Backend/Block/Widget/Grid/Serializer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/Widget/Tab/Interface.php b/app/code/core/Mage/Backend/Block/Widget/Tab/Interface.php index a672a5cc2af73b3b9a404a762a15e924336802bf..17f3ee1da5770c3dd5a374c2c00e5d6cd942e3ed 100644 --- a/app/code/core/Mage/Backend/Block/Widget/Tab/Interface.php +++ b/app/code/core/Mage/Backend/Block/Widget/Tab/Interface.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/Widget/Tabs.php b/app/code/core/Mage/Backend/Block/Widget/Tabs.php index 9b8bb361d07d6abdf4ba576a1a89d15f92c1d3e7..651e5073749e6be7b4bd51e9a6337195a296bed3 100644 --- a/app/code/core/Mage/Backend/Block/Widget/Tabs.php +++ b/app/code/core/Mage/Backend/Block/Widget/Tabs.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Block/Widget/View/Container.php b/app/code/core/Mage/Backend/Block/Widget/View/Container.php index 49d03a8272d71885d6290aa7da24912a5e90a55c..8c91cd1af207fe6b7ffdd895071b5f66fded46e8 100644 --- a/app/code/core/Mage/Backend/Block/Widget/View/Container.php +++ b/app/code/core/Mage/Backend/Block/Widget/View/Container.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Controller/ActionAbstract.php b/app/code/core/Mage/Backend/Controller/ActionAbstract.php index ffbaa95370ce7c97daa2b9641f64ae1d8caa3278..c052f7eef6b0f911a8a8596ebba0c34e12f49fe5 100644 --- a/app/code/core/Mage/Backend/Controller/ActionAbstract.php +++ b/app/code/core/Mage/Backend/Controller/ActionAbstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Controller/Router/Default.php b/app/code/core/Mage/Backend/Controller/Router/Default.php index 4ba7ef8eca4a82f4ab41b15e3fc401e56c5baa71..c3ccca3218aa52dbc91407ee53c90d564d51a784 100644 --- a/app/code/core/Mage/Backend/Controller/Router/Default.php +++ b/app/code/core/Mage/Backend/Controller/Router/Default.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Controller/System/ConfigAbstract.php b/app/code/core/Mage/Backend/Controller/System/ConfigAbstract.php index 89d590cd44630cfde72b1c3e570b5d62d76ad857..55b3d89cc9f0ccea92a77aa75f1f91dd12308543 100644 --- a/app/code/core/Mage/Backend/Controller/System/ConfigAbstract.php +++ b/app/code/core/Mage/Backend/Controller/System/ConfigAbstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Helper/Data.php b/app/code/core/Mage/Backend/Helper/Data.php index c7da27292a2dd51bc5c8c6a02c28e6d1980dc241..3363678fc2ba868ddc643600679e7db2b3ea7a85 100644 --- a/app/code/core/Mage/Backend/Helper/Data.php +++ b/app/code/core/Mage/Backend/Helper/Data.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Acl/Config.php b/app/code/core/Mage/Backend/Model/Acl/Config.php index 88239d5d31c91a0e38cbc7cae530ab131c526674..d43d69db13b438c1ece2c75a451c7b3abca8d959 100644 --- a/app/code/core/Mage/Backend/Model/Acl/Config.php +++ b/app/code/core/Mage/Backend/Model/Acl/Config.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Acl/Loader/Resource.php b/app/code/core/Mage/Backend/Model/Acl/Loader/Resource.php index 9ab6962727c1243c60d6b765338af10806b07fb0..7b981c76ee5660bd8cda45bf4dd3013da5deef7b 100644 --- a/app/code/core/Mage/Backend/Model/Acl/Loader/Resource.php +++ b/app/code/core/Mage/Backend/Model/Acl/Loader/Resource.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Auth.php b/app/code/core/Mage/Backend/Model/Auth.php index 14dd6969bef89ab5aad79f1007e34604aac4c18c..b2d5f309a018f2b448ba3c05bbd45c26da354324 100644 --- a/app/code/core/Mage/Backend/Model/Auth.php +++ b/app/code/core/Mage/Backend/Model/Auth.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Auth/Credential/StorageInterface.php b/app/code/core/Mage/Backend/Model/Auth/Credential/StorageInterface.php index 6110bdd4114064d7849bc0ad8b1622b0ab72eaf6..24d172285b78240a3fee6f9dec64f22538f521b1 100644 --- a/app/code/core/Mage/Backend/Model/Auth/Credential/StorageInterface.php +++ b/app/code/core/Mage/Backend/Model/Auth/Credential/StorageInterface.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Auth/Exception.php b/app/code/core/Mage/Backend/Model/Auth/Exception.php index 76bf3728291bc98ef43e2335b9dc4ac46d979891..ec63736a9ca38062e747aa56f38ff979aaac3786 100644 --- a/app/code/core/Mage/Backend/Model/Auth/Exception.php +++ b/app/code/core/Mage/Backend/Model/Auth/Exception.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Auth/Plugin/Exception.php b/app/code/core/Mage/Backend/Model/Auth/Plugin/Exception.php index 1f33d7a0af2653ccd3d5c2e2d32ac86d361468ff..e89a470a754c9cbaedfab5f2e69210034756ab2b 100644 --- a/app/code/core/Mage/Backend/Model/Auth/Plugin/Exception.php +++ b/app/code/core/Mage/Backend/Model/Auth/Plugin/Exception.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Auth/Session.php b/app/code/core/Mage/Backend/Model/Auth/Session.php index ac2d55fb28c4b5ec641fc9913ff2fc697448e9ab..3500e2bdc6d50f8e7c591ef4b7b5611bf26cf0da 100644 --- a/app/code/core/Mage/Backend/Model/Auth/Session.php +++ b/app/code/core/Mage/Backend/Model/Auth/Session.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Auth/StorageInterface.php b/app/code/core/Mage/Backend/Model/Auth/StorageInterface.php index a5cd1c950168c7d793bef91300066339e7bca99a..4389a541153a9654becba7c2a9195a1dc850d011 100644 --- a/app/code/core/Mage/Backend/Model/Auth/StorageInterface.php +++ b/app/code/core/Mage/Backend/Model/Auth/StorageInterface.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Authorization/RoleLocator.php b/app/code/core/Mage/Backend/Model/Authorization/RoleLocator.php index a4b7abee309b2847b445704dcb2961c90d52fbaa..44d288919931b93e5a6320bc433abbe3a8005ca8 100644 --- a/app/code/core/Mage/Backend/Model/Authorization/RoleLocator.php +++ b/app/code/core/Mage/Backend/Model/Authorization/RoleLocator.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config.php b/app/code/core/Mage/Backend/Model/Config.php index f6afffa983cdb1e6ce3f269c8dc04eb43a066e97..37fba1dff5de85d427d90c53f8f7e71509d7d02d 100644 --- a/app/code/core/Mage/Backend/Model/Config.php +++ b/app/code/core/Mage/Backend/Model/Config.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Backend/Admin/Custom.php b/app/code/core/Mage/Backend/Model/Config/Backend/Admin/Custom.php index bf1434c12452992adb3d45b192ba6d940b40c943..35bd4cb13144016ee6effe0bbc108c3587ae7ca5 100644 --- a/app/code/core/Mage/Backend/Model/Config/Backend/Admin/Custom.php +++ b/app/code/core/Mage/Backend/Model/Config/Backend/Admin/Custom.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Backend/Admin/Custompath.php b/app/code/core/Mage/Backend/Model/Config/Backend/Admin/Custompath.php index a739375e2742d31b76a3a26f99f212d7ecf88834..4770c0e089e39fde126e7b30ef46606262a9514c 100644 --- a/app/code/core/Mage/Backend/Model/Config/Backend/Admin/Custompath.php +++ b/app/code/core/Mage/Backend/Model/Config/Backend/Admin/Custompath.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Backend/Admin/Observer.php b/app/code/core/Mage/Backend/Model/Config/Backend/Admin/Observer.php index 2dfce24d9c181dcd612230ff2e98303ae8cf8a0c..f16a6be1f2d340a96cefb20eeadb524580def68e 100644 --- a/app/code/core/Mage/Backend/Model/Config/Backend/Admin/Observer.php +++ b/app/code/core/Mage/Backend/Model/Config/Backend/Admin/Observer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Backend/Admin/Password/Link/Expirationperiod.php b/app/code/core/Mage/Backend/Model/Config/Backend/Admin/Password/Link/Expirationperiod.php index e55a475cb9518fb9758f3858d31b90ad06eeb9e7..2e8b98b30db25f3905a33dc724f8d0c95836d015 100644 --- a/app/code/core/Mage/Backend/Model/Config/Backend/Admin/Password/Link/Expirationperiod.php +++ b/app/code/core/Mage/Backend/Model/Config/Backend/Admin/Password/Link/Expirationperiod.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Backend/Admin/Robots.php b/app/code/core/Mage/Backend/Model/Config/Backend/Admin/Robots.php index f0a1b97307a84a9df7dbe332e3e27bffb44c518b..4781715f1d0d31cd92bd9a7ad0dc017986a6acf0 100644 --- a/app/code/core/Mage/Backend/Model/Config/Backend/Admin/Robots.php +++ b/app/code/core/Mage/Backend/Model/Config/Backend/Admin/Robots.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Backend/Admin/Usecustom.php b/app/code/core/Mage/Backend/Model/Config/Backend/Admin/Usecustom.php index 98ad3de82de69162831a6ac634c1c0c2934f800f..2b75f9a50f607d44f57404b1a2ab905864d69e0b 100644 --- a/app/code/core/Mage/Backend/Model/Config/Backend/Admin/Usecustom.php +++ b/app/code/core/Mage/Backend/Model/Config/Backend/Admin/Usecustom.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Backend/Admin/Usecustompath.php b/app/code/core/Mage/Backend/Model/Config/Backend/Admin/Usecustompath.php index 72248e9dda7c970c864a07bad1a64ce6851c987f..b1d43cf6bb29c80ff82fbb0dea3193d2682fc6d5 100644 --- a/app/code/core/Mage/Backend/Model/Config/Backend/Admin/Usecustompath.php +++ b/app/code/core/Mage/Backend/Model/Config/Backend/Admin/Usecustompath.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Backend/Admin/Usesecretkey.php b/app/code/core/Mage/Backend/Model/Config/Backend/Admin/Usesecretkey.php index aeb99ea1ef0b5bd13f63cec11d5e74505c9a4415..28600998e65c3af0d757816e7f2d9ef76c725db8 100644 --- a/app/code/core/Mage/Backend/Model/Config/Backend/Admin/Usesecretkey.php +++ b/app/code/core/Mage/Backend/Model/Config/Backend/Admin/Usesecretkey.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Backend/Baseurl.php b/app/code/core/Mage/Backend/Model/Config/Backend/Baseurl.php index 79e283f29d903c0dda053567feffe4cbf769a2f6..fd7aef02d15c8024c41a03143fa289c80c62789d 100644 --- a/app/code/core/Mage/Backend/Model/Config/Backend/Baseurl.php +++ b/app/code/core/Mage/Backend/Model/Config/Backend/Baseurl.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Backend/Cache.php b/app/code/core/Mage/Backend/Model/Config/Backend/Cache.php index db5900224948a4cef507da1ab86e7f8610a2ae27..dc4e8952fdfa89ee3681a371b4a9ff72c7ddd2b6 100644 --- a/app/code/core/Mage/Backend/Model/Config/Backend/Cache.php +++ b/app/code/core/Mage/Backend/Model/Config/Backend/Cache.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Backend/Cookie.php b/app/code/core/Mage/Backend/Model/Config/Backend/Cookie.php index 703e1c5289a2b05cc3dd69dd65bad5938c686da1..8078eadd62515298e0ef9ad1ef4a37c5082c1910 100644 --- a/app/code/core/Mage/Backend/Model/Config/Backend/Cookie.php +++ b/app/code/core/Mage/Backend/Model/Config/Backend/Cookie.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Backend/Currency/Abstract.php b/app/code/core/Mage/Backend/Model/Config/Backend/Currency/Abstract.php index f4b6df70963fc9c9ac54bf5a85090cc58ac200d6..8d76d2c6bf2b53b5f5a161cf0716f2ee8ae7d32d 100644 --- a/app/code/core/Mage/Backend/Model/Config/Backend/Currency/Abstract.php +++ b/app/code/core/Mage/Backend/Model/Config/Backend/Currency/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Backend/Currency/Allow.php b/app/code/core/Mage/Backend/Model/Config/Backend/Currency/Allow.php index d5b56a051524e15c0eabba1995a50e0e7440a101..23900b513f3126418c94173521839d8da830e96b 100644 --- a/app/code/core/Mage/Backend/Model/Config/Backend/Currency/Allow.php +++ b/app/code/core/Mage/Backend/Model/Config/Backend/Currency/Allow.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Backend/Currency/Base.php b/app/code/core/Mage/Backend/Model/Config/Backend/Currency/Base.php index cf51c64b2e14baee74572db3a7177febbcac6c65..2d1850e729ba7e46bad7143d05d6c817dac8271e 100644 --- a/app/code/core/Mage/Backend/Model/Config/Backend/Currency/Base.php +++ b/app/code/core/Mage/Backend/Model/Config/Backend/Currency/Base.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Backend/Currency/Cron.php b/app/code/core/Mage/Backend/Model/Config/Backend/Currency/Cron.php index 74d2e13c1cfea2f6dfadde34349fbd46d7c6f851..d097663946e2ce0db31d70a7affe658c9acee703 100644 --- a/app/code/core/Mage/Backend/Model/Config/Backend/Currency/Cron.php +++ b/app/code/core/Mage/Backend/Model/Config/Backend/Currency/Cron.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Backend/Currency/Default.php b/app/code/core/Mage/Backend/Model/Config/Backend/Currency/Default.php index 343e4dffcd5341b1117004dfa52b20b0a2c7fedb..e8e4493262f685261f48c9c50b5f736707203c7f 100644 --- a/app/code/core/Mage/Backend/Model/Config/Backend/Currency/Default.php +++ b/app/code/core/Mage/Backend/Model/Config/Backend/Currency/Default.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Backend/Datashare.php b/app/code/core/Mage/Backend/Model/Config/Backend/Datashare.php index 927f67e7cd8090cdeae5963bf326632be039c758..3e6a3eec0b368ee9c0c09a9cd9e7c8a499f2b573 100644 --- a/app/code/core/Mage/Backend/Model/Config/Backend/Datashare.php +++ b/app/code/core/Mage/Backend/Model/Config/Backend/Datashare.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Backend/Design/Exception.php b/app/code/core/Mage/Backend/Model/Config/Backend/Design/Exception.php index 05d01c05916a9c5d7b4a5b6655a37f5d1170ba5a..536b0146f8e29ad2ef6f85cf3a6e00a878a2424c 100644 --- a/app/code/core/Mage/Backend/Model/Config/Backend/Design/Exception.php +++ b/app/code/core/Mage/Backend/Model/Config/Backend/Design/Exception.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Backend/Email/Address.php b/app/code/core/Mage/Backend/Model/Config/Backend/Email/Address.php index 8219486e823b3fff438d36ee70090db7341d99bc..f0b627fa4942b9b821983280b26ef53c2d0c582d 100644 --- a/app/code/core/Mage/Backend/Model/Config/Backend/Email/Address.php +++ b/app/code/core/Mage/Backend/Model/Config/Backend/Email/Address.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Backend/Email/Logo.php b/app/code/core/Mage/Backend/Model/Config/Backend/Email/Logo.php index 30c56284a1c320b9c678ebec6d710a3124251c8f..48137c5883c8873a0731fc0ef4281b443b14dbd8 100644 --- a/app/code/core/Mage/Backend/Model/Config/Backend/Email/Logo.php +++ b/app/code/core/Mage/Backend/Model/Config/Backend/Email/Logo.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Backend/Email/Sender.php b/app/code/core/Mage/Backend/Model/Config/Backend/Email/Sender.php index 243ba236e084bf3df6a942053175e7a2aabb9c14..848b5e275ca7d7e03deac2d1d2447167fcc00ec8 100644 --- a/app/code/core/Mage/Backend/Model/Config/Backend/Email/Sender.php +++ b/app/code/core/Mage/Backend/Model/Config/Backend/Email/Sender.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Backend/Encrypted.php b/app/code/core/Mage/Backend/Model/Config/Backend/Encrypted.php index f7db4c9b3625e4ff798bac41c9c359d4215dc6e4..e59e0abc5d81f73da5eaee0fb9da24ff7360bed2 100644 --- a/app/code/core/Mage/Backend/Model/Config/Backend/Encrypted.php +++ b/app/code/core/Mage/Backend/Model/Config/Backend/Encrypted.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Backend/File.php b/app/code/core/Mage/Backend/Model/Config/Backend/File.php index 929db991b666a360f95375d037cde8510b8276a7..6017d24f83074facfdc90bf0285bd31e74e88de9 100644 --- a/app/code/core/Mage/Backend/Model/Config/Backend/File.php +++ b/app/code/core/Mage/Backend/Model/Config/Backend/File.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Backend/File/RequestData.php b/app/code/core/Mage/Backend/Model/Config/Backend/File/RequestData.php index 215d4bd76bf36b1a098bbbcf06981b332dd080d7..ae179d55a5d3e8b91592514d43c4ad4a97450570 100644 --- a/app/code/core/Mage/Backend/Model/Config/Backend/File/RequestData.php +++ b/app/code/core/Mage/Backend/Model/Config/Backend/File/RequestData.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Backend/Filename.php b/app/code/core/Mage/Backend/Model/Config/Backend/Filename.php index 285356b6a98d2b46ece12a4fb79dc0e84ef2e143..109d42a8f1209de42e5d9a7227f0b8b512906076 100644 --- a/app/code/core/Mage/Backend/Model/Config/Backend/Filename.php +++ b/app/code/core/Mage/Backend/Model/Config/Backend/Filename.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Backend/Image.php b/app/code/core/Mage/Backend/Model/Config/Backend/Image.php index 91b01ad7df559e9d92aaecc68dcd722cb0967490..bc86e46c837b9795fc99fbbab5f385695e01e3f9 100644 --- a/app/code/core/Mage/Backend/Model/Config/Backend/Image.php +++ b/app/code/core/Mage/Backend/Model/Config/Backend/Image.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Backend/Image/Adapter.php b/app/code/core/Mage/Backend/Model/Config/Backend/Image/Adapter.php index 9884d66294c5e14b18212a42a9d97720f8081adc..761e9e4ef37a6754804882abd31def81c30a5928 100644 --- a/app/code/core/Mage/Backend/Model/Config/Backend/Image/Adapter.php +++ b/app/code/core/Mage/Backend/Model/Config/Backend/Image/Adapter.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Backend/Image/Favicon.php b/app/code/core/Mage/Backend/Model/Config/Backend/Image/Favicon.php index 480781eb7ecebccbe57450a18b04bd7511d26e34..fb66acd95993a6475b20f6e5c36f5a8e9795f9d2 100644 --- a/app/code/core/Mage/Backend/Model/Config/Backend/Image/Favicon.php +++ b/app/code/core/Mage/Backend/Model/Config/Backend/Image/Favicon.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Backend/Image/Logo.php b/app/code/core/Mage/Backend/Model/Config/Backend/Image/Logo.php index adb123a5905a6c8524a849253f7e2e9d9de36f99..c72cd4f93fa08800ce6ab4a8856626d885c82ffe 100644 --- a/app/code/core/Mage/Backend/Model/Config/Backend/Image/Logo.php +++ b/app/code/core/Mage/Backend/Model/Config/Backend/Image/Logo.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Backend/Image/Pdf.php b/app/code/core/Mage/Backend/Model/Config/Backend/Image/Pdf.php index e8a881a51e3647a702145c097c30ccea2f96cecb..055f8225008a22ddd595ccda0ce37662ca511c51 100644 --- a/app/code/core/Mage/Backend/Model/Config/Backend/Image/Pdf.php +++ b/app/code/core/Mage/Backend/Model/Config/Backend/Image/Pdf.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Backend/Locale.php b/app/code/core/Mage/Backend/Model/Config/Backend/Locale.php index 4f4fa3df7f1828bcb032feb923cb6ab76db55080..5a6675ba1f3f77e5e252d5110c06d9651a778a16 100644 --- a/app/code/core/Mage/Backend/Model/Config/Backend/Locale.php +++ b/app/code/core/Mage/Backend/Model/Config/Backend/Locale.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Backend/Locale/Timezone.php b/app/code/core/Mage/Backend/Model/Config/Backend/Locale/Timezone.php index bbcfdf67c620bf2d63d125120618af295c5ab60e..2df22d929fba74cbe878713992d9837db1125f91 100644 --- a/app/code/core/Mage/Backend/Model/Config/Backend/Locale/Timezone.php +++ b/app/code/core/Mage/Backend/Model/Config/Backend/Locale/Timezone.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Backend/Log/Cron.php b/app/code/core/Mage/Backend/Model/Config/Backend/Log/Cron.php index c2ec86d2a97ebe65992fb62c0799cd7ce46265a4..b58ffc4105c037d34576fd9f81038dbd1dad343d 100644 --- a/app/code/core/Mage/Backend/Model/Config/Backend/Log/Cron.php +++ b/app/code/core/Mage/Backend/Model/Config/Backend/Log/Cron.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Backend/Secure.php b/app/code/core/Mage/Backend/Model/Config/Backend/Secure.php index 79e9ddf88959eb12f9436ce274c2595abb08e539..3ea8ce43848d71ffc86bac485a31d995e81964af 100644 --- a/app/code/core/Mage/Backend/Model/Config/Backend/Secure.php +++ b/app/code/core/Mage/Backend/Model/Config/Backend/Secure.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Backend/Serialized.php b/app/code/core/Mage/Backend/Model/Config/Backend/Serialized.php index 60ec3058b393ebbd1f6310da75142aa68fcfb150..47ef1ec8be6cdfaa9b3d7121103bc39c166cb216 100644 --- a/app/code/core/Mage/Backend/Model/Config/Backend/Serialized.php +++ b/app/code/core/Mage/Backend/Model/Config/Backend/Serialized.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Backend/Serialized/Array.php b/app/code/core/Mage/Backend/Model/Config/Backend/Serialized/Array.php index de7067ddacb6592cdbe5712b04163870820286ca..e93caa4a6122c77efbb2ef87173780030bfc729d 100644 --- a/app/code/core/Mage/Backend/Model/Config/Backend/Serialized/Array.php +++ b/app/code/core/Mage/Backend/Model/Config/Backend/Serialized/Array.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Backend/Storage/Media/Database.php b/app/code/core/Mage/Backend/Model/Config/Backend/Storage/Media/Database.php index 7ea2274cf05f015691ce24220ea8ef1a8e099bdb..b63c6533a7d92d2e48475bae1e3b07ec426a0d29 100644 --- a/app/code/core/Mage/Backend/Model/Config/Backend/Storage/Media/Database.php +++ b/app/code/core/Mage/Backend/Model/Config/Backend/Storage/Media/Database.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Backend/Store.php b/app/code/core/Mage/Backend/Model/Config/Backend/Store.php index f494d6c4cec190acf8c2f36c8b246475260c640c..d3d5ea291ae4f8ebefb49414b87ac007c9b79135 100644 --- a/app/code/core/Mage/Backend/Model/Config/Backend/Store.php +++ b/app/code/core/Mage/Backend/Model/Config/Backend/Store.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Backend/Translate.php b/app/code/core/Mage/Backend/Model/Config/Backend/Translate.php index e43b8af751698de01332b84abe97692f58ad41fb..273075e5fbbdf09758a7f5d3744645efec249386 100644 --- a/app/code/core/Mage/Backend/Model/Config/Backend/Translate.php +++ b/app/code/core/Mage/Backend/Model/Config/Backend/Translate.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/BackendFactory.php b/app/code/core/Mage/Backend/Model/Config/BackendFactory.php index f0de30416c32548b56310b69bcead21e03017eca..11c7d3d30b2e939f9c3045ca18d0af2482a7bcbb 100644 --- a/app/code/core/Mage/Backend/Model/Config/BackendFactory.php +++ b/app/code/core/Mage/Backend/Model/Config/BackendFactory.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Clone/Factory.php b/app/code/core/Mage/Backend/Model/Config/Clone/Factory.php index b66050c566e299132548232fdbe7382bbfca888a..a6d5eef646391bf7ad0a7da72ba2a35524834182 100644 --- a/app/code/core/Mage/Backend/Model/Config/Clone/Factory.php +++ b/app/code/core/Mage/Backend/Model/Config/Clone/Factory.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/CommentFactory.php b/app/code/core/Mage/Backend/Model/Config/CommentFactory.php index 3f911d79655891bb406935d8e05d4352cff9343d..0250d1befd57f0e6bfd76dadcae840c3147573a1 100644 --- a/app/code/core/Mage/Backend/Model/Config/CommentFactory.php +++ b/app/code/core/Mage/Backend/Model/Config/CommentFactory.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/CommentInterface.php b/app/code/core/Mage/Backend/Model/Config/CommentInterface.php index 6aedda9bb723b902ebb27fd368a61452bac53c6e..6344bcbeef9d631a6c5d9cfc9725100ee2912a75 100644 --- a/app/code/core/Mage/Backend/Model/Config/CommentInterface.php +++ b/app/code/core/Mage/Backend/Model/Config/CommentInterface.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Factory.php b/app/code/core/Mage/Backend/Model/Config/Factory.php index cc0d4e32d85eb04aa9093918c9ac3ceca95731b0..5e6c5e745d666f84085b779bcb86c08ba16993a3 100644 --- a/app/code/core/Mage/Backend/Model/Config/Factory.php +++ b/app/code/core/Mage/Backend/Model/Config/Factory.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Loader.php b/app/code/core/Mage/Backend/Model/Config/Loader.php index f2dd75b042305abd00ad66978b6424401f95c27f..e2039563c778f31e21ce2d5d8ea6c76043b8abb0 100644 --- a/app/code/core/Mage/Backend/Model/Config/Loader.php +++ b/app/code/core/Mage/Backend/Model/Config/Loader.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/ScopeDefiner.php b/app/code/core/Mage/Backend/Model/Config/ScopeDefiner.php index 807ec52e2a743ab2b3cca7370618762891cb57b9..7b259f00378ad583f2def0ee21a3501dc045cd64 100644 --- a/app/code/core/Mage/Backend/Model/Config/ScopeDefiner.php +++ b/app/code/core/Mage/Backend/Model/Config/ScopeDefiner.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Source/Admin/Page.php b/app/code/core/Mage/Backend/Model/Config/Source/Admin/Page.php index ec105cfde42c55dbb9ca8188646ff3698bd39be9..7aa4740e94691796c30cd141f73a14e0312f94e7 100644 --- a/app/code/core/Mage/Backend/Model/Config/Source/Admin/Page.php +++ b/app/code/core/Mage/Backend/Model/Config/Source/Admin/Page.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Source/Checktype.php b/app/code/core/Mage/Backend/Model/Config/Source/Checktype.php index 3c218b0f6a938223a97b2f2c48bcd749cf83e30c..5ae23f81d27e75eb4c348ed4538d54cd695d8c92 100644 --- a/app/code/core/Mage/Backend/Model/Config/Source/Checktype.php +++ b/app/code/core/Mage/Backend/Model/Config/Source/Checktype.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Source/Currency.php b/app/code/core/Mage/Backend/Model/Config/Source/Currency.php index 79aab21aaa32b1ad8cd927dc3a46954b881a04ba..2337619e1fa034f4468b84a961bd19217789043e 100644 --- a/app/code/core/Mage/Backend/Model/Config/Source/Currency.php +++ b/app/code/core/Mage/Backend/Model/Config/Source/Currency.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Source/Currency/Service.php b/app/code/core/Mage/Backend/Model/Config/Source/Currency/Service.php index b59a289a964ba0b71fb54bdcfa24ffefea822f0e..0e30561bf58c4101d97f961c41d573292ca17b69 100644 --- a/app/code/core/Mage/Backend/Model/Config/Source/Currency/Service.php +++ b/app/code/core/Mage/Backend/Model/Config/Source/Currency/Service.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Source/Date/Short.php b/app/code/core/Mage/Backend/Model/Config/Source/Date/Short.php index 492a6b79bba5945cfc47ee310cc40424255423dc..cb6ab8e9ff90a582d477d7bd00e6ba8ae340b448 100644 --- a/app/code/core/Mage/Backend/Model/Config/Source/Date/Short.php +++ b/app/code/core/Mage/Backend/Model/Config/Source/Date/Short.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Source/Design/Robots.php b/app/code/core/Mage/Backend/Model/Config/Source/Design/Robots.php index e89597f8f7dbc0eb9625b1481dea710272efc1b4..dd71696f2d6f8b6ee69dc0df5fd2fa7652a1bf4e 100644 --- a/app/code/core/Mage/Backend/Model/Config/Source/Design/Robots.php +++ b/app/code/core/Mage/Backend/Model/Config/Source/Design/Robots.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Source/Dev/Dbautoup.php b/app/code/core/Mage/Backend/Model/Config/Source/Dev/Dbautoup.php index 78ff14344b4a4350d1533ff1a11cd36a8d9b8cc1..571bf75b4d9e87a2d5955fa67db1ffffb96e9264 100644 --- a/app/code/core/Mage/Backend/Model/Config/Source/Dev/Dbautoup.php +++ b/app/code/core/Mage/Backend/Model/Config/Source/Dev/Dbautoup.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Backend_Model_Config_Source_Dev_Dbautoup implements Mage_Core_Model_Option_ArrayInterface diff --git a/app/code/core/Mage/Backend/Model/Config/Source/Email/Identity.php b/app/code/core/Mage/Backend/Model/Config/Source/Email/Identity.php index affdd6cef2b209d56e210cbdc747a808664ba8d3..2c3501fac43b347e76378e2202112cfbfadf053f 100644 --- a/app/code/core/Mage/Backend/Model/Config/Source/Email/Identity.php +++ b/app/code/core/Mage/Backend/Model/Config/Source/Email/Identity.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Source/Email/Method.php b/app/code/core/Mage/Backend/Model/Config/Source/Email/Method.php index 0059c5f243c08e0fbd84917c827bb00905b264ce..54cf9151134a693e9a6de8f7808c0fb2b2666beb 100644 --- a/app/code/core/Mage/Backend/Model/Config/Source/Email/Method.php +++ b/app/code/core/Mage/Backend/Model/Config/Source/Email/Method.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Source/Email/Smtpauth.php b/app/code/core/Mage/Backend/Model/Config/Source/Email/Smtpauth.php index a3db11d2f7766020ddfff320f1474f4f8c44d638..08a59d8253dae9411bb3aaadb713465396e795c0 100644 --- a/app/code/core/Mage/Backend/Model/Config/Source/Email/Smtpauth.php +++ b/app/code/core/Mage/Backend/Model/Config/Source/Email/Smtpauth.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Source/Email/Template.php b/app/code/core/Mage/Backend/Model/Config/Source/Email/Template.php index ef2968c80aa7dc959fe0de8e40468776c28b3d2e..9c1a01aa0b879f77d90f2ec02b6cd0306a21c254 100644 --- a/app/code/core/Mage/Backend/Model/Config/Source/Email/Template.php +++ b/app/code/core/Mage/Backend/Model/Config/Source/Email/Template.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Source/Enabledisable.php b/app/code/core/Mage/Backend/Model/Config/Source/Enabledisable.php index c755c7ef6897eb5a37a2587b3e22a44c49274f52..2dbf9b3d5fd54d503a741bd7e4f37c36a300b89e 100644 --- a/app/code/core/Mage/Backend/Model/Config/Source/Enabledisable.php +++ b/app/code/core/Mage/Backend/Model/Config/Source/Enabledisable.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Source/Image/Adapter.php b/app/code/core/Mage/Backend/Model/Config/Source/Image/Adapter.php index 0aedb3e148702a0cd683b9556120b959bb76efb5..b301ef3fffe00bdf0372900d0df42cb50e37df5b 100644 --- a/app/code/core/Mage/Backend/Model/Config/Source/Image/Adapter.php +++ b/app/code/core/Mage/Backend/Model/Config/Source/Image/Adapter.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Source/Locale.php b/app/code/core/Mage/Backend/Model/Config/Source/Locale.php index 506accaddd2d3eee46d047a659facaf513e5e12f..75be5ea83fba5d8cb66ca0954b3cfaf4374816b2 100644 --- a/app/code/core/Mage/Backend/Model/Config/Source/Locale.php +++ b/app/code/core/Mage/Backend/Model/Config/Source/Locale.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Source/Locale/Country.php b/app/code/core/Mage/Backend/Model/Config/Source/Locale/Country.php index 0137346c5e6414ada262afef41ec821979e258a5..816d074e79f8e621ea4c3aaf4cf2b9540dd513e5 100644 --- a/app/code/core/Mage/Backend/Model/Config/Source/Locale/Country.php +++ b/app/code/core/Mage/Backend/Model/Config/Source/Locale/Country.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Source/Locale/Currency.php b/app/code/core/Mage/Backend/Model/Config/Source/Locale/Currency.php index 7e60891d37d75e36ab03f4187717fd8501394c15..0186dcd8927d6813453168647d00ead43ad74e9a 100644 --- a/app/code/core/Mage/Backend/Model/Config/Source/Locale/Currency.php +++ b/app/code/core/Mage/Backend/Model/Config/Source/Locale/Currency.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Source/Locale/Currency/All.php b/app/code/core/Mage/Backend/Model/Config/Source/Locale/Currency/All.php index b5115a19ba183c46138fbf69a9676d3dae938b1c..fbd65bd5a605091418b372c58b90160a4be3d831 100644 --- a/app/code/core/Mage/Backend/Model/Config/Source/Locale/Currency/All.php +++ b/app/code/core/Mage/Backend/Model/Config/Source/Locale/Currency/All.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Source/Locale/Timezone.php b/app/code/core/Mage/Backend/Model/Config/Source/Locale/Timezone.php index ce5065a0a3f50d20b0da4832952083cc78d192a3..18363a113398bb46fefb354620c6cd71bd530fc8 100644 --- a/app/code/core/Mage/Backend/Model/Config/Source/Locale/Timezone.php +++ b/app/code/core/Mage/Backend/Model/Config/Source/Locale/Timezone.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Source/Locale/Weekdays.php b/app/code/core/Mage/Backend/Model/Config/Source/Locale/Weekdays.php index 659995be5afc7c27f054e20cc8170c73e3cd5607..e5268f7f79d6dc7ff19c85e6ceb827c26fc10335 100644 --- a/app/code/core/Mage/Backend/Model/Config/Source/Locale/Weekdays.php +++ b/app/code/core/Mage/Backend/Model/Config/Source/Locale/Weekdays.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Source/Nooptreq.php b/app/code/core/Mage/Backend/Model/Config/Source/Nooptreq.php index c36953b23a784ac62d022a31d2b19e25c4c259db..56fd984bbf0179eb496ced97df5f60fc0f68e3de 100644 --- a/app/code/core/Mage/Backend/Model/Config/Source/Nooptreq.php +++ b/app/code/core/Mage/Backend/Model/Config/Source/Nooptreq.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Backend_Model_Config_Source_Nooptreq implements Mage_Core_Model_Option_ArrayInterface diff --git a/app/code/core/Mage/Backend/Model/Config/Source/Reports/Scope.php b/app/code/core/Mage/Backend/Model/Config/Source/Reports/Scope.php index 062ac73e7eae891f592865041ca9ac09380680fd..8148417eb575e7f0f7a252ce75f8618d5c7dff00 100644 --- a/app/code/core/Mage/Backend/Model/Config/Source/Reports/Scope.php +++ b/app/code/core/Mage/Backend/Model/Config/Source/Reports/Scope.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Source/Storage/Media/Database.php b/app/code/core/Mage/Backend/Model/Config/Source/Storage/Media/Database.php index 0e9e59700c8fe5d90a5cdf0310e0364a75a2a8e6..257dc0bc45c824679bbf4999beeb983fab8017e0 100644 --- a/app/code/core/Mage/Backend/Model/Config/Source/Storage/Media/Database.php +++ b/app/code/core/Mage/Backend/Model/Config/Source/Storage/Media/Database.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Source/Storage/Media/Storage.php b/app/code/core/Mage/Backend/Model/Config/Source/Storage/Media/Storage.php index 1e24413bc19a102fc424134eaac339abf073203a..d7702a23d5d8911b5102ff4d4f4c9d36aee68603 100644 --- a/app/code/core/Mage/Backend/Model/Config/Source/Storage/Media/Storage.php +++ b/app/code/core/Mage/Backend/Model/Config/Source/Storage/Media/Storage.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Source/Store.php b/app/code/core/Mage/Backend/Model/Config/Source/Store.php index 421535e2c6635694502b5ac9a290c4f401da6c45..437735073d8780a28f5db8610a570ee2be0466cc 100644 --- a/app/code/core/Mage/Backend/Model/Config/Source/Store.php +++ b/app/code/core/Mage/Backend/Model/Config/Source/Store.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Source/Web/Protocol.php b/app/code/core/Mage/Backend/Model/Config/Source/Web/Protocol.php index aa305cb472c4c003471e9029354f5bf4107bc180..3771da8a392127def38e73ff865dfcfb74ba60d8 100644 --- a/app/code/core/Mage/Backend/Model/Config/Source/Web/Protocol.php +++ b/app/code/core/Mage/Backend/Model/Config/Source/Web/Protocol.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Backend_Model_Config_Source_Web_Protocol implements Mage_Core_Model_Option_ArrayInterface diff --git a/app/code/core/Mage/Backend/Model/Config/Source/Web/Redirect.php b/app/code/core/Mage/Backend/Model/Config/Source/Web/Redirect.php index 57fd5d62675082bd223cd16377482b00d3de3e96..36d6531ad3e73fdb0e4d9ba2c9740e7b1532b4e5 100644 --- a/app/code/core/Mage/Backend/Model/Config/Source/Web/Redirect.php +++ b/app/code/core/Mage/Backend/Model/Config/Source/Web/Redirect.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Backend_Model_Config_Source_Web_Redirect implements Mage_Core_Model_Option_ArrayInterface diff --git a/app/code/core/Mage/Backend/Model/Config/Source/Website.php b/app/code/core/Mage/Backend/Model/Config/Source/Website.php index 3e59167e0104b0754b0e65cd6c626507ade884ea..1da7507b74a3925dfb2c7b34032bb39bff33aa2a 100644 --- a/app/code/core/Mage/Backend/Model/Config/Source/Website.php +++ b/app/code/core/Mage/Backend/Model/Config/Source/Website.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Source/Yesno.php b/app/code/core/Mage/Backend/Model/Config/Source/Yesno.php index 87c632007312fe16fe87082806fdfbaea8cbe52e..83b8e337dd7d32002d0cd407ef944fd457d0faa4 100644 --- a/app/code/core/Mage/Backend/Model/Config/Source/Yesno.php +++ b/app/code/core/Mage/Backend/Model/Config/Source/Yesno.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Source/Yesnocustom.php b/app/code/core/Mage/Backend/Model/Config/Source/Yesnocustom.php index 53f13c18915374331b34efb330d083f215682296..bd246a56d79d1d6e4ed9ed02ac5b0555ba62b97f 100644 --- a/app/code/core/Mage/Backend/Model/Config/Source/Yesnocustom.php +++ b/app/code/core/Mage/Backend/Model/Config/Source/Yesnocustom.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/SourceFactory.php b/app/code/core/Mage/Backend/Model/Config/SourceFactory.php index 65bb23b4634795c33b048a51c46c409bea600552..6494e0cdc5228535ce2abb6290e78acc45802ae9 100644 --- a/app/code/core/Mage/Backend/Model/Config/SourceFactory.php +++ b/app/code/core/Mage/Backend/Model/Config/SourceFactory.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Structure.php b/app/code/core/Mage/Backend/Model/Config/Structure.php index 773d0d33916b3467945b29ea4aa414381e4ff08a..381f51a69bd5f4adcbba24a2425c9a46396f9a54 100644 --- a/app/code/core/Mage/Backend/Model/Config/Structure.php +++ b/app/code/core/Mage/Backend/Model/Config/Structure.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Structure/Converter.php b/app/code/core/Mage/Backend/Model/Config/Structure/Converter.php index e6ee17388953241de444f85cbf75591d7e022f39..4e7025d2e640a3837d93c08196e8bd9d0d312cdb 100644 --- a/app/code/core/Mage/Backend/Model/Config/Structure/Converter.php +++ b/app/code/core/Mage/Backend/Model/Config/Structure/Converter.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Structure/Element/CompositeAbstract.php b/app/code/core/Mage/Backend/Model/Config/Structure/Element/CompositeAbstract.php index 33eafc62f5b7892dcac3f1235caade61d138615a..cd08159c0f663db69e9f20d8fc1e17736e2ae4bb 100644 --- a/app/code/core/Mage/Backend/Model/Config/Structure/Element/CompositeAbstract.php +++ b/app/code/core/Mage/Backend/Model/Config/Structure/Element/CompositeAbstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Structure/Element/Dependency/Mapper.php b/app/code/core/Mage/Backend/Model/Config/Structure/Element/Dependency/Mapper.php index 061fed4563bb05d5d29c812ba1415e4b4b88efc6..8b7a00cd0f1347521fc292e00b38e6990929fb32 100644 --- a/app/code/core/Mage/Backend/Model/Config/Structure/Element/Dependency/Mapper.php +++ b/app/code/core/Mage/Backend/Model/Config/Structure/Element/Dependency/Mapper.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Structure/Element/Field.php b/app/code/core/Mage/Backend/Model/Config/Structure/Element/Field.php index 817fec538cc2e2e9895493934c956caefddb231f..55b39b19a874b7224cc44bf3b24a164523d4c40d 100644 --- a/app/code/core/Mage/Backend/Model/Config/Structure/Element/Field.php +++ b/app/code/core/Mage/Backend/Model/Config/Structure/Element/Field.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Structure/Element/FlyweightFactory.php b/app/code/core/Mage/Backend/Model/Config/Structure/Element/FlyweightFactory.php index cf70be7176ad83e93de9eca2317d7a9bd8d2662e..47f971a73ed8719d433bddb1f5b6db69b368c8e0 100644 --- a/app/code/core/Mage/Backend/Model/Config/Structure/Element/FlyweightFactory.php +++ b/app/code/core/Mage/Backend/Model/Config/Structure/Element/FlyweightFactory.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Structure/Element/Group.php b/app/code/core/Mage/Backend/Model/Config/Structure/Element/Group.php index f1f84229c8a74132ae59e724ccc56bc5e768455d..c085c6a7f09c7810cd849bc494cfb0f87e73f4ce 100644 --- a/app/code/core/Mage/Backend/Model/Config/Structure/Element/Group.php +++ b/app/code/core/Mage/Backend/Model/Config/Structure/Element/Group.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Structure/Element/Group/Proxy.php b/app/code/core/Mage/Backend/Model/Config/Structure/Element/Group/Proxy.php index 4aa86a7a0eabcb1376ab5582fcf943e592fa4d92..a763b5a6f9015499c47d2e32e66c20dfc182246e 100644 --- a/app/code/core/Mage/Backend/Model/Config/Structure/Element/Group/Proxy.php +++ b/app/code/core/Mage/Backend/Model/Config/Structure/Element/Group/Proxy.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Structure/Element/Iterator.php b/app/code/core/Mage/Backend/Model/Config/Structure/Element/Iterator.php index fb64c5edce5b5c9fb76d5ed54669c746e622fb49..099a80e8b7d36a3a56f0a1200ff7bde429a40be6 100644 --- a/app/code/core/Mage/Backend/Model/Config/Structure/Element/Iterator.php +++ b/app/code/core/Mage/Backend/Model/Config/Structure/Element/Iterator.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Structure/Element/Iterator/Field.php b/app/code/core/Mage/Backend/Model/Config/Structure/Element/Iterator/Field.php index fe8a703281d394d8f5fd0f589825c1f0a422dbe9..c046a44edafa57f7c4f5dca0d5242e2e23930ffd 100644 --- a/app/code/core/Mage/Backend/Model/Config/Structure/Element/Iterator/Field.php +++ b/app/code/core/Mage/Backend/Model/Config/Structure/Element/Iterator/Field.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Structure/Element/Iterator/Group.php b/app/code/core/Mage/Backend/Model/Config/Structure/Element/Iterator/Group.php index 42310eb6a7defd9f66c6df6b1e77bb29ed64851c..f8ae81fb43c8937b055b177d54581f471cdf5972 100644 --- a/app/code/core/Mage/Backend/Model/Config/Structure/Element/Iterator/Group.php +++ b/app/code/core/Mage/Backend/Model/Config/Structure/Element/Iterator/Group.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Structure/Element/Iterator/Section.php b/app/code/core/Mage/Backend/Model/Config/Structure/Element/Iterator/Section.php index 6dc28a54087547ae13b69d6cc7ab7760a9001fb0..764337caf5c9ac0bb4b761b6fe70667781203ca7 100644 --- a/app/code/core/Mage/Backend/Model/Config/Structure/Element/Iterator/Section.php +++ b/app/code/core/Mage/Backend/Model/Config/Structure/Element/Iterator/Section.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Structure/Element/Iterator/Tab.php b/app/code/core/Mage/Backend/Model/Config/Structure/Element/Iterator/Tab.php index 8fad105904f973355aa5d6136ebcaf44026a987e..ce8f357eceb0701689db322f79812ea85704a2a8 100644 --- a/app/code/core/Mage/Backend/Model/Config/Structure/Element/Iterator/Tab.php +++ b/app/code/core/Mage/Backend/Model/Config/Structure/Element/Iterator/Tab.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Structure/Element/Section.php b/app/code/core/Mage/Backend/Model/Config/Structure/Element/Section.php index 329f57bbd3b4cfd93f9859b5b0ef4d3cd04a3a29..970d6d7a64d41a3c3cb75b5932a7c1f0e7891ada 100644 --- a/app/code/core/Mage/Backend/Model/Config/Structure/Element/Section.php +++ b/app/code/core/Mage/Backend/Model/Config/Structure/Element/Section.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Structure/Element/Tab.php b/app/code/core/Mage/Backend/Model/Config/Structure/Element/Tab.php index 2d3d5c527a3627541aa58125d16be2fbd3058cee..ae8812de2bc879c69f06994a147f53bdafec0bc2 100644 --- a/app/code/core/Mage/Backend/Model/Config/Structure/Element/Tab.php +++ b/app/code/core/Mage/Backend/Model/Config/Structure/Element/Tab.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Structure/ElementAbstract.php b/app/code/core/Mage/Backend/Model/Config/Structure/ElementAbstract.php index fe30dcb9d051cd26d205146d22714cd6f42776fa..65e640563d3884881ad7241e601c83a5e7576858 100644 --- a/app/code/core/Mage/Backend/Model/Config/Structure/ElementAbstract.php +++ b/app/code/core/Mage/Backend/Model/Config/Structure/ElementAbstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Structure/ElementInterface.php b/app/code/core/Mage/Backend/Model/Config/Structure/ElementInterface.php index 2db810da9db8372a31237528166e4f2a4c617799..3e1a2a0dbbb612fa1557ebf8e32a217607ca8c08 100644 --- a/app/code/core/Mage/Backend/Model/Config/Structure/ElementInterface.php +++ b/app/code/core/Mage/Backend/Model/Config/Structure/ElementInterface.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Structure/Mapper/Attribute/Inheritance.php b/app/code/core/Mage/Backend/Model/Config/Structure/Mapper/Attribute/Inheritance.php index b8ca251194b9d1502afc2201e9387bab65dcd999..d765db871a3dde493115f8a8f2fd267a312a4d2f 100644 --- a/app/code/core/Mage/Backend/Model/Config/Structure/Mapper/Attribute/Inheritance.php +++ b/app/code/core/Mage/Backend/Model/Config/Structure/Mapper/Attribute/Inheritance.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Structure/Mapper/Dependencies.php b/app/code/core/Mage/Backend/Model/Config/Structure/Mapper/Dependencies.php index 3b8375a607317e31a44c22c641d3995136fb71c1..34e22b702d34c91a5275633c3abb6983ee9dbfd6 100644 --- a/app/code/core/Mage/Backend/Model/Config/Structure/Mapper/Dependencies.php +++ b/app/code/core/Mage/Backend/Model/Config/Structure/Mapper/Dependencies.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Structure/Mapper/Factory.php b/app/code/core/Mage/Backend/Model/Config/Structure/Mapper/Factory.php index 87cfe3c5bce2a9a0825ae48d3ab0a3c1da404a87..46918c0c5c090d3f81e962d82561a76e0dd00912 100644 --- a/app/code/core/Mage/Backend/Model/Config/Structure/Mapper/Factory.php +++ b/app/code/core/Mage/Backend/Model/Config/Structure/Mapper/Factory.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Structure/Mapper/Ignore.php b/app/code/core/Mage/Backend/Model/Config/Structure/Mapper/Ignore.php index 5b278fbedfa18f854602a4b1d1f4e7efdbe03512..ad6353edfb414f88913ea3efaa0c066ef0d123b2 100644 --- a/app/code/core/Mage/Backend/Model/Config/Structure/Mapper/Ignore.php +++ b/app/code/core/Mage/Backend/Model/Config/Structure/Mapper/Ignore.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Structure/Mapper/Path.php b/app/code/core/Mage/Backend/Model/Config/Structure/Mapper/Path.php index e5f3609a5273880db90c32ad02a467bca1fa84db..12e105601dbd3f6310f73ea7f19398802c7d9ae3 100644 --- a/app/code/core/Mage/Backend/Model/Config/Structure/Mapper/Path.php +++ b/app/code/core/Mage/Backend/Model/Config/Structure/Mapper/Path.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Structure/Mapper/Sorting.php b/app/code/core/Mage/Backend/Model/Config/Structure/Mapper/Sorting.php index 8c2369283c0b3efc71fbad6272110f16046660d2..7944d0317cd72b3bf692f2f01b68ab0a144a59a3 100644 --- a/app/code/core/Mage/Backend/Model/Config/Structure/Mapper/Sorting.php +++ b/app/code/core/Mage/Backend/Model/Config/Structure/Mapper/Sorting.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Structure/MapperAbstract.php b/app/code/core/Mage/Backend/Model/Config/Structure/MapperAbstract.php index d2680b43c96b5feddbed664212e9a7e71ddc0e75..b3b0ca484fa076007a1fe77ca196a2a8cafc1479 100644 --- a/app/code/core/Mage/Backend/Model/Config/Structure/MapperAbstract.php +++ b/app/code/core/Mage/Backend/Model/Config/Structure/MapperAbstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Structure/MapperInterface.php b/app/code/core/Mage/Backend/Model/Config/Structure/MapperInterface.php index 73eececbe858a1e67c651192d44954ca5ea59a5b..9130f09ff3f440be69d011ed1e489d3e46765396 100644 --- a/app/code/core/Mage/Backend/Model/Config/Structure/MapperInterface.php +++ b/app/code/core/Mage/Backend/Model/Config/Structure/MapperInterface.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Structure/Reader.php b/app/code/core/Mage/Backend/Model/Config/Structure/Reader.php index bd04a65f98fb747eaa26ca8b637078416178f73b..93402a16b893d4ee4938ddc4cb3cf9cebefb657c 100644 --- a/app/code/core/Mage/Backend/Model/Config/Structure/Reader.php +++ b/app/code/core/Mage/Backend/Model/Config/Structure/Reader.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ @@ -44,6 +44,16 @@ class Mage_Backend_Model_Config_Structure_Reader extends Magento_Config_XmlAbstr */ protected $_runtimeValidation; + /** + * @var Mage_Backend_Model_Config_Structure_Converter + */ + protected $_converter; + + /** + * @var Mage_Core_Model_Config + */ + protected $_config; + /** * @param Mage_Core_Model_Config $config * @param Mage_Core_Model_Cache $cache @@ -58,12 +68,13 @@ class Mage_Backend_Model_Config_Structure_Reader extends Magento_Config_XmlAbstr ) { $this->_runtimeValidation = $runtimeValidation; $this->_converter = $structureConverter; + $this->_config = $config; if ($cache->canUse('config') && ($cachedData = $cache->load(self::CACHE_SYSTEM_CONFIGURATION_STRUCTURE))) { $this->_data = unserialize($cachedData); } else { - $fileNames = $config + $fileNames = $this->_config ->getModuleConfigurationFiles('adminhtml' . DIRECTORY_SEPARATOR . 'system.xml'); parent::__construct($fileNames); @@ -84,7 +95,7 @@ class Mage_Backend_Model_Config_Structure_Reader extends Magento_Config_XmlAbstr */ public function getSchemaFile() { - return __DIR__ . '/system.xsd'; + return $this->_config->getModuleDir('etc', 'Mage_Backend') . DIRECTORY_SEPARATOR . 'system.xsd'; } /** @@ -94,7 +105,7 @@ class Mage_Backend_Model_Config_Structure_Reader extends Magento_Config_XmlAbstr */ public function getPerFileSchemaFile() { - return __DIR__ . '/system_file.xsd'; + return $this->_config->getModuleDir('etc', 'Mage_Backend') . DIRECTORY_SEPARATOR . 'system_file.xsd'; } /** diff --git a/app/code/core/Mage/Backend/Model/Config/Structure/Search/Proxy.php b/app/code/core/Mage/Backend/Model/Config/Structure/Search/Proxy.php index 633f8da3c3d79a58d8d1a9d07d9a2f7b13d843fb..4c8780523832678561deee1ad8e047b25fe0fef3 100644 --- a/app/code/core/Mage/Backend/Model/Config/Structure/Search/Proxy.php +++ b/app/code/core/Mage/Backend/Model/Config/Structure/Search/Proxy.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Config/Structure/SearchInterface.php b/app/code/core/Mage/Backend/Model/Config/Structure/SearchInterface.php index 25fba5fee1dda8505c56de266bc60dd7a0e03de7..608d6f26e72a183a031c63b30b81886e3120fb8e 100644 --- a/app/code/core/Mage/Backend/Model/Config/Structure/SearchInterface.php +++ b/app/code/core/Mage/Backend/Model/Config/Structure/SearchInterface.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ interface Mage_Backend_Model_Config_Structure_SearchInterface diff --git a/app/code/core/Mage/Backend/Model/Menu.php b/app/code/core/Mage/Backend/Model/Menu.php index 09758937b9e0b1881a9b3c208ff3bb209cd30342..b37cf07afef2b4244a7581f0d02cdf3d430abf74 100644 --- a/app/code/core/Mage/Backend/Model/Menu.php +++ b/app/code/core/Mage/Backend/Model/Menu.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Menu/Builder.php b/app/code/core/Mage/Backend/Model/Menu/Builder.php index ebe1bdfd1594e47a9569fe4740b5fac54f3ee0ad..2ab779ecf99138e45d1227477e050fbd5fbf33fc 100644 --- a/app/code/core/Mage/Backend/Model/Menu/Builder.php +++ b/app/code/core/Mage/Backend/Model/Menu/Builder.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Menu/Builder/Command/Add.php b/app/code/core/Mage/Backend/Model/Menu/Builder/Command/Add.php index 05edfc481d5bc4ff259587da82dcd10f7ba69685..ea8584aee8cb04dc41df65a54d3e7eeae0ceec42 100644 --- a/app/code/core/Mage/Backend/Model/Menu/Builder/Command/Add.php +++ b/app/code/core/Mage/Backend/Model/Menu/Builder/Command/Add.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Menu/Builder/Command/Remove.php b/app/code/core/Mage/Backend/Model/Menu/Builder/Command/Remove.php index 783f71ce7e34864e6af99d49e14690cc3ed98993..1c5bebd06bf3f837a68e8abd6be15ae6fb047f42 100644 --- a/app/code/core/Mage/Backend/Model/Menu/Builder/Command/Remove.php +++ b/app/code/core/Mage/Backend/Model/Menu/Builder/Command/Remove.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Menu/Builder/Command/Update.php b/app/code/core/Mage/Backend/Model/Menu/Builder/Command/Update.php index b1f0d81bf802c47042e61c8e0e07ffa1bb559cf3..25cdc67985bc29cf88a45bb37c6f610da41b5f50 100644 --- a/app/code/core/Mage/Backend/Model/Menu/Builder/Command/Update.php +++ b/app/code/core/Mage/Backend/Model/Menu/Builder/Command/Update.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Menu/Builder/CommandAbstract.php b/app/code/core/Mage/Backend/Model/Menu/Builder/CommandAbstract.php index 4156afeda38bc07c38df08b7271af97e5abb84c3..9255157d7455a32fb47c516259a84ea023416124 100644 --- a/app/code/core/Mage/Backend/Model/Menu/Builder/CommandAbstract.php +++ b/app/code/core/Mage/Backend/Model/Menu/Builder/CommandAbstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Menu/Config.php b/app/code/core/Mage/Backend/Model/Menu/Config.php index 78cad7a43198ed23752e5251b81edb77db7fda1f..7ddb751f55fcd45378bb7acf16bd29036de59caa 100644 --- a/app/code/core/Mage/Backend/Model/Menu/Config.php +++ b/app/code/core/Mage/Backend/Model/Menu/Config.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Backend_Model_Menu_Config diff --git a/app/code/core/Mage/Backend/Model/Menu/Config/Menu.php b/app/code/core/Mage/Backend/Model/Menu/Config/Menu.php index 9e2bfd3aeb0fd517e99398dfbe8a8cd4a4c8e09d..81b4113983ee56b004924ae730fc22460f53bb81 100644 --- a/app/code/core/Mage/Backend/Model/Menu/Config/Menu.php +++ b/app/code/core/Mage/Backend/Model/Menu/Config/Menu.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ @@ -29,6 +29,24 @@ */ class Mage_Backend_Model_Menu_Config_Menu extends Magento_Config_XmlAbstract { + /** + * @var Mage_Core_Model_Config + */ + protected $_config; + + /** + * @param Mage_Core_Model_Config $config + * @param array $configFiles + * @throws InvalidArgumentException + */ + public function __construct( + Mage_Core_Model_Config $config, + array $configFiles + ) { + parent::__construct($configFiles); + $this->_config = $config; + } + /** * Path to menu.xsd * @@ -36,7 +54,7 @@ class Mage_Backend_Model_Menu_Config_Menu extends Magento_Config_XmlAbstract */ public function getSchemaFile() { - return __DIR__ . '/menu.xsd'; + return $this->_config->getModuleDir('etc', 'Mage_Backend') . DIRECTORY_SEPARATOR . 'menu.xsd'; } /** diff --git a/app/code/core/Mage/Backend/Model/Menu/Config/Menu/Dom.php b/app/code/core/Mage/Backend/Model/Menu/Config/Menu/Dom.php index abc5cbdab8bb8fa4888d33ff1274712c49019f4f..d5e49d1d246b00426f117de28965c6bbe1e56248 100644 --- a/app/code/core/Mage/Backend/Model/Menu/Config/Menu/Dom.php +++ b/app/code/core/Mage/Backend/Model/Menu/Config/Menu/Dom.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Menu/Director/Dom.php b/app/code/core/Mage/Backend/Model/Menu/Director/Dom.php index 8b24ab41a07d5a26de4536bb341ef1b5e5eff042..bc653dd0df77e9948defbea61a09f436c1aa7626 100644 --- a/app/code/core/Mage/Backend/Model/Menu/Director/Dom.php +++ b/app/code/core/Mage/Backend/Model/Menu/Director/Dom.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Backend_Model_Menu_Director_Dom extends Mage_Backend_Model_Menu_DirectorAbstract diff --git a/app/code/core/Mage/Backend/Model/Menu/DirectorAbstract.php b/app/code/core/Mage/Backend/Model/Menu/DirectorAbstract.php index 3586dd22f3009632d1da78299693f3bba7ab7591..6bc66d3a1d08a6401843da5802c6cada2f1ef824 100644 --- a/app/code/core/Mage/Backend/Model/Menu/DirectorAbstract.php +++ b/app/code/core/Mage/Backend/Model/Menu/DirectorAbstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ abstract class Mage_Backend_Model_Menu_DirectorAbstract diff --git a/app/code/core/Mage/Backend/Model/Menu/Factory.php b/app/code/core/Mage/Backend/Model/Menu/Factory.php index efa01ba08c917be71aa672bf8d0e218e17750f48..76faa242b7a89065c4b26943e841df0327b5eb1e 100644 --- a/app/code/core/Mage/Backend/Model/Menu/Factory.php +++ b/app/code/core/Mage/Backend/Model/Menu/Factory.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Backend_Model_Menu_Factory diff --git a/app/code/core/Mage/Backend/Model/Menu/Filter/Iterator.php b/app/code/core/Mage/Backend/Model/Menu/Filter/Iterator.php index 89b8fa2075cb836a6158ea71561fd91494dc22a1..d367631dcb8949b3eec30faf55540fa4adda87cc 100644 --- a/app/code/core/Mage/Backend/Model/Menu/Filter/Iterator.php +++ b/app/code/core/Mage/Backend/Model/Menu/Filter/Iterator.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Menu/Item.php b/app/code/core/Mage/Backend/Model/Menu/Item.php index eec9eca4e50a45f8514b689e44b99107faf2ae8a..dfbfb16126df888369a56a93a9ca4888847b7ff1 100644 --- a/app/code/core/Mage/Backend/Model/Menu/Item.php +++ b/app/code/core/Mage/Backend/Model/Menu/Item.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Menu/Item/Factory.php b/app/code/core/Mage/Backend/Model/Menu/Item/Factory.php index a17e99dd4e42ef154824fbcfbafac32c495c036e..13403e0d286c3dcad004eee05cf326c629b08408 100644 --- a/app/code/core/Mage/Backend/Model/Menu/Item/Factory.php +++ b/app/code/core/Mage/Backend/Model/Menu/Item/Factory.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Backend_Model_Menu_Item_Factory diff --git a/app/code/core/Mage/Backend/Model/Menu/Item/Validator.php b/app/code/core/Mage/Backend/Model/Menu/Item/Validator.php index b9f7245d422aab99657b58cfb24eee63011e9da3..592f3adf0a81fd3d12f544757bca032ea1c31ddf 100644 --- a/app/code/core/Mage/Backend/Model/Menu/Item/Validator.php +++ b/app/code/core/Mage/Backend/Model/Menu/Item/Validator.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Backend_Model_Menu_Item_Validator diff --git a/app/code/core/Mage/Backend/Model/Menu/Iterator.php b/app/code/core/Mage/Backend/Model/Menu/Iterator.php index 5742f9f74df3ace6f922cc475e14dac6eeccbded..01d43dc94365b51196e53f34f5b823d4ec552662 100644 --- a/app/code/core/Mage/Backend/Model/Menu/Iterator.php +++ b/app/code/core/Mage/Backend/Model/Menu/Iterator.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Observer.php b/app/code/core/Mage/Backend/Model/Observer.php index 18089f8b3ff8718283e0ed41bd995a89fca2cf31..44fed0030e7e06cb9b4d9abd42a9a21c7e87fbfb 100644 --- a/app/code/core/Mage/Backend/Model/Observer.php +++ b/app/code/core/Mage/Backend/Model/Observer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Session.php b/app/code/core/Mage/Backend/Model/Session.php index 8edd029f59768ba2200f490377d5ab426e954156..f3ef148a0944d192ee62175fe9ab685bc7ab4267 100644 --- a/app/code/core/Mage/Backend/Model/Session.php +++ b/app/code/core/Mage/Backend/Model/Session.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Url.php b/app/code/core/Mage/Backend/Model/Url.php index 789f8e662a37b774a5b3d25ff1cd1f0acd937efa..35847e446e649e85b51ace63fff931d1ae6c565e 100644 --- a/app/code/core/Mage/Backend/Model/Url.php +++ b/app/code/core/Mage/Backend/Model/Url.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Backend_Model_Url extends Mage_Core_Model_Url diff --git a/app/code/core/Mage/Backend/Model/Widget/Grid/Parser.php b/app/code/core/Mage/Backend/Model/Widget/Grid/Parser.php index 82558de3b24792e0b10398cc66e4b26bb0adaf01..faad520dfcffa6d8a58a7f35597349d5acb59dc7 100644 --- a/app/code/core/Mage/Backend/Model/Widget/Grid/Parser.php +++ b/app/code/core/Mage/Backend/Model/Widget/Grid/Parser.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Widget/Grid/Row/UrlGenerator.php b/app/code/core/Mage/Backend/Model/Widget/Grid/Row/UrlGenerator.php index 7c0a674e5485a01eed7dc2bea8e2a2814d605b20..574f442452c2d633dbf2b0835d13c9ce66c8c8e0 100644 --- a/app/code/core/Mage/Backend/Model/Widget/Grid/Row/UrlGenerator.php +++ b/app/code/core/Mage/Backend/Model/Widget/Grid/Row/UrlGenerator.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Widget/Grid/Row/UrlGeneratorFactory.php b/app/code/core/Mage/Backend/Model/Widget/Grid/Row/UrlGeneratorFactory.php index 3891bce470fc15fcc1d48227e99d0fe0fdf89756..4ecb38da2e667f1efd9b3933f15b9fcdee93eb0c 100644 --- a/app/code/core/Mage/Backend/Model/Widget/Grid/Row/UrlGeneratorFactory.php +++ b/app/code/core/Mage/Backend/Model/Widget/Grid/Row/UrlGeneratorFactory.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Widget/Grid/SubTotals.php b/app/code/core/Mage/Backend/Model/Widget/Grid/SubTotals.php index 00ae1231447c09ef3bc6461097be316df5b8a44a..e500f5bb8f1b69c8fa364de4cee50a1a343e5899 100644 --- a/app/code/core/Mage/Backend/Model/Widget/Grid/SubTotals.php +++ b/app/code/core/Mage/Backend/Model/Widget/Grid/SubTotals.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Widget/Grid/Totals.php b/app/code/core/Mage/Backend/Model/Widget/Grid/Totals.php index 4b70547276afb3f49d6dc4409af30e7dfe2a8f92..82b53f7c5b81c4cbc17e1e2d8bbd2d7e65e64525 100644 --- a/app/code/core/Mage/Backend/Model/Widget/Grid/Totals.php +++ b/app/code/core/Mage/Backend/Model/Widget/Grid/Totals.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Widget/Grid/TotalsAbstract.php b/app/code/core/Mage/Backend/Model/Widget/Grid/TotalsAbstract.php index 3bd21ca79a5af18c0aa1112964389b386840ed4d..53414120d8ee23ac0eb27d6d4ff6fb37b3d3ada4 100644 --- a/app/code/core/Mage/Backend/Model/Widget/Grid/TotalsAbstract.php +++ b/app/code/core/Mage/Backend/Model/Widget/Grid/TotalsAbstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/Model/Widget/Grid/TotalsInterface.php b/app/code/core/Mage/Backend/Model/Widget/Grid/TotalsInterface.php index 7f1e65b97fb78efd7c24763d9dbe038962fc7170..2ad3b27e1637d266e1cdfb9641f98e33d08e1ecb 100644 --- a/app/code/core/Mage/Backend/Model/Widget/Grid/TotalsInterface.php +++ b/app/code/core/Mage/Backend/Model/Widget/Grid/TotalsInterface.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/controllers/Adminhtml/AuthController.php b/app/code/core/Mage/Backend/controllers/Adminhtml/AuthController.php index 69d9dbfa9def5968ab002f583d5189cf46d01409..435d6a9a998fe657ddd65cbd5179a0e05d04f4f0 100644 --- a/app/code/core/Mage/Backend/controllers/Adminhtml/AuthController.php +++ b/app/code/core/Mage/Backend/controllers/Adminhtml/AuthController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/controllers/Adminhtml/IndexController.php b/app/code/core/Mage/Backend/controllers/Adminhtml/IndexController.php index 687cfea931caad816123d52b658be4dfb32958b0..dc6ce28a61e762784dfae078d2d3eacd99e08c60 100644 --- a/app/code/core/Mage/Backend/controllers/Adminhtml/IndexController.php +++ b/app/code/core/Mage/Backend/controllers/Adminhtml/IndexController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/controllers/Adminhtml/System/Config/SaveController.php b/app/code/core/Mage/Backend/controllers/Adminhtml/System/Config/SaveController.php index 8033a590ed1bc35e45464f58eb7423564bdea88c..b7f402ec1a1c98b244678a580a0973e86e39dfce 100644 --- a/app/code/core/Mage/Backend/controllers/Adminhtml/System/Config/SaveController.php +++ b/app/code/core/Mage/Backend/controllers/Adminhtml/System/Config/SaveController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/controllers/Adminhtml/System/ConfigController.php b/app/code/core/Mage/Backend/controllers/Adminhtml/System/ConfigController.php index 893cd013f2153e9c4a2915d10337b3fc54aa741e..444bb91a7ac04a2e92be3acb3c7cf7031a989e33 100644 --- a/app/code/core/Mage/Backend/controllers/Adminhtml/System/ConfigController.php +++ b/app/code/core/Mage/Backend/controllers/Adminhtml/System/ConfigController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/controllers/Adminhtml/SystemController.php b/app/code/core/Mage/Backend/controllers/Adminhtml/SystemController.php index 487da1a6cbcffe2977b33aa0e1328d11bfe48144..bcbc0c3ebf44d1e92d3a6ae60547fe42d69cc543 100644 --- a/app/code/core/Mage/Backend/controllers/Adminhtml/SystemController.php +++ b/app/code/core/Mage/Backend/controllers/Adminhtml/SystemController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backend/etc/adminhtml/system.xml b/app/code/core/Mage/Backend/etc/adminhtml/system.xml index 8c3c34a145f3966601d47779d09f107634eb5d63..fade2e4deb145b6ffb0668deb38e52ff5923a039 100644 --- a/app/code/core/Mage/Backend/etc/adminhtml/system.xml +++ b/app/code/core/Mage/Backend/etc/adminhtml/system.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Backend/etc/config.xml b/app/code/core/Mage/Backend/etc/config.xml index 7f78be87752c7ce4e13c3c3fda98cb387258c6f9..d68026f3566e609f3ef20ddef52101e29ae52aa2 100644 --- a/app/code/core/Mage/Backend/etc/config.xml +++ b/app/code/core/Mage/Backend/etc/config.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Backend/Model/Menu/Config/menu.xsd b/app/code/core/Mage/Backend/etc/menu.xsd similarity index 99% rename from app/code/core/Mage/Backend/Model/Menu/Config/menu.xsd rename to app/code/core/Mage/Backend/etc/menu.xsd index 00d20167a4b04bb5d129376c0de1c26a0e98e9cc..c9eed9c5ad74bfb53dce175936bf7da441d2b3ad 100644 --- a/app/code/core/Mage/Backend/Model/Menu/Config/menu.xsd +++ b/app/code/core/Mage/Backend/etc/menu.xsd @@ -22,7 +22,7 @@ * @category Magento * @package Framework * @subpackage Config - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Backend/Model/Config/Structure/system.xsd b/app/code/core/Mage/Backend/etc/system.xsd similarity index 99% rename from app/code/core/Mage/Backend/Model/Config/Structure/system.xsd rename to app/code/core/Mage/Backend/etc/system.xsd index ebbdee1b67c08552bf263853dca7932a6b8d7da2..cd794a2851aa3f9c362b604d2b13db933ec82bbd 100644 --- a/app/code/core/Mage/Backend/Model/Config/Structure/system.xsd +++ b/app/code/core/Mage/Backend/etc/system.xsd @@ -22,7 +22,7 @@ * @category Mage * @package Mage_Backend * @subpackage Config - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Backend/Model/Config/Structure/system_file.xsd b/app/code/core/Mage/Backend/etc/system_file.xsd similarity index 99% rename from app/code/core/Mage/Backend/Model/Config/Structure/system_file.xsd rename to app/code/core/Mage/Backend/etc/system_file.xsd index 4c2f34cb43f9148140b5102be6db402b55319058..84111c1b7200f6259c9075a8da8c38a03d358b18 100644 --- a/app/code/core/Mage/Backend/Model/Config/Structure/system_file.xsd +++ b/app/code/core/Mage/Backend/etc/system_file.xsd @@ -22,7 +22,7 @@ * @category Mage * @package Mage_Backend * @subpackage Config - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Backend/view/adminhtml/admin/login.phtml b/app/code/core/Mage/Backend/view/adminhtml/admin/login.phtml index c39c07135936aff4fea1307f31007cb4d20f7fe3..4c41bd96abf4299e82c93e895a923963d01cf72e 100644 --- a/app/code/core/Mage/Backend/view/adminhtml/admin/login.phtml +++ b/app/code/core/Mage/Backend/view/adminhtml/admin/login.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> @@ -34,9 +34,9 @@ <link rel="icon" href="<?php echo $this->getViewFileUrl('Mage_Page::favicon.ico') ?>" type="image/x-icon" /> <link rel="shortcut icon" href="<?php echo $this->getViewFileUrl('Mage_Page::favicon.ico') ?>" type="image/x-icon" /> - <script type="text/javascript" src="<?php echo $this->getViewFileUrl('jquery/jquery-1.8.2.min.js') ?>"></script> + <script type="text/javascript" src="<?php echo $this->getViewFileUrl('jquery/jquery.min.js') ?>"></script> <script type="text/javascript" src="<?php echo $this->getViewFileUrl('mage/jquery-no-conflict.js') ?>"></script> - <script type="text/javascript" src="<?php echo $this->getViewFileUrl('jquery/jquery-ui-1.9.2.custom.min.js') ?>"></script> + <script type="text/javascript" src="<?php echo $this->getViewFileUrl('jquery/jquery-ui.min.js') ?>"></script> <script type="text/javascript" src="<?php echo $this->getViewFileUrl('jquery/jquery.tmpl.min.js') ?>"></script> <script type="text/javascript" src="<?php echo $this->getViewFileUrl('jquery/jquery.validate.js') ?>"></script> <script type="text/javascript" src="<?php echo $this->getViewFileUrl('mage/validation.js') ?>"></script> diff --git a/app/code/core/Mage/Backend/view/adminhtml/admin/login_buttons.phtml b/app/code/core/Mage/Backend/view/adminhtml/admin/login_buttons.phtml index 036d14859b87c4050d883ab952b69c6bed97c279..3e86fbb4de8e7385f364bec77e63a1afa3dd53eb 100644 --- a/app/code/core/Mage/Backend/view/adminhtml/admin/login_buttons.phtml +++ b/app/code/core/Mage/Backend/view/adminhtml/admin/login_buttons.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Backend/view/adminhtml/layout.xml b/app/code/core/Mage/Backend/view/adminhtml/layout.xml index 898b5120d7b40437a8fc44daad68df66747940ad..607143f6acbdaee012e83569fce086a899daf233 100644 --- a/app/code/core/Mage/Backend/view/adminhtml/layout.xml +++ b/app/code/core/Mage/Backend/view/adminhtml/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Backend/view/adminhtml/menu.phtml b/app/code/core/Mage/Backend/view/adminhtml/menu.phtml index a133289c4f208573b93dd40d675cbb09d5793578..94d7fef1287713c96964d7a6118fc307b392b5a3 100644 --- a/app/code/core/Mage/Backend/view/adminhtml/menu.phtml +++ b/app/code/core/Mage/Backend/view/adminhtml/menu.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Backend/view/adminhtml/store/switcher.phtml b/app/code/core/Mage/Backend/view/adminhtml/store/switcher.phtml index a5d5418bbc59aa3e6ce8b5a8f35b69ac7d5e1d85..f83fa998fa52cd0d13aebc2a4616804f59902b28 100644 --- a/app/code/core/Mage/Backend/view/adminhtml/store/switcher.phtml +++ b/app/code/core/Mage/Backend/view/adminhtml/store/switcher.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Backend/view/adminhtml/store/switcher/form/renderer/fieldset.phtml b/app/code/core/Mage/Backend/view/adminhtml/store/switcher/form/renderer/fieldset.phtml index 9cf8d542416cc72e057e794c807b09b286a80836..563d47bb39814658b0c61d84f059ad730ff6bbeb 100644 --- a/app/code/core/Mage/Backend/view/adminhtml/store/switcher/form/renderer/fieldset.phtml +++ b/app/code/core/Mage/Backend/view/adminhtml/store/switcher/form/renderer/fieldset.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Backend/view/adminhtml/store/switcher/form/renderer/fieldset/element.phtml b/app/code/core/Mage/Backend/view/adminhtml/store/switcher/form/renderer/fieldset/element.phtml index e124bde16a9dbed524d2234b6b724cf4e2b0f150..80f59f566b74f7af04f43ab52aebd2e4ec17483d 100644 --- a/app/code/core/Mage/Backend/view/adminhtml/store/switcher/form/renderer/fieldset/element.phtml +++ b/app/code/core/Mage/Backend/view/adminhtml/store/switcher/form/renderer/fieldset/element.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Backend/view/adminhtml/system/config/edit.phtml b/app/code/core/Mage/Backend/view/adminhtml/system/config/edit.phtml index 2641dc84d38a3b129ce3d9d047e3db228f3d15e8..f8a00ecdae740d19a9b877e7ae8849eac1db3f22 100644 --- a/app/code/core/Mage/Backend/view/adminhtml/system/config/edit.phtml +++ b/app/code/core/Mage/Backend/view/adminhtml/system/config/edit.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Backend/view/adminhtml/system/config/form/field/array.phtml b/app/code/core/Mage/Backend/view/adminhtml/system/config/form/field/array.phtml index 2ec47d688ba81223204d7b2f5bcf9bc8d0430127..6659b0ef1a615d44548a87d99497b641fec9ac58 100644 --- a/app/code/core/Mage/Backend/view/adminhtml/system/config/form/field/array.phtml +++ b/app/code/core/Mage/Backend/view/adminhtml/system/config/form/field/array.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Backend/view/adminhtml/system/config/js.phtml b/app/code/core/Mage/Backend/view/adminhtml/system/config/js.phtml index 0164bf168b3fff1924e6bd9024a1deaf63d48378..292f890043ef457ad4940bcafe0ee084d3374a70 100644 --- a/app/code/core/Mage/Backend/view/adminhtml/system/config/js.phtml +++ b/app/code/core/Mage/Backend/view/adminhtml/system/config/js.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Backend/view/adminhtml/system/config/switcher.phtml b/app/code/core/Mage/Backend/view/adminhtml/system/config/switcher.phtml index dc4407a9ee1e1563a76b7a163e4ae4bf65a9eb14..9b76fc3ecad06a6df99e440acfc403b264350a46 100644 --- a/app/code/core/Mage/Backend/view/adminhtml/system/config/switcher.phtml +++ b/app/code/core/Mage/Backend/view/adminhtml/system/config/switcher.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Backend/view/adminhtml/system/config/system/storage/media/synchronize.phtml b/app/code/core/Mage/Backend/view/adminhtml/system/config/system/storage/media/synchronize.phtml index 78b3a5a092d94dca40be8da00041dbf5bff76714..09e9506128d9c968026c267d4dae4eaf86ca3241 100644 --- a/app/code/core/Mage/Backend/view/adminhtml/system/config/system/storage/media/synchronize.phtml +++ b/app/code/core/Mage/Backend/view/adminhtml/system/config/system/storage/media/synchronize.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Backend/view/adminhtml/system/config/tabs.phtml b/app/code/core/Mage/Backend/view/adminhtml/system/config/tabs.phtml index a876246605664873d16bb00f0543cf28320544cf..3f6e4c014fb16317642b76c5a92e46f838c3d98d 100644 --- a/app/code/core/Mage/Backend/view/adminhtml/system/config/tabs.phtml +++ b/app/code/core/Mage/Backend/view/adminhtml/system/config/tabs.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Backend/view/adminhtml/widget/accordion.phtml b/app/code/core/Mage/Backend/view/adminhtml/widget/accordion.phtml index 3e34e3d37682c0e7ed9e9ad3a4b9e2b71857b44a..91eac6e0c069fa6c9dc21cfd91eeb21ce7aea7b4 100644 --- a/app/code/core/Mage/Backend/view/adminhtml/widget/accordion.phtml +++ b/app/code/core/Mage/Backend/view/adminhtml/widget/accordion.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Backend/view/adminhtml/widget/breadcrumbs.phtml b/app/code/core/Mage/Backend/view/adminhtml/widget/breadcrumbs.phtml index 6f48e7097f6b0db9beb8c9b9ecbf938bf9d142e4..15358a51f5c81b5d4061516517a6c5c31ebb24ee 100644 --- a/app/code/core/Mage/Backend/view/adminhtml/widget/breadcrumbs.phtml +++ b/app/code/core/Mage/Backend/view/adminhtml/widget/breadcrumbs.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Backend/view/adminhtml/widget/button.phtml b/app/code/core/Mage/Backend/view/adminhtml/widget/button.phtml index 0ed7b1c0262809303fd27f0e8d7c0221bc03b7d0..4005ef6c931d87d72e9b5e871faf44ecbc78d32a 100644 --- a/app/code/core/Mage/Backend/view/adminhtml/widget/button.phtml +++ b/app/code/core/Mage/Backend/view/adminhtml/widget/button.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Backend/view/adminhtml/widget/button/split.phtml b/app/code/core/Mage/Backend/view/adminhtml/widget/button/split.phtml index 420cdc2c8a8c1a947e4440baf7549b5043b2a47e..fb6b5ed80016fd6ad08abd8d827050eef1b4ae24 100644 --- a/app/code/core/Mage/Backend/view/adminhtml/widget/button/split.phtml +++ b/app/code/core/Mage/Backend/view/adminhtml/widget/button/split.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Backend/view/adminhtml/widget/form.phtml b/app/code/core/Mage/Backend/view/adminhtml/widget/form.phtml index 805fc32ba2e72ac43b0e8b37b6c3b44772304ca3..965e373752dd43559d822d5817743d6d7256cc9e 100644 --- a/app/code/core/Mage/Backend/view/adminhtml/widget/form.phtml +++ b/app/code/core/Mage/Backend/view/adminhtml/widget/form.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /** $this Mage_Backend_Block_Widget_Form */ diff --git a/app/code/core/Mage/Backend/view/adminhtml/widget/form/container.phtml b/app/code/core/Mage/Backend/view/adminhtml/widget/form/container.phtml index 8b8c2b753a135bf8448dc1733e7a9d307db65db8..c7973ccbe9ae3812064a7ea5378be54ee0552e2a 100644 --- a/app/code/core/Mage/Backend/view/adminhtml/widget/form/container.phtml +++ b/app/code/core/Mage/Backend/view/adminhtml/widget/form/container.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Backend/view/adminhtml/widget/form/element.phtml b/app/code/core/Mage/Backend/view/adminhtml/widget/form/element.phtml index fce64d22a98abd140bbe3570ada4c6be58c14996..2ad108006f6ad9841e4e500318266d4e8c12efc0 100644 --- a/app/code/core/Mage/Backend/view/adminhtml/widget/form/element.phtml +++ b/app/code/core/Mage/Backend/view/adminhtml/widget/form/element.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Backend/view/adminhtml/widget/form/element/gallery.phtml b/app/code/core/Mage/Backend/view/adminhtml/widget/form/element/gallery.phtml index e25dac5732e92842309051aab56ecf0d4751e855..e8647efd59499b8db747aa5dba248a2e2f3d6d44 100644 --- a/app/code/core/Mage/Backend/view/adminhtml/widget/form/element/gallery.phtml +++ b/app/code/core/Mage/Backend/view/adminhtml/widget/form/element/gallery.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Backend/view/adminhtml/widget/form/renderer/element.phtml b/app/code/core/Mage/Backend/view/adminhtml/widget/form/renderer/element.phtml index 207c64474e82e4e5ed6246b1c1df6a02f82353fc..08dc7bbc6c627859b0eef9cb2eb3c3464da83f16 100644 --- a/app/code/core/Mage/Backend/view/adminhtml/widget/form/renderer/element.phtml +++ b/app/code/core/Mage/Backend/view/adminhtml/widget/form/renderer/element.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Backend/view/adminhtml/widget/form/renderer/fieldset.phtml b/app/code/core/Mage/Backend/view/adminhtml/widget/form/renderer/fieldset.phtml index f831057450a7b051dfb13797be89cb07789c52e3..bc6732d762d54e0c9968ebfe4f6dc8164321e5f7 100644 --- a/app/code/core/Mage/Backend/view/adminhtml/widget/form/renderer/fieldset.phtml +++ b/app/code/core/Mage/Backend/view/adminhtml/widget/form/renderer/fieldset.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Backend/view/adminhtml/widget/form/renderer/fieldset/element.phtml b/app/code/core/Mage/Backend/view/adminhtml/widget/form/renderer/fieldset/element.phtml index 89685bc56595abf698731afb8c959952c66051cb..14e1819d21d29499bece1495de007e6c2bd62c97 100644 --- a/app/code/core/Mage/Backend/view/adminhtml/widget/form/renderer/fieldset/element.phtml +++ b/app/code/core/Mage/Backend/view/adminhtml/widget/form/renderer/fieldset/element.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Backend/view/adminhtml/widget/grid.phtml b/app/code/core/Mage/Backend/view/adminhtml/widget/grid.phtml index a75bee8fff8e73e3eebe346ae817e856ed7dba72..f102cb970320128a74e90d0155b16d5f6f5a08da 100644 --- a/app/code/core/Mage/Backend/view/adminhtml/widget/grid.phtml +++ b/app/code/core/Mage/Backend/view/adminhtml/widget/grid.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Backend/view/adminhtml/widget/grid/column_set.phtml b/app/code/core/Mage/Backend/view/adminhtml/widget/grid/column_set.phtml index ab4fd7eae2f7bdbbb4d2d9b90a8011f9caf99988..a9d0f925bef5b99505d0789e008b02b5efbc63b8 100644 --- a/app/code/core/Mage/Backend/view/adminhtml/widget/grid/column_set.phtml +++ b/app/code/core/Mage/Backend/view/adminhtml/widget/grid/column_set.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Backend/view/adminhtml/widget/grid/container.phtml b/app/code/core/Mage/Backend/view/adminhtml/widget/grid/container.phtml index 6c0c25451fb6fc6565ae547df27eeae419217104..0a3d9a8f26839ea5654d663fc02deca84185095f 100644 --- a/app/code/core/Mage/Backend/view/adminhtml/widget/grid/container.phtml +++ b/app/code/core/Mage/Backend/view/adminhtml/widget/grid/container.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Backend/view/adminhtml/widget/grid/export.phtml b/app/code/core/Mage/Backend/view/adminhtml/widget/grid/export.phtml index f9aaf7e7587172073c8b16d74b3c1bfdce94b616..7e41f72e168335428dbb881408d2c3a456665585 100644 --- a/app/code/core/Mage/Backend/view/adminhtml/widget/grid/export.phtml +++ b/app/code/core/Mage/Backend/view/adminhtml/widget/grid/export.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Backend/view/adminhtml/widget/grid/extended.phtml b/app/code/core/Mage/Backend/view/adminhtml/widget/grid/extended.phtml index f4315e19f7950b475c5a45d1e44f8cf0c9983eca..6c76ad7e36f76157d93be5f408b6a8740ff5c2e5 100644 --- a/app/code/core/Mage/Backend/view/adminhtml/widget/grid/extended.phtml +++ b/app/code/core/Mage/Backend/view/adminhtml/widget/grid/extended.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Backend/view/adminhtml/widget/grid/massaction.phtml b/app/code/core/Mage/Backend/view/adminhtml/widget/grid/massaction.phtml index 765ea80135e3796beb24203b72768a555bb6c0bb..a68669fbd91ca9f55e601c0eecae171461824ece 100644 --- a/app/code/core/Mage/Backend/view/adminhtml/widget/grid/massaction.phtml +++ b/app/code/core/Mage/Backend/view/adminhtml/widget/grid/massaction.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Backend/view/adminhtml/widget/grid/massaction_extended.phtml b/app/code/core/Mage/Backend/view/adminhtml/widget/grid/massaction_extended.phtml index 90dbb90d73457aa90bde1d13bb1340bb1644be5a..076cc58e634d6909c9584250c00544112aec52f5 100644 --- a/app/code/core/Mage/Backend/view/adminhtml/widget/grid/massaction_extended.phtml +++ b/app/code/core/Mage/Backend/view/adminhtml/widget/grid/massaction_extended.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /** diff --git a/app/code/core/Mage/Backend/view/adminhtml/widget/grid/serializer.phtml b/app/code/core/Mage/Backend/view/adminhtml/widget/grid/serializer.phtml index 667220fe85b4359e559a41b3d709a27f3ac72d8e..db1ff39699d127526d1a8f0ed07ea706f2500ddb 100644 --- a/app/code/core/Mage/Backend/view/adminhtml/widget/grid/serializer.phtml +++ b/app/code/core/Mage/Backend/view/adminhtml/widget/grid/serializer.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Backend/view/adminhtml/widget/tabs.phtml b/app/code/core/Mage/Backend/view/adminhtml/widget/tabs.phtml index 8c27dce13f4ff300c19ebb3d9f9356185d67f354..4ea074c8409da67cb3875490b23066c1fc9074b2 100644 --- a/app/code/core/Mage/Backend/view/adminhtml/widget/tabs.phtml +++ b/app/code/core/Mage/Backend/view/adminhtml/widget/tabs.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Backend/view/adminhtml/widget/view/container.phtml b/app/code/core/Mage/Backend/view/adminhtml/widget/view/container.phtml index 77306ac59e1ab733c7244778bd9bb211e0bf910c..1063d75d25b50af9cbf3125a9a2258857b593a22 100644 --- a/app/code/core/Mage/Backend/view/adminhtml/widget/view/container.phtml +++ b/app/code/core/Mage/Backend/view/adminhtml/widget/view/container.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Backup/Block/Adminhtml/Grid/Column/Renderer/Download.php b/app/code/core/Mage/Backup/Block/Adminhtml/Grid/Column/Renderer/Download.php index 1ec5e4e80285d6fb17ba21b26ded8c7efdd18aec..f2db29902dbe1c4fb7b136c4ec98cb164ba4fcb7 100644 --- a/app/code/core/Mage/Backup/Block/Adminhtml/Grid/Column/Renderer/Download.php +++ b/app/code/core/Mage/Backup/Block/Adminhtml/Grid/Column/Renderer/Download.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backup - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backup/Block/Adminhtml/Grid/Column/Rollback.php b/app/code/core/Mage/Backup/Block/Adminhtml/Grid/Column/Rollback.php index 29bd93b243da11c4f522f137a2dd602e50bbe3a5..8b556679369b76ad06f94de5238d9c120ac9787e 100644 --- a/app/code/core/Mage/Backup/Block/Adminhtml/Grid/Column/Rollback.php +++ b/app/code/core/Mage/Backup/Block/Adminhtml/Grid/Column/Rollback.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backup - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backup/Exception.php b/app/code/core/Mage/Backup/Exception.php index 900eed36dd42171e0e7aae17cd341ac093d1822a..837e58ce29bcb5b32432f851eae8b8a0da917343 100644 --- a/app/code/core/Mage/Backup/Exception.php +++ b/app/code/core/Mage/Backup/Exception.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backup - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backup/Helper/Data.php b/app/code/core/Mage/Backup/Helper/Data.php index 59c9e6a81fed96321e68df43d825ffb105354a88..feb928c8d501da0c3bea15b02b7e65ff0c14bdd3 100644 --- a/app/code/core/Mage/Backup/Helper/Data.php +++ b/app/code/core/Mage/Backup/Helper/Data.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backup - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backup/Model/Backup.php b/app/code/core/Mage/Backup/Model/Backup.php index 17ca2ad8bbdbc83469a86fe6e58e6594a355ac91..6458e0221ac7cd568ca5cded9696639d190e946f 100644 --- a/app/code/core/Mage/Backup/Model/Backup.php +++ b/app/code/core/Mage/Backup/Model/Backup.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backup - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backup/Model/Config/Backend/Cron.php b/app/code/core/Mage/Backup/Model/Config/Backend/Cron.php index 9238d20859b1049020ca24d1da1b502469ab316b..0effc2d52dc4394cf20d428bc386706b851be752 100644 --- a/app/code/core/Mage/Backup/Model/Config/Backend/Cron.php +++ b/app/code/core/Mage/Backup/Model/Config/Backend/Cron.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backup - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backup/Model/Config/Source/Type.php b/app/code/core/Mage/Backup/Model/Config/Source/Type.php index e9e955ec1cde1f961e0763a57b7065bf8933176c..f388c7773eb0defcfcad66d37a47da6d23251490 100644 --- a/app/code/core/Mage/Backup/Model/Config/Source/Type.php +++ b/app/code/core/Mage/Backup/Model/Config/Source/Type.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backup - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backup/Model/Db.php b/app/code/core/Mage/Backup/Model/Db.php index e93db70dc39ec528aafb026faca5731e296d8e10..09d00a890e6f4b198692cbe3e39665728b84bd69 100644 --- a/app/code/core/Mage/Backup/Model/Db.php +++ b/app/code/core/Mage/Backup/Model/Db.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backup - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backup/Model/Fs/Collection.php b/app/code/core/Mage/Backup/Model/Fs/Collection.php index bc471f1e6f55850148b70e529aff9240e1f9721e..fdaf5394b63314e1d1723d0373a3e9467bc9bc48 100644 --- a/app/code/core/Mage/Backup/Model/Fs/Collection.php +++ b/app/code/core/Mage/Backup/Model/Fs/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backup - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backup/Model/Grid/Options.php b/app/code/core/Mage/Backup/Model/Grid/Options.php index 41db8797bd4ebc1bc833d3494cbe6b6441e29e50..461f89fab000ee89a75689af92501326d419b14e 100644 --- a/app/code/core/Mage/Backup/Model/Grid/Options.php +++ b/app/code/core/Mage/Backup/Model/Grid/Options.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backup/Model/Observer.php b/app/code/core/Mage/Backup/Model/Observer.php index 4153b751369cb24978d565b9a2cf279921649fe2..f7e83c1373b2358daab50139e2951380188e5c84 100644 --- a/app/code/core/Mage/Backup/Model/Observer.php +++ b/app/code/core/Mage/Backup/Model/Observer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backup - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backup/Model/Resource/Db.php b/app/code/core/Mage/Backup/Model/Resource/Db.php index fe7a7a9b703f1955737f159ebaeac0893bc8009f..756852ca90c52b0c9414f09a439b8b0b4bf76ae5 100755 --- a/app/code/core/Mage/Backup/Model/Resource/Db.php +++ b/app/code/core/Mage/Backup/Model/Resource/Db.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backup - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backup/Model/Resource/Helper/Mysql4.php b/app/code/core/Mage/Backup/Model/Resource/Helper/Mysql4.php index 6b342fe290d9b732679fb5e19a6e609c45a37adb..93549fe310f83b8e655206c56c7b205f2e9f5d45 100644 --- a/app/code/core/Mage/Backup/Model/Resource/Helper/Mysql4.php +++ b/app/code/core/Mage/Backup/Model/Resource/Helper/Mysql4.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backup - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Backup/etc/adminhtml/acl.xml b/app/code/core/Mage/Backup/etc/adminhtml/acl.xml index 4f1acb2963bd3267f5a07d1a3562337411601329..187f7c6f0856b512d7863f407fcb7cead89d07fd 100644 --- a/app/code/core/Mage/Backup/etc/adminhtml/acl.xml +++ b/app/code/core/Mage/Backup/etc/adminhtml/acl.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Backup - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Backup/etc/adminhtml/menu.xml b/app/code/core/Mage/Backup/etc/adminhtml/menu.xml index 5faf36cfefbff28759cd18101494e3712d4c13c8..206f0db444b3461003627767b611c9ad27012e53 100644 --- a/app/code/core/Mage/Backup/etc/adminhtml/menu.xml +++ b/app/code/core/Mage/Backup/etc/adminhtml/menu.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Backup - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Backup/etc/adminhtml/system.xml b/app/code/core/Mage/Backup/etc/adminhtml/system.xml index c2af96a0be561cbeaebcfe13b00d13823c181978..7f9b374354792156c2b434f88a4e32b7a77f1236 100644 --- a/app/code/core/Mage/Backup/etc/adminhtml/system.xml +++ b/app/code/core/Mage/Backup/etc/adminhtml/system.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Backup - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Backup/etc/config.xml b/app/code/core/Mage/Backup/etc/config.xml index a6fa694b54ded1d3fe19e02fa868354d7109568a..eecf9a70abae448e746568dc6efb816f9d656fc4 100644 --- a/app/code/core/Mage/Backup/etc/config.xml +++ b/app/code/core/Mage/Backup/etc/config.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Backup - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Bundle/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Bundle.php b/app/code/core/Mage/Bundle/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Bundle.php index d0efc1767e0a252dd84f0654c27f297c2e04ae52..ba3048758991629db879bf7bf0e4f835b8551229 100644 --- a/app/code/core/Mage/Bundle/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Bundle.php +++ b/app/code/core/Mage/Bundle/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Bundle.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Bundle - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Bundle/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/Checkbox.php b/app/code/core/Mage/Bundle/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/Checkbox.php index 892579202c1d402087091c09f89c5a592ee55612..1e382c06d44f5e5d74b2b17863f32b5e2322d452 100644 --- a/app/code/core/Mage/Bundle/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/Checkbox.php +++ b/app/code/core/Mage/Bundle/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/Checkbox.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Bundle - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Bundle/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/Multi.php b/app/code/core/Mage/Bundle/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/Multi.php index d22e42412d0e50e828973f8996146a319f352357..3947292c197434f048b509802a773583dc994424 100644 --- a/app/code/core/Mage/Bundle/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/Multi.php +++ b/app/code/core/Mage/Bundle/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/Multi.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Bundle - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Bundle/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/Radio.php b/app/code/core/Mage/Bundle/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/Radio.php index fdf35ba953fef931450242d1f7c3a543122dd729..737c8700514aa79f282f9f77dcd5c3687fc824de 100644 --- a/app/code/core/Mage/Bundle/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/Radio.php +++ b/app/code/core/Mage/Bundle/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/Radio.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Bundle - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Bundle/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/Select.php b/app/code/core/Mage/Bundle/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/Select.php index b99689ddda614aeea6f7e391d65e8d65bc15de43..02d2811b7f077ce93a5e3fa34f4298f4b2d9d8da 100644 --- a/app/code/core/Mage/Bundle/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/Select.php +++ b/app/code/core/Mage/Bundle/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/Select.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Bundle - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Attributes.php b/app/code/core/Mage/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Attributes.php index 30b430afbc3ac0b1091f43704eeab5f25518c9c4..fda9437b6b5f08c82f51f975fb5ee78bc4b9fa9d 100644 --- a/app/code/core/Mage/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Attributes.php +++ b/app/code/core/Mage/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Attributes.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Bundle - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Attributes/Extend.php b/app/code/core/Mage/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Attributes/Extend.php index 5043194e581e01db0d3439c0b919f490f78fe054..b8e4b8540baa080dd229c8ecc520a09d4e137842 100644 --- a/app/code/core/Mage/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Attributes/Extend.php +++ b/app/code/core/Mage/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Attributes/Extend.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Bundle - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Attributes/Special.php b/app/code/core/Mage/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Attributes/Special.php index c4215b32013e6a55d4b28bff8cb55c971adb2039..41b3455f2f6bd7686b13d5ee03662167c032e495 100644 --- a/app/code/core/Mage/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Attributes/Special.php +++ b/app/code/core/Mage/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Attributes/Special.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Bundle - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle.php b/app/code/core/Mage/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle.php index 0bedbaaabd9614289e9f8b1219c3d04f4748cac2..3cfa4a58f23257d6f539535142a67770b077c178 100644 --- a/app/code/core/Mage/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle.php +++ b/app/code/core/Mage/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Bundle - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/Option.php b/app/code/core/Mage/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/Option.php index ad1b2e7e2a34c16c422d97347865835c892f2d2c..a618e8245bc33e1cc0e81b076ddf63157810aeed 100644 --- a/app/code/core/Mage/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/Option.php +++ b/app/code/core/Mage/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/Option.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Bundle - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/Option/Search.php b/app/code/core/Mage/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/Option/Search.php index 608500116da018f72f555800be4868006907a07c..8936a2f809caaf3682599d02f91a1ae40e43d496 100644 --- a/app/code/core/Mage/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/Option/Search.php +++ b/app/code/core/Mage/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/Option/Search.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Bundle - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/Option/Search/Grid.php b/app/code/core/Mage/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/Option/Search/Grid.php index 75fa2171186e67be0db7087226e34b6c46d7575d..b3e679acf48064bbab6dcfaa7aa961fb42e044d0 100644 --- a/app/code/core/Mage/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/Option/Search/Grid.php +++ b/app/code/core/Mage/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/Option/Search/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Bundle - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/Option/Selection.php b/app/code/core/Mage/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/Option/Selection.php index 8193b00349a0ab8a57b64681c91bc8ecacee4dac..482e8817b960ec220789c47b7e529daddf61d7cc 100644 --- a/app/code/core/Mage/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/Option/Selection.php +++ b/app/code/core/Mage/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/Option/Selection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Bundle - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tabs.php b/app/code/core/Mage/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tabs.php index d082c0239e3c268f6434127c8c7f7f7e09ed7713..081a177bceeee2d36b4ff9760fc8a14792608ae3 100644 --- a/app/code/core/Mage/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tabs.php +++ b/app/code/core/Mage/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tabs.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Bundle - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Bundle/Block/Adminhtml/Sales/Order/Items/Renderer.php b/app/code/core/Mage/Bundle/Block/Adminhtml/Sales/Order/Items/Renderer.php index 815a0597f08977aaefa419cc8664aaca25096228..d443701291588fe8777bcbc92c70de845acd5000 100644 --- a/app/code/core/Mage/Bundle/Block/Adminhtml/Sales/Order/Items/Renderer.php +++ b/app/code/core/Mage/Bundle/Block/Adminhtml/Sales/Order/Items/Renderer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Bundle - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Bundle/Block/Adminhtml/Sales/Order/View/Items/Renderer.php b/app/code/core/Mage/Bundle/Block/Adminhtml/Sales/Order/View/Items/Renderer.php index 9e0a631a1d43e6be277c8220f27b2b34f7d9627d..3b0b92776ff33315705839257d52bb0adf340abb 100644 --- a/app/code/core/Mage/Bundle/Block/Adminhtml/Sales/Order/View/Items/Renderer.php +++ b/app/code/core/Mage/Bundle/Block/Adminhtml/Sales/Order/View/Items/Renderer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Bundle - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Bundle/Block/Catalog/Product/Price.php b/app/code/core/Mage/Bundle/Block/Catalog/Product/Price.php index 0ec9c2b23e157fc285420ec96e647f088047b450..65d08d6c043887303eee94285b3dcf985d9da47b 100644 --- a/app/code/core/Mage/Bundle/Block/Catalog/Product/Price.php +++ b/app/code/core/Mage/Bundle/Block/Catalog/Product/Price.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Bundle - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Bundle/Block/Catalog/Product/View.php b/app/code/core/Mage/Bundle/Block/Catalog/Product/View.php index e1469fe08ed8afbb1d19f911889fc527dd1a0655..375b7920b414ba260c8b1d199a34e64a792039fc 100644 --- a/app/code/core/Mage/Bundle/Block/Catalog/Product/View.php +++ b/app/code/core/Mage/Bundle/Block/Catalog/Product/View.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Bundle - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Bundle/Block/Catalog/Product/View/Type/Bundle.php b/app/code/core/Mage/Bundle/Block/Catalog/Product/View/Type/Bundle.php index 9b80a0321cf7c564f5166207a75114ef981b00ff..b501a9eff5d18210e41013a76ded085a50e76263 100644 --- a/app/code/core/Mage/Bundle/Block/Catalog/Product/View/Type/Bundle.php +++ b/app/code/core/Mage/Bundle/Block/Catalog/Product/View/Type/Bundle.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Bundle - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Bundle/Block/Catalog/Product/View/Type/Bundle/Option.php b/app/code/core/Mage/Bundle/Block/Catalog/Product/View/Type/Bundle/Option.php index c38678327bd85c117bceb2a1e7796e28f78684c6..85b25f33035691b547b730558d822d55e874524b 100644 --- a/app/code/core/Mage/Bundle/Block/Catalog/Product/View/Type/Bundle/Option.php +++ b/app/code/core/Mage/Bundle/Block/Catalog/Product/View/Type/Bundle/Option.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Bundle - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Bundle/Block/Catalog/Product/View/Type/Bundle/Option/Checkbox.php b/app/code/core/Mage/Bundle/Block/Catalog/Product/View/Type/Bundle/Option/Checkbox.php index b2a72c37297f6bc42a9e6a28bd0dbaead69aa64d..cb1c2efd99392d069f1adc4aa2e5ae3e71736b7d 100644 --- a/app/code/core/Mage/Bundle/Block/Catalog/Product/View/Type/Bundle/Option/Checkbox.php +++ b/app/code/core/Mage/Bundle/Block/Catalog/Product/View/Type/Bundle/Option/Checkbox.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Bundle - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Bundle/Block/Catalog/Product/View/Type/Bundle/Option/Multi.php b/app/code/core/Mage/Bundle/Block/Catalog/Product/View/Type/Bundle/Option/Multi.php index b6594e23a9ae12eac7ee0aeb6e43de337ece5a64..98a9de05be9e90595af8b1ba92c7d4575fc33429 100644 --- a/app/code/core/Mage/Bundle/Block/Catalog/Product/View/Type/Bundle/Option/Multi.php +++ b/app/code/core/Mage/Bundle/Block/Catalog/Product/View/Type/Bundle/Option/Multi.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Bundle - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Bundle/Block/Catalog/Product/View/Type/Bundle/Option/Radio.php b/app/code/core/Mage/Bundle/Block/Catalog/Product/View/Type/Bundle/Option/Radio.php index 8d76101d5c94c1494b433eabc0cbc394facc5db1..961db109555d31aace3773f4ca6956928fe0e24e 100644 --- a/app/code/core/Mage/Bundle/Block/Catalog/Product/View/Type/Bundle/Option/Radio.php +++ b/app/code/core/Mage/Bundle/Block/Catalog/Product/View/Type/Bundle/Option/Radio.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Bundle - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Bundle/Block/Catalog/Product/View/Type/Bundle/Option/Select.php b/app/code/core/Mage/Bundle/Block/Catalog/Product/View/Type/Bundle/Option/Select.php index 919031133845557e6f68c9d6ca3d3f30519e530d..75980552911f1e480ee5b6f01a54fad20e0b8aa3 100644 --- a/app/code/core/Mage/Bundle/Block/Catalog/Product/View/Type/Bundle/Option/Select.php +++ b/app/code/core/Mage/Bundle/Block/Catalog/Product/View/Type/Bundle/Option/Select.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Bundle - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Bundle/Block/Checkout/Cart/Item/Renderer.php b/app/code/core/Mage/Bundle/Block/Checkout/Cart/Item/Renderer.php index b3af724fb4ca77cf9f45a986703752a9bb56930f..7d5662ca303c089d653e088a04add8304c54c82f 100644 --- a/app/code/core/Mage/Bundle/Block/Checkout/Cart/Item/Renderer.php +++ b/app/code/core/Mage/Bundle/Block/Checkout/Cart/Item/Renderer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Bundle - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Bundle/Block/Sales/Order/Items/Renderer.php b/app/code/core/Mage/Bundle/Block/Sales/Order/Items/Renderer.php index a5fd75b751e45f9c93cefe389888af38e0f4e88f..db692e56617094c3adafcbf8d3c12acc06251bbf 100644 --- a/app/code/core/Mage/Bundle/Block/Sales/Order/Items/Renderer.php +++ b/app/code/core/Mage/Bundle/Block/Sales/Order/Items/Renderer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Bundle - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Bundle/Helper/Catalog/Product/Configuration.php b/app/code/core/Mage/Bundle/Helper/Catalog/Product/Configuration.php index cbef7d905a983292c51d62e25d8c6f8f20d74472..b269b1b35497ace78db3235d50867ad3fb32092e 100644 --- a/app/code/core/Mage/Bundle/Helper/Catalog/Product/Configuration.php +++ b/app/code/core/Mage/Bundle/Helper/Catalog/Product/Configuration.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Bundle - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Bundle/Helper/Data.php b/app/code/core/Mage/Bundle/Helper/Data.php index 0dcff901252e4ba79472cf0a7f7a596b577e2993..0e7bb27456873c4abeec887c7c17b1f4f615aaa8 100644 --- a/app/code/core/Mage/Bundle/Helper/Data.php +++ b/app/code/core/Mage/Bundle/Helper/Data.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Bundle - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Bundle/Model/Observer.php b/app/code/core/Mage/Bundle/Model/Observer.php index 2867285ffb404a0e1a095d4e452eb0b10add45fe..00a5c8e4d91c1d270635d2657f320114ccfc8e90 100644 --- a/app/code/core/Mage/Bundle/Model/Observer.php +++ b/app/code/core/Mage/Bundle/Model/Observer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Bundle - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Bundle/Model/Option.php b/app/code/core/Mage/Bundle/Model/Option.php index f5dfa1b9ea542d0010cf63ff947bc698af51838f..08b973b0ce9b7fb16dc9f46dd15eb7813957b1b5 100644 --- a/app/code/core/Mage/Bundle/Model/Option.php +++ b/app/code/core/Mage/Bundle/Model/Option.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Bundle - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Bundle/Model/Price/Index.php b/app/code/core/Mage/Bundle/Model/Price/Index.php index 44af3ceb964cee0cbe711aef1b211e28558fc4d4..c15a3e7774897c0bde53ecaaa9e23a7732f2c86e 100644 --- a/app/code/core/Mage/Bundle/Model/Price/Index.php +++ b/app/code/core/Mage/Bundle/Model/Price/Index.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Bundle - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Bundle/Model/Product/Attribute/Source/Price/View.php b/app/code/core/Mage/Bundle/Model/Product/Attribute/Source/Price/View.php index db85c4821e3e86f602c72e96296330557a34a41c..e20e4fcc71b0c100a1fc12332d8b83152c67d8a7 100644 --- a/app/code/core/Mage/Bundle/Model/Product/Attribute/Source/Price/View.php +++ b/app/code/core/Mage/Bundle/Model/Product/Attribute/Source/Price/View.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Bundle - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Bundle/Model/Product/Price.php b/app/code/core/Mage/Bundle/Model/Product/Price.php index f187b1aa16e37c779a47d6da8bb36174b8b2dd12..fc46d9307f600b0de924767162fbb4f529f12668 100644 --- a/app/code/core/Mage/Bundle/Model/Product/Price.php +++ b/app/code/core/Mage/Bundle/Model/Product/Price.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Bundle - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Bundle/Model/Product/Type.php b/app/code/core/Mage/Bundle/Model/Product/Type.php index a3e68cea000414ce35af66f8975bb32189fdaaf1..0b9f1f838400d1a416a57cf9d74231b4fc823c76 100644 --- a/app/code/core/Mage/Bundle/Model/Product/Type.php +++ b/app/code/core/Mage/Bundle/Model/Product/Type.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Bundle - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Bundle/Model/Resource/Bundle.php b/app/code/core/Mage/Bundle/Model/Resource/Bundle.php index 35c8cc88e15516d50e4f85c8c0c738394b254a47..cbd6cb2af0a7fc9efb7de57438d8947394cc3454 100755 --- a/app/code/core/Mage/Bundle/Model/Resource/Bundle.php +++ b/app/code/core/Mage/Bundle/Model/Resource/Bundle.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Bundle - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Bundle/Model/Resource/Indexer/Price.php b/app/code/core/Mage/Bundle/Model/Resource/Indexer/Price.php index 707138a893f5dc51757dba4ca89b0f0fb9660d32..b3a1f6f959360fcfcfbbf88df5ceb2cec5d9d4c3 100755 --- a/app/code/core/Mage/Bundle/Model/Resource/Indexer/Price.php +++ b/app/code/core/Mage/Bundle/Model/Resource/Indexer/Price.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Bundle - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Bundle/Model/Resource/Indexer/Stock.php b/app/code/core/Mage/Bundle/Model/Resource/Indexer/Stock.php index 9072507fdcd1e69a4cda3f07d9a07a9eda54fee5..3f200623a49a648191c3c88417539538ebc5c4ed 100755 --- a/app/code/core/Mage/Bundle/Model/Resource/Indexer/Stock.php +++ b/app/code/core/Mage/Bundle/Model/Resource/Indexer/Stock.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Bundle - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Bundle/Model/Resource/Option.php b/app/code/core/Mage/Bundle/Model/Resource/Option.php index bfda0570685f8ac77269918c0d66070d875235cc..67a2fb9a5410dba090d98ebd865da92550153a2c 100755 --- a/app/code/core/Mage/Bundle/Model/Resource/Option.php +++ b/app/code/core/Mage/Bundle/Model/Resource/Option.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Bundle - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Bundle/Model/Resource/Option/Collection.php b/app/code/core/Mage/Bundle/Model/Resource/Option/Collection.php index 6b74571e7fc69c822eec21b8207ff860f96114f5..6888a785e387a0104c297f96ff415ccc3d40c851 100755 --- a/app/code/core/Mage/Bundle/Model/Resource/Option/Collection.php +++ b/app/code/core/Mage/Bundle/Model/Resource/Option/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Bundle - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Bundle/Model/Resource/Price/Index.php b/app/code/core/Mage/Bundle/Model/Resource/Price/Index.php index 51d1571516a9dfc8b498cf508573f2a9ebb25886..ea544da3ac9a66a939a15727378cccc04f17bf20 100755 --- a/app/code/core/Mage/Bundle/Model/Resource/Price/Index.php +++ b/app/code/core/Mage/Bundle/Model/Resource/Price/Index.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Bundle - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Bundle/Model/Resource/Selection.php b/app/code/core/Mage/Bundle/Model/Resource/Selection.php index 105dea5de056278f011256d11644d00c38baa15a..f69a4747dab6ce909a502c20f2175eefabdadd9d 100755 --- a/app/code/core/Mage/Bundle/Model/Resource/Selection.php +++ b/app/code/core/Mage/Bundle/Model/Resource/Selection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Bundle - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Bundle/Model/Resource/Selection/Collection.php b/app/code/core/Mage/Bundle/Model/Resource/Selection/Collection.php index dddf937e53ea33dede165c8c63b9f943350ab12d..b79f0a6dbbaf9fe3a74275d9e26489326c553ef4 100755 --- a/app/code/core/Mage/Bundle/Model/Resource/Selection/Collection.php +++ b/app/code/core/Mage/Bundle/Model/Resource/Selection/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Bundle - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Bundle/Model/Sales/Order/Pdf/Items/Abstract.php b/app/code/core/Mage/Bundle/Model/Sales/Order/Pdf/Items/Abstract.php index 89f6300fc9ac751013798bec0da29ad04aa00433..0e551424bca4120303b6ce500f2e5b81aea2fc6e 100644 --- a/app/code/core/Mage/Bundle/Model/Sales/Order/Pdf/Items/Abstract.php +++ b/app/code/core/Mage/Bundle/Model/Sales/Order/Pdf/Items/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Bundle - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Bundle/Model/Sales/Order/Pdf/Items/Creditmemo.php b/app/code/core/Mage/Bundle/Model/Sales/Order/Pdf/Items/Creditmemo.php index 286d32ce6112c4ddaae413e48b07cdb2f0327d4a..5043f7d989a3d03b94a79227f95cc3a7851cbd28 100644 --- a/app/code/core/Mage/Bundle/Model/Sales/Order/Pdf/Items/Creditmemo.php +++ b/app/code/core/Mage/Bundle/Model/Sales/Order/Pdf/Items/Creditmemo.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Bundle - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Bundle/Model/Sales/Order/Pdf/Items/Invoice.php b/app/code/core/Mage/Bundle/Model/Sales/Order/Pdf/Items/Invoice.php index 96ec8ab22edd7b17ccc29949985dcca8921a80da..ffca8f988b86aee2a24d91b5199527ceb5a6f740 100644 --- a/app/code/core/Mage/Bundle/Model/Sales/Order/Pdf/Items/Invoice.php +++ b/app/code/core/Mage/Bundle/Model/Sales/Order/Pdf/Items/Invoice.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Bundle - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Bundle/Model/Sales/Order/Pdf/Items/Shipment.php b/app/code/core/Mage/Bundle/Model/Sales/Order/Pdf/Items/Shipment.php index 8081af1d81ff4e1fac54eb334c410d570f76c597..b31514490462e416182f3772028c9782ec27aac7 100644 --- a/app/code/core/Mage/Bundle/Model/Sales/Order/Pdf/Items/Shipment.php +++ b/app/code/core/Mage/Bundle/Model/Sales/Order/Pdf/Items/Shipment.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Bundle - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Bundle/Model/Selection.php b/app/code/core/Mage/Bundle/Model/Selection.php index 657d2ad63dec4531fff6d3149681ae0adecc135d..900b2a1627e4be258a8aa6f7b6f35567bee6ccc0 100644 --- a/app/code/core/Mage/Bundle/Model/Selection.php +++ b/app/code/core/Mage/Bundle/Model/Selection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Bundle - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Bundle/Model/Source/Option/Selection/Price/Type.php b/app/code/core/Mage/Bundle/Model/Source/Option/Selection/Price/Type.php index 47432e5e9e6383a82149fd9731b8625dbbb91a0b..722d48afe0334790ae8ad56a1c1446a5478f9af0 100644 --- a/app/code/core/Mage/Bundle/Model/Source/Option/Selection/Price/Type.php +++ b/app/code/core/Mage/Bundle/Model/Source/Option/Selection/Price/Type.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Bundle - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Bundle/Model/Source/Option/Type.php b/app/code/core/Mage/Bundle/Model/Source/Option/Type.php index 2771c1f4e70b3050cf9a18f30e05778b67f0a260..8a7def09c5d476fcaed7397f23d05fb9beb6ca05 100644 --- a/app/code/core/Mage/Bundle/Model/Source/Option/Type.php +++ b/app/code/core/Mage/Bundle/Model/Source/Option/Type.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Bundle - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Bundle/controllers/Adminhtml/Bundle/Product/EditController.php b/app/code/core/Mage/Bundle/controllers/Adminhtml/Bundle/Product/EditController.php index c0a67eabd7b00fcd230719dfebcc6a01a8ef4b8b..357c2bf7eba869f898388a8a41acb602e8b77e4a 100644 --- a/app/code/core/Mage/Bundle/controllers/Adminhtml/Bundle/Product/EditController.php +++ b/app/code/core/Mage/Bundle/controllers/Adminhtml/Bundle/Product/EditController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Bundle - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Bundle/controllers/Adminhtml/Bundle/SelectionController.php b/app/code/core/Mage/Bundle/controllers/Adminhtml/Bundle/SelectionController.php index 3d40f288c11a4ccb318bceec091f3ece4c74ab3c..d041f05138577a51829acc26873a738dd90858f0 100644 --- a/app/code/core/Mage/Bundle/controllers/Adminhtml/Bundle/SelectionController.php +++ b/app/code/core/Mage/Bundle/controllers/Adminhtml/Bundle/SelectionController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Bundle - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Bundle/data/bundle_setup/data-install-1.6.0.0.php b/app/code/core/Mage/Bundle/data/bundle_setup/data-install-1.6.0.0.php index fa72cd7487f6933457b7b76d1f9d060d7187ab49..6616cccd0f6de762db782c9d2d34fc4657ed2de1 100644 --- a/app/code/core/Mage/Bundle/data/bundle_setup/data-install-1.6.0.0.php +++ b/app/code/core/Mage/Bundle/data/bundle_setup/data-install-1.6.0.0.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Bundle - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Bundle/data/bundle_setup/data-upgrade-1.6.0.1-1.6.0.0.2.php b/app/code/core/Mage/Bundle/data/bundle_setup/data-upgrade-1.6.0.1-1.6.0.0.2.php index 3e5d41efb005b4c210ac80927ed081ddb68e73aa..41e82654034524afe3da6fd7ddc24bc1a110d3e7 100644 --- a/app/code/core/Mage/Bundle/data/bundle_setup/data-upgrade-1.6.0.1-1.6.0.0.2.php +++ b/app/code/core/Mage/Bundle/data/bundle_setup/data-upgrade-1.6.0.1-1.6.0.0.2.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Bundle - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Bundle/etc/config.xml b/app/code/core/Mage/Bundle/etc/config.xml index 6b1949675655db548fcb735934bdbd669ebbb352..9aaa24ca19aae649cee3319a213ba96be098659a 100644 --- a/app/code/core/Mage/Bundle/etc/config.xml +++ b/app/code/core/Mage/Bundle/etc/config.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Bundle - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Bundle/sql/bundle_setup/install-1.6.0.0.php b/app/code/core/Mage/Bundle/sql/bundle_setup/install-1.6.0.0.php index 567be55f696d8a8d35468eb8b082269d8f5b30ae..bca19e58fe21d152c4eec41a0b266d14fbee4cb6 100644 --- a/app/code/core/Mage/Bundle/sql/bundle_setup/install-1.6.0.0.php +++ b/app/code/core/Mage/Bundle/sql/bundle_setup/install-1.6.0.0.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Bundle - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Bundle/sql/bundle_setup/mysql4-upgrade-1.6.0.0-1.6.0.0.1.php b/app/code/core/Mage/Bundle/sql/bundle_setup/mysql4-upgrade-1.6.0.0-1.6.0.0.1.php index fa346bf9ae40bfb437b8e1fd98a5ef63237ec48e..afcf2afecbbe7c9891306e55985bcc784a9c8704 100644 --- a/app/code/core/Mage/Bundle/sql/bundle_setup/mysql4-upgrade-1.6.0.0-1.6.0.0.1.php +++ b/app/code/core/Mage/Bundle/sql/bundle_setup/mysql4-upgrade-1.6.0.0-1.6.0.0.1.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Bundle - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Bundle/sql/bundle_setup/upgrade-1.6.0.0-1.6.0.0.1.php b/app/code/core/Mage/Bundle/sql/bundle_setup/upgrade-1.6.0.0-1.6.0.0.1.php index 6121b0d80087af203eeea537fb9c2030d6e915d3..2aabfa4b20b8d7b71769a4251f8715db904bfb84 100644 --- a/app/code/core/Mage/Bundle/sql/bundle_setup/upgrade-1.6.0.0-1.6.0.0.1.php +++ b/app/code/core/Mage/Bundle/sql/bundle_setup/upgrade-1.6.0.0-1.6.0.0.1.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Bundle - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Bundle/view/adminhtml/layout.xml b/app/code/core/Mage/Bundle/view/adminhtml/layout.xml index aeaa7b7333d598fdcb987f178c2c5bea9dccc9bd..b2584771ca643733f80cbc859845ffa2be44070b 100644 --- a/app/code/core/Mage/Bundle/view/adminhtml/layout.xml +++ b/app/code/core/Mage/Bundle/view/adminhtml/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Bundle/view/adminhtml/product/composite/fieldset/options/bundle.phtml b/app/code/core/Mage/Bundle/view/adminhtml/product/composite/fieldset/options/bundle.phtml index 8afffd5595593e43bd32c36a3a5435eff20a9646..425a3e4a8026636823ad901e327247caf8069607 100644 --- a/app/code/core/Mage/Bundle/view/adminhtml/product/composite/fieldset/options/bundle.phtml +++ b/app/code/core/Mage/Bundle/view/adminhtml/product/composite/fieldset/options/bundle.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Bundle/view/adminhtml/product/composite/fieldset/options/type/checkbox.phtml b/app/code/core/Mage/Bundle/view/adminhtml/product/composite/fieldset/options/type/checkbox.phtml index c3f7e2290ab8b1e470a6aa133ee2c8c304a03db0..f28bd1912bb642089e6b3e10366fe90eef72fa54 100644 --- a/app/code/core/Mage/Bundle/view/adminhtml/product/composite/fieldset/options/type/checkbox.phtml +++ b/app/code/core/Mage/Bundle/view/adminhtml/product/composite/fieldset/options/type/checkbox.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Bundle/view/adminhtml/product/composite/fieldset/options/type/multi.phtml b/app/code/core/Mage/Bundle/view/adminhtml/product/composite/fieldset/options/type/multi.phtml index 5fa320b64c8c99ab2ce3624840fabf0b6cf5da32..1e1c58d4ff65d602ed246b411e3e848a2174ba84 100644 --- a/app/code/core/Mage/Bundle/view/adminhtml/product/composite/fieldset/options/type/multi.phtml +++ b/app/code/core/Mage/Bundle/view/adminhtml/product/composite/fieldset/options/type/multi.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Bundle/view/adminhtml/product/composite/fieldset/options/type/radio.phtml b/app/code/core/Mage/Bundle/view/adminhtml/product/composite/fieldset/options/type/radio.phtml index e1c36e2f69debaac24003bff75e3f1afb4bd93e9..063964e825db029115be532773455351e0658841 100644 --- a/app/code/core/Mage/Bundle/view/adminhtml/product/composite/fieldset/options/type/radio.phtml +++ b/app/code/core/Mage/Bundle/view/adminhtml/product/composite/fieldset/options/type/radio.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Bundle/view/adminhtml/product/composite/fieldset/options/type/select.phtml b/app/code/core/Mage/Bundle/view/adminhtml/product/composite/fieldset/options/type/select.phtml index 8bb9c4d643bee9df013e0a84fae2bf7e2029b035..5a512862d371b55b00032d3a03b39bb775d10b5d 100644 --- a/app/code/core/Mage/Bundle/view/adminhtml/product/composite/fieldset/options/type/select.phtml +++ b/app/code/core/Mage/Bundle/view/adminhtml/product/composite/fieldset/options/type/select.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Bundle/view/adminhtml/product/edit/bundle.phtml b/app/code/core/Mage/Bundle/view/adminhtml/product/edit/bundle.phtml index 588ab951108d73d82c6c1f16d970f0632685b3b2..d5653c16673f9644db3f3b34dd794fda128fcdaf 100644 --- a/app/code/core/Mage/Bundle/view/adminhtml/product/edit/bundle.phtml +++ b/app/code/core/Mage/Bundle/view/adminhtml/product/edit/bundle.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Bundle/view/adminhtml/product/edit/bundle/option.phtml b/app/code/core/Mage/Bundle/view/adminhtml/product/edit/bundle/option.phtml index 82e956f7e04b17fedd9f3a24160a8a8e5d6bb7dc..9554a1729747cc4459adcd58706fbd013e5b5fa7 100644 --- a/app/code/core/Mage/Bundle/view/adminhtml/product/edit/bundle/option.phtml +++ b/app/code/core/Mage/Bundle/view/adminhtml/product/edit/bundle/option.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Bundle/view/adminhtml/product/edit/bundle/option/search.phtml b/app/code/core/Mage/Bundle/view/adminhtml/product/edit/bundle/option/search.phtml index c701b4a37f777dc3a9f55be2bac916f03127ba84..88ff45f13cd779599091c3852eb4d3a4d4b063c6 100644 --- a/app/code/core/Mage/Bundle/view/adminhtml/product/edit/bundle/option/search.phtml +++ b/app/code/core/Mage/Bundle/view/adminhtml/product/edit/bundle/option/search.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Bundle/view/adminhtml/product/edit/bundle/option/selection.phtml b/app/code/core/Mage/Bundle/view/adminhtml/product/edit/bundle/option/selection.phtml index caa194fbdb069b712d74abc116ed4af2e97dc0ca..27e7ce46814483633b7106ba592381a91752a633 100644 --- a/app/code/core/Mage/Bundle/view/adminhtml/product/edit/bundle/option/selection.phtml +++ b/app/code/core/Mage/Bundle/view/adminhtml/product/edit/bundle/option/selection.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Bundle/view/adminhtml/sales/creditmemo/create/items/renderer.phtml b/app/code/core/Mage/Bundle/view/adminhtml/sales/creditmemo/create/items/renderer.phtml index 79dc6c79386bf256c368176ce18b17dc98c6297c..23d71080d79d2820244f6ed2ecea789ae6a6cb58 100644 --- a/app/code/core/Mage/Bundle/view/adminhtml/sales/creditmemo/create/items/renderer.phtml +++ b/app/code/core/Mage/Bundle/view/adminhtml/sales/creditmemo/create/items/renderer.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Bundle/view/adminhtml/sales/creditmemo/view/items/renderer.phtml b/app/code/core/Mage/Bundle/view/adminhtml/sales/creditmemo/view/items/renderer.phtml index 649c4bc473778b668ca60783499fb86f2f7c44cb..5d94b8683e9319eb21533b7d9512d64a6b612caf 100644 --- a/app/code/core/Mage/Bundle/view/adminhtml/sales/creditmemo/view/items/renderer.phtml +++ b/app/code/core/Mage/Bundle/view/adminhtml/sales/creditmemo/view/items/renderer.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Bundle/view/adminhtml/sales/invoice/create/items/renderer.phtml b/app/code/core/Mage/Bundle/view/adminhtml/sales/invoice/create/items/renderer.phtml index 881f34012087adf67defafd707580ab308ee1aed..91f9b9510511a9692270ab1de9bae678381728d9 100644 --- a/app/code/core/Mage/Bundle/view/adminhtml/sales/invoice/create/items/renderer.phtml +++ b/app/code/core/Mage/Bundle/view/adminhtml/sales/invoice/create/items/renderer.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Bundle/view/adminhtml/sales/invoice/view/items/renderer.phtml b/app/code/core/Mage/Bundle/view/adminhtml/sales/invoice/view/items/renderer.phtml index 5bf5d425f2eb20e446d48451b6da0181ee77c22f..154ef92374f5ac48bbfc1d21812ab3b747f29882 100644 --- a/app/code/core/Mage/Bundle/view/adminhtml/sales/invoice/view/items/renderer.phtml +++ b/app/code/core/Mage/Bundle/view/adminhtml/sales/invoice/view/items/renderer.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Bundle/view/adminhtml/sales/order/view/items/renderer.phtml b/app/code/core/Mage/Bundle/view/adminhtml/sales/order/view/items/renderer.phtml index a04fa047eee89d4e658fdaff3a975e553e4a513b..6168aa0ddf77b2ecec2df9d1bb5945dbee809305 100644 --- a/app/code/core/Mage/Bundle/view/adminhtml/sales/order/view/items/renderer.phtml +++ b/app/code/core/Mage/Bundle/view/adminhtml/sales/order/view/items/renderer.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Bundle/view/adminhtml/sales/shipment/create/items/renderer.phtml b/app/code/core/Mage/Bundle/view/adminhtml/sales/shipment/create/items/renderer.phtml index dd110bc6ea983affde7efe260dc2d95cc758590a..075ddcc2cc47731f573694dcaccfa602382a95b3 100644 --- a/app/code/core/Mage/Bundle/view/adminhtml/sales/shipment/create/items/renderer.phtml +++ b/app/code/core/Mage/Bundle/view/adminhtml/sales/shipment/create/items/renderer.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Bundle/view/adminhtml/sales/shipment/view/items/renderer.phtml b/app/code/core/Mage/Bundle/view/adminhtml/sales/shipment/view/items/renderer.phtml index d3a213e36d422e76a74ff7fb6dbab7cfcce4dbca..0f57a74de360a6eed8a6e0eafced20c4044a011c 100644 --- a/app/code/core/Mage/Bundle/view/adminhtml/sales/shipment/view/items/renderer.phtml +++ b/app/code/core/Mage/Bundle/view/adminhtml/sales/shipment/view/items/renderer.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Bundle/view/frontend/bundle.js b/app/code/core/Mage/Bundle/view/frontend/bundle.js index 4870fb1146dbfab46d509d3a900e381ddefcdc91..610bd65bc36983069b625383f44ac7b360fd5b63 100644 --- a/app/code/core/Mage/Bundle/view/frontend/bundle.js +++ b/app/code/core/Mage/Bundle/view/frontend/bundle.js @@ -19,7 +19,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ if(typeof Product=='undefined') { diff --git a/app/code/core/Mage/Bundle/view/frontend/catalog/product/price.phtml b/app/code/core/Mage/Bundle/view/frontend/catalog/product/price.phtml index 01e23e7612fa413f2b8afbe91cb6fbb7e162811d..d5893dc683e6fe5b58d044c476a9fc4d0301532b 100644 --- a/app/code/core/Mage/Bundle/view/frontend/catalog/product/price.phtml +++ b/app/code/core/Mage/Bundle/view/frontend/catalog/product/price.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Bundle/view/frontend/catalog/product/view/options/notice.phtml b/app/code/core/Mage/Bundle/view/frontend/catalog/product/view/options/notice.phtml index 6a4dcc583679186de23cbbf367271804a01a5bf5..892f46d32e8fd2720a0816aff2ae2db54e8f7005 100644 --- a/app/code/core/Mage/Bundle/view/frontend/catalog/product/view/options/notice.phtml +++ b/app/code/core/Mage/Bundle/view/frontend/catalog/product/view/options/notice.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Bundle/view/frontend/catalog/product/view/price.phtml b/app/code/core/Mage/Bundle/view/frontend/catalog/product/view/price.phtml index 61d8436859d783ef6c7290023ea37ef476c207ac..038e757e29c9749b2adedc1e188976cd598aa25f 100644 --- a/app/code/core/Mage/Bundle/view/frontend/catalog/product/view/price.phtml +++ b/app/code/core/Mage/Bundle/view/frontend/catalog/product/view/price.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Bundle/view/frontend/catalog/product/view/tierprices.phtml b/app/code/core/Mage/Bundle/view/frontend/catalog/product/view/tierprices.phtml index 0949f12c6acf58abd51b3030fcf454874ea161c2..2eb7bc3bae7d2f8052b6036e4fa25c1deb7aa8d0 100644 --- a/app/code/core/Mage/Bundle/view/frontend/catalog/product/view/tierprices.phtml +++ b/app/code/core/Mage/Bundle/view/frontend/catalog/product/view/tierprices.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Bundle/view/frontend/catalog/product/view/type/bundle.phtml b/app/code/core/Mage/Bundle/view/frontend/catalog/product/view/type/bundle.phtml index dfcc324cfdd20662737e33549483c42a049358da..115b5dacd38b5a6401875ecdb2b706114fc9cf97 100644 --- a/app/code/core/Mage/Bundle/view/frontend/catalog/product/view/type/bundle.phtml +++ b/app/code/core/Mage/Bundle/view/frontend/catalog/product/view/type/bundle.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Bundle/view/frontend/catalog/product/view/type/bundle/option/checkbox.phtml b/app/code/core/Mage/Bundle/view/frontend/catalog/product/view/type/bundle/option/checkbox.phtml index 58d5f0699fe3be02ea2a668aea5fe57764a77562..3e1825691244348a196f35424ca16d2ed87483fa 100644 --- a/app/code/core/Mage/Bundle/view/frontend/catalog/product/view/type/bundle/option/checkbox.phtml +++ b/app/code/core/Mage/Bundle/view/frontend/catalog/product/view/type/bundle/option/checkbox.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Bundle/view/frontend/catalog/product/view/type/bundle/option/multi.phtml b/app/code/core/Mage/Bundle/view/frontend/catalog/product/view/type/bundle/option/multi.phtml index 2b2f712cdd1d1e106e8177bed5dd4e88ce0cb92f..a99cd790d1e5eb1c0bf876d64f983e930a9abbc6 100644 --- a/app/code/core/Mage/Bundle/view/frontend/catalog/product/view/type/bundle/option/multi.phtml +++ b/app/code/core/Mage/Bundle/view/frontend/catalog/product/view/type/bundle/option/multi.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Bundle/view/frontend/catalog/product/view/type/bundle/option/radio.phtml b/app/code/core/Mage/Bundle/view/frontend/catalog/product/view/type/bundle/option/radio.phtml index 76fdc529c96ae2bfc764410e8aa9eb423800fb0c..05bd0042c942565f2a8dd13f8a1db7b7386ac3c7 100644 --- a/app/code/core/Mage/Bundle/view/frontend/catalog/product/view/type/bundle/option/radio.phtml +++ b/app/code/core/Mage/Bundle/view/frontend/catalog/product/view/type/bundle/option/radio.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Bundle/view/frontend/catalog/product/view/type/bundle/option/select.phtml b/app/code/core/Mage/Bundle/view/frontend/catalog/product/view/type/bundle/option/select.phtml index ffc00b89b8e21ddf6ab8ec3a5585aee0d8346a82..fd64b4a5295288fd7c157d387f74a5a2d7194f16 100644 --- a/app/code/core/Mage/Bundle/view/frontend/catalog/product/view/type/bundle/option/select.phtml +++ b/app/code/core/Mage/Bundle/view/frontend/catalog/product/view/type/bundle/option/select.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Bundle/view/frontend/catalog/product/view/type/bundle/options.phtml b/app/code/core/Mage/Bundle/view/frontend/catalog/product/view/type/bundle/options.phtml index b06b24cbc3d129a1cb77f447d44e8d1b750c8b93..3d4a7105b98978eac036e0633f7a1de5d054d784 100644 --- a/app/code/core/Mage/Bundle/view/frontend/catalog/product/view/type/bundle/options.phtml +++ b/app/code/core/Mage/Bundle/view/frontend/catalog/product/view/type/bundle/options.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Bundle/view/frontend/email/order/items/creditmemo/default.phtml b/app/code/core/Mage/Bundle/view/frontend/email/order/items/creditmemo/default.phtml index 018d4cf9e6c6f37245dd3b12dffae614a09f7c9d..cf8507949fe960721536f3101d693e6c944675a8 100644 --- a/app/code/core/Mage/Bundle/view/frontend/email/order/items/creditmemo/default.phtml +++ b/app/code/core/Mage/Bundle/view/frontend/email/order/items/creditmemo/default.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Bundle/view/frontend/email/order/items/invoice/default.phtml b/app/code/core/Mage/Bundle/view/frontend/email/order/items/invoice/default.phtml index ede4a61e2109ea0be0497c2bef50e5649f086f54..f3b372156c3011498a097249349b9ae3c1253271 100644 --- a/app/code/core/Mage/Bundle/view/frontend/email/order/items/invoice/default.phtml +++ b/app/code/core/Mage/Bundle/view/frontend/email/order/items/invoice/default.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Bundle/view/frontend/email/order/items/order/default.phtml b/app/code/core/Mage/Bundle/view/frontend/email/order/items/order/default.phtml index 164ca5030542e238e9d5507c95daa6cb2ff881a2..815e14b25d6ba0be378c6afdb898f346ac7069ba 100644 --- a/app/code/core/Mage/Bundle/view/frontend/email/order/items/order/default.phtml +++ b/app/code/core/Mage/Bundle/view/frontend/email/order/items/order/default.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Bundle/view/frontend/email/order/items/shipment/default.phtml b/app/code/core/Mage/Bundle/view/frontend/email/order/items/shipment/default.phtml index 4dce97584cda4b705c5bd3b0a47042165da55404..aea9049cc1d3de1d843e3ed9a4bbea73b6efa41b 100644 --- a/app/code/core/Mage/Bundle/view/frontend/email/order/items/shipment/default.phtml +++ b/app/code/core/Mage/Bundle/view/frontend/email/order/items/shipment/default.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Bundle/view/frontend/layout.xml b/app/code/core/Mage/Bundle/view/frontend/layout.xml index 3faccb6943d61d216216eb04f35e2c60a0ed3e59..ac822467e9ec1d398e540aadf9e5dda400f8ca29 100644 --- a/app/code/core/Mage/Bundle/view/frontend/layout.xml +++ b/app/code/core/Mage/Bundle/view/frontend/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Bundle/view/frontend/rss/catalog/product/price.phtml b/app/code/core/Mage/Bundle/view/frontend/rss/catalog/product/price.phtml index f3a41fb9fbeee40413a808608f8f498fed090283..b4a2975d6b08857906a91b471ae5e52089b0c386 100644 --- a/app/code/core/Mage/Bundle/view/frontend/rss/catalog/product/price.phtml +++ b/app/code/core/Mage/Bundle/view/frontend/rss/catalog/product/price.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Bundle/view/frontend/sales/order/creditmemo/items/renderer.phtml b/app/code/core/Mage/Bundle/view/frontend/sales/order/creditmemo/items/renderer.phtml index 6c238cc687a95d284466821206777bb5b85567e9..50c4f6df4dc5380f68d9e1ba324008883cb22d5e 100644 --- a/app/code/core/Mage/Bundle/view/frontend/sales/order/creditmemo/items/renderer.phtml +++ b/app/code/core/Mage/Bundle/view/frontend/sales/order/creditmemo/items/renderer.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Bundle/view/frontend/sales/order/invoice/items/renderer.phtml b/app/code/core/Mage/Bundle/view/frontend/sales/order/invoice/items/renderer.phtml index 979bc884fd8aa7688d357f019762aa27ef26cb8d..608a7a38c42c2ff3636b966c37548c1cd6f498e1 100644 --- a/app/code/core/Mage/Bundle/view/frontend/sales/order/invoice/items/renderer.phtml +++ b/app/code/core/Mage/Bundle/view/frontend/sales/order/invoice/items/renderer.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Bundle/view/frontend/sales/order/items/renderer.phtml b/app/code/core/Mage/Bundle/view/frontend/sales/order/items/renderer.phtml index aced6b670c593403809f362c2361fe2e148b7f04..f2487579274eb28a8c9cfd308bb4c1b68972f368 100644 --- a/app/code/core/Mage/Bundle/view/frontend/sales/order/items/renderer.phtml +++ b/app/code/core/Mage/Bundle/view/frontend/sales/order/items/renderer.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Bundle/view/frontend/sales/order/shipment/items/renderer.phtml b/app/code/core/Mage/Bundle/view/frontend/sales/order/shipment/items/renderer.phtml index 427f19548b2115d9d1f27aeaaf056dcbf21a28a4..9d3d3433b6e3e88dd72c6bf94130022f22bbad4c 100644 --- a/app/code/core/Mage/Bundle/view/frontend/sales/order/shipment/items/renderer.phtml +++ b/app/code/core/Mage/Bundle/view/frontend/sales/order/shipment/items/renderer.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Captcha/Block/Captcha.php b/app/code/core/Mage/Captcha/Block/Captcha.php index e53fee4857aec2925873fbe39d9686e89cf514d1..0469e0d50382ecb1adaba09ba75ec1bb1a624c8d 100755 --- a/app/code/core/Mage/Captcha/Block/Captcha.php +++ b/app/code/core/Mage/Captcha/Block/Captcha.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Captcha - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Captcha/Block/Captcha/Zend.php b/app/code/core/Mage/Captcha/Block/Captcha/Zend.php index af44c81a1e7e795b63f4bd74711e4a339380a854..42a9534a3ad8ac21026d3d1e9def4feb266876ad 100755 --- a/app/code/core/Mage/Captcha/Block/Captcha/Zend.php +++ b/app/code/core/Mage/Captcha/Block/Captcha/Zend.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Captcha - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Captcha/Helper/Data.php b/app/code/core/Mage/Captcha/Helper/Data.php index 20a539ab13ee86f8cd24b1509db3e37f41f8fdcb..4d310198bc35ea8b2e14d733224009f783f02cee 100755 --- a/app/code/core/Mage/Captcha/Helper/Data.php +++ b/app/code/core/Mage/Captcha/Helper/Data.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Captcha - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Captcha/Model/Config/Font.php b/app/code/core/Mage/Captcha/Model/Config/Font.php index 46f16b386de0bd4b90dd981b29c5a8bc67a2224a..592fe56de7deb23475dbf3450afe5698f0e74b6d 100755 --- a/app/code/core/Mage/Captcha/Model/Config/Font.php +++ b/app/code/core/Mage/Captcha/Model/Config/Font.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Captcha - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Captcha/Model/Config/Form/Abstract.php b/app/code/core/Mage/Captcha/Model/Config/Form/Abstract.php index acda5e09c29b17460a966d1fddbd9017d8331ac5..6a69264c94b09a60aeb80a50c55620cacb55cea9 100755 --- a/app/code/core/Mage/Captcha/Model/Config/Form/Abstract.php +++ b/app/code/core/Mage/Captcha/Model/Config/Form/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Captcha - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Captcha/Model/Config/Form/Backend.php b/app/code/core/Mage/Captcha/Model/Config/Form/Backend.php index abd764cd5235676c9247d0b4e908ec3d25ba9189..404967ed2c705077cc90487d304b205bd0b5082d 100755 --- a/app/code/core/Mage/Captcha/Model/Config/Form/Backend.php +++ b/app/code/core/Mage/Captcha/Model/Config/Form/Backend.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Captcha - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Captcha/Model/Config/Form/Frontend.php b/app/code/core/Mage/Captcha/Model/Config/Form/Frontend.php index fdbbc3566d4ff50789daba66e3871cd2bfe6bdf6..bec2481f98c65bb5f92477b411424730bb637262 100755 --- a/app/code/core/Mage/Captcha/Model/Config/Form/Frontend.php +++ b/app/code/core/Mage/Captcha/Model/Config/Form/Frontend.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Captcha - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Captcha/Model/Config/Mode.php b/app/code/core/Mage/Captcha/Model/Config/Mode.php index e21e598a5739bf4ca491b3ba1421c6a044d42704..40a491d88683f12d5e9a8b228a472295da86d370 100755 --- a/app/code/core/Mage/Captcha/Model/Config/Mode.php +++ b/app/code/core/Mage/Captcha/Model/Config/Mode.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Captcha - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Captcha/Model/Interface.php b/app/code/core/Mage/Captcha/Model/Interface.php index 8ab893e4f2e8c58bc83d3297875de0031e2d44ab..2056ac7153127c5c1630214017cefcb87f4c91af 100755 --- a/app/code/core/Mage/Captcha/Model/Interface.php +++ b/app/code/core/Mage/Captcha/Model/Interface.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Captcha - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Captcha/Model/Observer.php b/app/code/core/Mage/Captcha/Model/Observer.php index 657d66a245d9ded8e5db5d8b27015756b767d29c..0db11b8a1dae094093888d6a93bbaeb116268f0a 100755 --- a/app/code/core/Mage/Captcha/Model/Observer.php +++ b/app/code/core/Mage/Captcha/Model/Observer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Captcha - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Captcha/Model/Resource/Log.php b/app/code/core/Mage/Captcha/Model/Resource/Log.php index f05c813e4b9c47c0acb12f1fdcc2a1f6d04b4f1c..27726382c871708e167427b09d13de0bcf23f09c 100755 --- a/app/code/core/Mage/Captcha/Model/Resource/Log.php +++ b/app/code/core/Mage/Captcha/Model/Resource/Log.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Captcha - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Captcha/Model/Zend.php b/app/code/core/Mage/Captcha/Model/Zend.php index f2dea1ace1650fd868444a87ac354b219ca42a5c..063e4862e1cec164768d8e14cf4927ce12cd9ac5 100755 --- a/app/code/core/Mage/Captcha/Model/Zend.php +++ b/app/code/core/Mage/Captcha/Model/Zend.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Captcha - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Captcha/controllers/Adminhtml/RefreshController.php b/app/code/core/Mage/Captcha/controllers/Adminhtml/RefreshController.php index f6f6963c8e6c02d7e5ca6044a8c0b492ef37ec84..71925c66666ecde67c4ef38d193b1c04954ae393 100755 --- a/app/code/core/Mage/Captcha/controllers/Adminhtml/RefreshController.php +++ b/app/code/core/Mage/Captcha/controllers/Adminhtml/RefreshController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Captcha - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Captcha/controllers/RefreshController.php b/app/code/core/Mage/Captcha/controllers/RefreshController.php index ed561d922d69b7708f82660a22ad3b1df421f760..09498cb57d99c2b555bac1ccdf7a7bd584020590 100755 --- a/app/code/core/Mage/Captcha/controllers/RefreshController.php +++ b/app/code/core/Mage/Captcha/controllers/RefreshController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Captcha - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Captcha/etc/adminhtml/system.xml b/app/code/core/Mage/Captcha/etc/adminhtml/system.xml index 1f60125dd6830e69acd15cea425cb861e5e354f6..a06ab882b26bad8f95b9587085f7fe0867114c49 100644 --- a/app/code/core/Mage/Captcha/etc/adminhtml/system.xml +++ b/app/code/core/Mage/Captcha/etc/adminhtml/system.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Captcha - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Captcha/etc/config.xml b/app/code/core/Mage/Captcha/etc/config.xml index 933fb7c39008aeb7a994b19eb423993f4965034b..2603c37b5ef88c1f47cfed3d51b749a5cf138f71 100755 --- a/app/code/core/Mage/Captcha/etc/config.xml +++ b/app/code/core/Mage/Captcha/etc/config.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Captcha - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Captcha/sql/captcha_setup/install-1.7.0.0.0.php b/app/code/core/Mage/Captcha/sql/captcha_setup/install-1.7.0.0.0.php index 1706a0f0e5c5b34535c5319fcfea136453c32748..239a4229c6518a64efbbb5d6a0fa2a1be3586743 100644 --- a/app/code/core/Mage/Captcha/sql/captcha_setup/install-1.7.0.0.0.php +++ b/app/code/core/Mage/Captcha/sql/captcha_setup/install-1.7.0.0.0.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Captcha - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Captcha/view/adminhtml/layout.xml b/app/code/core/Mage/Captcha/view/adminhtml/layout.xml index 216c26f08e6242bc5d4afd5fd557ffedbb970d76..d7ae45c8788a7a943ad63821ba86e0ad02a389ca 100644 --- a/app/code/core/Mage/Captcha/view/adminhtml/layout.xml +++ b/app/code/core/Mage/Captcha/view/adminhtml/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Captcha/view/adminhtml/zend.phtml b/app/code/core/Mage/Captcha/view/adminhtml/zend.phtml index c58272f2c1619c375532431f5498b4c4e89d693b..4c8ead547c4c7c9dc82fa979d2548344f1dc0872 100644 --- a/app/code/core/Mage/Captcha/view/adminhtml/zend.phtml +++ b/app/code/core/Mage/Captcha/view/adminhtml/zend.phtml @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Captcha - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Captcha/view/frontend/captcha.js b/app/code/core/Mage/Captcha/view/frontend/captcha.js index 9a651e07f24fde770dbb6e5387d7278269f571bd..9a64912705fb1de5b5a3641954c9037c8760d188 100644 --- a/app/code/core/Mage/Captcha/view/frontend/captcha.js +++ b/app/code/core/Mage/Captcha/view/frontend/captcha.js @@ -19,7 +19,7 @@ * * @category mage * @package captcha - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /*jshint browser:true jquery:true*/ diff --git a/app/code/core/Mage/Captcha/view/frontend/layout.xml b/app/code/core/Mage/Captcha/view/frontend/layout.xml index af29ebacfe499846e9f58311e24e91224030fc40..3bb7d3e10a951c81fbd3925d3f7bcea5dc51e57c 100644 --- a/app/code/core/Mage/Captcha/view/frontend/layout.xml +++ b/app/code/core/Mage/Captcha/view/frontend/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Captcha/view/frontend/onepage.js b/app/code/core/Mage/Captcha/view/frontend/onepage.js index 3ea4667be0ff210680f43907bf97bd14852296b1..679744983840317421f09c29e02967d2b8381d56 100644 --- a/app/code/core/Mage/Captcha/view/frontend/onepage.js +++ b/app/code/core/Mage/Captcha/view/frontend/onepage.js @@ -19,7 +19,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ document.observe('billing-request:completed', function(event) { diff --git a/app/code/core/Mage/Captcha/view/frontend/zend.phtml b/app/code/core/Mage/Captcha/view/frontend/zend.phtml index e6ffb438be29529253d4c0591a62346b13ee9165..b10b0172c2737e811b3259ca9bb65fae3c3a3535 100644 --- a/app/code/core/Mage/Captcha/view/frontend/zend.phtml +++ b/app/code/core/Mage/Captcha/view/frontend/zend.phtml @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Captcha - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Catalog/Block/Adminhtml/System/Config/Form/Field/Select/Flatcatalog.php b/app/code/core/Mage/Catalog/Block/Adminhtml/System/Config/Form/Field/Select/Flatcatalog.php index 357f8d5d168cc8a5cd45cb33ce7377a6d5913cd4..c9d529529326cc87379349a30024b9ee17513f7c 100644 --- a/app/code/core/Mage/Catalog/Block/Adminhtml/System/Config/Form/Field/Select/Flatcatalog.php +++ b/app/code/core/Mage/Catalog/Block/Adminhtml/System/Config/Form/Field/Select/Flatcatalog.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Block/Adminhtml/System/Config/Form/Field/Select/Flatproduct.php b/app/code/core/Mage/Catalog/Block/Adminhtml/System/Config/Form/Field/Select/Flatproduct.php index 0376a39ac61a1d9ca74f3657425e98cc288639a6..305c4c624e815c45b7a88e773998760fcd38bdcc 100644 --- a/app/code/core/Mage/Catalog/Block/Adminhtml/System/Config/Form/Field/Select/Flatproduct.php +++ b/app/code/core/Mage/Catalog/Block/Adminhtml/System/Config/Form/Field/Select/Flatproduct.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Block/Breadcrumbs.php b/app/code/core/Mage/Catalog/Block/Breadcrumbs.php index 1b878173679b412bdba96f775b08b6ba0471c978..7660e27dbb52fdd4db44a6c2ca31365572facd66 100644 --- a/app/code/core/Mage/Catalog/Block/Breadcrumbs.php +++ b/app/code/core/Mage/Catalog/Block/Breadcrumbs.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Block/Category/View.php b/app/code/core/Mage/Catalog/Block/Category/View.php index 5f1036de0bc50329cc51884e9e178a8edf03512b..65650d829e0e310c48950869e13ef80c2a21239f 100644 --- a/app/code/core/Mage/Catalog/Block/Category/View.php +++ b/app/code/core/Mage/Catalog/Block/Category/View.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Block/Category/Widget/Link.php b/app/code/core/Mage/Catalog/Block/Category/Widget/Link.php index fbffecdda00976ffefe6347b7ca28588ce4dc884..13b20da3e9c2a3cb8c4fd366a4052da3a1924d36 100644 --- a/app/code/core/Mage/Catalog/Block/Category/Widget/Link.php +++ b/app/code/core/Mage/Catalog/Block/Category/Widget/Link.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Block/Layer/Filter/Abstract.php b/app/code/core/Mage/Catalog/Block/Layer/Filter/Abstract.php index ace1c82b1e1bed6b60774c26ed745801b5459c99..d29b367d240fbc673ae4177ed41de69e7b775a71 100644 --- a/app/code/core/Mage/Catalog/Block/Layer/Filter/Abstract.php +++ b/app/code/core/Mage/Catalog/Block/Layer/Filter/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Block/Layer/Filter/Attribute.php b/app/code/core/Mage/Catalog/Block/Layer/Filter/Attribute.php index 72408577c0654d3b79a4b962029f7e9674ffd99b..c4832d08b3926c158081d31577b28e16a779b1c9 100644 --- a/app/code/core/Mage/Catalog/Block/Layer/Filter/Attribute.php +++ b/app/code/core/Mage/Catalog/Block/Layer/Filter/Attribute.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Block/Layer/Filter/Category.php b/app/code/core/Mage/Catalog/Block/Layer/Filter/Category.php index 427110dd8963e1db9bc493e524e74e96ae8f15ae..df61a34571199569bb160ca88a9039e0ee9a6b35 100644 --- a/app/code/core/Mage/Catalog/Block/Layer/Filter/Category.php +++ b/app/code/core/Mage/Catalog/Block/Layer/Filter/Category.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Block/Layer/Filter/Decimal.php b/app/code/core/Mage/Catalog/Block/Layer/Filter/Decimal.php index edb2b5d77df4efbc07f72ae191784a9e9c4943db..323cab0134860f407b87f6d45b25b3cb4319ff0c 100644 --- a/app/code/core/Mage/Catalog/Block/Layer/Filter/Decimal.php +++ b/app/code/core/Mage/Catalog/Block/Layer/Filter/Decimal.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Block/Layer/Filter/Price.php b/app/code/core/Mage/Catalog/Block/Layer/Filter/Price.php index ef0b90f290ff0f25d6e84263e6c90dde6276e0c6..f3ab49d7664057cb9fa7b03b292a82dd91ef3f2f 100644 --- a/app/code/core/Mage/Catalog/Block/Layer/Filter/Price.php +++ b/app/code/core/Mage/Catalog/Block/Layer/Filter/Price.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Block/Layer/State.php b/app/code/core/Mage/Catalog/Block/Layer/State.php index 0866748817758b4172b70d51548f1fd932cab529..640024e3ae6b85468b5d384a65cdc924c109a365 100644 --- a/app/code/core/Mage/Catalog/Block/Layer/State.php +++ b/app/code/core/Mage/Catalog/Block/Layer/State.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Block/Layer/View.php b/app/code/core/Mage/Catalog/Block/Layer/View.php index 2216232a99282cf2a796f914709c7f8987860ded..f33efc0aa60ebddb7602348ac240132a4142ec17 100644 --- a/app/code/core/Mage/Catalog/Block/Layer/View.php +++ b/app/code/core/Mage/Catalog/Block/Layer/View.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Block/Navigation.php b/app/code/core/Mage/Catalog/Block/Navigation.php index e5e2fabdf5748af667b8bb44aef5e2720b1d04ce..4174baea9b95040cf36df336597765b047825362 100644 --- a/app/code/core/Mage/Catalog/Block/Navigation.php +++ b/app/code/core/Mage/Catalog/Block/Navigation.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Block/Product.php b/app/code/core/Mage/Catalog/Block/Product.php index 1ee30705eb7869918711b72fedd6420c045bdb48..9f7b0eff7667dc51b0032fc0c915bf5630bdda4d 100644 --- a/app/code/core/Mage/Catalog/Block/Product.php +++ b/app/code/core/Mage/Catalog/Block/Product.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Block/Product/Abstract.php b/app/code/core/Mage/Catalog/Block/Product/Abstract.php index 75f2f6420b1f5fb8344ae7bed3d76b3204e2d96e..7eb9b6e5b069d9920521fa29706c1255e8b2ced8 100644 --- a/app/code/core/Mage/Catalog/Block/Product/Abstract.php +++ b/app/code/core/Mage/Catalog/Block/Product/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Block/Product/Compare/Abstract.php b/app/code/core/Mage/Catalog/Block/Product/Compare/Abstract.php index 6637d6df9041572ba739f3ad42ba238563a5b90c..0128d1561b9005ef50297e8d5611690fc97fa914 100644 --- a/app/code/core/Mage/Catalog/Block/Product/Compare/Abstract.php +++ b/app/code/core/Mage/Catalog/Block/Product/Compare/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Block/Product/Compare/List.php b/app/code/core/Mage/Catalog/Block/Product/Compare/List.php index 98a5c71fac65777ada66b171786df1848bd70a0d..28fe03342d6b46261b89156189ad4b02eb88d2ce 100644 --- a/app/code/core/Mage/Catalog/Block/Product/Compare/List.php +++ b/app/code/core/Mage/Catalog/Block/Product/Compare/List.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Block/Product/Compare/Sidebar.php b/app/code/core/Mage/Catalog/Block/Product/Compare/Sidebar.php index fbaee1c62019d54c02cf9f85f1c5636e452bd581..1120656cab19d4e14ecb384291edbae1ac7fb3b0 100644 --- a/app/code/core/Mage/Catalog/Block/Product/Compare/Sidebar.php +++ b/app/code/core/Mage/Catalog/Block/Product/Compare/Sidebar.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Block/Product/Configurable/AssociatedSelector/Backend/Grid/ColumnSet.php b/app/code/core/Mage/Catalog/Block/Product/Configurable/AssociatedSelector/Backend/Grid/ColumnSet.php index b80c319eff758350f81e72be2e17334172b1fe36..d1c6e04fd95526addd28fa60ff6f6d57b7ba3b50 100644 --- a/app/code/core/Mage/Catalog/Block/Product/Configurable/AssociatedSelector/Backend/Grid/ColumnSet.php +++ b/app/code/core/Mage/Catalog/Block/Product/Configurable/AssociatedSelector/Backend/Grid/ColumnSet.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Block/Product/Gallery.php b/app/code/core/Mage/Catalog/Block/Product/Gallery.php index 7af7a652a20a7af409d8dee08e62414506b114fd..c55d24fc164a4430c1b23efdfc3b471f545dbc27 100644 --- a/app/code/core/Mage/Catalog/Block/Product/Gallery.php +++ b/app/code/core/Mage/Catalog/Block/Product/Gallery.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Block/Product/List.php b/app/code/core/Mage/Catalog/Block/Product/List.php index f74496d005959abc8ead8ccceb8ccea088bcd128..899946ef0a68dc9642020392704bd327abc46179 100644 --- a/app/code/core/Mage/Catalog/Block/Product/List.php +++ b/app/code/core/Mage/Catalog/Block/Product/List.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Block/Product/List/Crosssell.php b/app/code/core/Mage/Catalog/Block/Product/List/Crosssell.php index 830d2224b154bb6ad845e91b67bdd7915f6ac658..3323ec1ff0f60af0a2f3beca396eb5eec471d2ac 100644 --- a/app/code/core/Mage/Catalog/Block/Product/List/Crosssell.php +++ b/app/code/core/Mage/Catalog/Block/Product/List/Crosssell.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Block/Product/List/Promotion.php b/app/code/core/Mage/Catalog/Block/Product/List/Promotion.php index abe2ad5751b7a303ad42911b05a98d0fe52c5e64..b0854d44a1deb6e19dbbd251b0e3442a3a7e1929 100755 --- a/app/code/core/Mage/Catalog/Block/Product/List/Promotion.php +++ b/app/code/core/Mage/Catalog/Block/Product/List/Promotion.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Catalog_Block_Product_List_Promotion extends Mage_Catalog_Block_Product_List diff --git a/app/code/core/Mage/Catalog/Block/Product/List/Random.php b/app/code/core/Mage/Catalog/Block/Product/List/Random.php index 4c8f811372255f723251ccca9637f7f49c2f24c4..743db0bde1cf0ffb0817c052c3f46b6d178c5b4e 100644 --- a/app/code/core/Mage/Catalog/Block/Product/List/Random.php +++ b/app/code/core/Mage/Catalog/Block/Product/List/Random.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Block/Product/List/Related.php b/app/code/core/Mage/Catalog/Block/Product/List/Related.php index 0453d29e73f7a7a9e973042fbaaaf0018cd1f82b..af5f62f4c61f3ed67b57146ddbf0de8eb5b3c0bc 100644 --- a/app/code/core/Mage/Catalog/Block/Product/List/Related.php +++ b/app/code/core/Mage/Catalog/Block/Product/List/Related.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Block/Product/List/Toolbar.php b/app/code/core/Mage/Catalog/Block/Product/List/Toolbar.php index d4feab09f442cb014d65fb2ed1b9e3f24a4c59b0..a997a9a57d43d22ae87f1a185bc3a02ec1ac1f0c 100644 --- a/app/code/core/Mage/Catalog/Block/Product/List/Toolbar.php +++ b/app/code/core/Mage/Catalog/Block/Product/List/Toolbar.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Block/Product/List/Upsell.php b/app/code/core/Mage/Catalog/Block/Product/List/Upsell.php index 3287118b73d4728e4d6d5961c3632f0cd06212dd..0d0ae5de83e25f91f6c5a59d36fb330e635d8760 100644 --- a/app/code/core/Mage/Catalog/Block/Product/List/Upsell.php +++ b/app/code/core/Mage/Catalog/Block/Product/List/Upsell.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Block/Product/New.php b/app/code/core/Mage/Catalog/Block/Product/New.php index b4826444cd9e4f249ec3fb124ffae528573f80ca..d33bb5da0f7188230cff8150429fe3d83f53b394 100644 --- a/app/code/core/Mage/Catalog/Block/Product/New.php +++ b/app/code/core/Mage/Catalog/Block/Product/New.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Block/Product/Price.php b/app/code/core/Mage/Catalog/Block/Product/Price.php index b666c4b017430c927b46523694c8ae6c33ef9455..fa27c361c87c5711c3e3b0e5aa4af7c4c362b67f 100644 --- a/app/code/core/Mage/Catalog/Block/Product/Price.php +++ b/app/code/core/Mage/Catalog/Block/Product/Price.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Block/Product/Price/Template.php b/app/code/core/Mage/Catalog/Block/Product/Price/Template.php index 09264f819d959099ee6f2198abd426d7b631a795..791979dd6cda35114ece18a3060942ad169f828a 100644 --- a/app/code/core/Mage/Catalog/Block/Product/Price/Template.php +++ b/app/code/core/Mage/Catalog/Block/Product/Price/Template.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Block/Product/Send.php b/app/code/core/Mage/Catalog/Block/Product/Send.php index ebc408f141e8fbddf5f878c9cdd78146667ddb8d..5a6f0741c70f20fd25990456e1b457aa41235915 100644 --- a/app/code/core/Mage/Catalog/Block/Product/Send.php +++ b/app/code/core/Mage/Catalog/Block/Product/Send.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Block/Product/View.php b/app/code/core/Mage/Catalog/Block/Product/View.php index 87839a903a674551d4dd7045bcc3dc1d04d7076d..c8a70ea5779733a06eb4de107f5fc1651e14305f 100644 --- a/app/code/core/Mage/Catalog/Block/Product/View.php +++ b/app/code/core/Mage/Catalog/Block/Product/View.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Block/Product/View/Abstract.php b/app/code/core/Mage/Catalog/Block/Product/View/Abstract.php index 5ccbb22d027b20e0f2c45129694d0e7ff6eb5014..35d75846401eeba4e8eebb501b2adc4c66c3ff97 100644 --- a/app/code/core/Mage/Catalog/Block/Product/View/Abstract.php +++ b/app/code/core/Mage/Catalog/Block/Product/View/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Block/Product/View/Additional.php b/app/code/core/Mage/Catalog/Block/Product/View/Additional.php index a7b5dbceed4a3f46f6685de975b20fda60a4e93f..4262372e7ef95ad8bd52d8f27381784b1364a48b 100644 --- a/app/code/core/Mage/Catalog/Block/Product/View/Additional.php +++ b/app/code/core/Mage/Catalog/Block/Product/View/Additional.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Block/Product/View/Attributes.php b/app/code/core/Mage/Catalog/Block/Product/View/Attributes.php index 0af3fa849cc055da12810de24976b8239a806d31..cc4ce17963a012ffe79d48664802ac94dce057b9 100644 --- a/app/code/core/Mage/Catalog/Block/Product/View/Attributes.php +++ b/app/code/core/Mage/Catalog/Block/Product/View/Attributes.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Block/Product/View/Description.php b/app/code/core/Mage/Catalog/Block/Product/View/Description.php index b4375fb73f006572131181c824c11038f3f733e6..29cffcc0f8b8b68eaa666a4ede92b9b137739a63 100644 --- a/app/code/core/Mage/Catalog/Block/Product/View/Description.php +++ b/app/code/core/Mage/Catalog/Block/Product/View/Description.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Block/Product/View/Media.php b/app/code/core/Mage/Catalog/Block/Product/View/Media.php index 1c81acfabcb8fd2c15e03244e646d79732a10669..a8514b22312c5b4b07ef67ec3ab0dafada121e52 100644 --- a/app/code/core/Mage/Catalog/Block/Product/View/Media.php +++ b/app/code/core/Mage/Catalog/Block/Product/View/Media.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Block/Product/View/Options.php b/app/code/core/Mage/Catalog/Block/Product/View/Options.php index fb0d13ed8d3484f300ee3b4f774bdb0753b4b96a..9fbd4a060bde793c0559ad636cf9199534498015 100644 --- a/app/code/core/Mage/Catalog/Block/Product/View/Options.php +++ b/app/code/core/Mage/Catalog/Block/Product/View/Options.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Block/Product/View/Options/Abstract.php b/app/code/core/Mage/Catalog/Block/Product/View/Options/Abstract.php index 848a63e0335bdea1548adbeef95ebe8d01f6ad4d..326b59a285dd10bf31d445dd26d659eefb4489ee 100644 --- a/app/code/core/Mage/Catalog/Block/Product/View/Options/Abstract.php +++ b/app/code/core/Mage/Catalog/Block/Product/View/Options/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Block/Product/View/Options/Type/Date.php b/app/code/core/Mage/Catalog/Block/Product/View/Options/Type/Date.php index 23493757250d72b35ece9dbc020a6346beb6a4d4..abc951270cff6ba2a4672d46fa8411b762aec24d 100644 --- a/app/code/core/Mage/Catalog/Block/Product/View/Options/Type/Date.php +++ b/app/code/core/Mage/Catalog/Block/Product/View/Options/Type/Date.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Block/Product/View/Options/Type/Default.php b/app/code/core/Mage/Catalog/Block/Product/View/Options/Type/Default.php index fe91670690496542d27930020ef46fb235564078..c1b5607ffa6eaa2dfab0be1d5e9b53a75b2889b7 100644 --- a/app/code/core/Mage/Catalog/Block/Product/View/Options/Type/Default.php +++ b/app/code/core/Mage/Catalog/Block/Product/View/Options/Type/Default.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Block/Product/View/Options/Type/File.php b/app/code/core/Mage/Catalog/Block/Product/View/Options/Type/File.php index 1d01872cdd2cb248df01af6b73ae4f87f4c24b86..189f00d585217f27a7c60dd2fd5efb915f4d8db2 100644 --- a/app/code/core/Mage/Catalog/Block/Product/View/Options/Type/File.php +++ b/app/code/core/Mage/Catalog/Block/Product/View/Options/Type/File.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Block/Product/View/Options/Type/Select.php b/app/code/core/Mage/Catalog/Block/Product/View/Options/Type/Select.php index 0f44a0e79698c02aadd022b4d4add678d00f9343..322b14bdd534c69fcf44fdef0dd760b886a8eb9d 100644 --- a/app/code/core/Mage/Catalog/Block/Product/View/Options/Type/Select.php +++ b/app/code/core/Mage/Catalog/Block/Product/View/Options/Type/Select.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Block/Product/View/Options/Type/Text.php b/app/code/core/Mage/Catalog/Block/Product/View/Options/Type/Text.php index d010fad1895fa7cd645c16475bdff9c67eeb6059..4f5b4f957f66400839647fdbc6f877bb39505b92 100644 --- a/app/code/core/Mage/Catalog/Block/Product/View/Options/Type/Text.php +++ b/app/code/core/Mage/Catalog/Block/Product/View/Options/Type/Text.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Block/Product/View/Price.php b/app/code/core/Mage/Catalog/Block/Product/View/Price.php index 31b135e1fd7f4e1eb2ba4013522b1be969ef808f..720841739550eb288932e89c2b57f7a6780fefc7 100644 --- a/app/code/core/Mage/Catalog/Block/Product/View/Price.php +++ b/app/code/core/Mage/Catalog/Block/Product/View/Price.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Block/Product/View/Tabs.php b/app/code/core/Mage/Catalog/Block/Product/View/Tabs.php index 13e2b9f38e82bbc15a332dfb3973008edc69e0c0..e6ffd9c69db2fb6bb0eccf70a1a628dbea5c2cbd 100644 --- a/app/code/core/Mage/Catalog/Block/Product/View/Tabs.php +++ b/app/code/core/Mage/Catalog/Block/Product/View/Tabs.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Block/Product/View/Type/Configurable.php b/app/code/core/Mage/Catalog/Block/Product/View/Type/Configurable.php index 32bc439739365aa9e6fd02d7f5cac7c455c47d6e..3848b5ab96ae27ea53b4365719d904a4d04af990 100644 --- a/app/code/core/Mage/Catalog/Block/Product/View/Type/Configurable.php +++ b/app/code/core/Mage/Catalog/Block/Product/View/Type/Configurable.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Block/Product/View/Type/Grouped.php b/app/code/core/Mage/Catalog/Block/Product/View/Type/Grouped.php index 1276dc38a91543e389475b5de00a4c6f0823ffa1..1cf9f8e77939d8433b181137baf0029f1a44dfb7 100644 --- a/app/code/core/Mage/Catalog/Block/Product/View/Type/Grouped.php +++ b/app/code/core/Mage/Catalog/Block/Product/View/Type/Grouped.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Block/Product/View/Type/Simple.php b/app/code/core/Mage/Catalog/Block/Product/View/Type/Simple.php index 183e2222d39eae988b313848170205387a2eb779..51466c3d8b3fe1133e0c97d227294bd69dab3f44 100644 --- a/app/code/core/Mage/Catalog/Block/Product/View/Type/Simple.php +++ b/app/code/core/Mage/Catalog/Block/Product/View/Type/Simple.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Block/Product/View/Type/Virtual.php b/app/code/core/Mage/Catalog/Block/Product/View/Type/Virtual.php index 4e485da7e51735ef6896a21ed1418db65cc19904..1d772b1ccc9c0c748fe57b0bf706f38cd8a293a0 100644 --- a/app/code/core/Mage/Catalog/Block/Product/View/Type/Virtual.php +++ b/app/code/core/Mage/Catalog/Block/Product/View/Type/Virtual.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Block/Product/Widget/Html/Pager.php b/app/code/core/Mage/Catalog/Block/Product/Widget/Html/Pager.php index a177bab350d8755109dde0b3caf6678600774ea4..d86936a6bc1896fee1a8bfed2b2b0d0a79d09281 100644 --- a/app/code/core/Mage/Catalog/Block/Product/Widget/Html/Pager.php +++ b/app/code/core/Mage/Catalog/Block/Product/Widget/Html/Pager.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Block/Product/Widget/Link.php b/app/code/core/Mage/Catalog/Block/Product/Widget/Link.php index 5455abe8277d871627f87323fe2286988a54019d..ed0126128a15dd277a31ff3ba744d5031c65aaa3 100644 --- a/app/code/core/Mage/Catalog/Block/Product/Widget/Link.php +++ b/app/code/core/Mage/Catalog/Block/Product/Widget/Link.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Block/Product/Widget/New.php b/app/code/core/Mage/Catalog/Block/Product/Widget/New.php index 3605490e3cb1cda5fc0f9261562a9a0be536bfef..ffba152b2d3695bf18595282c91feb721cc8bd62 100644 --- a/app/code/core/Mage/Catalog/Block/Product/Widget/New.php +++ b/app/code/core/Mage/Catalog/Block/Product/Widget/New.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Block/Widget/Link.php b/app/code/core/Mage/Catalog/Block/Widget/Link.php index f3b41a4a550769083168b2222bf245047d30cb39..7581a9fd06e55e3c389d0b26ffa918c4b22d0564 100644 --- a/app/code/core/Mage/Catalog/Block/Widget/Link.php +++ b/app/code/core/Mage/Catalog/Block/Widget/Link.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Controller/Product/View/Interface.php b/app/code/core/Mage/Catalog/Controller/Product/View/Interface.php index 4de06330e187786abff6fb2f15f726e65c1d1f9f..d244f3dcd6f1be34a5f710e73c5fa65cb949a8a4 100644 --- a/app/code/core/Mage/Catalog/Controller/Product/View/Interface.php +++ b/app/code/core/Mage/Catalog/Controller/Product/View/Interface.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Exception.php b/app/code/core/Mage/Catalog/Exception.php index e44ece7af8a840df2fd51dfaa1e56e960814f71d..bdf62ee26302fbcbe01cf5106239f54fd81b3a16 100644 --- a/app/code/core/Mage/Catalog/Exception.php +++ b/app/code/core/Mage/Catalog/Exception.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Helper/Category.php b/app/code/core/Mage/Catalog/Helper/Category.php index d3e802e1e347e99516fbe05bc849d05605546a54..978fe54df4d64b46954776ade5bda54b9179f021 100644 --- a/app/code/core/Mage/Catalog/Helper/Category.php +++ b/app/code/core/Mage/Catalog/Helper/Category.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Helper/Category/Flat.php b/app/code/core/Mage/Catalog/Helper/Category/Flat.php index e363149c9e3950377d59f63f655b8ed8f1da1fae..89a3284e40a42f26c60f9a10ead576b935c62c0e 100644 --- a/app/code/core/Mage/Catalog/Helper/Category/Flat.php +++ b/app/code/core/Mage/Catalog/Helper/Category/Flat.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Helper/Data.php b/app/code/core/Mage/Catalog/Helper/Data.php index 4ccc48138957b9a15862201eef43282c97a4b466..f1f4ebd383f8417967511556f14367d86d85e332 100644 --- a/app/code/core/Mage/Catalog/Helper/Data.php +++ b/app/code/core/Mage/Catalog/Helper/Data.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Helper/Flat/Abstract.php b/app/code/core/Mage/Catalog/Helper/Flat/Abstract.php index 3463ba8484370f9d0864fd9aad55fd502faa388d..aff5a9ee6f68894151ea650192a1884afab11978 100644 --- a/app/code/core/Mage/Catalog/Helper/Flat/Abstract.php +++ b/app/code/core/Mage/Catalog/Helper/Flat/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Helper/Image.php b/app/code/core/Mage/Catalog/Helper/Image.php index 932f2cdc44ecf5b983ea02389a571ccbeb59fbdd..be8866f8ef165b55cec74d1c130c201c02120800 100644 --- a/app/code/core/Mage/Catalog/Helper/Image.php +++ b/app/code/core/Mage/Catalog/Helper/Image.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Helper/Output.php b/app/code/core/Mage/Catalog/Helper/Output.php index 297540c93a29c56b258d8e0f1b6538a2be99cc1f..0a2b08e0ae7ca1114b8f285bd8c958bacae4bebc 100644 --- a/app/code/core/Mage/Catalog/Helper/Output.php +++ b/app/code/core/Mage/Catalog/Helper/Output.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Helper/Product.php b/app/code/core/Mage/Catalog/Helper/Product.php index 6aa423be44afb5b3b81cc64dda0a38b7acb22696..625a9383a156a45fa462a936093dc2c82fa52c7d 100644 --- a/app/code/core/Mage/Catalog/Helper/Product.php +++ b/app/code/core/Mage/Catalog/Helper/Product.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Helper/Product/Compare.php b/app/code/core/Mage/Catalog/Helper/Product/Compare.php index 9c82f4e517bd2a6001d66a4d5e43892d41461d79..98a62b6fe72695302a4afe7876ad052d87733012 100644 --- a/app/code/core/Mage/Catalog/Helper/Product/Compare.php +++ b/app/code/core/Mage/Catalog/Helper/Product/Compare.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Helper/Product/Configuration.php b/app/code/core/Mage/Catalog/Helper/Product/Configuration.php index 5d3530e9faee137a27968d90e9b9884f24b29172..699e9738c456960dad38563ab7386d6d15dc6cd3 100644 --- a/app/code/core/Mage/Catalog/Helper/Product/Configuration.php +++ b/app/code/core/Mage/Catalog/Helper/Product/Configuration.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Helper/Product/Configuration/Interface.php b/app/code/core/Mage/Catalog/Helper/Product/Configuration/Interface.php index e029d456afcba15fecff9a3082c8485a87413d68..aabc35ab418d3333d1bc17acbc242c308dc5d5d6 100644 --- a/app/code/core/Mage/Catalog/Helper/Product/Configuration/Interface.php +++ b/app/code/core/Mage/Catalog/Helper/Product/Configuration/Interface.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Helper/Product/Flat.php b/app/code/core/Mage/Catalog/Helper/Product/Flat.php index 1328485341be3a425d80481f8919ba645a1cbe2c..43ebb6e84fcf3f69aa500fc0da37cc32ad44856d 100644 --- a/app/code/core/Mage/Catalog/Helper/Product/Flat.php +++ b/app/code/core/Mage/Catalog/Helper/Product/Flat.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Helper/Product/Options.php b/app/code/core/Mage/Catalog/Helper/Product/Options.php index a85f4f79fe70a3aef222dc57d45b69a2dd9d6840..7683e469520490d1cc2fd842e762b58f2b11cd59 100644 --- a/app/code/core/Mage/Catalog/Helper/Product/Options.php +++ b/app/code/core/Mage/Catalog/Helper/Product/Options.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Helper/Product/Url.php b/app/code/core/Mage/Catalog/Helper/Product/Url.php index 9deece2f65811ae39210dd94170de40a4d1c0457..557f1c13dbcd48b66d0efde5a8af375394e0de6c 100644 --- a/app/code/core/Mage/Catalog/Helper/Product/Url.php +++ b/app/code/core/Mage/Catalog/Helper/Product/Url.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Helper/Product/View.php b/app/code/core/Mage/Catalog/Helper/Product/View.php index f7b7d9ad601a7a89bfe4aec9829dda3aad9d402e..0289f89c3a5ad193a76c645895f89bc7e69643ea 100644 --- a/app/code/core/Mage/Catalog/Helper/Product/View.php +++ b/app/code/core/Mage/Catalog/Helper/Product/View.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Abstract.php b/app/code/core/Mage/Catalog/Model/Abstract.php index 49293788e67f385c30433a55832e22c3f32cc146..cde1013dd2a3213706ddaaf5db9022fa2ea15f73 100644 --- a/app/code/core/Mage/Catalog/Model/Abstract.php +++ b/app/code/core/Mage/Catalog/Model/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Attribute/Backend/Customlayoutupdate.php b/app/code/core/Mage/Catalog/Model/Attribute/Backend/Customlayoutupdate.php index 1407e2aae58488ecbd2fdc6b887bce350ebea4f6..7fe60a35d6e9b0f1859846568b7a7e9b7798f0ee 100644 --- a/app/code/core/Mage/Catalog/Model/Attribute/Backend/Customlayoutupdate.php +++ b/app/code/core/Mage/Catalog/Model/Attribute/Backend/Customlayoutupdate.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Category.php b/app/code/core/Mage/Catalog/Model/Category.php index d5369326f2c59e3373ef44493ad148b30bbb8760..1f4a8b9b7eb9024cf955f37670be21b42215f6c4 100644 --- a/app/code/core/Mage/Catalog/Model/Category.php +++ b/app/code/core/Mage/Catalog/Model/Category.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Category/Attribute/Backend/Image.php b/app/code/core/Mage/Catalog/Model/Category/Attribute/Backend/Image.php index f2bf3ff4c7ae37740f688c15ad4a67cf3c5e8c41..1218dd955f85fe2fc669fb2076270b18ed84b31a 100644 --- a/app/code/core/Mage/Catalog/Model/Category/Attribute/Backend/Image.php +++ b/app/code/core/Mage/Catalog/Model/Category/Attribute/Backend/Image.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Category/Attribute/Backend/Sortby.php b/app/code/core/Mage/Catalog/Model/Category/Attribute/Backend/Sortby.php index 8308f02bea4267598e818c3ebbf66474773805fc..5d96584d824ded825b3bbed5cd92fc68b8138abf 100644 --- a/app/code/core/Mage/Catalog/Model/Category/Attribute/Backend/Sortby.php +++ b/app/code/core/Mage/Catalog/Model/Category/Attribute/Backend/Sortby.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Category/Attribute/Backend/Urlkey.php b/app/code/core/Mage/Catalog/Model/Category/Attribute/Backend/Urlkey.php index 2fdab14f274301d7b62d2c04357056a0478f40b5..61bb17c6cefcfb13e2e5e2e4adbf258df6383145 100644 --- a/app/code/core/Mage/Catalog/Model/Category/Attribute/Backend/Urlkey.php +++ b/app/code/core/Mage/Catalog/Model/Category/Attribute/Backend/Urlkey.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Category/Attribute/Source/Layout.php b/app/code/core/Mage/Catalog/Model/Category/Attribute/Source/Layout.php index ad7e53e19c0e673880d3eb783c131b0f44044f26..9a70bb51770e16776609445dc5ecdbf5a04e1129 100644 --- a/app/code/core/Mage/Catalog/Model/Category/Attribute/Source/Layout.php +++ b/app/code/core/Mage/Catalog/Model/Category/Attribute/Source/Layout.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Category/Attribute/Source/Mode.php b/app/code/core/Mage/Catalog/Model/Category/Attribute/Source/Mode.php index db2152a9f61aaa0ba5f968f867c645ed08ed4713..a91026ba59526480749a0d93058b8e222c4a1497 100644 --- a/app/code/core/Mage/Catalog/Model/Category/Attribute/Source/Mode.php +++ b/app/code/core/Mage/Catalog/Model/Category/Attribute/Source/Mode.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Category/Attribute/Source/Page.php b/app/code/core/Mage/Catalog/Model/Category/Attribute/Source/Page.php index 47c8ea0eee0004142b92dcce6cdba1a378f77563..aeb1ed71337f5bdc5e5207b38cad342ca7c25344 100644 --- a/app/code/core/Mage/Catalog/Model/Category/Attribute/Source/Page.php +++ b/app/code/core/Mage/Catalog/Model/Category/Attribute/Source/Page.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Category/Attribute/Source/Sortby.php b/app/code/core/Mage/Catalog/Model/Category/Attribute/Source/Sortby.php index 99b358e1c8cd2682f15769c56e80e5ae06759d4c..829532ad8b1cc497f8da2897eb8a38d949c6d480 100644 --- a/app/code/core/Mage/Catalog/Model/Category/Attribute/Source/Sortby.php +++ b/app/code/core/Mage/Catalog/Model/Category/Attribute/Source/Sortby.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Category/Indexer/Flat.php b/app/code/core/Mage/Catalog/Model/Category/Indexer/Flat.php index 1cd0b540ca91e5965f265969ef4d606d3322a90f..51b115220a06e48b10c2506f22e9cc3b552e9dce 100644 --- a/app/code/core/Mage/Catalog/Model/Category/Indexer/Flat.php +++ b/app/code/core/Mage/Catalog/Model/Category/Indexer/Flat.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Category/Indexer/Product.php b/app/code/core/Mage/Catalog/Model/Category/Indexer/Product.php index cd48b9522be654d5dd7faf919530802b69eef4bf..1e42a118f383d5eee3cf4a509dd8b3849c0bfd95 100644 --- a/app/code/core/Mage/Catalog/Model/Category/Indexer/Product.php +++ b/app/code/core/Mage/Catalog/Model/Category/Indexer/Product.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Config.php b/app/code/core/Mage/Catalog/Model/Config.php index f19d7a24478c90a8b27812adca576039cbe1bb7a..4e6989b12f3b6cb34877a9fd68fb9a74a0c80116 100644 --- a/app/code/core/Mage/Catalog/Model/Config.php +++ b/app/code/core/Mage/Catalog/Model/Config.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Config/Backend/Category.php b/app/code/core/Mage/Catalog/Model/Config/Backend/Category.php index b4922b424bacdc92c98f73066f0824143dc5a0b6..c7dc940cadb9cfc05036ef42d7c1390cc56da53d 100644 --- a/app/code/core/Mage/Catalog/Model/Config/Backend/Category.php +++ b/app/code/core/Mage/Catalog/Model/Config/Backend/Category.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Config/Backend/Seo/Product.php b/app/code/core/Mage/Catalog/Model/Config/Backend/Seo/Product.php index 0cbc3fa870209acce19082c19fa7bbb0906072ed..30d14fd6e88a83d9f187313c3201de3ca8417578 100644 --- a/app/code/core/Mage/Catalog/Model/Config/Backend/Seo/Product.php +++ b/app/code/core/Mage/Catalog/Model/Config/Backend/Seo/Product.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Config/Clone/Media/Image.php b/app/code/core/Mage/Catalog/Model/Config/Clone/Media/Image.php index 55ced33e47cfd1fd07fb1d9bf2a63551de14c120..31c17eb3608d2a33af66a53cbedccf2041b95164 100644 --- a/app/code/core/Mage/Catalog/Model/Config/Clone/Media/Image.php +++ b/app/code/core/Mage/Catalog/Model/Config/Clone/Media/Image.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Config/Source/Category.php b/app/code/core/Mage/Catalog/Model/Config/Source/Category.php index 90716dfe2fcb956db29c521e1dfba22c5143f559..be49a5e11e5ea4d3a2644003b01424106f8e22a1 100644 --- a/app/code/core/Mage/Catalog/Model/Config/Source/Category.php +++ b/app/code/core/Mage/Catalog/Model/Config/Source/Category.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Config/Source/GridPerPage.php b/app/code/core/Mage/Catalog/Model/Config/Source/GridPerPage.php index 525fd4091590b1a8abcc8718ccfe31e3f29fa78c..b2d2b61606bd68a2e02d1e2ad1f9d1c4d76312eb 100644 --- a/app/code/core/Mage/Catalog/Model/Config/Source/GridPerPage.php +++ b/app/code/core/Mage/Catalog/Model/Config/Source/GridPerPage.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Config/Source/ListMode.php b/app/code/core/Mage/Catalog/Model/Config/Source/ListMode.php index bffe38560f4d0f0f01d168573039361aa10c2ffe..8b3c6f888f959d15f24c9c634e2ad91c262dbb1c 100644 --- a/app/code/core/Mage/Catalog/Model/Config/Source/ListMode.php +++ b/app/code/core/Mage/Catalog/Model/Config/Source/ListMode.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Config/Source/ListPerPage.php b/app/code/core/Mage/Catalog/Model/Config/Source/ListPerPage.php index cca2e202edf244acb8a64c920e08ffd256a8b832..eeaac211cf9e5b4c6f8ec3e703504b3ac4f8b858 100644 --- a/app/code/core/Mage/Catalog/Model/Config/Source/ListPerPage.php +++ b/app/code/core/Mage/Catalog/Model/Config/Source/ListPerPage.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Config/Source/ListSort.php b/app/code/core/Mage/Catalog/Model/Config/Source/ListSort.php index 6e65e7a6f3ed4fcd0d1bf43ba39b9f5b9704e039..fd73fa683c67b01b87f1a02bb1e4a40efd1deeaa 100644 --- a/app/code/core/Mage/Catalog/Model/Config/Source/ListSort.php +++ b/app/code/core/Mage/Catalog/Model/Config/Source/ListSort.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Config/Source/Price/Scope.php b/app/code/core/Mage/Catalog/Model/Config/Source/Price/Scope.php index d80044be53d573358cd62a964a5e2609e4953d8a..d4272659dd8a33fd8e71b7c8df180655264cf6c2 100644 --- a/app/code/core/Mage/Catalog/Model/Config/Source/Price/Scope.php +++ b/app/code/core/Mage/Catalog/Model/Config/Source/Price/Scope.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Config/Source/Price/Step.php b/app/code/core/Mage/Catalog/Model/Config/Source/Price/Step.php index 28aa00f7ecf447e0db247c109306a8b0c469fee8..55b58afdcaadd4cc63b71fd729edab95680d3a02 100644 --- a/app/code/core/Mage/Catalog/Model/Config/Source/Price/Step.php +++ b/app/code/core/Mage/Catalog/Model/Config/Source/Price/Step.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Config/Source/Product/Options/Price.php b/app/code/core/Mage/Catalog/Model/Config/Source/Product/Options/Price.php index 823771c9d57a13bb4d004b4f1031974802716dc9..734606bec0b143831552d1e363e7fc711d815dbe 100644 --- a/app/code/core/Mage/Catalog/Model/Config/Source/Product/Options/Price.php +++ b/app/code/core/Mage/Catalog/Model/Config/Source/Product/Options/Price.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Config/Source/Product/Options/Type.php b/app/code/core/Mage/Catalog/Model/Config/Source/Product/Options/Type.php index a1a6d448ed8a4ff562ebf0e7986299212fb2d88a..60bfb70ba8e0f301a0b26e0659a867f24812c62e 100644 --- a/app/code/core/Mage/Catalog/Model/Config/Source/Product/Options/Type.php +++ b/app/code/core/Mage/Catalog/Model/Config/Source/Product/Options/Type.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Config/Source/Product/Thumbnail.php b/app/code/core/Mage/Catalog/Model/Config/Source/Product/Thumbnail.php index 1f2fa84d3545a624452e28e1ef3c09d89aa3804b..e36fb1185ef85d1e23ebeb1c432ce1a917a33613 100644 --- a/app/code/core/Mage/Catalog/Model/Config/Source/Product/Thumbnail.php +++ b/app/code/core/Mage/Catalog/Model/Config/Source/Product/Thumbnail.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Config/Source/TimeFormat.php b/app/code/core/Mage/Catalog/Model/Config/Source/TimeFormat.php index babafacaebf00469028c1eea83cc76e9e28d134e..30d2055c03bb426c9973e9dff6720b3c1816cf4e 100644 --- a/app/code/core/Mage/Catalog/Model/Config/Source/TimeFormat.php +++ b/app/code/core/Mage/Catalog/Model/Config/Source/TimeFormat.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Config/Source/Watermark/Position.php b/app/code/core/Mage/Catalog/Model/Config/Source/Watermark/Position.php index 2bd1872b9d8661cb65883288ad0edf3f2fe226fa..9c9bd023cc8b94a6ad17ad1eba68e9306824fc5c 100644 --- a/app/code/core/Mage/Catalog/Model/Config/Source/Watermark/Position.php +++ b/app/code/core/Mage/Catalog/Model/Config/Source/Watermark/Position.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Design.php b/app/code/core/Mage/Catalog/Model/Design.php index 68d389a1fd68650c0a06bd256a4d5decea99bc88..964e27b853d2ce1893cb3b21272a9d6e9eb5ebb2 100644 --- a/app/code/core/Mage/Catalog/Model/Design.php +++ b/app/code/core/Mage/Catalog/Model/Design.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Entity/Attribute.php b/app/code/core/Mage/Catalog/Model/Entity/Attribute.php index f0b10cada458eb992141b32d2348a0499aa6c33d..43a139fc1206748e09aec2fa045e0560b0183c60 100644 --- a/app/code/core/Mage/Catalog/Model/Entity/Attribute.php +++ b/app/code/core/Mage/Catalog/Model/Entity/Attribute.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Entity/Product/Attribute/Design/Options/Container.php b/app/code/core/Mage/Catalog/Model/Entity/Product/Attribute/Design/Options/Container.php index 65981eb2284c68747e5fbdc22db8eab880c450be..a062055fea00b8e1b06df47d82e22fffcf6d54f2 100644 --- a/app/code/core/Mage/Catalog/Model/Entity/Product/Attribute/Design/Options/Container.php +++ b/app/code/core/Mage/Catalog/Model/Entity/Product/Attribute/Design/Options/Container.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Index.php b/app/code/core/Mage/Catalog/Model/Index.php index fe1e6daa554e995edf1392678d296c08309f4fde..b7a3b91674ecd33f5d72e36b9eda349003db3e62 100644 --- a/app/code/core/Mage/Catalog/Model/Index.php +++ b/app/code/core/Mage/Catalog/Model/Index.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Indexer/Url.php b/app/code/core/Mage/Catalog/Model/Indexer/Url.php index 790336ae65f11742dc4b8574943d0ec4a4c9daf4..921cd6fdb6f6babd37631a0a7825c277fc9c6ad0 100644 --- a/app/code/core/Mage/Catalog/Model/Indexer/Url.php +++ b/app/code/core/Mage/Catalog/Model/Indexer/Url.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Layer.php b/app/code/core/Mage/Catalog/Model/Layer.php index 8755e6488c7807473243c408c732b0ef796f3f46..95b881c959a395e6a2d18db16462a08d54a4edb4 100644 --- a/app/code/core/Mage/Catalog/Model/Layer.php +++ b/app/code/core/Mage/Catalog/Model/Layer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Layer/Filter/Abstract.php b/app/code/core/Mage/Catalog/Model/Layer/Filter/Abstract.php index 052dbd433958fa319f12a08c80e07ee1e88f74d2..c347fff1bab783b8c15503af5e191ca3744fe711 100644 --- a/app/code/core/Mage/Catalog/Model/Layer/Filter/Abstract.php +++ b/app/code/core/Mage/Catalog/Model/Layer/Filter/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Layer/Filter/Attribute.php b/app/code/core/Mage/Catalog/Model/Layer/Filter/Attribute.php index 29ef16f61a51e591cf9ed2f2051c3e60a9159f33..4d0c4859dfa2cf911895639db0f80dcf52fd256a 100644 --- a/app/code/core/Mage/Catalog/Model/Layer/Filter/Attribute.php +++ b/app/code/core/Mage/Catalog/Model/Layer/Filter/Attribute.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Layer/Filter/Category.php b/app/code/core/Mage/Catalog/Model/Layer/Filter/Category.php index 857366d5cdf748e0851324aed2d5bd48662999c0..e2bc795a49bcbd14e6a49c35125ce6c6a06b9619 100644 --- a/app/code/core/Mage/Catalog/Model/Layer/Filter/Category.php +++ b/app/code/core/Mage/Catalog/Model/Layer/Filter/Category.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Layer/Filter/Decimal.php b/app/code/core/Mage/Catalog/Model/Layer/Filter/Decimal.php index 5093eb7b04764591b9a7d6099e94c32117136cb5..41e079babefb5d29a63ae970d89e6dd432278b3b 100644 --- a/app/code/core/Mage/Catalog/Model/Layer/Filter/Decimal.php +++ b/app/code/core/Mage/Catalog/Model/Layer/Filter/Decimal.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Layer/Filter/Item.php b/app/code/core/Mage/Catalog/Model/Layer/Filter/Item.php index 586c413bab62aee1200480bbc580b677ddd3b977..2b9e78108451924c3ac9d13d0120e00c91ccb5c1 100644 --- a/app/code/core/Mage/Catalog/Model/Layer/Filter/Item.php +++ b/app/code/core/Mage/Catalog/Model/Layer/Filter/Item.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Layer/Filter/Price.php b/app/code/core/Mage/Catalog/Model/Layer/Filter/Price.php index ccd50602ee23e30d0c9361f946f91b76b0104acb..3b699d135eb507a0e76681a7f7295f1d1df9d2be 100644 --- a/app/code/core/Mage/Catalog/Model/Layer/Filter/Price.php +++ b/app/code/core/Mage/Catalog/Model/Layer/Filter/Price.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Layer/Filter/Price/Algorithm.php b/app/code/core/Mage/Catalog/Model/Layer/Filter/Price/Algorithm.php index 3e05e8c4fb3322a5cf66afc77685df70eb7dd925..e0b8453300ff9bd4bc515fae079033d619de0164 100644 --- a/app/code/core/Mage/Catalog/Model/Layer/Filter/Price/Algorithm.php +++ b/app/code/core/Mage/Catalog/Model/Layer/Filter/Price/Algorithm.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Layer/State.php b/app/code/core/Mage/Catalog/Model/Layer/State.php index 681da5384738272dd6e20fe91825c4e108652de8..12622dce7913be16cc80da7ae01d32492963f4a7 100644 --- a/app/code/core/Mage/Catalog/Model/Layer/State.php +++ b/app/code/core/Mage/Catalog/Model/Layer/State.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Observer.php b/app/code/core/Mage/Catalog/Model/Observer.php index 3663638d1732f65f41b46909f4607327850c87b5..7c957edc557968b93592e84c1929d7dfe91d90b5 100644 --- a/app/code/core/Mage/Catalog/Model/Observer.php +++ b/app/code/core/Mage/Catalog/Model/Observer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Product.php b/app/code/core/Mage/Catalog/Model/Product.php index 14712ff7143692e7516e8a55cad709079bb9020c..457f930e6a47dec016664b44dd5029a277c9d089 100644 --- a/app/code/core/Mage/Catalog/Model/Product.php +++ b/app/code/core/Mage/Catalog/Model/Product.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Product/Action.php b/app/code/core/Mage/Catalog/Model/Product/Action.php index 053b0e4adfefdf551aefa8b547acd751bdc5a936..f496df2e792c4097381463fbda8e2fd7ed2f4ce8 100644 --- a/app/code/core/Mage/Catalog/Model/Product/Action.php +++ b/app/code/core/Mage/Catalog/Model/Product/Action.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Product/Attribute/Backend/Boolean.php b/app/code/core/Mage/Catalog/Model/Product/Attribute/Backend/Boolean.php index 2906beca8cbe4d210038fc7aba0ecdfbb4bcb804..7659d1e7cd330e9a908b1c9c8c269e838b680c7d 100644 --- a/app/code/core/Mage/Catalog/Model/Product/Attribute/Backend/Boolean.php +++ b/app/code/core/Mage/Catalog/Model/Product/Attribute/Backend/Boolean.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Product/Attribute/Backend/Category.php b/app/code/core/Mage/Catalog/Model/Product/Attribute/Backend/Category.php index ead4777f0d4e9a0e73557542018afd6bb75b00b3..eb391d793f4b1732888134693c6bfd17f3365fba 100644 --- a/app/code/core/Mage/Catalog/Model/Product/Attribute/Backend/Category.php +++ b/app/code/core/Mage/Catalog/Model/Product/Attribute/Backend/Category.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Product/Attribute/Backend/Groupprice.php b/app/code/core/Mage/Catalog/Model/Product/Attribute/Backend/Groupprice.php index f75dcbcefe2d5eccd08b624c0cbfcb9be42547ad..89c18b1ee34238f2ca8be7191c2c2664fcdf28f9 100644 --- a/app/code/core/Mage/Catalog/Model/Product/Attribute/Backend/Groupprice.php +++ b/app/code/core/Mage/Catalog/Model/Product/Attribute/Backend/Groupprice.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Product/Attribute/Backend/Groupprice/Abstract.php b/app/code/core/Mage/Catalog/Model/Product/Attribute/Backend/Groupprice/Abstract.php index e199767e627472737ef86aa13962c411f86ad03e..fd7f4233900cb60454ccb07131f672e561e060a7 100644 --- a/app/code/core/Mage/Catalog/Model/Product/Attribute/Backend/Groupprice/Abstract.php +++ b/app/code/core/Mage/Catalog/Model/Product/Attribute/Backend/Groupprice/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Product/Attribute/Backend/Media.php b/app/code/core/Mage/Catalog/Model/Product/Attribute/Backend/Media.php index 34bff5f125c53140458ad38bd6bc396a5a487df9..e341f4b47167d867c851cc155b9c9805fd830679 100644 --- a/app/code/core/Mage/Catalog/Model/Product/Attribute/Backend/Media.php +++ b/app/code/core/Mage/Catalog/Model/Product/Attribute/Backend/Media.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Product/Attribute/Backend/Msrp.php b/app/code/core/Mage/Catalog/Model/Product/Attribute/Backend/Msrp.php index d6199c492be2b761773e5ec97a489361eb82b9fd..0c13b765917fc6f60c1bb132e7d8b6df30ec018f 100644 --- a/app/code/core/Mage/Catalog/Model/Product/Attribute/Backend/Msrp.php +++ b/app/code/core/Mage/Catalog/Model/Product/Attribute/Backend/Msrp.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Product/Attribute/Backend/Price.php b/app/code/core/Mage/Catalog/Model/Product/Attribute/Backend/Price.php index 1d87024f3b2d037d2ad053901750508dcb7de4a5..93910312c850ca0b618fc6c386242cb200b1c1e0 100644 --- a/app/code/core/Mage/Catalog/Model/Product/Attribute/Backend/Price.php +++ b/app/code/core/Mage/Catalog/Model/Product/Attribute/Backend/Price.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Product/Attribute/Backend/Recurring.php b/app/code/core/Mage/Catalog/Model/Product/Attribute/Backend/Recurring.php index 97e40dce3d60b8dc493c9546fdb98573ae8388c3..d82d63183849265e158bd331328079706da9a050 100644 --- a/app/code/core/Mage/Catalog/Model/Product/Attribute/Backend/Recurring.php +++ b/app/code/core/Mage/Catalog/Model/Product/Attribute/Backend/Recurring.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Product/Attribute/Backend/Sku.php b/app/code/core/Mage/Catalog/Model/Product/Attribute/Backend/Sku.php index ef7abe26a45189a5d710628f23c385d8e045c61a..8ae690455d765bd7651e0610ad440ddfad211edd 100644 --- a/app/code/core/Mage/Catalog/Model/Product/Attribute/Backend/Sku.php +++ b/app/code/core/Mage/Catalog/Model/Product/Attribute/Backend/Sku.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Product/Attribute/Backend/Startdate.php b/app/code/core/Mage/Catalog/Model/Product/Attribute/Backend/Startdate.php index d1178eeedbc9e3f5bf36f26d0d99953a4c241e7b..88f006131e03c282e68815bf23355e0c73f23c47 100644 --- a/app/code/core/Mage/Catalog/Model/Product/Attribute/Backend/Startdate.php +++ b/app/code/core/Mage/Catalog/Model/Product/Attribute/Backend/Startdate.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Product/Attribute/Backend/Stock.php b/app/code/core/Mage/Catalog/Model/Product/Attribute/Backend/Stock.php index 92a9a66f57412a021d0c0de4de69ff961d74db91..0f6e870f3a7311051b6988279ca23dd962e225d0 100644 --- a/app/code/core/Mage/Catalog/Model/Product/Attribute/Backend/Stock.php +++ b/app/code/core/Mage/Catalog/Model/Product/Attribute/Backend/Stock.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Product/Attribute/Backend/Tierprice.php b/app/code/core/Mage/Catalog/Model/Product/Attribute/Backend/Tierprice.php index 6c7d1b0f070cc26973a7435c179d98dfa3746b50..5b33baf9bf766b73c51acae753d0e71c1cc5f93b 100644 --- a/app/code/core/Mage/Catalog/Model/Product/Attribute/Backend/Tierprice.php +++ b/app/code/core/Mage/Catalog/Model/Product/Attribute/Backend/Tierprice.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Product/Attribute/Backend/Urlkey.php b/app/code/core/Mage/Catalog/Model/Product/Attribute/Backend/Urlkey.php index ec1af2a3e8d18693b44cb7003f5985d6860941b7..d0199495bad64c242da5b37054f032b15c1d6798 100644 --- a/app/code/core/Mage/Catalog/Model/Product/Attribute/Backend/Urlkey.php +++ b/app/code/core/Mage/Catalog/Model/Product/Attribute/Backend/Urlkey.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Product/Attribute/Frontend/Image.php b/app/code/core/Mage/Catalog/Model/Product/Attribute/Frontend/Image.php index 1e867ebf08a380d157712e2604eabd0fe4d92f2e..e93efbdb536a117efa58d53ccd2e3255ff064d9d 100644 --- a/app/code/core/Mage/Catalog/Model/Product/Attribute/Frontend/Image.php +++ b/app/code/core/Mage/Catalog/Model/Product/Attribute/Frontend/Image.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Product/Attribute/Group.php b/app/code/core/Mage/Catalog/Model/Product/Attribute/Group.php index e246b5f18582650c69bc8ef7361374748f83841f..2cc95ec62899e5d8eed18d8f3ca86647a0fd2386 100644 --- a/app/code/core/Mage/Catalog/Model/Product/Attribute/Group.php +++ b/app/code/core/Mage/Catalog/Model/Product/Attribute/Group.php @@ -21,7 +21,7 @@ * @category Mage * @package Mage_Catalog * @author Magento Core Team <core@magentocommerce.com> - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Product/Attribute/Source/Boolean.php b/app/code/core/Mage/Catalog/Model/Product/Attribute/Source/Boolean.php index 4951429fc51424f1f0b753ec23e0bd95a55ab9ed..cff20a45bee0bba4a1d954e2c2f899369ecf75a3 100644 --- a/app/code/core/Mage/Catalog/Model/Product/Attribute/Source/Boolean.php +++ b/app/code/core/Mage/Catalog/Model/Product/Attribute/Source/Boolean.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Product/Attribute/Source/Countryofmanufacture.php b/app/code/core/Mage/Catalog/Model/Product/Attribute/Source/Countryofmanufacture.php index 7297a4fb567ed972a34ad1aa441391fca1ec07ce..f16a9f5b8acc3b145e925764975b9c0e48e6dc9a 100644 --- a/app/code/core/Mage/Catalog/Model/Product/Attribute/Source/Countryofmanufacture.php +++ b/app/code/core/Mage/Catalog/Model/Product/Attribute/Source/Countryofmanufacture.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Product/Attribute/Source/Inputtype.php b/app/code/core/Mage/Catalog/Model/Product/Attribute/Source/Inputtype.php index f8e578d278767ec055e44349eaff7a0d41160fce..a8bba90357afc262d7e4cd430f56f4d169afdecc 100644 --- a/app/code/core/Mage/Catalog/Model/Product/Attribute/Source/Inputtype.php +++ b/app/code/core/Mage/Catalog/Model/Product/Attribute/Source/Inputtype.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Product/Attribute/Source/Layout.php b/app/code/core/Mage/Catalog/Model/Product/Attribute/Source/Layout.php index b20c4d77523e23161fc160fe195458a9b2619196..bb227fbdeb8e6af575c582da4fd2d19c162d1649 100644 --- a/app/code/core/Mage/Catalog/Model/Product/Attribute/Source/Layout.php +++ b/app/code/core/Mage/Catalog/Model/Product/Attribute/Source/Layout.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Product/Attribute/Source/Msrp/Type.php b/app/code/core/Mage/Catalog/Model/Product/Attribute/Source/Msrp/Type.php index db5e90beb13d7cb77f75ec79e2d3e8f5bd437eac..ec69f7730047dd89d1047b0159569f70ab9ce143 100644 --- a/app/code/core/Mage/Catalog/Model/Product/Attribute/Source/Msrp/Type.php +++ b/app/code/core/Mage/Catalog/Model/Product/Attribute/Source/Msrp/Type.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Product/Attribute/Source/Msrp/Type/Enabled.php b/app/code/core/Mage/Catalog/Model/Product/Attribute/Source/Msrp/Type/Enabled.php index 7cb41da2c480e1f3ba2b6f6e6259401e221cf099..3f1ff8d7d5b98efdc537be20ccbc587feabacd21 100644 --- a/app/code/core/Mage/Catalog/Model/Product/Attribute/Source/Msrp/Type/Enabled.php +++ b/app/code/core/Mage/Catalog/Model/Product/Attribute/Source/Msrp/Type/Enabled.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Product/Attribute/Source/Msrp/Type/Price.php b/app/code/core/Mage/Catalog/Model/Product/Attribute/Source/Msrp/Type/Price.php index 4c8969beab41d391e5160ca72dc090349371995f..c160231a529874c5329ce71645f2e390cd85e01d 100644 --- a/app/code/core/Mage/Catalog/Model/Product/Attribute/Source/Msrp/Type/Price.php +++ b/app/code/core/Mage/Catalog/Model/Product/Attribute/Source/Msrp/Type/Price.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Product/Compare/Item.php b/app/code/core/Mage/Catalog/Model/Product/Compare/Item.php index 3dfa66e35b9f209d0d003b07f7c107934b2c180a..711855c10d14104bcba0f72aa4084d6261860f0b 100644 --- a/app/code/core/Mage/Catalog/Model/Product/Compare/Item.php +++ b/app/code/core/Mage/Catalog/Model/Product/Compare/Item.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Product/Compare/List.php b/app/code/core/Mage/Catalog/Model/Product/Compare/List.php index 1b3f1df50e542d91ba7b37bac2b4ece96128ac64..b0f7fb863ea3d4ed684e63136dd8bc62a7b499e3 100644 --- a/app/code/core/Mage/Catalog/Model/Product/Compare/List.php +++ b/app/code/core/Mage/Catalog/Model/Product/Compare/List.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Product/Condition.php b/app/code/core/Mage/Catalog/Model/Product/Condition.php index 66814d71ff203d9e2928473ee675ea2ae55bc267..199b892191394bdfa8901c9963490cae2213e591 100644 --- a/app/code/core/Mage/Catalog/Model/Product/Condition.php +++ b/app/code/core/Mage/Catalog/Model/Product/Condition.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Product/Condition/Interface.php b/app/code/core/Mage/Catalog/Model/Product/Condition/Interface.php index 17b1019171b1f515de95a76c75cad057b789d54a..19bf20d46e09826c26f31b608df3e09a3bd700cc 100644 --- a/app/code/core/Mage/Catalog/Model/Product/Condition/Interface.php +++ b/app/code/core/Mage/Catalog/Model/Product/Condition/Interface.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Product/Configuration/Item/Interface.php b/app/code/core/Mage/Catalog/Model/Product/Configuration/Item/Interface.php index cd194de0e4d98bb4fe88278326e385a783d01d2f..23cbc5539c7fcc90d013b11a603bf6b83250a816 100644 --- a/app/code/core/Mage/Catalog/Model/Product/Configuration/Item/Interface.php +++ b/app/code/core/Mage/Catalog/Model/Product/Configuration/Item/Interface.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Product/Configuration/Item/Option.php b/app/code/core/Mage/Catalog/Model/Product/Configuration/Item/Option.php index a921c940fb23669ca05e9af6ce38e9ba1f84f904..2bc4bda98d63bf06886672207369b60b4f08e99c 100644 --- a/app/code/core/Mage/Catalog/Model/Product/Configuration/Item/Option.php +++ b/app/code/core/Mage/Catalog/Model/Product/Configuration/Item/Option.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Product/Configuration/Item/Option/Interface.php b/app/code/core/Mage/Catalog/Model/Product/Configuration/Item/Option/Interface.php index bfba1de0f11582e91a40c941fd3c069649da966e..76226eae0183c7236118e6302d2c0dca6779c924 100644 --- a/app/code/core/Mage/Catalog/Model/Product/Configuration/Item/Option/Interface.php +++ b/app/code/core/Mage/Catalog/Model/Product/Configuration/Item/Option/Interface.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Product/Flat/Flag.php b/app/code/core/Mage/Catalog/Model/Product/Flat/Flag.php index 7cdc1ef31d1f9296b963e1c0eacd7d9f6f575c52..234d9db4214034e9d680d2d4843835a1c60cb296 100644 --- a/app/code/core/Mage/Catalog/Model/Product/Flat/Flag.php +++ b/app/code/core/Mage/Catalog/Model/Product/Flat/Flag.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Product/Flat/Indexer.php b/app/code/core/Mage/Catalog/Model/Product/Flat/Indexer.php index ce255457fad80a519dea9e557770892be21e651f..366d1bbf40b551b38fce0f9636353f169682c04a 100644 --- a/app/code/core/Mage/Catalog/Model/Product/Flat/Indexer.php +++ b/app/code/core/Mage/Catalog/Model/Product/Flat/Indexer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Product/Flat/Observer.php b/app/code/core/Mage/Catalog/Model/Product/Flat/Observer.php index 5d02f6fb59fc81081a1e84a278e4b71627d57f3e..e800afab3db078c2a7a1056d1ab707c3de780b25 100644 --- a/app/code/core/Mage/Catalog/Model/Product/Flat/Observer.php +++ b/app/code/core/Mage/Catalog/Model/Product/Flat/Observer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Product/Image.php b/app/code/core/Mage/Catalog/Model/Product/Image.php index 2605b93c43cabd5ecdbc3b3d3da23cfdf4cfd095..c595dff2271dc79cdfbcd0ed85158084ec951aa4 100644 --- a/app/code/core/Mage/Catalog/Model/Product/Image.php +++ b/app/code/core/Mage/Catalog/Model/Product/Image.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Product/Indexer/Eav.php b/app/code/core/Mage/Catalog/Model/Product/Indexer/Eav.php index 9418528a8b6a71205aeca846b388340a4dab8b91..4930925ad3b9d4757228d6b269292f422056fa82 100644 --- a/app/code/core/Mage/Catalog/Model/Product/Indexer/Eav.php +++ b/app/code/core/Mage/Catalog/Model/Product/Indexer/Eav.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Product/Indexer/Flat.php b/app/code/core/Mage/Catalog/Model/Product/Indexer/Flat.php index 6df648f484ea46204d37b2cac441671c3cbf4876..ec632c4ab839a30c7393a000fcc516ae17758512 100644 --- a/app/code/core/Mage/Catalog/Model/Product/Indexer/Flat.php +++ b/app/code/core/Mage/Catalog/Model/Product/Indexer/Flat.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Catalog_Model_Product_Indexer_Flat extends Mage_Index_Model_Indexer_Abstract diff --git a/app/code/core/Mage/Catalog/Model/Product/Indexer/Price.php b/app/code/core/Mage/Catalog/Model/Product/Indexer/Price.php index 8295d109004543e18633e3a0edff6d669e584ab7..f32b273cd47e3d1dfe16eda0350f51905ee011e0 100644 --- a/app/code/core/Mage/Catalog/Model/Product/Indexer/Price.php +++ b/app/code/core/Mage/Catalog/Model/Product/Indexer/Price.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ /** diff --git a/app/code/core/Mage/Catalog/Model/Product/Link.php b/app/code/core/Mage/Catalog/Model/Product/Link.php index 102e6c0b8429ef3d5888e005ced3f4d6b78771f0..6cba498c4f5233ba9e2846df12d096cbc9265139 100644 --- a/app/code/core/Mage/Catalog/Model/Product/Link.php +++ b/app/code/core/Mage/Catalog/Model/Product/Link.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Product/Media/Config.php b/app/code/core/Mage/Catalog/Model/Product/Media/Config.php index 266e63e360947cd766d5598197c73d363d2e076a..3d15b3e914c72b4fd279b4a14e613d4fddd5e11a 100644 --- a/app/code/core/Mage/Catalog/Model/Product/Media/Config.php +++ b/app/code/core/Mage/Catalog/Model/Product/Media/Config.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Product/Option.php b/app/code/core/Mage/Catalog/Model/Product/Option.php index f80c30ee8c6091fb61c857fc61a4663103da0e09..d872d384c288123761f3dcf53248039cfeb03480 100644 --- a/app/code/core/Mage/Catalog/Model/Product/Option.php +++ b/app/code/core/Mage/Catalog/Model/Product/Option.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Product/Option/Observer.php b/app/code/core/Mage/Catalog/Model/Product/Option/Observer.php index bf944f8ade34ec1fe7698a7363b96466b15d2d71..71eb0ea02592504d16664b7b7b5168d7cc281a14 100644 --- a/app/code/core/Mage/Catalog/Model/Product/Option/Observer.php +++ b/app/code/core/Mage/Catalog/Model/Product/Option/Observer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Product/Option/Type/Date.php b/app/code/core/Mage/Catalog/Model/Product/Option/Type/Date.php index bc988db3f050feb778594553ea99feb4fdfce529..5ad5016a186057f50e35b223f9508077c2eaa6ce 100644 --- a/app/code/core/Mage/Catalog/Model/Product/Option/Type/Date.php +++ b/app/code/core/Mage/Catalog/Model/Product/Option/Type/Date.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Product/Option/Type/Default.php b/app/code/core/Mage/Catalog/Model/Product/Option/Type/Default.php index 20798f679f8a30c2302d9d7efe9122e007ad9523..81f905af908c63759372209bd4adb0feaa872239 100644 --- a/app/code/core/Mage/Catalog/Model/Product/Option/Type/Default.php +++ b/app/code/core/Mage/Catalog/Model/Product/Option/Type/Default.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Product/Option/Type/File.php b/app/code/core/Mage/Catalog/Model/Product/Option/Type/File.php index 9e7c746653638507f2699be39f6374cf9b6ddafe..bbdd8f4fc4c725e0c805e10aa41fd6df7ddddfc4 100644 --- a/app/code/core/Mage/Catalog/Model/Product/Option/Type/File.php +++ b/app/code/core/Mage/Catalog/Model/Product/Option/Type/File.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Product/Option/Type/Select.php b/app/code/core/Mage/Catalog/Model/Product/Option/Type/Select.php index 1b8b0d4222100d8f35b6ffc95d03a34d3b480dee..0b28928fe9a8c4fc2b25d3c1bb0f9254abe52377 100644 --- a/app/code/core/Mage/Catalog/Model/Product/Option/Type/Select.php +++ b/app/code/core/Mage/Catalog/Model/Product/Option/Type/Select.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Product/Option/Type/Text.php b/app/code/core/Mage/Catalog/Model/Product/Option/Type/Text.php index 84a3b2cc138ce381e0c76d3dd4c88f92fb79c98e..48085bdf359d70d290f1c6da727c450eeff490ee 100644 --- a/app/code/core/Mage/Catalog/Model/Product/Option/Type/Text.php +++ b/app/code/core/Mage/Catalog/Model/Product/Option/Type/Text.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Product/Option/Value.php b/app/code/core/Mage/Catalog/Model/Product/Option/Value.php index 5fff64557754be175958a2850c9af5b86a1f5c47..4bf0050157d265a9785b5fdf56100f4e5c07fc57 100644 --- a/app/code/core/Mage/Catalog/Model/Product/Option/Value.php +++ b/app/code/core/Mage/Catalog/Model/Product/Option/Value.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Product/Status.php b/app/code/core/Mage/Catalog/Model/Product/Status.php index 29d7265948ec885f5a75d4419bf7e8d535e41c5a..5ed2cfdcf89030fd01893696395bea4770ee2dad 100644 --- a/app/code/core/Mage/Catalog/Model/Product/Status.php +++ b/app/code/core/Mage/Catalog/Model/Product/Status.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Product/Type.php b/app/code/core/Mage/Catalog/Model/Product/Type.php index 56f889190bb879beadc2b1cebec28bf21005f545..a98a8c9f767f741172f93c318af1e3f81db62fc3 100644 --- a/app/code/core/Mage/Catalog/Model/Product/Type.php +++ b/app/code/core/Mage/Catalog/Model/Product/Type.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Product/Type/Abstract.php b/app/code/core/Mage/Catalog/Model/Product/Type/Abstract.php index d6077ff1010d97c64d2f729c312913a78667722c..6ffd9803d8ddf81daf4373f0421f4825fe5fb4be 100644 --- a/app/code/core/Mage/Catalog/Model/Product/Type/Abstract.php +++ b/app/code/core/Mage/Catalog/Model/Product/Type/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Product/Type/Configurable.php b/app/code/core/Mage/Catalog/Model/Product/Type/Configurable.php index cead6824081787e3d29f5dcb04408a5713b2f601..b8f6262e72619038f7fa055edbb55e0a246a33f8 100644 --- a/app/code/core/Mage/Catalog/Model/Product/Type/Configurable.php +++ b/app/code/core/Mage/Catalog/Model/Product/Type/Configurable.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Product/Type/Configurable/Attribute.php b/app/code/core/Mage/Catalog/Model/Product/Type/Configurable/Attribute.php index 9be8dc8e53ff8aaf234c3979cba7d721565984f6..a4a4fc3a888296d74d7eed06a24e6fb44321279b 100644 --- a/app/code/core/Mage/Catalog/Model/Product/Type/Configurable/Attribute.php +++ b/app/code/core/Mage/Catalog/Model/Product/Type/Configurable/Attribute.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Product/Type/Configurable/Price.php b/app/code/core/Mage/Catalog/Model/Product/Type/Configurable/Price.php index 74bd1899819b63f742d7a9eac96cd5494dcea2c3..bf5fd2582f613b1f9c718ed831a35c82de4397bf 100644 --- a/app/code/core/Mage/Catalog/Model/Product/Type/Configurable/Price.php +++ b/app/code/core/Mage/Catalog/Model/Product/Type/Configurable/Price.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Product/Type/Grouped.php b/app/code/core/Mage/Catalog/Model/Product/Type/Grouped.php index cea326dab93473423a2be034811534c3048889e7..f186b6fec4ed3653b11d24a6aec2f5432923b8e0 100644 --- a/app/code/core/Mage/Catalog/Model/Product/Type/Grouped.php +++ b/app/code/core/Mage/Catalog/Model/Product/Type/Grouped.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Product/Type/Grouped/Price.php b/app/code/core/Mage/Catalog/Model/Product/Type/Grouped/Price.php index 091f5b24c71ae790455bd5c4c95bd3d4e191f106..53c64914beb176c763dee6af3edfc08303fc8ecc 100644 --- a/app/code/core/Mage/Catalog/Model/Product/Type/Grouped/Price.php +++ b/app/code/core/Mage/Catalog/Model/Product/Type/Grouped/Price.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Product/Type/Price.php b/app/code/core/Mage/Catalog/Model/Product/Type/Price.php index 1c6e100b358f2e08e736cc24e699b3dad956b7d6..9139ddb1026c3da25eedf000c1c43ca80075f4a9 100644 --- a/app/code/core/Mage/Catalog/Model/Product/Type/Price.php +++ b/app/code/core/Mage/Catalog/Model/Product/Type/Price.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Product/Type/Simple.php b/app/code/core/Mage/Catalog/Model/Product/Type/Simple.php index f6693a86e48d9ca766570b2213b55c9878a314b5..401868c8da617efd56cf0b6ca0574399fa0d43cd 100644 --- a/app/code/core/Mage/Catalog/Model/Product/Type/Simple.php +++ b/app/code/core/Mage/Catalog/Model/Product/Type/Simple.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Product/Type/Virtual.php b/app/code/core/Mage/Catalog/Model/Product/Type/Virtual.php index 990109ef3ae8ac1923342e5e9a4827c85a89a257..e042f38395ec0c5b851b07328edaaed27339a7d1 100644 --- a/app/code/core/Mage/Catalog/Model/Product/Type/Virtual.php +++ b/app/code/core/Mage/Catalog/Model/Product/Type/Virtual.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Product/Url.php b/app/code/core/Mage/Catalog/Model/Product/Url.php index e7646698bfc675bd2e741e4b8c51e1c5acc318a8..8c8e0701ea387c70d772774f4300ec6b7d1c3c9a 100644 --- a/app/code/core/Mage/Catalog/Model/Product/Url.php +++ b/app/code/core/Mage/Catalog/Model/Product/Url.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Product/Visibility.php b/app/code/core/Mage/Catalog/Model/Product/Visibility.php index e3f2acb3841e847ad567b525f83e57ee6b80851a..93e501df6831e0f957cd4a5937d19f0cb2b3eff9 100644 --- a/app/code/core/Mage/Catalog/Model/Product/Visibility.php +++ b/app/code/core/Mage/Catalog/Model/Product/Visibility.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Product/Website.php b/app/code/core/Mage/Catalog/Model/Product/Website.php index 8c17ba9d257dceab999fa3e3680b8d3fbcd58e7e..5ae1c14edb22bd5c554952f6b491d68b61469b14 100644 --- a/app/code/core/Mage/Catalog/Model/Product/Website.php +++ b/app/code/core/Mage/Catalog/Model/Product/Website.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Resource/Abstract.php b/app/code/core/Mage/Catalog/Model/Resource/Abstract.php index 4b0ef4eeecf5046045b7546b4738e3a3b030d913..eef926555e3ae10870d9d829ff7b92ad0c5dd8e5 100755 --- a/app/code/core/Mage/Catalog/Model/Resource/Abstract.php +++ b/app/code/core/Mage/Catalog/Model/Resource/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Resource/Attribute.php b/app/code/core/Mage/Catalog/Model/Resource/Attribute.php index 9969648459c2486005f0b04e163b4f274708dcff..80767bf8b042b1b933f75dc25e5987555d26aea2 100755 --- a/app/code/core/Mage/Catalog/Model/Resource/Attribute.php +++ b/app/code/core/Mage/Catalog/Model/Resource/Attribute.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Resource/Category.php b/app/code/core/Mage/Catalog/Model/Resource/Category.php index 9e2f534a0a57379d6ac735e2db000a22ce072f83..279a28dc0c48075b2e1975dd765175ba14e157a9 100755 --- a/app/code/core/Mage/Catalog/Model/Resource/Category.php +++ b/app/code/core/Mage/Catalog/Model/Resource/Category.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Resource/Category/Attribute/Collection.php b/app/code/core/Mage/Catalog/Model/Resource/Category/Attribute/Collection.php index 7d6582b6763f93151776219de551cfd579f19866..47b6f93525580845e0cf2ed297d7125aed34ec16 100755 --- a/app/code/core/Mage/Catalog/Model/Resource/Category/Attribute/Collection.php +++ b/app/code/core/Mage/Catalog/Model/Resource/Category/Attribute/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Resource/Category/Attribute/Frontend/Image.php b/app/code/core/Mage/Catalog/Model/Resource/Category/Attribute/Frontend/Image.php index e14fc74121d3e3c4a08f6eba790fdda4ca62d68f..8ea31058f69f981b02c04d56f6b73283ee227545 100755 --- a/app/code/core/Mage/Catalog/Model/Resource/Category/Attribute/Frontend/Image.php +++ b/app/code/core/Mage/Catalog/Model/Resource/Category/Attribute/Frontend/Image.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Resource/Category/Attribute/Source/Layout.php b/app/code/core/Mage/Catalog/Model/Resource/Category/Attribute/Source/Layout.php index f85eaeb4ddb68ef28ccd4f73c506c5f40a2c3d08..a0a6d438a8b223f0a7b0cd22191427020c691652 100755 --- a/app/code/core/Mage/Catalog/Model/Resource/Category/Attribute/Source/Layout.php +++ b/app/code/core/Mage/Catalog/Model/Resource/Category/Attribute/Source/Layout.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Resource/Category/Attribute/Source/Mode.php b/app/code/core/Mage/Catalog/Model/Resource/Category/Attribute/Source/Mode.php index 0fe2f3ec44c4b6b317339b7c7c57261935c5a813..d6d37fcf9307f8d76ae94e7eb4c2616738dde2f3 100755 --- a/app/code/core/Mage/Catalog/Model/Resource/Category/Attribute/Source/Mode.php +++ b/app/code/core/Mage/Catalog/Model/Resource/Category/Attribute/Source/Mode.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Resource/Category/Attribute/Source/Page.php b/app/code/core/Mage/Catalog/Model/Resource/Category/Attribute/Source/Page.php index 01a66c7dd2b2365498ace6751bbe8f5a082bcc48..92dad6b27ad52fdcd2cb75c7be6e0936e708bddb 100755 --- a/app/code/core/Mage/Catalog/Model/Resource/Category/Attribute/Source/Page.php +++ b/app/code/core/Mage/Catalog/Model/Resource/Category/Attribute/Source/Page.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Resource/Category/Collection.php b/app/code/core/Mage/Catalog/Model/Resource/Category/Collection.php index 570f173c7e089b3b65efeb47119187edd18def11..0a5399b474052a8b263212bdd6af7823d3a8c9fe 100755 --- a/app/code/core/Mage/Catalog/Model/Resource/Category/Collection.php +++ b/app/code/core/Mage/Catalog/Model/Resource/Category/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Resource/Category/Flat.php b/app/code/core/Mage/Catalog/Model/Resource/Category/Flat.php index d9cb9d0b698599d6a3f8bffc2f486b6917cbfece..5b1243ee60949520547ae7abaa1162e0cbfaa7f8 100755 --- a/app/code/core/Mage/Catalog/Model/Resource/Category/Flat.php +++ b/app/code/core/Mage/Catalog/Model/Resource/Category/Flat.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Resource/Category/Flat/Collection.php b/app/code/core/Mage/Catalog/Model/Resource/Category/Flat/Collection.php index 97633baad0ce7b4cd59a8240c0f864e677322702..09a1bfc1b22e96dd80d63f71ae30fe98cd15b8f0 100755 --- a/app/code/core/Mage/Catalog/Model/Resource/Category/Flat/Collection.php +++ b/app/code/core/Mage/Catalog/Model/Resource/Category/Flat/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Resource/Category/Indexer/Product.php b/app/code/core/Mage/Catalog/Model/Resource/Category/Indexer/Product.php index 3cdb923f7c332537dfe4e27dcc1e533e937677a5..ed11092b1a6c5923ba45e05e5398bc1a0fbf9d72 100755 --- a/app/code/core/Mage/Catalog/Model/Resource/Category/Indexer/Product.php +++ b/app/code/core/Mage/Catalog/Model/Resource/Category/Indexer/Product.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Resource/Category/Tree.php b/app/code/core/Mage/Catalog/Model/Resource/Category/Tree.php index a157d39880a4699c4623a84ee90a6ea561d177de..ace02926bd3758712452087e72225bd3801d2a60 100755 --- a/app/code/core/Mage/Catalog/Model/Resource/Category/Tree.php +++ b/app/code/core/Mage/Catalog/Model/Resource/Category/Tree.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Resource/Collection/Abstract.php b/app/code/core/Mage/Catalog/Model/Resource/Collection/Abstract.php index 4070d5cbfc952347a5b54292881e8bd7743607b0..4f38424c10a441402f754cffcb8ac6960ca23e93 100755 --- a/app/code/core/Mage/Catalog/Model/Resource/Collection/Abstract.php +++ b/app/code/core/Mage/Catalog/Model/Resource/Collection/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Resource/Config.php b/app/code/core/Mage/Catalog/Model/Resource/Config.php index c432db24832db0d2501261de15c35eee329f56e5..7db008b08eff46b547e43eeadd120a9dce1be187 100755 --- a/app/code/core/Mage/Catalog/Model/Resource/Config.php +++ b/app/code/core/Mage/Catalog/Model/Resource/Config.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Resource/Eav/Attribute.php b/app/code/core/Mage/Catalog/Model/Resource/Eav/Attribute.php index df79f103e27773a47dd47c97181c512404c1c8a4..418d15bb3c54d91e1b6e0d34a96f57c0fa1fcd59 100644 --- a/app/code/core/Mage/Catalog/Model/Resource/Eav/Attribute.php +++ b/app/code/core/Mage/Catalog/Model/Resource/Eav/Attribute.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Resource/Helper/Mysql4.php b/app/code/core/Mage/Catalog/Model/Resource/Helper/Mysql4.php index 8b394316fc3c3ddb24e707807b9344f2f4adacb6..7f52cdfda292c116e721222cf09e78b18a780ae2 100644 --- a/app/code/core/Mage/Catalog/Model/Resource/Helper/Mysql4.php +++ b/app/code/core/Mage/Catalog/Model/Resource/Helper/Mysql4.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Resource/Layer/Filter/Attribute.php b/app/code/core/Mage/Catalog/Model/Resource/Layer/Filter/Attribute.php index eb630bd382375bf2e16dbc7f995330bcb534bdaa..20f64e2d0d4bf6172b3100d6f8c6cb1ccd0bd448 100755 --- a/app/code/core/Mage/Catalog/Model/Resource/Layer/Filter/Attribute.php +++ b/app/code/core/Mage/Catalog/Model/Resource/Layer/Filter/Attribute.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Resource/Layer/Filter/Decimal.php b/app/code/core/Mage/Catalog/Model/Resource/Layer/Filter/Decimal.php index 628b7c83bfad48a29ed2346470584d00c4dca402..0becfc43aec7788895da042d713a273e210a7567 100755 --- a/app/code/core/Mage/Catalog/Model/Resource/Layer/Filter/Decimal.php +++ b/app/code/core/Mage/Catalog/Model/Resource/Layer/Filter/Decimal.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Resource/Layer/Filter/Price.php b/app/code/core/Mage/Catalog/Model/Resource/Layer/Filter/Price.php index 0c9674979a717db0bcb95d0bc9b0261f887adfde..f458d25c0a67c4a14026b1389bb07014eacfe55e 100755 --- a/app/code/core/Mage/Catalog/Model/Resource/Layer/Filter/Price.php +++ b/app/code/core/Mage/Catalog/Model/Resource/Layer/Filter/Price.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Resource/Product.php b/app/code/core/Mage/Catalog/Model/Resource/Product.php index 77eb7a9baaedd99d8477e0749b05769a6bd14842..562bc6802f94eb98ccb019198e683c61d14b8347 100755 --- a/app/code/core/Mage/Catalog/Model/Resource/Product.php +++ b/app/code/core/Mage/Catalog/Model/Resource/Product.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Resource/Product/Action.php b/app/code/core/Mage/Catalog/Model/Resource/Product/Action.php index 58354eadb32d8af83b6239deb9a673e709201174..834f50991900e9476afe659f7af71dc1e1868491 100755 --- a/app/code/core/Mage/Catalog/Model/Resource/Product/Action.php +++ b/app/code/core/Mage/Catalog/Model/Resource/Product/Action.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Resource/Product/Attribute/Backend/Groupprice.php b/app/code/core/Mage/Catalog/Model/Resource/Product/Attribute/Backend/Groupprice.php index 56eceeae73819e11041b9c68878fd7b9fa180d48..91e3364968073d2467f7014278b741eb155bc898 100755 --- a/app/code/core/Mage/Catalog/Model/Resource/Product/Attribute/Backend/Groupprice.php +++ b/app/code/core/Mage/Catalog/Model/Resource/Product/Attribute/Backend/Groupprice.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Resource/Product/Attribute/Backend/Groupprice/Abstract.php b/app/code/core/Mage/Catalog/Model/Resource/Product/Attribute/Backend/Groupprice/Abstract.php index 448d276e945c1539b738187e67bd125832b03640..6cd214933fa06390f51efa915a4fdff2927454bf 100644 --- a/app/code/core/Mage/Catalog/Model/Resource/Product/Attribute/Backend/Groupprice/Abstract.php +++ b/app/code/core/Mage/Catalog/Model/Resource/Product/Attribute/Backend/Groupprice/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Resource/Product/Attribute/Backend/Image.php b/app/code/core/Mage/Catalog/Model/Resource/Product/Attribute/Backend/Image.php index 014a05314ad208eecdf8adec006f21c0fc189c55..a512fcf8384cb7dbc89874e59b5be438f3106ee7 100755 --- a/app/code/core/Mage/Catalog/Model/Resource/Product/Attribute/Backend/Image.php +++ b/app/code/core/Mage/Catalog/Model/Resource/Product/Attribute/Backend/Image.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Resource/Product/Attribute/Backend/Media.php b/app/code/core/Mage/Catalog/Model/Resource/Product/Attribute/Backend/Media.php index 8e2c1c4dd6b60555e1f8aa13f423a3823d608baa..b97ccbe7c17daa5b2aac83ccc0f026c27f7782d6 100755 --- a/app/code/core/Mage/Catalog/Model/Resource/Product/Attribute/Backend/Media.php +++ b/app/code/core/Mage/Catalog/Model/Resource/Product/Attribute/Backend/Media.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Resource/Product/Attribute/Backend/Tierprice.php b/app/code/core/Mage/Catalog/Model/Resource/Product/Attribute/Backend/Tierprice.php index f8b86a2031ea4db571970e06e878c43a06537383..01f1628e6abec2021220192e8e936aec3f63ba37 100755 --- a/app/code/core/Mage/Catalog/Model/Resource/Product/Attribute/Backend/Tierprice.php +++ b/app/code/core/Mage/Catalog/Model/Resource/Product/Attribute/Backend/Tierprice.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Resource/Product/Attribute/Backend/Urlkey.php b/app/code/core/Mage/Catalog/Model/Resource/Product/Attribute/Backend/Urlkey.php index 090b5f7dc50cf2738d3091a785caf9805f0b5326..6eb89dd7afddc72dffbc587e0ac83ce9976879b0 100755 --- a/app/code/core/Mage/Catalog/Model/Resource/Product/Attribute/Backend/Urlkey.php +++ b/app/code/core/Mage/Catalog/Model/Resource/Product/Attribute/Backend/Urlkey.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Resource/Product/Attribute/Collection.php b/app/code/core/Mage/Catalog/Model/Resource/Product/Attribute/Collection.php index c5bc172ab159a8c320a0c2eccdd06536ea793fb4..11b8d59baafe46e8dcaeca78743c6bbcd68f7afd 100755 --- a/app/code/core/Mage/Catalog/Model/Resource/Product/Attribute/Collection.php +++ b/app/code/core/Mage/Catalog/Model/Resource/Product/Attribute/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Resource/Product/Collection.php b/app/code/core/Mage/Catalog/Model/Resource/Product/Collection.php index 0cacbc0a887fc1f9e51a668622a2aefc38c6c789..05310d4c8a68e4636eafa556123e0975e1deb4f6 100644 --- a/app/code/core/Mage/Catalog/Model/Resource/Product/Collection.php +++ b/app/code/core/Mage/Catalog/Model/Resource/Product/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Resource/Product/Collection/AssociatedProduct.php b/app/code/core/Mage/Catalog/Model/Resource/Product/Collection/AssociatedProduct.php index 0010d06b36dabecc08ae0b2298b8de74b9327d46..2271e1b5e5ca3a62eeb4657ac7f4535ce1dec29b 100644 --- a/app/code/core/Mage/Catalog/Model/Resource/Product/Collection/AssociatedProduct.php +++ b/app/code/core/Mage/Catalog/Model/Resource/Product/Collection/AssociatedProduct.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Resource/Product/Collection/AssociatedProductUpdater.php b/app/code/core/Mage/Catalog/Model/Resource/Product/Collection/AssociatedProductUpdater.php index 012750cbe00b42485c28cc84b60378d95c2fd89b..5b1011356c824f7daf04c0e0f6136e2109afa3cb 100644 --- a/app/code/core/Mage/Catalog/Model/Resource/Product/Collection/AssociatedProductUpdater.php +++ b/app/code/core/Mage/Catalog/Model/Resource/Product/Collection/AssociatedProductUpdater.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Resource/Product/Compare/Item.php b/app/code/core/Mage/Catalog/Model/Resource/Product/Compare/Item.php index 52e41aa5e62b51e043470686098199d54447a7cc..7fb615d1c8bb87e2d224f7d7e27ef49526767ad1 100755 --- a/app/code/core/Mage/Catalog/Model/Resource/Product/Compare/Item.php +++ b/app/code/core/Mage/Catalog/Model/Resource/Product/Compare/Item.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Resource/Product/Compare/Item/Collection.php b/app/code/core/Mage/Catalog/Model/Resource/Product/Compare/Item/Collection.php index 811101a3e4a3651d15335bb9de2b20854bb4bcb6..9851d821e38e2d2ab34d31dcfd2bd6510b264b05 100755 --- a/app/code/core/Mage/Catalog/Model/Resource/Product/Compare/Item/Collection.php +++ b/app/code/core/Mage/Catalog/Model/Resource/Product/Compare/Item/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Resource/Product/Flat.php b/app/code/core/Mage/Catalog/Model/Resource/Product/Flat.php index 2164d983ee2de5675d40e351f7e01649a2cdc7ac..27aa2390a91a5cbfb018fe465d65215b9acb3abb 100755 --- a/app/code/core/Mage/Catalog/Model/Resource/Product/Flat.php +++ b/app/code/core/Mage/Catalog/Model/Resource/Product/Flat.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Resource/Product/Flat/Indexer.php b/app/code/core/Mage/Catalog/Model/Resource/Product/Flat/Indexer.php index d7e075e22e973f14b28692f5b93f317247bb82f9..3ea964bf15d43c09d6268b7474e65fde68d67c50 100755 --- a/app/code/core/Mage/Catalog/Model/Resource/Product/Flat/Indexer.php +++ b/app/code/core/Mage/Catalog/Model/Resource/Product/Flat/Indexer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Resource/Product/Indexer/Abstract.php b/app/code/core/Mage/Catalog/Model/Resource/Product/Indexer/Abstract.php index 0966fc201cb1fcccb71d24679d1ad8289a906304..877e1cd9b04fe881f502dd75668dda2891e8d121 100755 --- a/app/code/core/Mage/Catalog/Model/Resource/Product/Indexer/Abstract.php +++ b/app/code/core/Mage/Catalog/Model/Resource/Product/Indexer/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Resource/Product/Indexer/Eav.php b/app/code/core/Mage/Catalog/Model/Resource/Product/Indexer/Eav.php index 2f6bcbfcac5decd307dbb819e427d698dab9654d..788fb1470a293a60c388e73888b3468154614269 100755 --- a/app/code/core/Mage/Catalog/Model/Resource/Product/Indexer/Eav.php +++ b/app/code/core/Mage/Catalog/Model/Resource/Product/Indexer/Eav.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Resource/Product/Indexer/Eav/Abstract.php b/app/code/core/Mage/Catalog/Model/Resource/Product/Indexer/Eav/Abstract.php index e4670ff829b6e89df4083bad5666db72136b47ee..a7fe63222a6cf8f3ff202babadff93166b2ded01 100755 --- a/app/code/core/Mage/Catalog/Model/Resource/Product/Indexer/Eav/Abstract.php +++ b/app/code/core/Mage/Catalog/Model/Resource/Product/Indexer/Eav/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Resource/Product/Indexer/Eav/Decimal.php b/app/code/core/Mage/Catalog/Model/Resource/Product/Indexer/Eav/Decimal.php index ef29833e03e999ad72d841096e514db938853454..8cc1a8b6646598918c9c20cfa139a9c0f36f27fc 100755 --- a/app/code/core/Mage/Catalog/Model/Resource/Product/Indexer/Eav/Decimal.php +++ b/app/code/core/Mage/Catalog/Model/Resource/Product/Indexer/Eav/Decimal.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Resource/Product/Indexer/Eav/Source.php b/app/code/core/Mage/Catalog/Model/Resource/Product/Indexer/Eav/Source.php index 11a8c84b5cec92d2db5f9de14579d9e42e9c984b..256357cbb7b0c1e8defcac298d26beaee963c832 100755 --- a/app/code/core/Mage/Catalog/Model/Resource/Product/Indexer/Eav/Source.php +++ b/app/code/core/Mage/Catalog/Model/Resource/Product/Indexer/Eav/Source.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Resource/Product/Indexer/Price.php b/app/code/core/Mage/Catalog/Model/Resource/Product/Indexer/Price.php index eca11bb026da690db5a43f9f1b929d75444edf3b..0fe8a2e990cee0b5702211d546ffe558d114041a 100755 --- a/app/code/core/Mage/Catalog/Model/Resource/Product/Indexer/Price.php +++ b/app/code/core/Mage/Catalog/Model/Resource/Product/Indexer/Price.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Resource/Product/Indexer/Price/Configurable.php b/app/code/core/Mage/Catalog/Model/Resource/Product/Indexer/Price/Configurable.php index 2f9b71eb596475e734de5d022c2fc05fb7d88a60..b9bc7dbfb3a7f6e1d1b7d2a69417a1da269fe8e2 100755 --- a/app/code/core/Mage/Catalog/Model/Resource/Product/Indexer/Price/Configurable.php +++ b/app/code/core/Mage/Catalog/Model/Resource/Product/Indexer/Price/Configurable.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Resource/Product/Indexer/Price/Default.php b/app/code/core/Mage/Catalog/Model/Resource/Product/Indexer/Price/Default.php index 99dd4b82b19664d96be59e1d7adfed932939c5f7..8357bfb3105af6dd269354f524ca3fc636a8fae9 100755 --- a/app/code/core/Mage/Catalog/Model/Resource/Product/Indexer/Price/Default.php +++ b/app/code/core/Mage/Catalog/Model/Resource/Product/Indexer/Price/Default.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Resource/Product/Indexer/Price/Grouped.php b/app/code/core/Mage/Catalog/Model/Resource/Product/Indexer/Price/Grouped.php index b774d8f4db06f9792ceac1440aa0de5a1632f496..24f6fd2bd23f69afb4c9b14e83588dd834d97de0 100755 --- a/app/code/core/Mage/Catalog/Model/Resource/Product/Indexer/Price/Grouped.php +++ b/app/code/core/Mage/Catalog/Model/Resource/Product/Indexer/Price/Grouped.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Resource/Product/Indexer/Price/Interface.php b/app/code/core/Mage/Catalog/Model/Resource/Product/Indexer/Price/Interface.php index 570e3898d3f24a0a6b2a5703b4535d4032932130..00b3129ee9ba9f41ae2890644ecca80c31d5ce0f 100755 --- a/app/code/core/Mage/Catalog/Model/Resource/Product/Indexer/Price/Interface.php +++ b/app/code/core/Mage/Catalog/Model/Resource/Product/Indexer/Price/Interface.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Resource/Product/Link.php b/app/code/core/Mage/Catalog/Model/Resource/Product/Link.php index 8c77c92cc3c420428a45840136b61250260b0ab3..6fb268d7f5575bc6ff1376c344752b1e3b8d9b51 100755 --- a/app/code/core/Mage/Catalog/Model/Resource/Product/Link.php +++ b/app/code/core/Mage/Catalog/Model/Resource/Product/Link.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Resource/Product/Link/Collection.php b/app/code/core/Mage/Catalog/Model/Resource/Product/Link/Collection.php index dc962ae102f3532dd44e1a245e5545aa1db216cb..056f92ddff3bd764c35b934f382cd01ac6db09fc 100755 --- a/app/code/core/Mage/Catalog/Model/Resource/Product/Link/Collection.php +++ b/app/code/core/Mage/Catalog/Model/Resource/Product/Link/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Resource/Product/Link/Product/Collection.php b/app/code/core/Mage/Catalog/Model/Resource/Product/Link/Product/Collection.php index d951df19d1cabbd611bdcd452a3cebd37ffced29..8e0b3d9be001336b7e3d9feb7a017592b31eec8f 100755 --- a/app/code/core/Mage/Catalog/Model/Resource/Product/Link/Product/Collection.php +++ b/app/code/core/Mage/Catalog/Model/Resource/Product/Link/Product/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Resource/Product/Option.php b/app/code/core/Mage/Catalog/Model/Resource/Product/Option.php index bdf69521fcbb79e12a4001eba6bd94a59bb8f585..22c18916d81fad1c5794edfd70e386b286e2cc4a 100755 --- a/app/code/core/Mage/Catalog/Model/Resource/Product/Option.php +++ b/app/code/core/Mage/Catalog/Model/Resource/Product/Option.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Resource/Product/Option/Collection.php b/app/code/core/Mage/Catalog/Model/Resource/Product/Option/Collection.php index 6644eebe3a9124c8f23c672e786b46d11bb56c45..e6076d04e408cb826e65c91158e24d06fb2d823e 100755 --- a/app/code/core/Mage/Catalog/Model/Resource/Product/Option/Collection.php +++ b/app/code/core/Mage/Catalog/Model/Resource/Product/Option/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Resource/Product/Option/Value.php b/app/code/core/Mage/Catalog/Model/Resource/Product/Option/Value.php index 697d498859cb65e3015b3ebfbd7452fcbc07d692..87f7402bdb0956258e1204aa835f7463c18d0540 100755 --- a/app/code/core/Mage/Catalog/Model/Resource/Product/Option/Value.php +++ b/app/code/core/Mage/Catalog/Model/Resource/Product/Option/Value.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Resource/Product/Option/Value/Collection.php b/app/code/core/Mage/Catalog/Model/Resource/Product/Option/Value/Collection.php index d1d212f6735b8860ac8358d5677ae4a5902810f5..cdecc2165ecafd6431bc8eb07c07a55378e6c998 100755 --- a/app/code/core/Mage/Catalog/Model/Resource/Product/Option/Value/Collection.php +++ b/app/code/core/Mage/Catalog/Model/Resource/Product/Option/Value/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Resource/Product/Relation.php b/app/code/core/Mage/Catalog/Model/Resource/Product/Relation.php index c955a275473830bf1e7d6cc3eb6d8ad50dda6dfd..823977945b7d11f01e6ad05c29f63a1623d4533b 100755 --- a/app/code/core/Mage/Catalog/Model/Resource/Product/Relation.php +++ b/app/code/core/Mage/Catalog/Model/Resource/Product/Relation.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Resource/Product/Status.php b/app/code/core/Mage/Catalog/Model/Resource/Product/Status.php index 137b25bc6cc4c9a674d8d954912f80bee94f8612..1c1d487469f5d3c0f121cb5047e83bded9fc2d2a 100755 --- a/app/code/core/Mage/Catalog/Model/Resource/Product/Status.php +++ b/app/code/core/Mage/Catalog/Model/Resource/Product/Status.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Resource/Product/Type/Configurable.php b/app/code/core/Mage/Catalog/Model/Resource/Product/Type/Configurable.php index e189a8f9e50badd59c0c67f79214b72ce39f3af1..3cc8512e8f998a24ccf9ab913213da32c9dd2365 100755 --- a/app/code/core/Mage/Catalog/Model/Resource/Product/Type/Configurable.php +++ b/app/code/core/Mage/Catalog/Model/Resource/Product/Type/Configurable.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Resource/Product/Type/Configurable/Attribute.php b/app/code/core/Mage/Catalog/Model/Resource/Product/Type/Configurable/Attribute.php index 114b35fcb4885612390fb26205958be7d5abb4ca..ead584cf8da879a0b03a7280dadb1e9583e88f89 100755 --- a/app/code/core/Mage/Catalog/Model/Resource/Product/Type/Configurable/Attribute.php +++ b/app/code/core/Mage/Catalog/Model/Resource/Product/Type/Configurable/Attribute.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Resource/Product/Type/Configurable/Attribute/Collection.php b/app/code/core/Mage/Catalog/Model/Resource/Product/Type/Configurable/Attribute/Collection.php index d63e7937613e7d8d1249e06a8555e8e09a1d1cbf..45e9b4e46a2df424d397bd1ba97185060cf1f97b 100755 --- a/app/code/core/Mage/Catalog/Model/Resource/Product/Type/Configurable/Attribute/Collection.php +++ b/app/code/core/Mage/Catalog/Model/Resource/Product/Type/Configurable/Attribute/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Resource/Product/Type/Configurable/Product/Collection.php b/app/code/core/Mage/Catalog/Model/Resource/Product/Type/Configurable/Product/Collection.php index daf72abf6cd8c87fc875e148ad16513dfb2c6efc..fcfa1f60fcbf5991224b97f95d271b3025db5d04 100755 --- a/app/code/core/Mage/Catalog/Model/Resource/Product/Type/Configurable/Product/Collection.php +++ b/app/code/core/Mage/Catalog/Model/Resource/Product/Type/Configurable/Product/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Resource/Product/Website.php b/app/code/core/Mage/Catalog/Model/Resource/Product/Website.php index 22edda38a670248fcf82fff125ab341318500e2c..aa47cd2a0f9a904f418e5f5df9bf6fb0b15dfd94 100755 --- a/app/code/core/Mage/Catalog/Model/Resource/Product/Website.php +++ b/app/code/core/Mage/Catalog/Model/Resource/Product/Website.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Resource/Setup.php b/app/code/core/Mage/Catalog/Model/Resource/Setup.php index 6e277dcc39b540cc3684f68f68881b216218f403..9f99684ce73de07a306131b93f1c053834e2dca9 100755 --- a/app/code/core/Mage/Catalog/Model/Resource/Setup.php +++ b/app/code/core/Mage/Catalog/Model/Resource/Setup.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Resource/Url.php b/app/code/core/Mage/Catalog/Model/Resource/Url.php index 9260c99d981d78654c0cb95452df1aa89d6bdb6c..17c293e11ad5adeb15bc2edea4d14bbb635fe96e 100755 --- a/app/code/core/Mage/Catalog/Model/Resource/Url.php +++ b/app/code/core/Mage/Catalog/Model/Resource/Url.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Session.php b/app/code/core/Mage/Catalog/Model/Session.php index 6a167a3affb64806a6427bc01212124df93a1055..1c077766cb088b4c4817f662796736d33a5259de 100644 --- a/app/code/core/Mage/Catalog/Model/Session.php +++ b/app/code/core/Mage/Catalog/Model/Session.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/System/Config/Backend/Catalog/Category/Flat.php b/app/code/core/Mage/Catalog/Model/System/Config/Backend/Catalog/Category/Flat.php index 4406d11ec9c68407e8101ba7e188dfa3fc80e223..861be8893e3934d199c29516588ac28af13dc63f 100644 --- a/app/code/core/Mage/Catalog/Model/System/Config/Backend/Catalog/Category/Flat.php +++ b/app/code/core/Mage/Catalog/Model/System/Config/Backend/Catalog/Category/Flat.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/System/Config/Backend/Catalog/Product/Flat.php b/app/code/core/Mage/Catalog/Model/System/Config/Backend/Catalog/Product/Flat.php index c9679e1ba405cfaa68dee93fcb854897c31dfbf4..718945f0d74eea793fe04aa2e807715255ed1969 100644 --- a/app/code/core/Mage/Catalog/Model/System/Config/Backend/Catalog/Product/Flat.php +++ b/app/code/core/Mage/Catalog/Model/System/Config/Backend/Catalog/Product/Flat.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/System/Config/Backend/Catalog/Url/Rewrite/Suffix.php b/app/code/core/Mage/Catalog/Model/System/Config/Backend/Catalog/Url/Rewrite/Suffix.php index 8246febfa88c440ce9611d3b19d04bda3b433f79..7bb0761310e1b52365be4747d59bfe2a18838f04 100644 --- a/app/code/core/Mage/Catalog/Model/System/Config/Backend/Catalog/Url/Rewrite/Suffix.php +++ b/app/code/core/Mage/Catalog/Model/System/Config/Backend/Catalog/Url/Rewrite/Suffix.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Template/Filter.php b/app/code/core/Mage/Catalog/Model/Template/Filter.php index 2c381c905308a6b6f240f1e9e80e81205eb7f997..e9f7fb3dbecb1b5c03869a94eba890022c41cd2a 100644 --- a/app/code/core/Mage/Catalog/Model/Template/Filter.php +++ b/app/code/core/Mage/Catalog/Model/Template/Filter.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/Model/Url.php b/app/code/core/Mage/Catalog/Model/Url.php index 7a124b30a4c0ad788aa7d41af98386a78965ffde..58d4f9de5ea38fcc0ec4e18b3e2743321549aefc 100644 --- a/app/code/core/Mage/Catalog/Model/Url.php +++ b/app/code/core/Mage/Catalog/Model/Url.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/controllers/CategoryController.php b/app/code/core/Mage/Catalog/controllers/CategoryController.php index e35bae9f76431de73786c0483bd3e119de70b928..b76a824b11b57a46449f74d28d0613b2c4aa17b2 100644 --- a/app/code/core/Mage/Catalog/controllers/CategoryController.php +++ b/app/code/core/Mage/Catalog/controllers/CategoryController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/controllers/IndexController.php b/app/code/core/Mage/Catalog/controllers/IndexController.php index 890f2cf7a22caffb7ea93816d3f4d70ac34ba8f4..5342a2ec88781a27d05ecc19cc5a8eca711e51ac 100644 --- a/app/code/core/Mage/Catalog/controllers/IndexController.php +++ b/app/code/core/Mage/Catalog/controllers/IndexController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/controllers/Product/CompareController.php b/app/code/core/Mage/Catalog/controllers/Product/CompareController.php index 09ab4724f7dbdf970269c087c474724e9bb1137b..a77d481bf9f5fea33533b1ed89e56ca78dd4fde0 100644 --- a/app/code/core/Mage/Catalog/controllers/Product/CompareController.php +++ b/app/code/core/Mage/Catalog/controllers/Product/CompareController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/controllers/ProductController.php b/app/code/core/Mage/Catalog/controllers/ProductController.php index e58557434950498bf9bc7d66b4a58aa99eea101b..fc087fc589dfaf2bf9cfddede9b1b924b985ea63 100644 --- a/app/code/core/Mage/Catalog/controllers/ProductController.php +++ b/app/code/core/Mage/Catalog/controllers/ProductController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/data/catalog_setup/data-install-1.6.0.0.php b/app/code/core/Mage/Catalog/data/catalog_setup/data-install-1.6.0.0.php index 9c6861101b5d1b66b385c5ae630ea4b238721beb..dbe7e73834d6ac36b6557ba01b66618bea96a0db 100644 --- a/app/code/core/Mage/Catalog/data/catalog_setup/data-install-1.6.0.0.php +++ b/app/code/core/Mage/Catalog/data/catalog_setup/data-install-1.6.0.0.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/data/catalog_setup/data-upgrade-1.6.0.0.12-1.6.0.0.13.php b/app/code/core/Mage/Catalog/data/catalog_setup/data-upgrade-1.6.0.0.12-1.6.0.0.13.php index ef7489fec8672d37006cc64ef92e37c77a2de7a6..212895338dd41caf68972a983b3f17b12311b146 100644 --- a/app/code/core/Mage/Catalog/data/catalog_setup/data-upgrade-1.6.0.0.12-1.6.0.0.13.php +++ b/app/code/core/Mage/Catalog/data/catalog_setup/data-upgrade-1.6.0.0.12-1.6.0.0.13.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/data/catalog_setup/data-upgrade-1.6.0.0.13-1.6.0.0.14.php b/app/code/core/Mage/Catalog/data/catalog_setup/data-upgrade-1.6.0.0.13-1.6.0.0.14.php index ec510d3061064b4cff69ea46da63806b13ea12e6..0aab32df93a699ee02df6e1acc17cfb3436142d8 100644 --- a/app/code/core/Mage/Catalog/data/catalog_setup/data-upgrade-1.6.0.0.13-1.6.0.0.14.php +++ b/app/code/core/Mage/Catalog/data/catalog_setup/data-upgrade-1.6.0.0.13-1.6.0.0.14.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ /** @var $installer Mage_Catalog_Model_Resource_Setup */ diff --git a/app/code/core/Mage/Catalog/data/catalog_setup/data-upgrade-1.6.0.0.15-1.6.0.0.16.php b/app/code/core/Mage/Catalog/data/catalog_setup/data-upgrade-1.6.0.0.15-1.6.0.0.16.php index c28c251c7db1f9f5051438d8750459bfcb399e0a..4a58acb46fe4023d2027423e175fa3a886803b06 100644 --- a/app/code/core/Mage/Catalog/data/catalog_setup/data-upgrade-1.6.0.0.15-1.6.0.0.16.php +++ b/app/code/core/Mage/Catalog/data/catalog_setup/data-upgrade-1.6.0.0.15-1.6.0.0.16.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/data/catalog_setup/data-upgrade-1.6.0.0.16-1.6.0.0.17.php b/app/code/core/Mage/Catalog/data/catalog_setup/data-upgrade-1.6.0.0.16-1.6.0.0.17.php index f2c856dae5a5aae7fddbd92dd6ad0217ce1261f5..4e9f3e88a2c9bd206bcb202bcb7bfd37941793be 100644 --- a/app/code/core/Mage/Catalog/data/catalog_setup/data-upgrade-1.6.0.0.16-1.6.0.0.17.php +++ b/app/code/core/Mage/Catalog/data/catalog_setup/data-upgrade-1.6.0.0.16-1.6.0.0.17.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/data/catalog_setup/data-upgrade-1.6.0.0.17-1.6.0.0.18.php b/app/code/core/Mage/Catalog/data/catalog_setup/data-upgrade-1.6.0.0.17-1.6.0.0.18.php index 62ef4a3be5d786cd9df7a74832e7b25f13b0e49f..7c65b44a254580733d2478f9ed290d9adf5ca7b9 100644 --- a/app/code/core/Mage/Catalog/data/catalog_setup/data-upgrade-1.6.0.0.17-1.6.0.0.18.php +++ b/app/code/core/Mage/Catalog/data/catalog_setup/data-upgrade-1.6.0.0.17-1.6.0.0.18.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/data/catalog_setup/data-upgrade-1.6.0.0.18-1.6.0.0.19.php b/app/code/core/Mage/Catalog/data/catalog_setup/data-upgrade-1.6.0.0.18-1.6.0.0.19.php index 4469c86598f691c3bbb2d53fb0a93d32288133d0..18992341e58d6307943c9d383c7d5e755a1a0eda 100644 --- a/app/code/core/Mage/Catalog/data/catalog_setup/data-upgrade-1.6.0.0.18-1.6.0.0.19.php +++ b/app/code/core/Mage/Catalog/data/catalog_setup/data-upgrade-1.6.0.0.18-1.6.0.0.19.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/data/catalog_setup/data-upgrade-1.6.0.0.19-1.6.0.0.20.php b/app/code/core/Mage/Catalog/data/catalog_setup/data-upgrade-1.6.0.0.19-1.6.0.0.20.php index 382cb74376df22c031b9f2d97d194eb6054f773b..ea56eb67323523ac84e8162f7169be6bf6a3f844 100644 --- a/app/code/core/Mage/Catalog/data/catalog_setup/data-upgrade-1.6.0.0.19-1.6.0.0.20.php +++ b/app/code/core/Mage/Catalog/data/catalog_setup/data-upgrade-1.6.0.0.19-1.6.0.0.20.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/data/catalog_setup/data-upgrade-1.6.0.0.4-1.6.0.0.5.php b/app/code/core/Mage/Catalog/data/catalog_setup/data-upgrade-1.6.0.0.4-1.6.0.0.5.php index df0d74443245392ae4f31642cba1b16bdcae59ff..c3fa3edc5c76b9ed856973d9a4788dcdab99e5fe 100644 --- a/app/code/core/Mage/Catalog/data/catalog_setup/data-upgrade-1.6.0.0.4-1.6.0.0.5.php +++ b/app/code/core/Mage/Catalog/data/catalog_setup/data-upgrade-1.6.0.0.4-1.6.0.0.5.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/data/catalog_setup/data-upgrade-1.6.0.0.8-1.6.0.0.9.php b/app/code/core/Mage/Catalog/data/catalog_setup/data-upgrade-1.6.0.0.8-1.6.0.0.9.php index 421c90cdecd7b60cbdf4a5bfb506221f171ee9e5..7b1968692d12e4e9f38b9be8e702feefdf0ecfbc 100644 --- a/app/code/core/Mage/Catalog/data/catalog_setup/data-upgrade-1.6.0.0.8-1.6.0.0.9.php +++ b/app/code/core/Mage/Catalog/data/catalog_setup/data-upgrade-1.6.0.0.8-1.6.0.0.9.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/etc/adminhtml/acl.xml b/app/code/core/Mage/Catalog/etc/adminhtml/acl.xml index c227afaeaf6b2f09eef4ac856d630793ec5f2ae1..addc4c7ad9724640807e2c981cb7edf4187cf943 100644 --- a/app/code/core/Mage/Catalog/etc/adminhtml/acl.xml +++ b/app/code/core/Mage/Catalog/etc/adminhtml/acl.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Catalog/etc/adminhtml/menu.xml b/app/code/core/Mage/Catalog/etc/adminhtml/menu.xml index a85493fc8291630099aa48545fce36cccc0a02ab..1e5483a812c392f447e9b680057a0ce522dc901f 100644 --- a/app/code/core/Mage/Catalog/etc/adminhtml/menu.xml +++ b/app/code/core/Mage/Catalog/etc/adminhtml/menu.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Catalog/etc/adminhtml/system.xml b/app/code/core/Mage/Catalog/etc/adminhtml/system.xml index 46262aaf1cb6519fe6b2199537263b4db4d04997..e8abef0012c357eea2b35295785506bf89ae6e4c 100644 --- a/app/code/core/Mage/Catalog/etc/adminhtml/system.xml +++ b/app/code/core/Mage/Catalog/etc/adminhtml/system.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Catalog/etc/config.xml b/app/code/core/Mage/Catalog/etc/config.xml index 4a529c650a1eb4938f22276da59f9294b8b1d348..54cdd37357817574d6d81b9b34e6998a0c7da940 100644 --- a/app/code/core/Mage/Catalog/etc/config.xml +++ b/app/code/core/Mage/Catalog/etc/config.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Catalog/etc/view.xml b/app/code/core/Mage/Catalog/etc/view.xml index 143c33aaf83f3df13c5abd1885ca2a789ea82bc2..6548bb5948505036f0a56ea0617143c125a3a4f8 100644 --- a/app/code/core/Mage/Catalog/etc/view.xml +++ b/app/code/core/Mage/Catalog/etc/view.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Catalog/etc/widget.xml b/app/code/core/Mage/Catalog/etc/widget.xml index 8aae23525e8c81558934ff2c524d3d4723b6cf0e..ae3238e82c8f952d185663d8c49e41f8abe61d85 100644 --- a/app/code/core/Mage/Catalog/etc/widget.xml +++ b/app/code/core/Mage/Catalog/etc/widget.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Catalog/sql/catalog_setup/install-1.6.0.0.php b/app/code/core/Mage/Catalog/sql/catalog_setup/install-1.6.0.0.php index 0330fd06cfe67d39ff218b27eda30f8b5a62e855..aa83ad0012ee54c6e5324b378d62b12b174b2184 100644 --- a/app/code/core/Mage/Catalog/sql/catalog_setup/install-1.6.0.0.php +++ b/app/code/core/Mage/Catalog/sql/catalog_setup/install-1.6.0.0.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/sql/catalog_setup/mysql4-upgrade-1.6.0.0.8-1.6.0.0.9.php b/app/code/core/Mage/Catalog/sql/catalog_setup/mysql4-upgrade-1.6.0.0.8-1.6.0.0.9.php index 9331b4a88fd3b1bd120134ab9c4e53167a875cc7..d10c724f7abc5896e750259db39236389c5fa646 100644 --- a/app/code/core/Mage/Catalog/sql/catalog_setup/mysql4-upgrade-1.6.0.0.8-1.6.0.0.9.php +++ b/app/code/core/Mage/Catalog/sql/catalog_setup/mysql4-upgrade-1.6.0.0.8-1.6.0.0.9.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/sql/catalog_setup/upgrade-1.6.0.0-1.6.0.0.1.php b/app/code/core/Mage/Catalog/sql/catalog_setup/upgrade-1.6.0.0-1.6.0.0.1.php index 59f6b078e1a5799dd371f2383ac5fe3956e57317..387844533a2776f29380eaafa3ee86edb4b5b870 100644 --- a/app/code/core/Mage/Catalog/sql/catalog_setup/upgrade-1.6.0.0-1.6.0.0.1.php +++ b/app/code/core/Mage/Catalog/sql/catalog_setup/upgrade-1.6.0.0-1.6.0.0.1.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/sql/catalog_setup/upgrade-1.6.0.0.1-1.6.0.0.2.php b/app/code/core/Mage/Catalog/sql/catalog_setup/upgrade-1.6.0.0.1-1.6.0.0.2.php index 254f36f9e8f7d61c6301ad1441403247ba31ed3a..7e759b16189f8d08183ed8ec4cacc5db408ad918 100644 --- a/app/code/core/Mage/Catalog/sql/catalog_setup/upgrade-1.6.0.0.1-1.6.0.0.2.php +++ b/app/code/core/Mage/Catalog/sql/catalog_setup/upgrade-1.6.0.0.1-1.6.0.0.2.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/sql/catalog_setup/upgrade-1.6.0.0.10-1.6.0.0.11.php b/app/code/core/Mage/Catalog/sql/catalog_setup/upgrade-1.6.0.0.10-1.6.0.0.11.php index b571180c70ceef26c3f8a78a39ee3da12d19d0e1..1b2dc11a401af75a9bbf6aa1a63d005288f6f901 100644 --- a/app/code/core/Mage/Catalog/sql/catalog_setup/upgrade-1.6.0.0.10-1.6.0.0.11.php +++ b/app/code/core/Mage/Catalog/sql/catalog_setup/upgrade-1.6.0.0.10-1.6.0.0.11.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/sql/catalog_setup/upgrade-1.6.0.0.11-1.6.0.0.12.php b/app/code/core/Mage/Catalog/sql/catalog_setup/upgrade-1.6.0.0.11-1.6.0.0.12.php index cdb45060dcc48731af65864c19276e738d300130..f1a7ae9257d8402dd5463539a4adcdafe255176a 100644 --- a/app/code/core/Mage/Catalog/sql/catalog_setup/upgrade-1.6.0.0.11-1.6.0.0.12.php +++ b/app/code/core/Mage/Catalog/sql/catalog_setup/upgrade-1.6.0.0.11-1.6.0.0.12.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/sql/catalog_setup/upgrade-1.6.0.0.14-1.6.0.0.15.php b/app/code/core/Mage/Catalog/sql/catalog_setup/upgrade-1.6.0.0.14-1.6.0.0.15.php index 057e72c50c41e5e7dd3795c45159a5427f20d942..75acb68ee29af706451e9f228155d3dff6ef2252 100644 --- a/app/code/core/Mage/Catalog/sql/catalog_setup/upgrade-1.6.0.0.14-1.6.0.0.15.php +++ b/app/code/core/Mage/Catalog/sql/catalog_setup/upgrade-1.6.0.0.14-1.6.0.0.15.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/sql/catalog_setup/upgrade-1.6.0.0.17-1.6.0.0.18.php b/app/code/core/Mage/Catalog/sql/catalog_setup/upgrade-1.6.0.0.17-1.6.0.0.18.php index 123b7b6c907c10f3ffea7525ccbb01cb5543c7d9..83ef7cb91be71647957f98870271249a772b2b37 100644 --- a/app/code/core/Mage/Catalog/sql/catalog_setup/upgrade-1.6.0.0.17-1.6.0.0.18.php +++ b/app/code/core/Mage/Catalog/sql/catalog_setup/upgrade-1.6.0.0.17-1.6.0.0.18.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/sql/catalog_setup/upgrade-1.6.0.0.2-1.6.0.0.3.php b/app/code/core/Mage/Catalog/sql/catalog_setup/upgrade-1.6.0.0.2-1.6.0.0.3.php index d09edad7851521c0d1385773c61efabc50971400..51999a7f0106166c585acac50a9c741e0a2bcdaa 100644 --- a/app/code/core/Mage/Catalog/sql/catalog_setup/upgrade-1.6.0.0.2-1.6.0.0.3.php +++ b/app/code/core/Mage/Catalog/sql/catalog_setup/upgrade-1.6.0.0.2-1.6.0.0.3.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/sql/catalog_setup/upgrade-1.6.0.0.3-1.6.0.0.4.php b/app/code/core/Mage/Catalog/sql/catalog_setup/upgrade-1.6.0.0.3-1.6.0.0.4.php index 1e7ea65e778b6a49b6fe24343fc857c08dc94200..b94b781583e037aed409a631c0027028f37848b3 100644 --- a/app/code/core/Mage/Catalog/sql/catalog_setup/upgrade-1.6.0.0.3-1.6.0.0.4.php +++ b/app/code/core/Mage/Catalog/sql/catalog_setup/upgrade-1.6.0.0.3-1.6.0.0.4.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/sql/catalog_setup/upgrade-1.6.0.0.4-1.6.0.0.5.php b/app/code/core/Mage/Catalog/sql/catalog_setup/upgrade-1.6.0.0.4-1.6.0.0.5.php index 4a3cb957f215a9a334bc14874e91debcec20f972..b6d62c361d2939049a26937ff2b56be07dd38b64 100644 --- a/app/code/core/Mage/Catalog/sql/catalog_setup/upgrade-1.6.0.0.4-1.6.0.0.5.php +++ b/app/code/core/Mage/Catalog/sql/catalog_setup/upgrade-1.6.0.0.4-1.6.0.0.5.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/sql/catalog_setup/upgrade-1.6.0.0.5-1.6.0.0.6.php b/app/code/core/Mage/Catalog/sql/catalog_setup/upgrade-1.6.0.0.5-1.6.0.0.6.php index b21eb5871c7a91e8cbc49ed7773ad3a7ecd136ba..b3abc0a788437aa82ac4db6f2eeddff5977522ec 100644 --- a/app/code/core/Mage/Catalog/sql/catalog_setup/upgrade-1.6.0.0.5-1.6.0.0.6.php +++ b/app/code/core/Mage/Catalog/sql/catalog_setup/upgrade-1.6.0.0.5-1.6.0.0.6.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/sql/catalog_setup/upgrade-1.6.0.0.6-1.6.0.0.7.php b/app/code/core/Mage/Catalog/sql/catalog_setup/upgrade-1.6.0.0.6-1.6.0.0.7.php index 12685a552328d75ed518798308b5845d8a87fb27..1f9bce3ed576df641fe9e3cd8fad3b7d74c95813 100644 --- a/app/code/core/Mage/Catalog/sql/catalog_setup/upgrade-1.6.0.0.6-1.6.0.0.7.php +++ b/app/code/core/Mage/Catalog/sql/catalog_setup/upgrade-1.6.0.0.6-1.6.0.0.7.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/sql/catalog_setup/upgrade-1.6.0.0.7-1.6.0.0.8.php b/app/code/core/Mage/Catalog/sql/catalog_setup/upgrade-1.6.0.0.7-1.6.0.0.8.php index 42847982c2044dcd9b31f7328afd3ce66c3d05fd..1c8a6fcfe321e7229d1915fbc2a79a9e2cc6fa3b 100644 --- a/app/code/core/Mage/Catalog/sql/catalog_setup/upgrade-1.6.0.0.7-1.6.0.0.8.php +++ b/app/code/core/Mage/Catalog/sql/catalog_setup/upgrade-1.6.0.0.7-1.6.0.0.8.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/sql/catalog_setup/upgrade-1.6.0.0.9-1.6.0.0.10.php b/app/code/core/Mage/Catalog/sql/catalog_setup/upgrade-1.6.0.0.9-1.6.0.0.10.php index 4b4ad95eccf29d75aade3924460c79534e558034..d8ded60f2b561fdb7b29bf08eda6cc0f30b15f1c 100644 --- a/app/code/core/Mage/Catalog/sql/catalog_setup/upgrade-1.6.0.0.9-1.6.0.0.10.php +++ b/app/code/core/Mage/Catalog/sql/catalog_setup/upgrade-1.6.0.0.9-1.6.0.0.10.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Catalog/view/frontend/category/view.phtml b/app/code/core/Mage/Catalog/view/frontend/category/view.phtml index 6f663a630db0d808985dd69171f14486d0d220fa..3319fc7dbaecee3b9f23f97cb4cb380ffcda9aeb 100644 --- a/app/code/core/Mage/Catalog/view/frontend/category/view.phtml +++ b/app/code/core/Mage/Catalog/view/frontend/category/view.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Catalog/view/frontend/category/widget/link/link_block.phtml b/app/code/core/Mage/Catalog/view/frontend/category/widget/link/link_block.phtml index 71ca917c73265dcd7fb14c7fb11054b28b972ba4..b41858ab8b394d77d12d94c3a76a978a71c17713 100644 --- a/app/code/core/Mage/Catalog/view/frontend/category/widget/link/link_block.phtml +++ b/app/code/core/Mage/Catalog/view/frontend/category/widget/link/link_block.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Catalog/view/frontend/category/widget/link/link_inline.phtml b/app/code/core/Mage/Catalog/view/frontend/category/widget/link/link_inline.phtml index 70eca75921db564c0b68daaa889711bb3487f468..8c9808693b5b343c3320253312e378cb8ee3d1c8 100644 --- a/app/code/core/Mage/Catalog/view/frontend/category/widget/link/link_inline.phtml +++ b/app/code/core/Mage/Catalog/view/frontend/category/widget/link/link_inline.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Catalog/view/frontend/js/compare.js b/app/code/core/Mage/Catalog/view/frontend/js/compare.js index 48ef19bbfbb487f7a46b5a5a03da856bb3eaf0a2..d6bfdb4d690422b9579ab8bc1e96b1db3737df58 100644 --- a/app/code/core/Mage/Catalog/view/frontend/js/compare.js +++ b/app/code/core/Mage/Catalog/view/frontend/js/compare.js @@ -19,7 +19,7 @@ * * @category mage compare list * @package mage - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /*jshint browser:true jquery:true*/ diff --git a/app/code/core/Mage/Catalog/view/frontend/js/configurable.js b/app/code/core/Mage/Catalog/view/frontend/js/configurable.js index b316db2fc494027a50e9e73e6f2d5defbb9810b4..236512b259ad752deef138b24ddf9eecf94bf751 100644 --- a/app/code/core/Mage/Catalog/view/frontend/js/configurable.js +++ b/app/code/core/Mage/Catalog/view/frontend/js/configurable.js @@ -19,7 +19,7 @@ * * @category frontend configurable product price option * @package mage - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /*jshint evil:true browser:true jquery:true*/ diff --git a/app/code/core/Mage/Catalog/view/frontend/js/file-option.js b/app/code/core/Mage/Catalog/view/frontend/js/file-option.js index 31432a5581e51b9a82924c0caef6b9c3569e485c..354d49d13500491975d1ac2d64ac43c927242f42 100644 --- a/app/code/core/Mage/Catalog/view/frontend/js/file-option.js +++ b/app/code/core/Mage/Catalog/view/frontend/js/file-option.js @@ -19,7 +19,7 @@ * * @category mage file change/delete * @package mage - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /*jshint browser:true jquery:true*/ diff --git a/app/code/core/Mage/Catalog/view/frontend/js/grid.js b/app/code/core/Mage/Catalog/view/frontend/js/grid.js index 994beb576780778337c542adf3343b0e09626769..483ab0389eef554bf9ed5cde0205b0387062a689 100644 --- a/app/code/core/Mage/Catalog/view/frontend/js/grid.js +++ b/app/code/core/Mage/Catalog/view/frontend/js/grid.js @@ -19,7 +19,7 @@ * * @category frontend grid * @package mage - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /*jshint browser:true jquery:true*/ diff --git a/app/code/core/Mage/Catalog/view/frontend/js/list.js b/app/code/core/Mage/Catalog/view/frontend/js/list.js index 69587bf88af40947556ad0a0ce910c58526c420f..bb35676e03856b2b6fa754abb20fca5037269e67 100644 --- a/app/code/core/Mage/Catalog/view/frontend/js/list.js +++ b/app/code/core/Mage/Catalog/view/frontend/js/list.js @@ -19,7 +19,7 @@ * * @category mage compare list * @package mage - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /*jshint browser:true jquery:true*/ diff --git a/app/code/core/Mage/Catalog/view/frontend/js/mage-attributes-processing.js b/app/code/core/Mage/Catalog/view/frontend/js/mage-attributes-processing.js index da8d85a8cb5ef26c3da6d436548b559b7c1dc8e1..7a7f2c143778174e2d00425345e25eff361643d6 100644 --- a/app/code/core/Mage/Catalog/view/frontend/js/mage-attributes-processing.js +++ b/app/code/core/Mage/Catalog/view/frontend/js/mage-attributes-processing.js @@ -19,7 +19,7 @@ * * @category frontend poll * @package mage - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /*jshint evil:true browser:true jquery:true*/ diff --git a/app/code/core/Mage/Catalog/view/frontend/js/msrp.js b/app/code/core/Mage/Catalog/view/frontend/js/msrp.js index f40fd3e948c8afcd2bd11244407291b6e2e07ea4..e3333f28f27770866e5a25e6813bc6576658e1dd 100644 --- a/app/code/core/Mage/Catalog/view/frontend/js/msrp.js +++ b/app/code/core/Mage/Catalog/view/frontend/js/msrp.js @@ -19,7 +19,7 @@ * * @category frontend product msrp * @package mage - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Catalog/view/frontend/js/price-option.js b/app/code/core/Mage/Catalog/view/frontend/js/price-option.js index 30371f0c8f8cb967e73c33257ea50ea73407302d..5518b82e138918c16c1e54a7bb742e05d1d51434 100644 --- a/app/code/core/Mage/Catalog/view/frontend/js/price-option.js +++ b/app/code/core/Mage/Catalog/view/frontend/js/price-option.js @@ -19,7 +19,7 @@ * * @category frontend product price option * @package mage - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /*jshint evil:true browser:true jquery:true*/ diff --git a/app/code/core/Mage/Catalog/view/frontend/js/zoom.js b/app/code/core/Mage/Catalog/view/frontend/js/zoom.js index 1977553e95dc7e1cbbfbea51b55ade145b505d22..5efada5bc591cfc573adfbff509322da02653bd8 100644 --- a/app/code/core/Mage/Catalog/view/frontend/js/zoom.js +++ b/app/code/core/Mage/Catalog/view/frontend/js/zoom.js @@ -19,7 +19,7 @@ * * @category frontend image zoom * @package mage - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /*jshint evil:true browser:true jquery:true*/ diff --git a/app/code/core/Mage/Catalog/view/frontend/layer/filter.phtml b/app/code/core/Mage/Catalog/view/frontend/layer/filter.phtml index 3387297f13d91df7f653cf15dac59556f3166878..f4246a47cec7e05d705c2111127d44a1dd0d239b 100644 --- a/app/code/core/Mage/Catalog/view/frontend/layer/filter.phtml +++ b/app/code/core/Mage/Catalog/view/frontend/layer/filter.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Catalog/view/frontend/layer/state.phtml b/app/code/core/Mage/Catalog/view/frontend/layer/state.phtml index 4291dcfd2740c8d16749f84ad5ccabc7d78e9d58..b05a6271a6a7b66fb25df57e4d3f7f7d36c41ac5 100644 --- a/app/code/core/Mage/Catalog/view/frontend/layer/state.phtml +++ b/app/code/core/Mage/Catalog/view/frontend/layer/state.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Catalog/view/frontend/layer/view.phtml b/app/code/core/Mage/Catalog/view/frontend/layer/view.phtml index e368964f2bbb2e95bfe8822ceda74aed289d123b..c6dee71e9b17d01ed658abea908ec45a4fd4df8c 100644 --- a/app/code/core/Mage/Catalog/view/frontend/layer/view.phtml +++ b/app/code/core/Mage/Catalog/view/frontend/layer/view.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Catalog/view/frontend/layout.xml b/app/code/core/Mage/Catalog/view/frontend/layout.xml index 66aa1783edd472fb5ec24cc8e911a7e3f96c1964..7bd2167e46a64c0fcf4192285540c710b5aa71a9 100644 --- a/app/code/core/Mage/Catalog/view/frontend/layout.xml +++ b/app/code/core/Mage/Catalog/view/frontend/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Catalog/view/frontend/msrp.js b/app/code/core/Mage/Catalog/view/frontend/msrp.js index 35b5a2b833ab2c9624b2cd433659be4187aa726b..9340c55bbad3f4a3f8b98c3753c03b939768e788 100644 --- a/app/code/core/Mage/Catalog/view/frontend/msrp.js +++ b/app/code/core/Mage/Catalog/view/frontend/msrp.js @@ -19,7 +19,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ if (!window.Catalog) { diff --git a/app/code/core/Mage/Catalog/view/frontend/msrp.xml b/app/code/core/Mage/Catalog/view/frontend/msrp.xml index 6efe7c89c1fb9f58d1f88559dd04696a9a1bdc6d..0d8d9887518a7f53c5778cabe0b1c1f63a301a0c 100644 --- a/app/code/core/Mage/Catalog/view/frontend/msrp.xml +++ b/app/code/core/Mage/Catalog/view/frontend/msrp.xml @@ -21,7 +21,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Catalog/view/frontend/msrp/popup.phtml b/app/code/core/Mage/Catalog/view/frontend/msrp/popup.phtml index 83b30fb4f77e62daed94e09d23b4e0222b89e0e9..3e7dbb2f2284609f59ca4867c19a7fdae27861f3 100644 --- a/app/code/core/Mage/Catalog/view/frontend/msrp/popup.phtml +++ b/app/code/core/Mage/Catalog/view/frontend/msrp/popup.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Catalog/view/frontend/navigation/left.phtml b/app/code/core/Mage/Catalog/view/frontend/navigation/left.phtml index e9a2bb4cdeeb4014a04d2691821f65239b420847..f622bd1b14bd4b31c4ac2d11f51b6ca115f59cad 100644 --- a/app/code/core/Mage/Catalog/view/frontend/navigation/left.phtml +++ b/app/code/core/Mage/Catalog/view/frontend/navigation/left.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Catalog/view/frontend/navigation/top.phtml b/app/code/core/Mage/Catalog/view/frontend/navigation/top.phtml index 36d2d7fa0128aea84053ed6462fe6f3c89ff9f75..e0472e2648b7288243559654bddad00430715fad 100644 --- a/app/code/core/Mage/Catalog/view/frontend/navigation/top.phtml +++ b/app/code/core/Mage/Catalog/view/frontend/navigation/top.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Catalog/view/frontend/product/compare/list.phtml b/app/code/core/Mage/Catalog/view/frontend/product/compare/list.phtml index 81c724bf8a7913450e5d32bf769328c006299c11..9658c14743d5413b559f56d842fb969bfb398ef3 100644 --- a/app/code/core/Mage/Catalog/view/frontend/product/compare/list.phtml +++ b/app/code/core/Mage/Catalog/view/frontend/product/compare/list.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /* @var $this Mage_Catalog_Block_Product_Compare_List */ diff --git a/app/code/core/Mage/Catalog/view/frontend/product/compare/sidebar.phtml b/app/code/core/Mage/Catalog/view/frontend/product/compare/sidebar.phtml index 7fcd0792292d3a1a7cc3bad11d0b0633ba4aef14..9eb8b3f1fa97b54b1fd9300810d03637561496f7 100644 --- a/app/code/core/Mage/Catalog/view/frontend/product/compare/sidebar.phtml +++ b/app/code/core/Mage/Catalog/view/frontend/product/compare/sidebar.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /* @var $this Mage_Catalog_Block_Product_Compare_Sidebar */ diff --git a/app/code/core/Mage/Catalog/view/frontend/product/gallery.phtml b/app/code/core/Mage/Catalog/view/frontend/product/gallery.phtml index ac989b0cfb257049ae48bdb2eaf2166df158dfc6..9353b0aba86aa1613f7cf3df17ee35f4bc983ee4 100644 --- a/app/code/core/Mage/Catalog/view/frontend/product/gallery.phtml +++ b/app/code/core/Mage/Catalog/view/frontend/product/gallery.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Catalog/view/frontend/product/list.phtml b/app/code/core/Mage/Catalog/view/frontend/product/list.phtml index 68b2d398f7ffcaabcf924f035e5b2ce0c7f272c4..32486fd66449bfb51f907ef7dcb807cc994b092d 100644 --- a/app/code/core/Mage/Catalog/view/frontend/product/list.phtml +++ b/app/code/core/Mage/Catalog/view/frontend/product/list.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Catalog/view/frontend/product/list/related.phtml b/app/code/core/Mage/Catalog/view/frontend/product/list/related.phtml index 84eda90ba9c71885fbfa44fd2db47d738b66ae94..4f71521b09067bd214df30d59c19cfcc4aef2e2c 100644 --- a/app/code/core/Mage/Catalog/view/frontend/product/list/related.phtml +++ b/app/code/core/Mage/Catalog/view/frontend/product/list/related.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Catalog/view/frontend/product/list/toolbar.phtml b/app/code/core/Mage/Catalog/view/frontend/product/list/toolbar.phtml index 4437e7ee80562bed6fa006812830660b91e686bf..6848da2ebf323afdd0e95e29aa9b93a7021cf6dc 100644 --- a/app/code/core/Mage/Catalog/view/frontend/product/list/toolbar.phtml +++ b/app/code/core/Mage/Catalog/view/frontend/product/list/toolbar.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Catalog/view/frontend/product/list/upsell.phtml b/app/code/core/Mage/Catalog/view/frontend/product/list/upsell.phtml index 036a63a889aa36702d6b34fac6a8ff1a63338d08..fb4be017b3b70e54c32ae53f983499e0f1dc5bf2 100644 --- a/app/code/core/Mage/Catalog/view/frontend/product/list/upsell.phtml +++ b/app/code/core/Mage/Catalog/view/frontend/product/list/upsell.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Catalog/view/frontend/product/new.phtml b/app/code/core/Mage/Catalog/view/frontend/product/new.phtml index caf283852b8207ca7dfd8dcfceb1277a7373c5d6..b63900f3d24c6c303cae7dfb701997379ad605d5 100644 --- a/app/code/core/Mage/Catalog/view/frontend/product/new.phtml +++ b/app/code/core/Mage/Catalog/view/frontend/product/new.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Catalog/view/frontend/product/price.phtml b/app/code/core/Mage/Catalog/view/frontend/product/price.phtml index 3e700281d53cae264bf26b13d321227fded396be..1e3a82de1e7d735cbf62e03c206b11ef9e239206 100644 --- a/app/code/core/Mage/Catalog/view/frontend/product/price.phtml +++ b/app/code/core/Mage/Catalog/view/frontend/product/price.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Catalog/view/frontend/product/price_msrp.phtml b/app/code/core/Mage/Catalog/view/frontend/product/price_msrp.phtml index 689403d5d59495311eb1496518e4cc0b83108bd6..914f8b0a80a12f37f9717a0da0bce1fdc055640e 100644 --- a/app/code/core/Mage/Catalog/view/frontend/product/price_msrp.phtml +++ b/app/code/core/Mage/Catalog/view/frontend/product/price_msrp.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Catalog/view/frontend/product/price_msrp_item.phtml b/app/code/core/Mage/Catalog/view/frontend/product/price_msrp_item.phtml index 8eaa838c0cb1dd062bddceda4ef0162e8fac0d52..33d3fadc4cf53efa042b0ff6cf9652842aee67f5 100644 --- a/app/code/core/Mage/Catalog/view/frontend/product/price_msrp_item.phtml +++ b/app/code/core/Mage/Catalog/view/frontend/product/price_msrp_item.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Catalog/view/frontend/product/price_msrp_noform.phtml b/app/code/core/Mage/Catalog/view/frontend/product/price_msrp_noform.phtml index 91c489fbf05db08fa8fcba267dae034c29b32eb8..ecbbebab91d51abe50be1dc85ebdcf90b14103c4 100644 --- a/app/code/core/Mage/Catalog/view/frontend/product/price_msrp_noform.phtml +++ b/app/code/core/Mage/Catalog/view/frontend/product/price_msrp_noform.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Catalog/view/frontend/product/price_msrp_rss.phtml b/app/code/core/Mage/Catalog/view/frontend/product/price_msrp_rss.phtml index fb8a35c0888935bb0901138508cc76f83a6688a5..dc4282ce7ba26f994e74744c56fae125d0fa78bf 100644 --- a/app/code/core/Mage/Catalog/view/frontend/product/price_msrp_rss.phtml +++ b/app/code/core/Mage/Catalog/view/frontend/product/price_msrp_rss.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Catalog/view/frontend/product/view.phtml b/app/code/core/Mage/Catalog/view/frontend/product/view.phtml index c6f8948bd0a79e59f53832846f7d64763eb302fd..aa6d7bba48618fb65ef7ac61d023dada505a6cfa 100644 --- a/app/code/core/Mage/Catalog/view/frontend/product/view.phtml +++ b/app/code/core/Mage/Catalog/view/frontend/product/view.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Catalog/view/frontend/product/view/additional.phtml b/app/code/core/Mage/Catalog/view/frontend/product/view/additional.phtml index 288167f4cfb4760faa0ac8f772ce2e942020853d..2a05fee5361415c97cc15d5570925515c6a17bc3 100644 --- a/app/code/core/Mage/Catalog/view/frontend/product/view/additional.phtml +++ b/app/code/core/Mage/Catalog/view/frontend/product/view/additional.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Catalog/view/frontend/product/view/addto.phtml b/app/code/core/Mage/Catalog/view/frontend/product/view/addto.phtml index 20a2801f9fc5b934d9954ff40444bdf5241ea177..3c682b0bce0904098d70702bbd41a657d023383f 100644 --- a/app/code/core/Mage/Catalog/view/frontend/product/view/addto.phtml +++ b/app/code/core/Mage/Catalog/view/frontend/product/view/addto.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Catalog/view/frontend/product/view/addtocart.phtml b/app/code/core/Mage/Catalog/view/frontend/product/view/addtocart.phtml index 4e2c1de5199f0283a2d6a6bcc6fe94c4bdf89b3a..f04de355207e22d5125c100c30905f8a63fa3381 100644 --- a/app/code/core/Mage/Catalog/view/frontend/product/view/addtocart.phtml +++ b/app/code/core/Mage/Catalog/view/frontend/product/view/addtocart.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Catalog/view/frontend/product/view/attributes.phtml b/app/code/core/Mage/Catalog/view/frontend/product/view/attributes.phtml index b355973318cc32cbd0b446f39c64ce6fe4c9ea89..fcafbc84b3e0f68247d283b26ff4bb67f321da89 100644 --- a/app/code/core/Mage/Catalog/view/frontend/product/view/attributes.phtml +++ b/app/code/core/Mage/Catalog/view/frontend/product/view/attributes.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Catalog/view/frontend/product/view/description.phtml b/app/code/core/Mage/Catalog/view/frontend/product/view/description.phtml index 916c3f6f98ae1da0e7738351775797bc704e32ce..507766864a29e9d844344d79a08fa5f9570c2850 100644 --- a/app/code/core/Mage/Catalog/view/frontend/product/view/description.phtml +++ b/app/code/core/Mage/Catalog/view/frontend/product/view/description.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Catalog/view/frontend/product/view/media.phtml b/app/code/core/Mage/Catalog/view/frontend/product/view/media.phtml index 78fd77431a6dbd7974aa78f4c64bc907d31fba9d..60d8da4ee19a34bcd6c5c313745a051feb59d3a3 100644 --- a/app/code/core/Mage/Catalog/view/frontend/product/view/media.phtml +++ b/app/code/core/Mage/Catalog/view/frontend/product/view/media.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Catalog/view/frontend/product/view/options.phtml b/app/code/core/Mage/Catalog/view/frontend/product/view/options.phtml index 33c406ecd0adff8e469e6995ffed50ee8be01243..9d38bdc5f2c458be8bc2153b03d583a4630cb8ee 100644 --- a/app/code/core/Mage/Catalog/view/frontend/product/view/options.phtml +++ b/app/code/core/Mage/Catalog/view/frontend/product/view/options.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /* @var $this Mage_Catalog_Block_Product_View_Options */ diff --git a/app/code/core/Mage/Catalog/view/frontend/product/view/options/js.phtml b/app/code/core/Mage/Catalog/view/frontend/product/view/options/js.phtml index c14e0943243180aabbc4dd29e9f0bc13b966246b..2babaf2baf9626a7d45340aac447027e2c1df015 100644 --- a/app/code/core/Mage/Catalog/view/frontend/product/view/options/js.phtml +++ b/app/code/core/Mage/Catalog/view/frontend/product/view/options/js.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Catalog/view/frontend/product/view/options/type/date.phtml b/app/code/core/Mage/Catalog/view/frontend/product/view/options/type/date.phtml index 7c36906d691522a437d023c4abfd2eb633571dca..90fce38b45628ad54c94d55ddfd9539fd94af97b 100644 --- a/app/code/core/Mage/Catalog/view/frontend/product/view/options/type/date.phtml +++ b/app/code/core/Mage/Catalog/view/frontend/product/view/options/type/date.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Catalog/view/frontend/product/view/options/type/default.phtml b/app/code/core/Mage/Catalog/view/frontend/product/view/options/type/default.phtml index b10fc280c59c7e0f3f548d2cc40a3c2d6c1402bf..b7bba10166c0c48a2435c4587d10c132865de5d2 100644 --- a/app/code/core/Mage/Catalog/view/frontend/product/view/options/type/default.phtml +++ b/app/code/core/Mage/Catalog/view/frontend/product/view/options/type/default.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Catalog/view/frontend/product/view/options/type/file.phtml b/app/code/core/Mage/Catalog/view/frontend/product/view/options/type/file.phtml index 2941e6cca2f34800e1adfa2e819dbbc2b4c89b81..31260c486048aaa717017549a515192e8305e553 100644 --- a/app/code/core/Mage/Catalog/view/frontend/product/view/options/type/file.phtml +++ b/app/code/core/Mage/Catalog/view/frontend/product/view/options/type/file.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Catalog/view/frontend/product/view/options/type/select.phtml b/app/code/core/Mage/Catalog/view/frontend/product/view/options/type/select.phtml index 727a72fb7cf575bfb3ae8a0bd8dabe28a4742272..6f7f4f979a5ae139896ea16316f65a09620435ee 100644 --- a/app/code/core/Mage/Catalog/view/frontend/product/view/options/type/select.phtml +++ b/app/code/core/Mage/Catalog/view/frontend/product/view/options/type/select.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Catalog/view/frontend/product/view/options/type/text.phtml b/app/code/core/Mage/Catalog/view/frontend/product/view/options/type/text.phtml index 2a2f0265344c21fb33de796dbf033685e7e0dec6..29d3be84e0c4d53edf82f97f295e8a83163faa90 100644 --- a/app/code/core/Mage/Catalog/view/frontend/product/view/options/type/text.phtml +++ b/app/code/core/Mage/Catalog/view/frontend/product/view/options/type/text.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Catalog/view/frontend/product/view/options/wrapper.phtml b/app/code/core/Mage/Catalog/view/frontend/product/view/options/wrapper.phtml index 7ab9aa5b81fbded6c64f458c2d1efec73c58a569..c9af9d9a0b7f3b29307af6c6eafbb76dc3504952 100644 --- a/app/code/core/Mage/Catalog/view/frontend/product/view/options/wrapper.phtml +++ b/app/code/core/Mage/Catalog/view/frontend/product/view/options/wrapper.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Catalog/view/frontend/product/view/options/wrapper/bottom.phtml b/app/code/core/Mage/Catalog/view/frontend/product/view/options/wrapper/bottom.phtml index 3c2e522732163d079904237a81398688bfc89710..faf0181512cf426b2014c06f1a9c2f70e01f7934 100644 --- a/app/code/core/Mage/Catalog/view/frontend/product/view/options/wrapper/bottom.phtml +++ b/app/code/core/Mage/Catalog/view/frontend/product/view/options/wrapper/bottom.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Catalog/view/frontend/product/view/price_clone.phtml b/app/code/core/Mage/Catalog/view/frontend/product/view/price_clone.phtml index 68e4abd23f819257e2204d21db12c7cd6fdcfeef..e542f129a3858e96af6919daabac39883ea34cb2 100644 --- a/app/code/core/Mage/Catalog/view/frontend/product/view/price_clone.phtml +++ b/app/code/core/Mage/Catalog/view/frontend/product/view/price_clone.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Catalog/view/frontend/product/view/tierprices.phtml b/app/code/core/Mage/Catalog/view/frontend/product/view/tierprices.phtml index 0a0740ca11dfd4a632c0b14ba3b9ba3dfa243780..5518ff0bf19dff129d3bb314b4ef2ff67cab621f 100644 --- a/app/code/core/Mage/Catalog/view/frontend/product/view/tierprices.phtml +++ b/app/code/core/Mage/Catalog/view/frontend/product/view/tierprices.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Catalog/view/frontend/product/view/type/default.phtml b/app/code/core/Mage/Catalog/view/frontend/product/view/type/default.phtml index f8f2a07042b9262b1698cde46977a15fc619eafa..d0629d384da57811c21229d88b0a929a1f499e4d 100644 --- a/app/code/core/Mage/Catalog/view/frontend/product/view/type/default.phtml +++ b/app/code/core/Mage/Catalog/view/frontend/product/view/type/default.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Catalog/view/frontend/product/view/type/grouped.phtml b/app/code/core/Mage/Catalog/view/frontend/product/view/type/grouped.phtml index 7ca5ad5b362727bc7559de64b8d2909262773241..a6f0c99352aaa000a8225589d94ce16d5f3df692 100644 --- a/app/code/core/Mage/Catalog/view/frontend/product/view/type/grouped.phtml +++ b/app/code/core/Mage/Catalog/view/frontend/product/view/type/grouped.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Catalog/view/frontend/product/view/type/options/configurable.phtml b/app/code/core/Mage/Catalog/view/frontend/product/view/type/options/configurable.phtml index d805ede775e14dd36bb558d56ddf38b709c0a156..ec21b2a903d15006e697e8cb7ed5232f45b6950c 100644 --- a/app/code/core/Mage/Catalog/view/frontend/product/view/type/options/configurable.phtml +++ b/app/code/core/Mage/Catalog/view/frontend/product/view/type/options/configurable.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Catalog/view/frontend/product/widget/link/link_block.phtml b/app/code/core/Mage/Catalog/view/frontend/product/widget/link/link_block.phtml index 076305265e9c3330f5208b1cb45dd6086085b29d..d945ba82cdc7b1e3c2b1f7d4254f0dcf2cc59ef3 100644 --- a/app/code/core/Mage/Catalog/view/frontend/product/widget/link/link_block.phtml +++ b/app/code/core/Mage/Catalog/view/frontend/product/widget/link/link_block.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Catalog/view/frontend/product/widget/link/link_inline.phtml b/app/code/core/Mage/Catalog/view/frontend/product/widget/link/link_inline.phtml index 630e1da26ab97239588cae854924f641696103a6..b061345fa6d7806ac3bf8c3f0c84c7af9ca9feb8 100644 --- a/app/code/core/Mage/Catalog/view/frontend/product/widget/link/link_inline.phtml +++ b/app/code/core/Mage/Catalog/view/frontend/product/widget/link/link_inline.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Catalog/view/frontend/product/widget/new/column/new_default_list.phtml b/app/code/core/Mage/Catalog/view/frontend/product/widget/new/column/new_default_list.phtml index c840837352b68e1385f89370037b2a6a473fd0bd..42f4ebafb40134b8edfe3414ec908e2945339754 100644 --- a/app/code/core/Mage/Catalog/view/frontend/product/widget/new/column/new_default_list.phtml +++ b/app/code/core/Mage/Catalog/view/frontend/product/widget/new/column/new_default_list.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Catalog/view/frontend/product/widget/new/column/new_images_list.phtml b/app/code/core/Mage/Catalog/view/frontend/product/widget/new/column/new_images_list.phtml index 59a174a8391a9988b77701059c0f937d9181f382..56863918b00cb102bdc5b24f941a810052d5f4a5 100644 --- a/app/code/core/Mage/Catalog/view/frontend/product/widget/new/column/new_images_list.phtml +++ b/app/code/core/Mage/Catalog/view/frontend/product/widget/new/column/new_images_list.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Catalog/view/frontend/product/widget/new/column/new_names_list.phtml b/app/code/core/Mage/Catalog/view/frontend/product/widget/new/column/new_names_list.phtml index e5196fea8812cf2024e1c6cec5932b2e4e8b180f..8a0bb5ab3c9f5e7099aeef2eb8674306e1b60249 100644 --- a/app/code/core/Mage/Catalog/view/frontend/product/widget/new/column/new_names_list.phtml +++ b/app/code/core/Mage/Catalog/view/frontend/product/widget/new/column/new_names_list.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Catalog/view/frontend/product/widget/new/content/new_grid.phtml b/app/code/core/Mage/Catalog/view/frontend/product/widget/new/content/new_grid.phtml index ea5b868faba923f38f993a4ab7cedda99aede88b..8bd70daac5033dc333c8529fa022b51a06ac1d24 100644 --- a/app/code/core/Mage/Catalog/view/frontend/product/widget/new/content/new_grid.phtml +++ b/app/code/core/Mage/Catalog/view/frontend/product/widget/new/content/new_grid.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Catalog/view/frontend/product/widget/new/content/new_list.phtml b/app/code/core/Mage/Catalog/view/frontend/product/widget/new/content/new_list.phtml index b71973db5f6f53cf1eb663861cc4b6cd8a97cbe2..52cd700e34d1bc51eafc81414bcb2ce6510e8f84 100644 --- a/app/code/core/Mage/Catalog/view/frontend/product/widget/new/content/new_list.phtml +++ b/app/code/core/Mage/Catalog/view/frontend/product/widget/new/content/new_list.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Catalog/view/frontend/rss/product/price.phtml b/app/code/core/Mage/Catalog/view/frontend/rss/product/price.phtml index d03604f7b3f0f6a2cc407030b8cd42e0abfdea61..cb873fffa1f810c08cd2d3fb00b8d23373413ffb 100644 --- a/app/code/core/Mage/Catalog/view/frontend/rss/product/price.phtml +++ b/app/code/core/Mage/Catalog/view/frontend/rss/product/price.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Catalog/view/frontend/widgets.css b/app/code/core/Mage/Catalog/view/frontend/widgets.css index b1d932158289be9bd13fb9e7cd41385c52173c95..40c76d0561be7b59415a3a409c9d2a7736c23207 100644 --- a/app/code/core/Mage/Catalog/view/frontend/widgets.css +++ b/app/code/core/Mage/Catalog/view/frontend/widgets.css @@ -19,7 +19,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Catalog/view/frontend/zoom.css b/app/code/core/Mage/Catalog/view/frontend/zoom.css index 28bc1be730ea03e040404c13525eb4a70922caf8..dd90f3cfaf7dd88298b2c4c84fa17d15e2fc548b 100644 --- a/app/code/core/Mage/Catalog/view/frontend/zoom.css +++ b/app/code/core/Mage/Catalog/view/frontend/zoom.css @@ -19,7 +19,7 @@ * * @category frontend image zoom * @package mage - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ .ui-slider { diff --git a/app/code/core/Mage/CatalogInventory/Block/Adminhtml/Form/Field/Customergroup.php b/app/code/core/Mage/CatalogInventory/Block/Adminhtml/Form/Field/Customergroup.php index 0b72f91b128d8d4f2e3a1f3cc444d155de795744..cebb8614f68964b62ca1d18c74315cba9a361970 100644 --- a/app/code/core/Mage/CatalogInventory/Block/Adminhtml/Form/Field/Customergroup.php +++ b/app/code/core/Mage/CatalogInventory/Block/Adminhtml/Form/Field/Customergroup.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogInventory - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogInventory/Block/Adminhtml/Form/Field/Minsaleqty.php b/app/code/core/Mage/CatalogInventory/Block/Adminhtml/Form/Field/Minsaleqty.php index 7c1f849d1e8b8ca0c3d3f0b3629bd8a33e471baf..625eec2f9c8284ee81d261101feebbee68aeaac1 100644 --- a/app/code/core/Mage/CatalogInventory/Block/Adminhtml/Form/Field/Minsaleqty.php +++ b/app/code/core/Mage/CatalogInventory/Block/Adminhtml/Form/Field/Minsaleqty.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogInventory - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogInventory/Block/Adminhtml/Form/Field/Stock.php b/app/code/core/Mage/CatalogInventory/Block/Adminhtml/Form/Field/Stock.php index 70cceee5e7e1e20102dcd77c1aa7110fe8eb27a1..053a895321be1db065d348d64bd594d408d0bd9e 100644 --- a/app/code/core/Mage/CatalogInventory/Block/Adminhtml/Form/Field/Stock.php +++ b/app/code/core/Mage/CatalogInventory/Block/Adminhtml/Form/Field/Stock.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogInventory - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogInventory/Block/Qtyincrements.php b/app/code/core/Mage/CatalogInventory/Block/Qtyincrements.php index 105dc72cdbc74820a790bf96458e1e8c217fc3c7..cfb0d364d700719e5b844739098784d4e88ccb9a 100644 --- a/app/code/core/Mage/CatalogInventory/Block/Qtyincrements.php +++ b/app/code/core/Mage/CatalogInventory/Block/Qtyincrements.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogInventory - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogInventory/Block/Stockqty/Abstract.php b/app/code/core/Mage/CatalogInventory/Block/Stockqty/Abstract.php index 83604660fe319443820dfdfb812e8889fc09d864..934e2e4a96ba1dd5f73750297e9be906ae8c2615 100644 --- a/app/code/core/Mage/CatalogInventory/Block/Stockqty/Abstract.php +++ b/app/code/core/Mage/CatalogInventory/Block/Stockqty/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogInventory - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogInventory/Block/Stockqty/Composite.php b/app/code/core/Mage/CatalogInventory/Block/Stockqty/Composite.php index 698409b34f5058493e6d651eec3b410a11637bcf..0cbeeabaf8ae2ad6ec4e6f432689c4f9a1da8c64 100644 --- a/app/code/core/Mage/CatalogInventory/Block/Stockqty/Composite.php +++ b/app/code/core/Mage/CatalogInventory/Block/Stockqty/Composite.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogInventory - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogInventory/Block/Stockqty/Default.php b/app/code/core/Mage/CatalogInventory/Block/Stockqty/Default.php index 338c817150429fc04ed74bc2c6faea9e28dc73f0..044198ea800a3c54df1a1a420e1697f08bbc4279 100644 --- a/app/code/core/Mage/CatalogInventory/Block/Stockqty/Default.php +++ b/app/code/core/Mage/CatalogInventory/Block/Stockqty/Default.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogInventory - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogInventory/Block/Stockqty/Type/Configurable.php b/app/code/core/Mage/CatalogInventory/Block/Stockqty/Type/Configurable.php index 3732b055247a8bd02078f1d5434695f2cad6ac5d..a084d268fbc0b09061ee7b1b77fa1055b34261ff 100644 --- a/app/code/core/Mage/CatalogInventory/Block/Stockqty/Type/Configurable.php +++ b/app/code/core/Mage/CatalogInventory/Block/Stockqty/Type/Configurable.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogInventory - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogInventory/Block/Stockqty/Type/Grouped.php b/app/code/core/Mage/CatalogInventory/Block/Stockqty/Type/Grouped.php index 41eb30065d4757eb730115d35bd385e003365f69..3951a3dc10936cfb47e607c2f224ab9588ac80e0 100644 --- a/app/code/core/Mage/CatalogInventory/Block/Stockqty/Type/Grouped.php +++ b/app/code/core/Mage/CatalogInventory/Block/Stockqty/Type/Grouped.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogInventory - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogInventory/Helper/Data.php b/app/code/core/Mage/CatalogInventory/Helper/Data.php index 02a4c3b6ba0ef5838df35cfa83c4f0c6e89c25c4..174909683b8fe36ad8b5e325c8d7a53ac76ffcab 100644 --- a/app/code/core/Mage/CatalogInventory/Helper/Data.php +++ b/app/code/core/Mage/CatalogInventory/Helper/Data.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogInventory - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogInventory/Helper/Minsaleqty.php b/app/code/core/Mage/CatalogInventory/Helper/Minsaleqty.php index ea7e3b9892e569348e81016f958d869279ac4b2a..fea44cca58cddd209b6e0a8cfe80d8fa970c72f7 100644 --- a/app/code/core/Mage/CatalogInventory/Helper/Minsaleqty.php +++ b/app/code/core/Mage/CatalogInventory/Helper/Minsaleqty.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogInventory - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogInventory/Model/Config/Backend/Managestock.php b/app/code/core/Mage/CatalogInventory/Model/Config/Backend/Managestock.php index 6958107f234ea6279b1506ce0bd4befc1f61ec38..6cafd497d5ca9ffea47bd0fb7c1b69b2ae5b37b6 100644 --- a/app/code/core/Mage/CatalogInventory/Model/Config/Backend/Managestock.php +++ b/app/code/core/Mage/CatalogInventory/Model/Config/Backend/Managestock.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogInventory - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogInventory/Model/Indexer/Stock.php b/app/code/core/Mage/CatalogInventory/Model/Indexer/Stock.php index 2b3ff7b0a5ca91a7d82751b287a1cece4bf8d01b..e01071bd01cfbc66bcd1f3fe51305a7d19f85bbe 100644 --- a/app/code/core/Mage/CatalogInventory/Model/Indexer/Stock.php +++ b/app/code/core/Mage/CatalogInventory/Model/Indexer/Stock.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogInventory - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogInventory/Model/Observer.php b/app/code/core/Mage/CatalogInventory/Model/Observer.php index 8d176b48e4dff2fbe7768de6b5346566f0c63d54..c03cac73811ed1490f64873b2f4388eb10e4785b 100644 --- a/app/code/core/Mage/CatalogInventory/Model/Observer.php +++ b/app/code/core/Mage/CatalogInventory/Model/Observer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogInventory - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogInventory/Model/Resource/Indexer/Stock.php b/app/code/core/Mage/CatalogInventory/Model/Resource/Indexer/Stock.php index 79d4d9a6cf6b7335743ec4b7e0c700839c927982..1fd28181301bde497deae2a1c3b3865b00fc3d26 100755 --- a/app/code/core/Mage/CatalogInventory/Model/Resource/Indexer/Stock.php +++ b/app/code/core/Mage/CatalogInventory/Model/Resource/Indexer/Stock.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogInventory - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogInventory/Model/Resource/Indexer/Stock/Configurable.php b/app/code/core/Mage/CatalogInventory/Model/Resource/Indexer/Stock/Configurable.php index 8dd7624abd21b83f506e5f9d688dfa019df44f9e..7d8b8ead0dcbd72b7d36e39691cc61ea4eace0d9 100755 --- a/app/code/core/Mage/CatalogInventory/Model/Resource/Indexer/Stock/Configurable.php +++ b/app/code/core/Mage/CatalogInventory/Model/Resource/Indexer/Stock/Configurable.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogInventory - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogInventory/Model/Resource/Indexer/Stock/Default.php b/app/code/core/Mage/CatalogInventory/Model/Resource/Indexer/Stock/Default.php index 061f16a304a40e1d3181448f6406294776bff836..0d206413bc2d2a0ef08b9223c42a4846ba57c3a7 100755 --- a/app/code/core/Mage/CatalogInventory/Model/Resource/Indexer/Stock/Default.php +++ b/app/code/core/Mage/CatalogInventory/Model/Resource/Indexer/Stock/Default.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogInventory - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogInventory/Model/Resource/Indexer/Stock/Grouped.php b/app/code/core/Mage/CatalogInventory/Model/Resource/Indexer/Stock/Grouped.php index a6206a9327ca152965085899c06feb851957b05e..10dab815c17196afeed84ef06e50cd4ed44f20a4 100755 --- a/app/code/core/Mage/CatalogInventory/Model/Resource/Indexer/Stock/Grouped.php +++ b/app/code/core/Mage/CatalogInventory/Model/Resource/Indexer/Stock/Grouped.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogInventory - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogInventory/Model/Resource/Indexer/Stock/Interface.php b/app/code/core/Mage/CatalogInventory/Model/Resource/Indexer/Stock/Interface.php index 9f4ba3f0f2f7512a5657d7a2c52458c8adc8c88c..203184286c1b904fa15a5e917c0125ade16be0c7 100755 --- a/app/code/core/Mage/CatalogInventory/Model/Resource/Indexer/Stock/Interface.php +++ b/app/code/core/Mage/CatalogInventory/Model/Resource/Indexer/Stock/Interface.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogInventory - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogInventory/Model/Resource/Stock.php b/app/code/core/Mage/CatalogInventory/Model/Resource/Stock.php index e429821c626762c9bd567eecf6c17d0a560828b4..9eea6d3080d99f439ab6bd4f394d69a58de35f65 100755 --- a/app/code/core/Mage/CatalogInventory/Model/Resource/Stock.php +++ b/app/code/core/Mage/CatalogInventory/Model/Resource/Stock.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogInventory - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogInventory/Model/Resource/Stock/Item.php b/app/code/core/Mage/CatalogInventory/Model/Resource/Stock/Item.php index 8a8065bef302c1ad680e93aa116ebbed86b4f6fb..ed1f01bd0d9a6dd5d920c44a0895ac5dea6cc70a 100755 --- a/app/code/core/Mage/CatalogInventory/Model/Resource/Stock/Item.php +++ b/app/code/core/Mage/CatalogInventory/Model/Resource/Stock/Item.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogInventory - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogInventory/Model/Resource/Stock/Item/Collection.php b/app/code/core/Mage/CatalogInventory/Model/Resource/Stock/Item/Collection.php index 4f1bc216b02404b84771fa3429adf85766e10d39..e8d3f5d060e4132e6a47e23e78e90efe3eb40e59 100755 --- a/app/code/core/Mage/CatalogInventory/Model/Resource/Stock/Item/Collection.php +++ b/app/code/core/Mage/CatalogInventory/Model/Resource/Stock/Item/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogInventory - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogInventory/Model/Resource/Stock/Status.php b/app/code/core/Mage/CatalogInventory/Model/Resource/Stock/Status.php index 9cf473db44992daa442d405b8b6b2bcc5db3259c..119d2c6d3c8c6e857331a8de1a4fa25c3861c659 100755 --- a/app/code/core/Mage/CatalogInventory/Model/Resource/Stock/Status.php +++ b/app/code/core/Mage/CatalogInventory/Model/Resource/Stock/Status.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogInventory - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogInventory/Model/Source/Backorders.php b/app/code/core/Mage/CatalogInventory/Model/Source/Backorders.php index d76a989202703724d46e64adba811632a8d11678..109b269e17a246d756384d6778b57b7ee832d6ab 100644 --- a/app/code/core/Mage/CatalogInventory/Model/Source/Backorders.php +++ b/app/code/core/Mage/CatalogInventory/Model/Source/Backorders.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogInventory - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogInventory/Model/Source/Stock.php b/app/code/core/Mage/CatalogInventory/Model/Source/Stock.php index 5d33102349cb2d4c7cf6bff8a7b704c694d2da81..9201a52b0ca0b6c64c4f8abc690c795992bc5655 100644 --- a/app/code/core/Mage/CatalogInventory/Model/Source/Stock.php +++ b/app/code/core/Mage/CatalogInventory/Model/Source/Stock.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogInventory - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogInventory/Model/Stock.php b/app/code/core/Mage/CatalogInventory/Model/Stock.php index 4e32a69b1226e32adbf42cc1699bc2097cacf75a..91f3d2fd3a5d3e67780abbfba5db9ec57b904817 100644 --- a/app/code/core/Mage/CatalogInventory/Model/Stock.php +++ b/app/code/core/Mage/CatalogInventory/Model/Stock.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogInventory - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogInventory/Model/Stock/Item.php b/app/code/core/Mage/CatalogInventory/Model/Stock/Item.php index 90bf39b92750078db36d29b8678ba28b1a7f9b45..b05443cf915e5682808df00b60e77a5274074e05 100644 --- a/app/code/core/Mage/CatalogInventory/Model/Stock/Item.php +++ b/app/code/core/Mage/CatalogInventory/Model/Stock/Item.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogInventory - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogInventory/Model/Stock/Status.php b/app/code/core/Mage/CatalogInventory/Model/Stock/Status.php index cf1ff540b96eea2982ebba1c4c39afea33e6d022..45e8c34bd8e7cbcb281843bb2ed6c2f3dccd343c 100755 --- a/app/code/core/Mage/CatalogInventory/Model/Stock/Status.php +++ b/app/code/core/Mage/CatalogInventory/Model/Stock/Status.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogInventory - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogInventory/Model/System/Config/Backend/Minqty.php b/app/code/core/Mage/CatalogInventory/Model/System/Config/Backend/Minqty.php index d6962f02df577d39862adfee9d2c16bd80e845b7..45d2c34e56926af14d53b825c7e74493078c6715 100644 --- a/app/code/core/Mage/CatalogInventory/Model/System/Config/Backend/Minqty.php +++ b/app/code/core/Mage/CatalogInventory/Model/System/Config/Backend/Minqty.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogInventory - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogInventory/Model/System/Config/Backend/Minsaleqty.php b/app/code/core/Mage/CatalogInventory/Model/System/Config/Backend/Minsaleqty.php index a1037bf3ebb1d6bb36c38a149a2e22d46080b2e0..edc2681730694ffb2e54de1f7aa344be5cef2950 100644 --- a/app/code/core/Mage/CatalogInventory/Model/System/Config/Backend/Minsaleqty.php +++ b/app/code/core/Mage/CatalogInventory/Model/System/Config/Backend/Minsaleqty.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogInventory - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogInventory/Model/System/Config/Backend/Qtyincrements.php b/app/code/core/Mage/CatalogInventory/Model/System/Config/Backend/Qtyincrements.php index a740403f41e72a98f08535546eeaf8e135f97e79..4bfa6dc9bcd50b54821a0b12b30da23f87e302e0 100644 --- a/app/code/core/Mage/CatalogInventory/Model/System/Config/Backend/Qtyincrements.php +++ b/app/code/core/Mage/CatalogInventory/Model/System/Config/Backend/Qtyincrements.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogInventory - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogInventory/etc/adminhtml/acl.xml b/app/code/core/Mage/CatalogInventory/etc/adminhtml/acl.xml index 300bdd5a4be5084734736a4e6ba142fb49666718..f7aeb3a2be00c1381d5e1555553291c3d2507e95 100644 --- a/app/code/core/Mage/CatalogInventory/etc/adminhtml/acl.xml +++ b/app/code/core/Mage/CatalogInventory/etc/adminhtml/acl.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_CatalogInventory - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/CatalogInventory/etc/adminhtml/system.xml b/app/code/core/Mage/CatalogInventory/etc/adminhtml/system.xml index b21481ade6b86e9754312e2013fa183d029ef089..40777f54c9fc23422d60ff685c43dca0ab720c4c 100644 --- a/app/code/core/Mage/CatalogInventory/etc/adminhtml/system.xml +++ b/app/code/core/Mage/CatalogInventory/etc/adminhtml/system.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_CatalogInventory - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/CatalogInventory/etc/config.xml b/app/code/core/Mage/CatalogInventory/etc/config.xml index ed090f9b1623cd4adc0164c40ba0501f7f9c3d19..f986a79db3a97dcba80f36dd7c383c9479f1ff5e 100644 --- a/app/code/core/Mage/CatalogInventory/etc/config.xml +++ b/app/code/core/Mage/CatalogInventory/etc/config.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_CatalogInventory - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/CatalogInventory/sql/cataloginventory_setup/install-1.6.0.0.php b/app/code/core/Mage/CatalogInventory/sql/cataloginventory_setup/install-1.6.0.0.php index a55acbc10c6f98d7fafaf6ab38db67f75443a318..cbf774a63b1185b651e6470f267d9f98948d51bc 100644 --- a/app/code/core/Mage/CatalogInventory/sql/cataloginventory_setup/install-1.6.0.0.php +++ b/app/code/core/Mage/CatalogInventory/sql/cataloginventory_setup/install-1.6.0.0.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogInventory - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogInventory/sql/cataloginventory_setup/mysql4-upgrade-1.6.0.0-1.6.0.0.1.php b/app/code/core/Mage/CatalogInventory/sql/cataloginventory_setup/mysql4-upgrade-1.6.0.0-1.6.0.0.1.php index 02cdf9e583bb5074745916ebc8e69f4f9385a10f..dae56df498576c62e41569141ab1605c358b52b2 100644 --- a/app/code/core/Mage/CatalogInventory/sql/cataloginventory_setup/mysql4-upgrade-1.6.0.0-1.6.0.0.1.php +++ b/app/code/core/Mage/CatalogInventory/sql/cataloginventory_setup/mysql4-upgrade-1.6.0.0-1.6.0.0.1.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogInventory - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogInventory/sql/cataloginventory_setup/upgrade-1.6.0.0.1-1.6.0.0.2.php b/app/code/core/Mage/CatalogInventory/sql/cataloginventory_setup/upgrade-1.6.0.0.1-1.6.0.0.2.php index dab98a9c3f35e770ff1ddca4420406975edc9b56..a9b9fafd1ed6f7ed7da7886d6f595ab0206aeea2 100644 --- a/app/code/core/Mage/CatalogInventory/sql/cataloginventory_setup/upgrade-1.6.0.0.1-1.6.0.0.2.php +++ b/app/code/core/Mage/CatalogInventory/sql/cataloginventory_setup/upgrade-1.6.0.0.1-1.6.0.0.2.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogInventory - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogInventory/sql/cataloginventory_setup/upgrade-1.6.0.0.2-1.6.0.0.3.php b/app/code/core/Mage/CatalogInventory/sql/cataloginventory_setup/upgrade-1.6.0.0.2-1.6.0.0.3.php index 7cf529288f8be1e845e4eba89c7177c1e3cbc697..a2c464815eec6ea74155eaea6800570c5244bee8 100644 --- a/app/code/core/Mage/CatalogInventory/sql/cataloginventory_setup/upgrade-1.6.0.0.2-1.6.0.0.3.php +++ b/app/code/core/Mage/CatalogInventory/sql/cataloginventory_setup/upgrade-1.6.0.0.2-1.6.0.0.3.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogInventory - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogInventory/view/adminhtml/layout.xml b/app/code/core/Mage/CatalogInventory/view/adminhtml/layout.xml index 407576fcd25f1601a1aa93c11834c3964c30f977..181f21958c9037ffb761df443f98185c2f5a197e 100644 --- a/app/code/core/Mage/CatalogInventory/view/adminhtml/layout.xml +++ b/app/code/core/Mage/CatalogInventory/view/adminhtml/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/CatalogInventory/view/frontend/layout.xml b/app/code/core/Mage/CatalogInventory/view/frontend/layout.xml index 18a2cc8ecf21127773d45f6dbcb62fa489d5e469..5539f1bf1854f860611a307f5bfe2f8e8365454d 100644 --- a/app/code/core/Mage/CatalogInventory/view/frontend/layout.xml +++ b/app/code/core/Mage/CatalogInventory/view/frontend/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/CatalogInventory/view/frontend/qtyincrements.phtml b/app/code/core/Mage/CatalogInventory/view/frontend/qtyincrements.phtml index 3c5e08a6f6ae82a7cc9ed303869dbe5fdcead678..60ebf12d7f909366d2880f4c7d3f1d2bf4cabcd2 100644 --- a/app/code/core/Mage/CatalogInventory/view/frontend/qtyincrements.phtml +++ b/app/code/core/Mage/CatalogInventory/view/frontend/qtyincrements.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/CatalogInventory/view/frontend/stockqty/composite.phtml b/app/code/core/Mage/CatalogInventory/view/frontend/stockqty/composite.phtml index eafb6fef2b5b3c0205d875866bb6acc1f2597ba7..e66bc82aeff8bc4e9ee05f6d8c0169effa63b1ba 100644 --- a/app/code/core/Mage/CatalogInventory/view/frontend/stockqty/composite.phtml +++ b/app/code/core/Mage/CatalogInventory/view/frontend/stockqty/composite.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/CatalogInventory/view/frontend/stockqty/default.phtml b/app/code/core/Mage/CatalogInventory/view/frontend/stockqty/default.phtml index 584e67c8f7e5a671f5c66c1089910ac44bbcb743..16b1672c88a9cb4b217904422178bb50e10e7691 100644 --- a/app/code/core/Mage/CatalogInventory/view/frontend/stockqty/default.phtml +++ b/app/code/core/Mage/CatalogInventory/view/frontend/stockqty/default.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/CatalogRule/Helper/Data.php b/app/code/core/Mage/CatalogRule/Helper/Data.php index 8e29e09c1bf1c286c52ed2bef60b38ed29a966a8..cfde5fe70d0fccade01f7eee7ce45b1665aea361 100644 --- a/app/code/core/Mage/CatalogRule/Helper/Data.php +++ b/app/code/core/Mage/CatalogRule/Helper/Data.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogRule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogRule/Model/Flag.php b/app/code/core/Mage/CatalogRule/Model/Flag.php index 1979903544b7c23e547933812c58cdb6eea9d30b..645a9725b9a21f43b8594e62a07e4f5ad3864e04 100644 --- a/app/code/core/Mage/CatalogRule/Model/Flag.php +++ b/app/code/core/Mage/CatalogRule/Model/Flag.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogRule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogRule/Model/Observer.php b/app/code/core/Mage/CatalogRule/Model/Observer.php index 2097a61b6e83f21e9de9f351902d39c494cf45bf..5f9f82128cc373ce42630a59dbdda42406f84248 100644 --- a/app/code/core/Mage/CatalogRule/Model/Observer.php +++ b/app/code/core/Mage/CatalogRule/Model/Observer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogRule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogRule/Model/Resource/Rule.php b/app/code/core/Mage/CatalogRule/Model/Resource/Rule.php index 232514d5c2663f76b4641f77ee49cbc169e5b31d..5047e433645bdde80626a7469226004affa17c7a 100755 --- a/app/code/core/Mage/CatalogRule/Model/Resource/Rule.php +++ b/app/code/core/Mage/CatalogRule/Model/Resource/Rule.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogRule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogRule/Model/Resource/Rule/Collection.php b/app/code/core/Mage/CatalogRule/Model/Resource/Rule/Collection.php index 29b66249c3a4eb1a5c73c5b6ef13588abb078dc0..5b072d7e5e1a19318111d2cbeabe3c0b4d56f6cd 100755 --- a/app/code/core/Mage/CatalogRule/Model/Resource/Rule/Collection.php +++ b/app/code/core/Mage/CatalogRule/Model/Resource/Rule/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogRule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogRule/Model/Resource/Rule/Product/Price.php b/app/code/core/Mage/CatalogRule/Model/Resource/Rule/Product/Price.php index c6b804b69cabd211483c4b49ee9ed487bd4b3a9c..df7eefbfb3f7c9d0217884b8fbfacc7238ce0590 100755 --- a/app/code/core/Mage/CatalogRule/Model/Resource/Rule/Product/Price.php +++ b/app/code/core/Mage/CatalogRule/Model/Resource/Rule/Product/Price.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogRule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogRule/Model/Resource/Rule/Product/Price/Collection.php b/app/code/core/Mage/CatalogRule/Model/Resource/Rule/Product/Price/Collection.php index ae6a9b9c2c5726402dd5a4c07e4346bf44fda90b..d03afafdd7d66391493d9225e2c79ea8e501339f 100755 --- a/app/code/core/Mage/CatalogRule/Model/Resource/Rule/Product/Price/Collection.php +++ b/app/code/core/Mage/CatalogRule/Model/Resource/Rule/Product/Price/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogRule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogRule/Model/Rule.php b/app/code/core/Mage/CatalogRule/Model/Rule.php index ae83576e1d5f104d8a255cb69b681f7d6d38ac8b..6aa6dce82224932f0454b2b5b1cb8addb065f4a3 100644 --- a/app/code/core/Mage/CatalogRule/Model/Rule.php +++ b/app/code/core/Mage/CatalogRule/Model/Rule.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogRule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogRule/Model/Rule/Action/Collection.php b/app/code/core/Mage/CatalogRule/Model/Rule/Action/Collection.php index cc7e2ed44209855354b4c63b3e3fd673ea5c0c4c..a2ee972c0014a796112db04b09e873446ef3fb90 100644 --- a/app/code/core/Mage/CatalogRule/Model/Rule/Action/Collection.php +++ b/app/code/core/Mage/CatalogRule/Model/Rule/Action/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogRule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogRule/Model/Rule/Action/Product.php b/app/code/core/Mage/CatalogRule/Model/Rule/Action/Product.php index 413c9130cff93d443685a35c0d54cf3f09a260ba..62af18dc3ed148d7677e60b865afa386d4203bb2 100644 --- a/app/code/core/Mage/CatalogRule/Model/Rule/Action/Product.php +++ b/app/code/core/Mage/CatalogRule/Model/Rule/Action/Product.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogRule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogRule/Model/Rule/Condition/Combine.php b/app/code/core/Mage/CatalogRule/Model/Rule/Condition/Combine.php index 38cb00952796b04dc4a830dc03544e7fa29a02b8..bb8d32e0cfeace08b6eadd848a73fce2e3ea091b 100644 --- a/app/code/core/Mage/CatalogRule/Model/Rule/Condition/Combine.php +++ b/app/code/core/Mage/CatalogRule/Model/Rule/Condition/Combine.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogRule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogRule/Model/Rule/Condition/Product.php b/app/code/core/Mage/CatalogRule/Model/Rule/Condition/Product.php index 6408a2bcc4dcd3ff5a49b2b8f24d15297ba9d212..f31f475403d9cde74e8f6643a75c1422e2d4a1f7 100644 --- a/app/code/core/Mage/CatalogRule/Model/Rule/Condition/Product.php +++ b/app/code/core/Mage/CatalogRule/Model/Rule/Condition/Product.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogRule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogRule/Model/Rule/Product/Price.php b/app/code/core/Mage/CatalogRule/Model/Rule/Product/Price.php index 16cd9a31d75510b6dbf2174444c6fb8320268a30..64f7b32041981923bb8dc5d14bcfde96558ff5cd 100644 --- a/app/code/core/Mage/CatalogRule/Model/Rule/Product/Price.php +++ b/app/code/core/Mage/CatalogRule/Model/Rule/Product/Price.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogRule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogRule/data/catalogrule_setup/data-upgrade-1.6.0.3-1.6.0.4.php b/app/code/core/Mage/CatalogRule/data/catalogrule_setup/data-upgrade-1.6.0.3-1.6.0.4.php index 154aa9da130b86d1e154e6b4ad3b3246ab07085b..15ca890266968de966b3e5c70a68f85b67a4e6c3 100644 --- a/app/code/core/Mage/CatalogRule/data/catalogrule_setup/data-upgrade-1.6.0.3-1.6.0.4.php +++ b/app/code/core/Mage/CatalogRule/data/catalogrule_setup/data-upgrade-1.6.0.3-1.6.0.4.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogRule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogRule/etc/adminhtml/acl.xml b/app/code/core/Mage/CatalogRule/etc/adminhtml/acl.xml index a21c3d7de18e6a73ef3f26dfed6e9faeb85c11df..4d0f046f50ed71a30f00471212db7d97642a8b2e 100644 --- a/app/code/core/Mage/CatalogRule/etc/adminhtml/acl.xml +++ b/app/code/core/Mage/CatalogRule/etc/adminhtml/acl.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_CatalogRule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/CatalogRule/etc/adminhtml/menu.xml b/app/code/core/Mage/CatalogRule/etc/adminhtml/menu.xml index 8690bd3d2cb79fc72e4fc2d7c03ce073579a2b60..c15c13675e9766f0ff47a4a68ee3002140a69490 100644 --- a/app/code/core/Mage/CatalogRule/etc/adminhtml/menu.xml +++ b/app/code/core/Mage/CatalogRule/etc/adminhtml/menu.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_CatalogRule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/CatalogRule/etc/config.xml b/app/code/core/Mage/CatalogRule/etc/config.xml index ef5145914b99c24bf4dc78bc65e0c5df1a91b923..bab91f6ca87200496a3a270724a23674c683a589 100644 --- a/app/code/core/Mage/CatalogRule/etc/config.xml +++ b/app/code/core/Mage/CatalogRule/etc/config.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_CatalogRule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/CatalogRule/sql/catalogrule_setup/install-1.6.0.0.php b/app/code/core/Mage/CatalogRule/sql/catalogrule_setup/install-1.6.0.0.php index e25363089233dd25c3c2396892dbec1586882d08..93147a7ba92c834eef3071bab2e53f113be43163 100644 --- a/app/code/core/Mage/CatalogRule/sql/catalogrule_setup/install-1.6.0.0.php +++ b/app/code/core/Mage/CatalogRule/sql/catalogrule_setup/install-1.6.0.0.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogRule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogRule/sql/catalogrule_setup/upgrade-1.6.0.0-1.6.0.1.php b/app/code/core/Mage/CatalogRule/sql/catalogrule_setup/upgrade-1.6.0.0-1.6.0.1.php index de47951f9430a8cd751347db97ad2b474afd4148..c992cf694db042f75041d886fb53cf62539212bb 100644 --- a/app/code/core/Mage/CatalogRule/sql/catalogrule_setup/upgrade-1.6.0.0-1.6.0.1.php +++ b/app/code/core/Mage/CatalogRule/sql/catalogrule_setup/upgrade-1.6.0.0-1.6.0.1.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogRule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogRule/sql/catalogrule_setup/upgrade-1.6.0.1-1.6.0.2.php b/app/code/core/Mage/CatalogRule/sql/catalogrule_setup/upgrade-1.6.0.1-1.6.0.2.php index bcbb818475bd204108ece4a56ec0ca29d5fb6f84..905911c01eb88cdf430e4622bbd8d492449fa208 100644 --- a/app/code/core/Mage/CatalogRule/sql/catalogrule_setup/upgrade-1.6.0.1-1.6.0.2.php +++ b/app/code/core/Mage/CatalogRule/sql/catalogrule_setup/upgrade-1.6.0.1-1.6.0.2.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogRule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogRule/sql/catalogrule_setup/upgrade-1.6.0.2-1.6.0.3.php b/app/code/core/Mage/CatalogRule/sql/catalogrule_setup/upgrade-1.6.0.2-1.6.0.3.php index d02810c89c0a1a119f428a1f2b80e077cd92bc9f..be227a929bb7b41e0b8c0db3e630f8a43e0077b6 100644 --- a/app/code/core/Mage/CatalogRule/sql/catalogrule_setup/upgrade-1.6.0.2-1.6.0.3.php +++ b/app/code/core/Mage/CatalogRule/sql/catalogrule_setup/upgrade-1.6.0.2-1.6.0.3.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogRule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogSearch/Block/Advanced/Form.php b/app/code/core/Mage/CatalogSearch/Block/Advanced/Form.php index 171d09339fe5b0c3bc797f659a90ccd742fda395..ed7073fd724091b66df1a4a82abb6270b6865e99 100644 --- a/app/code/core/Mage/CatalogSearch/Block/Advanced/Form.php +++ b/app/code/core/Mage/CatalogSearch/Block/Advanced/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogSearch - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogSearch/Block/Advanced/Result.php b/app/code/core/Mage/CatalogSearch/Block/Advanced/Result.php index 64372c6601d49b5b894b3076b8229b8a231d1616..181a70d1fc5e652436e87935df8c7585de9cb0fd 100644 --- a/app/code/core/Mage/CatalogSearch/Block/Advanced/Result.php +++ b/app/code/core/Mage/CatalogSearch/Block/Advanced/Result.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogSearch - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogSearch/Block/Autocomplete.php b/app/code/core/Mage/CatalogSearch/Block/Autocomplete.php index 21eb13bf2a911ee8b6e9951447d93bb8881d912a..f74fdeb4890f43a4ae69737476e350c94a05cc29 100644 --- a/app/code/core/Mage/CatalogSearch/Block/Autocomplete.php +++ b/app/code/core/Mage/CatalogSearch/Block/Autocomplete.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogSearch - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogSearch/Block/Layer.php b/app/code/core/Mage/CatalogSearch/Block/Layer.php index 0ed9124c15a10d38711868d68dd51b20df5b4ffa..7d0152ca2f9a869c62ee82feea8e2d6d8a22b235 100644 --- a/app/code/core/Mage/CatalogSearch/Block/Layer.php +++ b/app/code/core/Mage/CatalogSearch/Block/Layer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogSearch - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogSearch/Block/Layer/Filter/Attribute.php b/app/code/core/Mage/CatalogSearch/Block/Layer/Filter/Attribute.php index eee188eb746d1cf6a383f1532500c73176f9faa0..69eec83f859a0aed626d22a4c9bd58e971e038aa 100644 --- a/app/code/core/Mage/CatalogSearch/Block/Layer/Filter/Attribute.php +++ b/app/code/core/Mage/CatalogSearch/Block/Layer/Filter/Attribute.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogSearch - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogSearch/Block/Result.php b/app/code/core/Mage/CatalogSearch/Block/Result.php index e55aea8bf2b81973cce94c952283925855ee6ca3..3802ed9a75b00f5ddcbd326c222936af8b00f442 100644 --- a/app/code/core/Mage/CatalogSearch/Block/Result.php +++ b/app/code/core/Mage/CatalogSearch/Block/Result.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogSearch - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogSearch/Block/Term.php b/app/code/core/Mage/CatalogSearch/Block/Term.php index 4b6cb31ff403d0e1e5f18e7ee4d61282fb2a7153..ca2cc6c550365a8cb94e4c16f80425b86c634fb9 100644 --- a/app/code/core/Mage/CatalogSearch/Block/Term.php +++ b/app/code/core/Mage/CatalogSearch/Block/Term.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogSearch - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogSearch/Helper/Data.php b/app/code/core/Mage/CatalogSearch/Helper/Data.php index 0411ebc7c360b938e95378e77b1a987403554c5e..23c243d187ec1d8a429fba7728689f4774da90c7 100644 --- a/app/code/core/Mage/CatalogSearch/Helper/Data.php +++ b/app/code/core/Mage/CatalogSearch/Helper/Data.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogSearch - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogSearch/Model/Advanced.php b/app/code/core/Mage/CatalogSearch/Model/Advanced.php index c7684e13c91fd907a374af565f27c37f14ebab60..d098b8e6f5c2a80613d794e9d23ac3a1a7e601d3 100644 --- a/app/code/core/Mage/CatalogSearch/Model/Advanced.php +++ b/app/code/core/Mage/CatalogSearch/Model/Advanced.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogSearch - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogSearch/Model/Config/Backend/Search/Type.php b/app/code/core/Mage/CatalogSearch/Model/Config/Backend/Search/Type.php index ee43f46f116dacd2fae3393a7143d956dab7e495..70e9dda65cf67e09e77a9273dfb38a7cd0154c91 100644 --- a/app/code/core/Mage/CatalogSearch/Model/Config/Backend/Search/Type.php +++ b/app/code/core/Mage/CatalogSearch/Model/Config/Backend/Search/Type.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogSearch - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogSearch/Model/Config/Source/Search/Type.php b/app/code/core/Mage/CatalogSearch/Model/Config/Source/Search/Type.php index 3364c57c136e2de0e56fd852dd3bc03d1ccfd9c9..d6a019e071499bceb15ab65a0900026bc2f24c40 100644 --- a/app/code/core/Mage/CatalogSearch/Model/Config/Source/Search/Type.php +++ b/app/code/core/Mage/CatalogSearch/Model/Config/Source/Search/Type.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogSearch - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogSearch/Model/Fulltext.php b/app/code/core/Mage/CatalogSearch/Model/Fulltext.php index efca4dc04c12869377261146ed3ca01c2adb38a8..e8f7c3640c34e9ce54b56f728a6dcdbbc0dd9ec2 100644 --- a/app/code/core/Mage/CatalogSearch/Model/Fulltext.php +++ b/app/code/core/Mage/CatalogSearch/Model/Fulltext.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogSearch - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogSearch/Model/Fulltext/Observer.php b/app/code/core/Mage/CatalogSearch/Model/Fulltext/Observer.php index 469a4cdad1de7bf18d057ba53ca32bb39344921c..4e7d1149893d31f1b6ba7c5120821f62e467d7e5 100644 --- a/app/code/core/Mage/CatalogSearch/Model/Fulltext/Observer.php +++ b/app/code/core/Mage/CatalogSearch/Model/Fulltext/Observer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogSearch - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogSearch/Model/Indexer/Fulltext.php b/app/code/core/Mage/CatalogSearch/Model/Indexer/Fulltext.php index dff976b44cf6baf4e831b83be85512f9a097f961..61c5e9f761348ff7d8d216fc077c0e8ca25b59cc 100644 --- a/app/code/core/Mage/CatalogSearch/Model/Indexer/Fulltext.php +++ b/app/code/core/Mage/CatalogSearch/Model/Indexer/Fulltext.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogSearch - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogSearch/Model/Layer.php b/app/code/core/Mage/CatalogSearch/Model/Layer.php index a01d5cd17bc2d71c31c128f96709081927c3e9f4..1cbc5cf92900e096de6bf42eb3233077dea1d5ad 100644 --- a/app/code/core/Mage/CatalogSearch/Model/Layer.php +++ b/app/code/core/Mage/CatalogSearch/Model/Layer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogSearch - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogSearch/Model/Layer/Filter/Attribute.php b/app/code/core/Mage/CatalogSearch/Model/Layer/Filter/Attribute.php index 508fe831d4be0a978776a020297a78a01554bd7b..2d286383c18dbc744bd467460a30b87ded139c25 100644 --- a/app/code/core/Mage/CatalogSearch/Model/Layer/Filter/Attribute.php +++ b/app/code/core/Mage/CatalogSearch/Model/Layer/Filter/Attribute.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogSearch - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogSearch/Model/Query.php b/app/code/core/Mage/CatalogSearch/Model/Query.php index 3cc14ac24aa43f47357c0352833a3fefeb879558..d8cbda7cf1a5d75ecdf29fc75dbbc5b49f2a5045 100644 --- a/app/code/core/Mage/CatalogSearch/Model/Query.php +++ b/app/code/core/Mage/CatalogSearch/Model/Query.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogSearch - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogSearch/Model/Resource/Advanced.php b/app/code/core/Mage/CatalogSearch/Model/Resource/Advanced.php index c6c8ec66c0d14bebf8b0d2fe6a759e721812d3d8..c62e12fb5601f1fc2a6af7b8e0c006741a345b30 100755 --- a/app/code/core/Mage/CatalogSearch/Model/Resource/Advanced.php +++ b/app/code/core/Mage/CatalogSearch/Model/Resource/Advanced.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogSearch - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogSearch/Model/Resource/Advanced/Collection.php b/app/code/core/Mage/CatalogSearch/Model/Resource/Advanced/Collection.php index f81e25dd86c6eb427524f7e75881d087d4301c70..49e08afae92b6011c4319705627cfeb7b213043b 100755 --- a/app/code/core/Mage/CatalogSearch/Model/Resource/Advanced/Collection.php +++ b/app/code/core/Mage/CatalogSearch/Model/Resource/Advanced/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogSearch - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogSearch/Model/Resource/Fulltext.php b/app/code/core/Mage/CatalogSearch/Model/Resource/Fulltext.php index 5fa03acc430d25ab93df653a0f49c272603b2333..a719ba9f734bd3fe15e0a9869268cd7afbad135c 100755 --- a/app/code/core/Mage/CatalogSearch/Model/Resource/Fulltext.php +++ b/app/code/core/Mage/CatalogSearch/Model/Resource/Fulltext.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogSearch - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogSearch/Model/Resource/Fulltext/Collection.php b/app/code/core/Mage/CatalogSearch/Model/Resource/Fulltext/Collection.php index 07f68b5d59a13e20dddb96674562603486bddbd0..970357ef03ed3e0dce9affe9db5a7b7d88507568 100755 --- a/app/code/core/Mage/CatalogSearch/Model/Resource/Fulltext/Collection.php +++ b/app/code/core/Mage/CatalogSearch/Model/Resource/Fulltext/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogSearch - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogSearch/Model/Resource/Fulltext/Engine.php b/app/code/core/Mage/CatalogSearch/Model/Resource/Fulltext/Engine.php index 6e3eecbf27125e127c61b1c274933737dbe12baa..86f9b28930ce56dfb55caadd922539f540ed83d1 100755 --- a/app/code/core/Mage/CatalogSearch/Model/Resource/Fulltext/Engine.php +++ b/app/code/core/Mage/CatalogSearch/Model/Resource/Fulltext/Engine.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogSearch - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogSearch/Model/Resource/Helper/Mysql4.php b/app/code/core/Mage/CatalogSearch/Model/Resource/Helper/Mysql4.php index 38d83c83802f4069f4b093ef65c61d7e8a314dc6..f8503115346c91b63e4454b2078ca59281ea7401 100644 --- a/app/code/core/Mage/CatalogSearch/Model/Resource/Helper/Mysql4.php +++ b/app/code/core/Mage/CatalogSearch/Model/Resource/Helper/Mysql4.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogSearch - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogSearch/Model/Resource/Indexer/Fulltext.php b/app/code/core/Mage/CatalogSearch/Model/Resource/Indexer/Fulltext.php index 59addf43338b08549bc23183c9d7fa8e2cbefef9..3139cb0b981ba25956aef62fb7d32301d5fee38b 100644 --- a/app/code/core/Mage/CatalogSearch/Model/Resource/Indexer/Fulltext.php +++ b/app/code/core/Mage/CatalogSearch/Model/Resource/Indexer/Fulltext.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogSearch - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogSearch/Model/Resource/Query.php b/app/code/core/Mage/CatalogSearch/Model/Resource/Query.php index 228b24414e8793a7371da2a5ea4de5e724e74507..07eedd53fe3cee324e6e1fcc751554694ba3bd64 100755 --- a/app/code/core/Mage/CatalogSearch/Model/Resource/Query.php +++ b/app/code/core/Mage/CatalogSearch/Model/Resource/Query.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogSearch - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogSearch/Model/Resource/Query/Collection.php b/app/code/core/Mage/CatalogSearch/Model/Resource/Query/Collection.php index 9af8b90d2092442e4d004de45975e3734ac9597a..5300b6e192241dec706cddd7d65ef23269244437 100755 --- a/app/code/core/Mage/CatalogSearch/Model/Resource/Query/Collection.php +++ b/app/code/core/Mage/CatalogSearch/Model/Resource/Query/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogSearch - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogSearch/Model/Resource/Search/Collection.php b/app/code/core/Mage/CatalogSearch/Model/Resource/Search/Collection.php index a1f860c3869d980b0535df83a392ca9ea8f22f41..35b3d132e6f9cfcaf2da23c1624bdd49a4affb33 100755 --- a/app/code/core/Mage/CatalogSearch/Model/Resource/Search/Collection.php +++ b/app/code/core/Mage/CatalogSearch/Model/Resource/Search/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogSearch - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogSearch/Model/Session.php b/app/code/core/Mage/CatalogSearch/Model/Session.php index ee343fa961221d68f78466adc99bf01fb8192185..5ae790c376a958dabdec936e7de1e65bff9203d9 100644 --- a/app/code/core/Mage/CatalogSearch/Model/Session.php +++ b/app/code/core/Mage/CatalogSearch/Model/Session.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogSearch - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogSearch/Model/Terms/Grid/OptionsArray.php b/app/code/core/Mage/CatalogSearch/Model/Terms/Grid/OptionsArray.php index 7f70d2a29bc3561f4eac36f9e528fd0c017b43e2..466d9e751cc2c519e38d01d54da094b446492c89 100644 --- a/app/code/core/Mage/CatalogSearch/Model/Terms/Grid/OptionsArray.php +++ b/app/code/core/Mage/CatalogSearch/Model/Terms/Grid/OptionsArray.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogSearch - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogSearch/controllers/AdvancedController.php b/app/code/core/Mage/CatalogSearch/controllers/AdvancedController.php index f8dd4760bcf7b4e9afee67060445c56f74c187d0..f64065d8c147550bcca47a6c2043fc08eb921b2f 100644 --- a/app/code/core/Mage/CatalogSearch/controllers/AdvancedController.php +++ b/app/code/core/Mage/CatalogSearch/controllers/AdvancedController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogSearch - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogSearch/controllers/AjaxController.php b/app/code/core/Mage/CatalogSearch/controllers/AjaxController.php index 275eb214a8a3a2b87084b6083f1cc27aa4e4693f..2600e7580c51d4641e5953f607d9f28babce0043 100644 --- a/app/code/core/Mage/CatalogSearch/controllers/AjaxController.php +++ b/app/code/core/Mage/CatalogSearch/controllers/AjaxController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogSearch - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogSearch/controllers/ResultController.php b/app/code/core/Mage/CatalogSearch/controllers/ResultController.php index c125deb344206c3871dc9a090b516d07a62d071d..10f5d2c52bda0b15c30147e8c0a6f230d7b2a7ce 100644 --- a/app/code/core/Mage/CatalogSearch/controllers/ResultController.php +++ b/app/code/core/Mage/CatalogSearch/controllers/ResultController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogSearch - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogSearch/controllers/TermController.php b/app/code/core/Mage/CatalogSearch/controllers/TermController.php index 4f1982ea838ceb562dc1475e718887a5e636ebfc..f3a8a7a431496c5cc1d279e68142672e77c0fa70 100644 --- a/app/code/core/Mage/CatalogSearch/controllers/TermController.php +++ b/app/code/core/Mage/CatalogSearch/controllers/TermController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogSearch - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogSearch/etc/adminhtml/acl.xml b/app/code/core/Mage/CatalogSearch/etc/adminhtml/acl.xml index e391f625a79574209823afe06dd6c12d45c0edbd..f083089848ba3bdf4f01ae1368518144f6f85262 100644 --- a/app/code/core/Mage/CatalogSearch/etc/adminhtml/acl.xml +++ b/app/code/core/Mage/CatalogSearch/etc/adminhtml/acl.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_CatalogSearch - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/CatalogSearch/etc/adminhtml/menu.xml b/app/code/core/Mage/CatalogSearch/etc/adminhtml/menu.xml index 2a242828d3dc7c7c1b971155666b7b16756fbb68..7b9ff41a4b2213308b2f5d4324dc11dc0bb33545 100644 --- a/app/code/core/Mage/CatalogSearch/etc/adminhtml/menu.xml +++ b/app/code/core/Mage/CatalogSearch/etc/adminhtml/menu.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_CatalogSearch - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/CatalogSearch/etc/adminhtml/system.xml b/app/code/core/Mage/CatalogSearch/etc/adminhtml/system.xml index 9258448977293622243753bff689817863d886f9..2b154070e7ece3b5c24547f48a55d30b1edba08f 100644 --- a/app/code/core/Mage/CatalogSearch/etc/adminhtml/system.xml +++ b/app/code/core/Mage/CatalogSearch/etc/adminhtml/system.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_CatalogSearch - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/CatalogSearch/etc/config.xml b/app/code/core/Mage/CatalogSearch/etc/config.xml index 707d600c2c01392ae37d4a02bdd08c33e4b6ff13..344e94de445019320f74950f5209b965a458afc3 100644 --- a/app/code/core/Mage/CatalogSearch/etc/config.xml +++ b/app/code/core/Mage/CatalogSearch/etc/config.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_CatalogSearch - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/CatalogSearch/sql/catalogsearch_setup/install-1.6.0.0.php b/app/code/core/Mage/CatalogSearch/sql/catalogsearch_setup/install-1.6.0.0.php index be14d3273c839b4a4b16c153a95f207ebd6e3637..fd5f54e25b7a36d2ed7c7d19fa57cc5c9fa458d5 100644 --- a/app/code/core/Mage/CatalogSearch/sql/catalogsearch_setup/install-1.6.0.0.php +++ b/app/code/core/Mage/CatalogSearch/sql/catalogsearch_setup/install-1.6.0.0.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CatalogSearch - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CatalogSearch/view/adminhtml/layout.xml b/app/code/core/Mage/CatalogSearch/view/adminhtml/layout.xml index e5b2368aca5e56b6b809aaf3cd364693fb10a1c2..bd28d0a6d215911d99c2e723c53a8a240c01bc34 100644 --- a/app/code/core/Mage/CatalogSearch/view/adminhtml/layout.xml +++ b/app/code/core/Mage/CatalogSearch/view/adminhtml/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/CatalogSearch/view/frontend/advanced/form.phtml b/app/code/core/Mage/CatalogSearch/view/frontend/advanced/form.phtml index 54f8250b58bd4d90a7d8a0e5354d6f9bfeaf54b9..27ed76782e6cc20233664b9c3d612b0b1669da45 100644 --- a/app/code/core/Mage/CatalogSearch/view/frontend/advanced/form.phtml +++ b/app/code/core/Mage/CatalogSearch/view/frontend/advanced/form.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/CatalogSearch/view/frontend/advanced/result.phtml b/app/code/core/Mage/CatalogSearch/view/frontend/advanced/result.phtml index eadf6d7d7a14b13688ab6b87f4648c11c10e7356..6d04b3271095467e7d46118497ee543a3e16aa70 100644 --- a/app/code/core/Mage/CatalogSearch/view/frontend/advanced/result.phtml +++ b/app/code/core/Mage/CatalogSearch/view/frontend/advanced/result.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/CatalogSearch/view/frontend/form-mini.js b/app/code/core/Mage/CatalogSearch/view/frontend/form-mini.js index 63e6d5e11ff484b8ffebb8f26d312c54b0aedb74..457276e3c1b8c2de1de8ee71f50dedb0304d2943 100644 --- a/app/code/core/Mage/CatalogSearch/view/frontend/form-mini.js +++ b/app/code/core/Mage/CatalogSearch/view/frontend/form-mini.js @@ -19,7 +19,7 @@ * * @category catalogsearch search * @package mage - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /*jshint browser:true jquery:true*/ diff --git a/app/code/core/Mage/CatalogSearch/view/frontend/form.mini.phtml b/app/code/core/Mage/CatalogSearch/view/frontend/form.mini.phtml index 07045847d5f48340f57052c3b6ceb58c9fb34602..19d2cc05b88f9e27ed2d56a35d0f1fd346ac3677 100644 --- a/app/code/core/Mage/CatalogSearch/view/frontend/form.mini.phtml +++ b/app/code/core/Mage/CatalogSearch/view/frontend/form.mini.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/CatalogSearch/view/frontend/layout.xml b/app/code/core/Mage/CatalogSearch/view/frontend/layout.xml index a39cfafeeff6c04c7c6206e1f97e5dce4a9d5dbf..774ec537bb7355a9664bc96b6166cdc17e8e7a11 100644 --- a/app/code/core/Mage/CatalogSearch/view/frontend/layout.xml +++ b/app/code/core/Mage/CatalogSearch/view/frontend/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/CatalogSearch/view/frontend/result.phtml b/app/code/core/Mage/CatalogSearch/view/frontend/result.phtml index a35ebeb4b49fd839a2e6a2d74bf8813e6f56d37a..d930a8b21d3f9807969251b3825b3419493b64f5 100644 --- a/app/code/core/Mage/CatalogSearch/view/frontend/result.phtml +++ b/app/code/core/Mage/CatalogSearch/view/frontend/result.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/CatalogSearch/view/frontend/term.phtml b/app/code/core/Mage/CatalogSearch/view/frontend/term.phtml index d3cfbd63c6149b36ef00c268e6b6fcbb75252533..0d11ac1b9171493bc88ce709b134c57886d91806 100644 --- a/app/code/core/Mage/CatalogSearch/view/frontend/term.phtml +++ b/app/code/core/Mage/CatalogSearch/view/frontend/term.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Centinel/Block/Adminhtml/Validation.php b/app/code/core/Mage/Centinel/Block/Adminhtml/Validation.php index c5926448aeb97d874ad9ec03cb3e736c6697d9f3..1a878a7607d64eb246545ce2412571e8b2afbee7 100644 --- a/app/code/core/Mage/Centinel/Block/Adminhtml/Validation.php +++ b/app/code/core/Mage/Centinel/Block/Adminhtml/Validation.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Centinel - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Centinel/Block/Adminhtml/Validation/Form.php b/app/code/core/Mage/Centinel/Block/Adminhtml/Validation/Form.php index e570960636583538a7db7cebcb58f1be340bb03c..e9b4f5820462061597bfbec3425987ce11a40d9d 100644 --- a/app/code/core/Mage/Centinel/Block/Adminhtml/Validation/Form.php +++ b/app/code/core/Mage/Centinel/Block/Adminhtml/Validation/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Centinel - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Centinel/Block/Authentication.php b/app/code/core/Mage/Centinel/Block/Authentication.php index 6656e1371698d3f8b42e9ff434b6ff3ce1149910..1aaed59a0d913830b8042ade7c2ce99d3407caed 100644 --- a/app/code/core/Mage/Centinel/Block/Authentication.php +++ b/app/code/core/Mage/Centinel/Block/Authentication.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Centinel - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Centinel/Block/Authentication/Complete.php b/app/code/core/Mage/Centinel/Block/Authentication/Complete.php index 41438dfce9c9839b6241f73dc982682542458723..cfd3330c805b79a3d585854fae22c12cd16eb6ba 100644 --- a/app/code/core/Mage/Centinel/Block/Authentication/Complete.php +++ b/app/code/core/Mage/Centinel/Block/Authentication/Complete.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Centinel - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Centinel/Block/Authentication/Start.php b/app/code/core/Mage/Centinel/Block/Authentication/Start.php index b3d5bfcd75782c38eb6dcfbc80667465e0eb3c55..828affe772b88dbcee792044d0d44c31f6d4e0e3 100644 --- a/app/code/core/Mage/Centinel/Block/Authentication/Start.php +++ b/app/code/core/Mage/Centinel/Block/Authentication/Start.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Centinel - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Centinel/Block/Logo.php b/app/code/core/Mage/Centinel/Block/Logo.php index 6f79f42451be5c80ff2cd9a14145ed5076fba30f..5f4490f1c320482afd663d309ae7b0fd786fc6cd 100644 --- a/app/code/core/Mage/Centinel/Block/Logo.php +++ b/app/code/core/Mage/Centinel/Block/Logo.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Centinel - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Centinel/Helper/Data.php b/app/code/core/Mage/Centinel/Helper/Data.php index 3721ee3a06f300cb291b3b1316ea4316689f8e75..1f5b4933085e4cec05666a37e5c9b22bfbb9ce5a 100644 --- a/app/code/core/Mage/Centinel/Helper/Data.php +++ b/app/code/core/Mage/Centinel/Helper/Data.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Centinel - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Centinel/Model/Api.php b/app/code/core/Mage/Centinel/Model/Api.php index b7975988f0ef6ff614d051ac77d0d7da23e2b7c7..235a43eda4915ee548e5c91217ee156158274471 100644 --- a/app/code/core/Mage/Centinel/Model/Api.php +++ b/app/code/core/Mage/Centinel/Model/Api.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Centinel - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Centinel/Model/Config.php b/app/code/core/Mage/Centinel/Model/Config.php index 56aa9076921dcfe1b1aa39ef6ede497ce67b069d..e6ac1c1ccd5158f32a70539af78b1e6fdc3df2c4 100644 --- a/app/code/core/Mage/Centinel/Model/Config.php +++ b/app/code/core/Mage/Centinel/Model/Config.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Centinel - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Centinel/Model/Observer.php b/app/code/core/Mage/Centinel/Model/Observer.php index 4dd3230f6c5aa35061c393a1186ad6df27fd03a7..ae1bffd78547b2902ee5c0166b2a1334c85f9fc8 100644 --- a/app/code/core/Mage/Centinel/Model/Observer.php +++ b/app/code/core/Mage/Centinel/Model/Observer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Centinel - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Centinel/Model/Service.php b/app/code/core/Mage/Centinel/Model/Service.php index 9f28ba84d1a2db8741ed6c1bbb4d831af29ac5ac..9f8656d472c511c2056b9c732910d280ecfeef1b 100644 --- a/app/code/core/Mage/Centinel/Model/Service.php +++ b/app/code/core/Mage/Centinel/Model/Service.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Centinel - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Centinel/Model/Session.php b/app/code/core/Mage/Centinel/Model/Session.php index a1a119db3891edf313af6af09e1da9ad489c87c3..2712dab8b3e2f240805f0e986f16c4881c8096d2 100644 --- a/app/code/core/Mage/Centinel/Model/Session.php +++ b/app/code/core/Mage/Centinel/Model/Session.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Centinel - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Centinel/Model/State/Jcb.php b/app/code/core/Mage/Centinel/Model/State/Jcb.php index 04c907f2da578a84f24848bbf3bfcde4a7d4b77b..ba66da282b1e6a7060fda4df6dc95dc36553abb1 100644 --- a/app/code/core/Mage/Centinel/Model/State/Jcb.php +++ b/app/code/core/Mage/Centinel/Model/State/Jcb.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Centinel - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Centinel/Model/State/Mastercard.php b/app/code/core/Mage/Centinel/Model/State/Mastercard.php index e1064a1d64309c6aa41b268fd35b8f65457a030f..cf30692e2acf0a56fb7f97308801b564c03452b8 100644 --- a/app/code/core/Mage/Centinel/Model/State/Mastercard.php +++ b/app/code/core/Mage/Centinel/Model/State/Mastercard.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Centinel - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Centinel/Model/State/Visa.php b/app/code/core/Mage/Centinel/Model/State/Visa.php index 3b146d208df1f84da4de1b6635b1983a4650886a..09b37b9e3c618e8aa8d7e24752b2167e43e36128 100644 --- a/app/code/core/Mage/Centinel/Model/State/Visa.php +++ b/app/code/core/Mage/Centinel/Model/State/Visa.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Centinel - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Centinel/Model/StateAbstract.php b/app/code/core/Mage/Centinel/Model/StateAbstract.php index 5443f5b269baafb4592536b0e62c7017b74fe068..b3e5a0bad3852c5b04da53fa9be6f94712cc8756 100644 --- a/app/code/core/Mage/Centinel/Model/StateAbstract.php +++ b/app/code/core/Mage/Centinel/Model/StateAbstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Centinel - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Centinel/controllers/Adminhtml/Centinel/IndexController.php b/app/code/core/Mage/Centinel/controllers/Adminhtml/Centinel/IndexController.php index 2106fb6b84507697fbe4f892eda3b4d1fcdc91c0..e73b40d5f51d37ec0369d8c0038d413b6d25069b 100644 --- a/app/code/core/Mage/Centinel/controllers/Adminhtml/Centinel/IndexController.php +++ b/app/code/core/Mage/Centinel/controllers/Adminhtml/Centinel/IndexController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Centinel - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Centinel/controllers/IndexController.php b/app/code/core/Mage/Centinel/controllers/IndexController.php index 72ef71437a638dd3291901f99877abdac4ccf4cc..fca143cd76563e301d97f7fea32f3e826a0187b2 100644 --- a/app/code/core/Mage/Centinel/controllers/IndexController.php +++ b/app/code/core/Mage/Centinel/controllers/IndexController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Centinel - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Centinel/etc/adminhtml/system.xml b/app/code/core/Mage/Centinel/etc/adminhtml/system.xml index b3c09201b52c2a277c08e944eb5de94ea063ae18..4759964a543d03782f0f96491fe14d0b19cd4de1 100644 --- a/app/code/core/Mage/Centinel/etc/adminhtml/system.xml +++ b/app/code/core/Mage/Centinel/etc/adminhtml/system.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Centinel - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Centinel/etc/config.xml b/app/code/core/Mage/Centinel/etc/config.xml index 0d265423b1cf37eb4ac9bc92d06945ca45693020..2cc3362877216f9bcb09df7595172f7193dec72a 100644 --- a/app/code/core/Mage/Centinel/etc/config.xml +++ b/app/code/core/Mage/Centinel/etc/config.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Centinel - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Centinel/view/adminhtml/authentication/complete.phtml b/app/code/core/Mage/Centinel/view/adminhtml/authentication/complete.phtml index b47c9b03ace125ac68474bf5cfabdec4c7c4ca5d..b623625e4807f4ab5d1aa3d01b6368fa6e48a56f 100644 --- a/app/code/core/Mage/Centinel/view/adminhtml/authentication/complete.phtml +++ b/app/code/core/Mage/Centinel/view/adminhtml/authentication/complete.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Centinel/view/adminhtml/authentication/start.phtml b/app/code/core/Mage/Centinel/view/adminhtml/authentication/start.phtml index 62609a302683077e49878b86e38a68da6841d826..351ff9bcfe1334c21cabd66bae9091614b180d0e 100644 --- a/app/code/core/Mage/Centinel/view/adminhtml/authentication/start.phtml +++ b/app/code/core/Mage/Centinel/view/adminhtml/authentication/start.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Centinel/view/adminhtml/layout.xml b/app/code/core/Mage/Centinel/view/adminhtml/layout.xml index 917950d07d1619a9114a71a7cef47953aaf34503..ebeb476b70d2433c9de60fba7ccc413b726119dc 100644 --- a/app/code/core/Mage/Centinel/view/adminhtml/layout.xml +++ b/app/code/core/Mage/Centinel/view/adminhtml/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Centinel/view/adminhtml/order_create.js b/app/code/core/Mage/Centinel/view/adminhtml/order_create.js index f67f1bde34b1a4fc8556a26937859ca8573e6c87..36cafa427e2aa0f9de6877f12e72d3ca1479e3de 100644 --- a/app/code/core/Mage/Centinel/view/adminhtml/order_create.js +++ b/app/code/core/Mage/Centinel/view/adminhtml/order_create.js @@ -19,7 +19,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ var centinelValidator = new Class.create(); diff --git a/app/code/core/Mage/Centinel/view/adminhtml/validation/form.phtml b/app/code/core/Mage/Centinel/view/adminhtml/validation/form.phtml index 2091e1abbd5d27766f37ef32b6ac461e6285cd7c..6645cc8c8bcbade39614a17cb3f3352ce7b4f58f 100644 --- a/app/code/core/Mage/Centinel/view/adminhtml/validation/form.phtml +++ b/app/code/core/Mage/Centinel/view/adminhtml/validation/form.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Centinel/view/frontend/authentication.phtml b/app/code/core/Mage/Centinel/view/frontend/authentication.phtml index 474b135111d13b067f18ab0aabcce61e88590103..f48dd630a83710b8c8f2ccd085278e7442ccbc9f 100644 --- a/app/code/core/Mage/Centinel/view/frontend/authentication.phtml +++ b/app/code/core/Mage/Centinel/view/frontend/authentication.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Centinel/view/frontend/authentication/complete.phtml b/app/code/core/Mage/Centinel/view/frontend/authentication/complete.phtml index ce87c8159b7dda0f844723ad73df2dcef1488b32..77fd7c0aa40907c98bb7cee28517bf274e413f5e 100644 --- a/app/code/core/Mage/Centinel/view/frontend/authentication/complete.phtml +++ b/app/code/core/Mage/Centinel/view/frontend/authentication/complete.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Centinel/view/frontend/authentication/start.phtml b/app/code/core/Mage/Centinel/view/frontend/authentication/start.phtml index 1704647fe35038c973d1bf667ff735c0fa657d7a..868a419b7b3fff34ab39bd60629b16108a8ea826 100644 --- a/app/code/core/Mage/Centinel/view/frontend/authentication/start.phtml +++ b/app/code/core/Mage/Centinel/view/frontend/authentication/start.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Centinel/view/frontend/checkout.js b/app/code/core/Mage/Centinel/view/frontend/checkout.js index 8f124e8129dc504861964e8f6cac4cec8c854e71..d43470370f6dc3a26b25631a38c3b37ddd3aa739 100644 --- a/app/code/core/Mage/Centinel/view/frontend/checkout.js +++ b/app/code/core/Mage/Centinel/view/frontend/checkout.js @@ -19,7 +19,7 @@ * * @category Mage * @package js - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ var CentinelAuthenticate = Class.create(); diff --git a/app/code/core/Mage/Centinel/view/frontend/layout.xml b/app/code/core/Mage/Centinel/view/frontend/layout.xml index a83a4cbd3062ef9c59eb578f52303fd9da999518..46ee8008ce7cd259b2bb473e0bd99068e13cd687 100644 --- a/app/code/core/Mage/Centinel/view/frontend/layout.xml +++ b/app/code/core/Mage/Centinel/view/frontend/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Centinel/view/frontend/logo.phtml b/app/code/core/Mage/Centinel/view/frontend/logo.phtml index 95a3c96f7a62c443251feaec3283820e93c9bff7..9a6f1cb542b415450c550328da92e20ca057a79f 100644 --- a/app/code/core/Mage/Centinel/view/frontend/logo.phtml +++ b/app/code/core/Mage/Centinel/view/frontend/logo.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Checkout/Block/Agreements.php b/app/code/core/Mage/Checkout/Block/Agreements.php index 40ffe771c2388c4b27ea5b0ecb0f450290d8a9f6..c5459b9d19fc0e0f4adb88d4e25fd81ad2619bfc 100644 --- a/app/code/core/Mage/Checkout/Block/Agreements.php +++ b/app/code/core/Mage/Checkout/Block/Agreements.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Checkout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Checkout_Block_Agreements extends Mage_Core_Block_Template diff --git a/app/code/core/Mage/Checkout/Block/Cart.php b/app/code/core/Mage/Checkout/Block/Cart.php index e6a2ab770290f5ea8baaa8ac7dd1b4ec8ef76ec1..ed66b69802ef2ef8231217de5aa61dd981b2d091 100644 --- a/app/code/core/Mage/Checkout/Block/Cart.php +++ b/app/code/core/Mage/Checkout/Block/Cart.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Checkout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Checkout/Block/Cart/Abstract.php b/app/code/core/Mage/Checkout/Block/Cart/Abstract.php index ebae9e6bad60b149f03bb568f49e01015df4e405..a3328147aebac2ed731f88d2c43fe24159dde169 100644 --- a/app/code/core/Mage/Checkout/Block/Cart/Abstract.php +++ b/app/code/core/Mage/Checkout/Block/Cart/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Checkout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Checkout/Block/Cart/Coupon.php b/app/code/core/Mage/Checkout/Block/Cart/Coupon.php index 33de5809f32c870254bc44f535d5011ca6dbfee1..4e3e25f29143b41bd27017cb65718efb55dcd2b5 100644 --- a/app/code/core/Mage/Checkout/Block/Cart/Coupon.php +++ b/app/code/core/Mage/Checkout/Block/Cart/Coupon.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Checkout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Checkout/Block/Cart/Crosssell.php b/app/code/core/Mage/Checkout/Block/Cart/Crosssell.php index ba07dc9e3322b72df8fa1931aeba203ddc6b4483..b9b8826bd4578c91353db04155f6e05117745f28 100644 --- a/app/code/core/Mage/Checkout/Block/Cart/Crosssell.php +++ b/app/code/core/Mage/Checkout/Block/Cart/Crosssell.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Checkout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Checkout/Block/Cart/Item/Configure.php b/app/code/core/Mage/Checkout/Block/Cart/Item/Configure.php index 9d11fae60bc9d98be6852d52d4459ab7535baca9..3d46e6a4e2abd7b26f0b43b4c44b953d7d15bb0f 100644 --- a/app/code/core/Mage/Checkout/Block/Cart/Item/Configure.php +++ b/app/code/core/Mage/Checkout/Block/Cart/Item/Configure.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Checkout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Checkout/Block/Cart/Item/Renderer.php b/app/code/core/Mage/Checkout/Block/Cart/Item/Renderer.php index becbb2bbc465ec35e30ce438ebd26c882b822eb5..c2c344681734b3ccb4a83ddecf153d02b207c9dc 100644 --- a/app/code/core/Mage/Checkout/Block/Cart/Item/Renderer.php +++ b/app/code/core/Mage/Checkout/Block/Cart/Item/Renderer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Checkout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Checkout/Block/Cart/Item/Renderer/Configurable.php b/app/code/core/Mage/Checkout/Block/Cart/Item/Renderer/Configurable.php index fde91f0bbc895971b08375c757ba1c58ad5ddf8a..30a3f0253e88075dd093853cdd1c39f856772543 100644 --- a/app/code/core/Mage/Checkout/Block/Cart/Item/Renderer/Configurable.php +++ b/app/code/core/Mage/Checkout/Block/Cart/Item/Renderer/Configurable.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Checkout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Checkout/Block/Cart/Item/Renderer/Grouped.php b/app/code/core/Mage/Checkout/Block/Cart/Item/Renderer/Grouped.php index 8784c9791da162045f5f7c0552a78267a8b56b6b..0d4e5fbb928a66ffcb6911b2dbcaa5b196ed999f 100644 --- a/app/code/core/Mage/Checkout/Block/Cart/Item/Renderer/Grouped.php +++ b/app/code/core/Mage/Checkout/Block/Cart/Item/Renderer/Grouped.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Checkout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Checkout/Block/Cart/Shipping.php b/app/code/core/Mage/Checkout/Block/Cart/Shipping.php index e4bae314b389f3cc404866cf7ef79e542fc26ea2..fca481e72a35754e3be61d20c7c120e2ae99676a 100644 --- a/app/code/core/Mage/Checkout/Block/Cart/Shipping.php +++ b/app/code/core/Mage/Checkout/Block/Cart/Shipping.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Checkout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Checkout/Block/Cart/Sidebar.php b/app/code/core/Mage/Checkout/Block/Cart/Sidebar.php index d67a750414329f99a9153e7c1f9f9af676c96c4d..99efdb96faf0638810f7749068c0544c93d3eb7c 100644 --- a/app/code/core/Mage/Checkout/Block/Cart/Sidebar.php +++ b/app/code/core/Mage/Checkout/Block/Cart/Sidebar.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Checkout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Checkout/Block/Cart/Totals.php b/app/code/core/Mage/Checkout/Block/Cart/Totals.php index 7fb313e7da8663a7e4fb2d2ea8589a63f22021f4..b7fd360c7164ae1565f8978b099f971e03cb90ca 100644 --- a/app/code/core/Mage/Checkout/Block/Cart/Totals.php +++ b/app/code/core/Mage/Checkout/Block/Cart/Totals.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Checkout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Checkout/Block/Links.php b/app/code/core/Mage/Checkout/Block/Links.php index 883458d891dd2939d14a0bea0806d36add222c8d..ee5d3f7f990f7716fbee1e98797fdfef1481cd69 100644 --- a/app/code/core/Mage/Checkout/Block/Links.php +++ b/app/code/core/Mage/Checkout/Block/Links.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Checkout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Checkout/Block/Multishipping/Abstract.php b/app/code/core/Mage/Checkout/Block/Multishipping/Abstract.php index fe3c06ac48f637485e87b7f89575d8134cc9a128..21facb4f2f25805b36965340ed75028bb1485f5e 100644 --- a/app/code/core/Mage/Checkout/Block/Multishipping/Abstract.php +++ b/app/code/core/Mage/Checkout/Block/Multishipping/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Checkout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Checkout/Block/Multishipping/Address/Select.php b/app/code/core/Mage/Checkout/Block/Multishipping/Address/Select.php index dda95dd6cb89af79e981ea6a940cc440966a777d..a1afff0ea8ab125c510a04454cb3dc2263f80e30 100644 --- a/app/code/core/Mage/Checkout/Block/Multishipping/Address/Select.php +++ b/app/code/core/Mage/Checkout/Block/Multishipping/Address/Select.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Checkout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Checkout/Block/Multishipping/Addresses.php b/app/code/core/Mage/Checkout/Block/Multishipping/Addresses.php index bc042847ddf78b8bdedc3c118d435de7dc3bf975..9950d848192ea5b3785f60230c212ea5cbbc683f 100644 --- a/app/code/core/Mage/Checkout/Block/Multishipping/Addresses.php +++ b/app/code/core/Mage/Checkout/Block/Multishipping/Addresses.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Checkout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Checkout/Block/Multishipping/Billing.php b/app/code/core/Mage/Checkout/Block/Multishipping/Billing.php index a632dc57afd5ba2edfec9340e48b5660a24cb848..216a3907e427c6558b14022181a471ae29953dcb 100644 --- a/app/code/core/Mage/Checkout/Block/Multishipping/Billing.php +++ b/app/code/core/Mage/Checkout/Block/Multishipping/Billing.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Checkout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Checkout/Block/Multishipping/Billing/Items.php b/app/code/core/Mage/Checkout/Block/Multishipping/Billing/Items.php index b271b78409829106afafbb6e2a891be0e77f2a33..84aa019ce3e86786f32580e12533f18b44b14ce4 100644 --- a/app/code/core/Mage/Checkout/Block/Multishipping/Billing/Items.php +++ b/app/code/core/Mage/Checkout/Block/Multishipping/Billing/Items.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Checkout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Checkout/Block/Multishipping/Link.php b/app/code/core/Mage/Checkout/Block/Multishipping/Link.php index 573e46733af22d79992951f88570a644b90d0e7f..2e8330a2f2ab9b4744aeb672e8d0c51f7670adcf 100644 --- a/app/code/core/Mage/Checkout/Block/Multishipping/Link.php +++ b/app/code/core/Mage/Checkout/Block/Multishipping/Link.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Checkout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Checkout/Block/Multishipping/Overview.php b/app/code/core/Mage/Checkout/Block/Multishipping/Overview.php index 384ba598db1315f24b720a22d556ba74b1aa6f03..3777788679460b32735eb5f8804cc33529460eeb 100644 --- a/app/code/core/Mage/Checkout/Block/Multishipping/Overview.php +++ b/app/code/core/Mage/Checkout/Block/Multishipping/Overview.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Checkout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Checkout/Block/Multishipping/Payment/Info.php b/app/code/core/Mage/Checkout/Block/Multishipping/Payment/Info.php index 5a2920700002d647dc5d56856f3b20b2b81267f8..41e25485de4c193163bb3569b86264faf9ae7b49 100644 --- a/app/code/core/Mage/Checkout/Block/Multishipping/Payment/Info.php +++ b/app/code/core/Mage/Checkout/Block/Multishipping/Payment/Info.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Checkout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Checkout/Block/Multishipping/Shipping.php b/app/code/core/Mage/Checkout/Block/Multishipping/Shipping.php index 3b28345b8c52eb6e39a34035b315333d788575e3..f228c9c0bf7f72c579e05c9da8177d174dc6ef4f 100644 --- a/app/code/core/Mage/Checkout/Block/Multishipping/Shipping.php +++ b/app/code/core/Mage/Checkout/Block/Multishipping/Shipping.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Checkout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Checkout/Block/Multishipping/State.php b/app/code/core/Mage/Checkout/Block/Multishipping/State.php index 10f008c395b1db7ded364705aa88bcb9c027a1d6..32c16de33f7797578f4f8292914882f4bbccf301 100644 --- a/app/code/core/Mage/Checkout/Block/Multishipping/State.php +++ b/app/code/core/Mage/Checkout/Block/Multishipping/State.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Checkout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Checkout/Block/Multishipping/Success.php b/app/code/core/Mage/Checkout/Block/Multishipping/Success.php index 2756e7bbd2a9fc14ef0870d4634a35fb90d1a31e..c5176479916a7df3fbbf6f39e23b962e63534964 100644 --- a/app/code/core/Mage/Checkout/Block/Multishipping/Success.php +++ b/app/code/core/Mage/Checkout/Block/Multishipping/Success.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Checkout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Checkout/Block/Onepage.php b/app/code/core/Mage/Checkout/Block/Onepage.php index fd1260844d3aaf7d3994f7d13e85f3aad12f4051..e3a45b0b227a4db1ec98b0a94dc48568ce3a63ec 100644 --- a/app/code/core/Mage/Checkout/Block/Onepage.php +++ b/app/code/core/Mage/Checkout/Block/Onepage.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Checkout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Checkout/Block/Onepage/Abstract.php b/app/code/core/Mage/Checkout/Block/Onepage/Abstract.php index fabf4d8ca071b92176a9820324ec9bf8f08b1164..9e662bb15ae81f59e34e2c86977297c088542977 100644 --- a/app/code/core/Mage/Checkout/Block/Onepage/Abstract.php +++ b/app/code/core/Mage/Checkout/Block/Onepage/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Checkout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Checkout/Block/Onepage/Billing.php b/app/code/core/Mage/Checkout/Block/Onepage/Billing.php index 5855d69791e3016845e9aa48a76143d8f9c997dd..7207461d80033bcf3f7a6cacf497a661de693707 100644 --- a/app/code/core/Mage/Checkout/Block/Onepage/Billing.php +++ b/app/code/core/Mage/Checkout/Block/Onepage/Billing.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Checkout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Checkout/Block/Onepage/Failure.php b/app/code/core/Mage/Checkout/Block/Onepage/Failure.php index 99fb044aa007488e1a9d53caad47af3bf339a9fa..c3114f8e2a925b7c863cf1b9320f22c0e512aa96 100644 --- a/app/code/core/Mage/Checkout/Block/Onepage/Failure.php +++ b/app/code/core/Mage/Checkout/Block/Onepage/Failure.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Checkout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Checkout/Block/Onepage/Link.php b/app/code/core/Mage/Checkout/Block/Onepage/Link.php index 71f1c0338da76d83a54db19d25a94c938f962658..4c3844eec88d702a790777a65a572963afb99fdb 100644 --- a/app/code/core/Mage/Checkout/Block/Onepage/Link.php +++ b/app/code/core/Mage/Checkout/Block/Onepage/Link.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Checkout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Checkout/Block/Onepage/Login.php b/app/code/core/Mage/Checkout/Block/Onepage/Login.php index be0e881a8bf586768ad159ad16ba8332ab3998b7..28d217ee6e49189004d14a43703fe0fe6ef39b67 100644 --- a/app/code/core/Mage/Checkout/Block/Onepage/Login.php +++ b/app/code/core/Mage/Checkout/Block/Onepage/Login.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Checkout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Checkout/Block/Onepage/Payment.php b/app/code/core/Mage/Checkout/Block/Onepage/Payment.php index 02dad6f1ae8616288313e469ac5f0251d2583a19..2a2796bfce943e46b22e26b7fefe9be38331c74f 100644 --- a/app/code/core/Mage/Checkout/Block/Onepage/Payment.php +++ b/app/code/core/Mage/Checkout/Block/Onepage/Payment.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Checkout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Checkout/Block/Onepage/Payment/Info.php b/app/code/core/Mage/Checkout/Block/Onepage/Payment/Info.php index 26ec6d06c372d752da2491840ac68cbc796c8481..62faa3be2f991be8d275b1217d952c52e54d4a87 100644 --- a/app/code/core/Mage/Checkout/Block/Onepage/Payment/Info.php +++ b/app/code/core/Mage/Checkout/Block/Onepage/Payment/Info.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Checkout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Checkout/Block/Onepage/Payment/Methods.php b/app/code/core/Mage/Checkout/Block/Onepage/Payment/Methods.php index 2d3d26316ca51578e8e5792f266fb6c676f71705..ecd922eada80056ee7d34b93a225ac4429d19ff6 100644 --- a/app/code/core/Mage/Checkout/Block/Onepage/Payment/Methods.php +++ b/app/code/core/Mage/Checkout/Block/Onepage/Payment/Methods.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Checkout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Checkout/Block/Onepage/Progress.php b/app/code/core/Mage/Checkout/Block/Onepage/Progress.php index 767ac481eb5d89494970a60f08cd18a6d93a2daa..73094420647e9aee2edb8fd9bb120ae249e265e1 100644 --- a/app/code/core/Mage/Checkout/Block/Onepage/Progress.php +++ b/app/code/core/Mage/Checkout/Block/Onepage/Progress.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Checkout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Checkout/Block/Onepage/Review.php b/app/code/core/Mage/Checkout/Block/Onepage/Review.php index cf02569fe67c36bde3e482d8830d0b6958ca3303..03d46600dd9fdc172a42130852626f173b916b7a 100644 --- a/app/code/core/Mage/Checkout/Block/Onepage/Review.php +++ b/app/code/core/Mage/Checkout/Block/Onepage/Review.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Checkout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Checkout/Block/Onepage/Review/Info.php b/app/code/core/Mage/Checkout/Block/Onepage/Review/Info.php index 874a9a1185dd52858119b552a5af20041932ceb3..de09083aa11056a01cc3eb86b5151b0601b90edc 100644 --- a/app/code/core/Mage/Checkout/Block/Onepage/Review/Info.php +++ b/app/code/core/Mage/Checkout/Block/Onepage/Review/Info.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Checkout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Checkout/Block/Onepage/Shipping.php b/app/code/core/Mage/Checkout/Block/Onepage/Shipping.php index cda293a2473a5d3c21d5f81792ca158ef70b700c..8d9ca97106e1e6130b08c56d2217726d63a1eeff 100644 --- a/app/code/core/Mage/Checkout/Block/Onepage/Shipping.php +++ b/app/code/core/Mage/Checkout/Block/Onepage/Shipping.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Checkout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Checkout/Block/Onepage/Shipping/Method.php b/app/code/core/Mage/Checkout/Block/Onepage/Shipping/Method.php index 2d031589e7e52a0d37bb1cb90bf8933e6ae23f82..cec48e2725b9a547d0d49c8201bb4de5af206701 100644 --- a/app/code/core/Mage/Checkout/Block/Onepage/Shipping/Method.php +++ b/app/code/core/Mage/Checkout/Block/Onepage/Shipping/Method.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Checkout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Checkout/Block/Onepage/Shipping/Method/Additional.php b/app/code/core/Mage/Checkout/Block/Onepage/Shipping/Method/Additional.php index 427f750ef2cc1aac47fd1868ce27ffc47330ff5e..a93b860dc1129987e5d406e7fe05bb1e22e8eacc 100644 --- a/app/code/core/Mage/Checkout/Block/Onepage/Shipping/Method/Additional.php +++ b/app/code/core/Mage/Checkout/Block/Onepage/Shipping/Method/Additional.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Checkout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Checkout/Block/Onepage/Shipping/Method/Available.php b/app/code/core/Mage/Checkout/Block/Onepage/Shipping/Method/Available.php index 430192546f22359fd60522d9bcd8d0d996a49e16..8ff7f03ea900bfb35eed136ed560f584779bb2dd 100644 --- a/app/code/core/Mage/Checkout/Block/Onepage/Shipping/Method/Available.php +++ b/app/code/core/Mage/Checkout/Block/Onepage/Shipping/Method/Available.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Checkout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Checkout/Block/Onepage/Success.php b/app/code/core/Mage/Checkout/Block/Onepage/Success.php index b070db72cf0b88442c5f7cf849ea44b874ac847d..03d3914b5f3d016cc4c093a38f230511fd5fb469 100644 --- a/app/code/core/Mage/Checkout/Block/Onepage/Success.php +++ b/app/code/core/Mage/Checkout/Block/Onepage/Success.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Checkout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Checkout/Block/Success.php b/app/code/core/Mage/Checkout/Block/Success.php index 3d201d2f779176dbd0f3d2da66e430f14063cd65..5f1985eae9b0d7766384a1bb10872ff547f241c6 100644 --- a/app/code/core/Mage/Checkout/Block/Success.php +++ b/app/code/core/Mage/Checkout/Block/Success.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Checkout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Checkout/Block/Total/Default.php b/app/code/core/Mage/Checkout/Block/Total/Default.php index de9d2abb3053874b90ea51bab6b9b50edf174ce6..2a3166f2a67856a58034743c5b49049c6fd79b84 100644 --- a/app/code/core/Mage/Checkout/Block/Total/Default.php +++ b/app/code/core/Mage/Checkout/Block/Total/Default.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Checkout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Checkout/Block/Total/Nominal.php b/app/code/core/Mage/Checkout/Block/Total/Nominal.php index c0b876aad8c2104e2af903ca7e0727f38b875640..09f667d287b241f5778310d0c16e6dd84dc51ca6 100644 --- a/app/code/core/Mage/Checkout/Block/Total/Nominal.php +++ b/app/code/core/Mage/Checkout/Block/Total/Nominal.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Checkout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Checkout/Block/Total/Tax.php b/app/code/core/Mage/Checkout/Block/Total/Tax.php index 13b83ff6076d78f72102971714c0d5f010fda7c6..88c6edb9177658c792a2f59cc7d99b7d0257bc57 100644 --- a/app/code/core/Mage/Checkout/Block/Total/Tax.php +++ b/app/code/core/Mage/Checkout/Block/Total/Tax.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Checkout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Checkout/Controller/Action.php b/app/code/core/Mage/Checkout/Controller/Action.php index 7418d625b3666b3525bad25185132e2e8a3ae958..119bcb751995e6f36ba616748b7511c903f0c1b0 100644 --- a/app/code/core/Mage/Checkout/Controller/Action.php +++ b/app/code/core/Mage/Checkout/Controller/Action.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Checkout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Checkout/Exception.php b/app/code/core/Mage/Checkout/Exception.php index 76ae983172c2f1bc02c70f945838b844668526a1..e4e881aa045d420cbc96d4eada6c6833123bc894 100644 --- a/app/code/core/Mage/Checkout/Exception.php +++ b/app/code/core/Mage/Checkout/Exception.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Checkout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Checkout/Helper/Cart.php b/app/code/core/Mage/Checkout/Helper/Cart.php index 0afa9d98c5f30c39f598c04da8539cd8e44ff54b..799d5a2b6637edfc60c7bafe759519446b0be14e 100644 --- a/app/code/core/Mage/Checkout/Helper/Cart.php +++ b/app/code/core/Mage/Checkout/Helper/Cart.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Checkout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Checkout/Helper/Data.php b/app/code/core/Mage/Checkout/Helper/Data.php index bf9629219966c5d3dfdfcd4fe4da168451c7c114..30a31e2c64a3e76fa5aa944f042e08a1f8c329b4 100644 --- a/app/code/core/Mage/Checkout/Helper/Data.php +++ b/app/code/core/Mage/Checkout/Helper/Data.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Checkout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Checkout/Helper/Url.php b/app/code/core/Mage/Checkout/Helper/Url.php index 2031da3917e7b28cddf05ad83a9cc91325cac0bb..49eae462bd317b9096c9b66b81f61286c5d54eef 100644 --- a/app/code/core/Mage/Checkout/Helper/Url.php +++ b/app/code/core/Mage/Checkout/Helper/Url.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Checkout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Checkout/Model/Agreement.php b/app/code/core/Mage/Checkout/Model/Agreement.php index b22cd1255ebc276e6b160ad9f3f3681f7d70cfec..b989eefeb2dc4fc06e69984f3058d28e114065e9 100644 --- a/app/code/core/Mage/Checkout/Model/Agreement.php +++ b/app/code/core/Mage/Checkout/Model/Agreement.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Checkout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Checkout/Model/Cart.php b/app/code/core/Mage/Checkout/Model/Cart.php index 1de84009084a0b7da56c925f73eb8fde23ab1a31..503425cd76dfafa6b3f7a735527d6703544fde43 100644 --- a/app/code/core/Mage/Checkout/Model/Cart.php +++ b/app/code/core/Mage/Checkout/Model/Cart.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Checkout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Checkout/Model/Cart/Interface.php b/app/code/core/Mage/Checkout/Model/Cart/Interface.php index 97542e7df8c837c16bf1723a3ab79dcd4b8a797d..3d0581d8b62c46db88ae95809674eb9a0f1937ef 100644 --- a/app/code/core/Mage/Checkout/Model/Cart/Interface.php +++ b/app/code/core/Mage/Checkout/Model/Cart/Interface.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Checkout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Checkout/Model/Config/Source/Cart/Summary.php b/app/code/core/Mage/Checkout/Model/Config/Source/Cart/Summary.php index d7e17ea98d9155209a79c9e2087aa21fc930c3a2..7bcd3a7d525a1940d272182c745efdc4de96d6b6 100644 --- a/app/code/core/Mage/Checkout/Model/Config/Source/Cart/Summary.php +++ b/app/code/core/Mage/Checkout/Model/Config/Source/Cart/Summary.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Checkout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Checkout_Model_Config_Source_Cart_Summary implements Mage_Core_Model_Option_ArrayInterface diff --git a/app/code/core/Mage/Checkout/Model/Observer.php b/app/code/core/Mage/Checkout/Model/Observer.php index b4d4c7a3f054da52c800773c835a2509d92a2e44..e881f3331a57d21733a6d5dd71d8476b424cb955 100644 --- a/app/code/core/Mage/Checkout/Model/Observer.php +++ b/app/code/core/Mage/Checkout/Model/Observer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Checkout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Checkout/Model/Resource/Agreement.php b/app/code/core/Mage/Checkout/Model/Resource/Agreement.php index a48a27d4b4b60cf5e3ec5ff238a8883e39603beb..243abe3667d4dd7ef40733901995d70350651bed 100755 --- a/app/code/core/Mage/Checkout/Model/Resource/Agreement.php +++ b/app/code/core/Mage/Checkout/Model/Resource/Agreement.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Checkout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Checkout/Model/Resource/Agreement/Collection.php b/app/code/core/Mage/Checkout/Model/Resource/Agreement/Collection.php index 0939e952dc193dac7b6399dbb1ad0204a8b88de9..b5054ccb3e7a0356c6999782764110ca5061a032 100755 --- a/app/code/core/Mage/Checkout/Model/Resource/Agreement/Collection.php +++ b/app/code/core/Mage/Checkout/Model/Resource/Agreement/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Checkout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Checkout/Model/Resource/Cart.php b/app/code/core/Mage/Checkout/Model/Resource/Cart.php index 4e1a402f6891dc1a319e7c83057bef4fa2f3f68b..33abe71984f6fc4d8e91ecc5decb9e23f7704bcc 100755 --- a/app/code/core/Mage/Checkout/Model/Resource/Cart.php +++ b/app/code/core/Mage/Checkout/Model/Resource/Cart.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Checkout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Checkout/Model/Resource/Setup.php b/app/code/core/Mage/Checkout/Model/Resource/Setup.php index a42d0d7a51613d7eed18cd95074621444bebc6d8..59e763454613697e4e35a38f34cd20cc100ee4bf 100755 --- a/app/code/core/Mage/Checkout/Model/Resource/Setup.php +++ b/app/code/core/Mage/Checkout/Model/Resource/Setup.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Checkout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Checkout/Model/Session.php b/app/code/core/Mage/Checkout/Model/Session.php index 73b8d466a16a38bf1f1298b20443f5f37422ddc4..2c6adbedcc4213fefa03476a2bbad2e30e737ae4 100644 --- a/app/code/core/Mage/Checkout/Model/Session.php +++ b/app/code/core/Mage/Checkout/Model/Session.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Checkout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Checkout/Model/Type/Abstract.php b/app/code/core/Mage/Checkout/Model/Type/Abstract.php index 46407c1ce60684f61935e290db15f6421a103812..b3f32a2ed00bd41fea7e31423aa048a94a48d498 100644 --- a/app/code/core/Mage/Checkout/Model/Type/Abstract.php +++ b/app/code/core/Mage/Checkout/Model/Type/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Checkout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Checkout/Model/Type/Multishipping.php b/app/code/core/Mage/Checkout/Model/Type/Multishipping.php index 5b890df36b416e7d332d75aee19bf47ccea5ee56..dfec0d2421647853324fa79e2b2125dd129b2d00 100644 --- a/app/code/core/Mage/Checkout/Model/Type/Multishipping.php +++ b/app/code/core/Mage/Checkout/Model/Type/Multishipping.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Checkout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Checkout/Model/Type/Multishipping/State.php b/app/code/core/Mage/Checkout/Model/Type/Multishipping/State.php index bba0e35a37ec7d688709c6da44a49ae22a835193..32a0d5af0b7913df07d63aa71178b3f1813798e0 100644 --- a/app/code/core/Mage/Checkout/Model/Type/Multishipping/State.php +++ b/app/code/core/Mage/Checkout/Model/Type/Multishipping/State.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Checkout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Checkout/Model/Type/Onepage.php b/app/code/core/Mage/Checkout/Model/Type/Onepage.php index bc700cf16687eb11eeefe55fde74e0bba2ac5d47..0ccb7ffa90434c1154831d2ec0973d6f16b362c8 100644 --- a/app/code/core/Mage/Checkout/Model/Type/Onepage.php +++ b/app/code/core/Mage/Checkout/Model/Type/Onepage.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Checkout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Checkout/controllers/CartController.php b/app/code/core/Mage/Checkout/controllers/CartController.php index affff058b6962dc8228b6ab8ecb7f5ad125c1c99..36cf66629c0098f211344568e1cf84da658ed82e 100644 --- a/app/code/core/Mage/Checkout/controllers/CartController.php +++ b/app/code/core/Mage/Checkout/controllers/CartController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Checkout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Checkout/controllers/IndexController.php b/app/code/core/Mage/Checkout/controllers/IndexController.php index 63cba78d5b3de86c479d69926d8516b6c0fd48a5..77a6d1e879f2b8081e83ce02e5876e055acc3a74 100644 --- a/app/code/core/Mage/Checkout/controllers/IndexController.php +++ b/app/code/core/Mage/Checkout/controllers/IndexController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Checkout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Checkout/controllers/Multishipping/AddressController.php b/app/code/core/Mage/Checkout/controllers/Multishipping/AddressController.php index b943e7f6b8113b3191a53e58fc249430b64d351e..e68338391c59f0f9722b84e7066cf5eae3d542b9 100644 --- a/app/code/core/Mage/Checkout/controllers/Multishipping/AddressController.php +++ b/app/code/core/Mage/Checkout/controllers/Multishipping/AddressController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Checkout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Checkout/controllers/MultishippingController.php b/app/code/core/Mage/Checkout/controllers/MultishippingController.php index 4956de03b2574704cd45f75d0dad26cac15b1d70..ec4e41313ec0d9c158cf5d038d0b6b5cff344b45 100644 --- a/app/code/core/Mage/Checkout/controllers/MultishippingController.php +++ b/app/code/core/Mage/Checkout/controllers/MultishippingController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Checkout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Checkout/controllers/OnepageController.php b/app/code/core/Mage/Checkout/controllers/OnepageController.php index 97e35dead47c309b1b28c508021f900a549bc01e..1ddc161497563496aef5848a3e90769389c85e71 100644 --- a/app/code/core/Mage/Checkout/controllers/OnepageController.php +++ b/app/code/core/Mage/Checkout/controllers/OnepageController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Checkout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Checkout/etc/adminhtml/acl.xml b/app/code/core/Mage/Checkout/etc/adminhtml/acl.xml index 6786ee6947d2a301aec2b7644cb58f3c3328476b..16bbb5db608d55727b52ca6297478ef08bb61dbb 100644 --- a/app/code/core/Mage/Checkout/etc/adminhtml/acl.xml +++ b/app/code/core/Mage/Checkout/etc/adminhtml/acl.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Checkout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Checkout/etc/adminhtml/menu.xml b/app/code/core/Mage/Checkout/etc/adminhtml/menu.xml index 9e2e58ff626a7bad6479896fe143f2d037261c0c..26464d25396cd70710dc2c6b73b31d10a02af9fe 100644 --- a/app/code/core/Mage/Checkout/etc/adminhtml/menu.xml +++ b/app/code/core/Mage/Checkout/etc/adminhtml/menu.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Checkout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Checkout/etc/adminhtml/system.xml b/app/code/core/Mage/Checkout/etc/adminhtml/system.xml index 053173578b452b788d1720b9e08a2c77e6ca17e8..a9fdbb7a69664d51cbcc0f0955121c7a607792c8 100644 --- a/app/code/core/Mage/Checkout/etc/adminhtml/system.xml +++ b/app/code/core/Mage/Checkout/etc/adminhtml/system.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Checkout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Checkout/etc/config.xml b/app/code/core/Mage/Checkout/etc/config.xml index 6392d2af9467eeb50fb7e3142d60e97d45934810..ec56bbfcce9ffc13aa976cf7d354713be3e2cd5c 100644 --- a/app/code/core/Mage/Checkout/etc/config.xml +++ b/app/code/core/Mage/Checkout/etc/config.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Checkout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Checkout/etc/fieldset.xml b/app/code/core/Mage/Checkout/etc/fieldset.xml index e71d8635ae785bc00bdecec731f6730bfffcb8c8..bd77bc16e2715fa1ade0421a1d9db246c33d31aa 100644 --- a/app/code/core/Mage/Checkout/etc/fieldset.xml +++ b/app/code/core/Mage/Checkout/etc/fieldset.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Checkout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Checkout/etc/jstranslator.xml b/app/code/core/Mage/Checkout/etc/jstranslator.xml index c9fe665c1c3b486768d7ffc1b72c9ce400c5239e..ff17d1ef6836e84b681ffbea2470c087771b3020 100644 --- a/app/code/core/Mage/Checkout/etc/jstranslator.xml +++ b/app/code/core/Mage/Checkout/etc/jstranslator.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Checkout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Checkout/sql/checkout_setup/install-1.6.0.0.php b/app/code/core/Mage/Checkout/sql/checkout_setup/install-1.6.0.0.php index a6add6702ce4a7b8dbbf4b93a4a403a158a38a02..91574f7570c23060d32aa0bd972972ec8e7ea89a 100644 --- a/app/code/core/Mage/Checkout/sql/checkout_setup/install-1.6.0.0.php +++ b/app/code/core/Mage/Checkout/sql/checkout_setup/install-1.6.0.0.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Checkout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Checkout/view/frontend/cart.phtml b/app/code/core/Mage/Checkout/view/frontend/cart.phtml index 10063de0f0b67fcf133814625f324ba351992124..96ca0189cfb3b331c87120d2b6b5f7ddc54bbc99 100644 --- a/app/code/core/Mage/Checkout/view/frontend/cart.phtml +++ b/app/code/core/Mage/Checkout/view/frontend/cart.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Checkout/view/frontend/cart/coupon.phtml b/app/code/core/Mage/Checkout/view/frontend/cart/coupon.phtml index 414fdd2e6da2836cc41776e997fb509a36e5b52d..9ec52ec642c0644d4c353fea53118d276763c061 100644 --- a/app/code/core/Mage/Checkout/view/frontend/cart/coupon.phtml +++ b/app/code/core/Mage/Checkout/view/frontend/cart/coupon.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Checkout/view/frontend/cart/crosssell.phtml b/app/code/core/Mage/Checkout/view/frontend/cart/crosssell.phtml index b6d5a65bd93454722065bd7f5e4998b1079ad6d2..a1dc54d8bcf7707861ea0155484aaac9d2c7ff0e 100644 --- a/app/code/core/Mage/Checkout/view/frontend/cart/crosssell.phtml +++ b/app/code/core/Mage/Checkout/view/frontend/cart/crosssell.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Checkout/view/frontend/cart/item/configure/updatecart.phtml b/app/code/core/Mage/Checkout/view/frontend/cart/item/configure/updatecart.phtml index 434d626a43d52cecdb44761307fd155802f6e4d6..a0c9f0ab79723853eba9e55ef4368e9a9cc175cf 100644 --- a/app/code/core/Mage/Checkout/view/frontend/cart/item/configure/updatecart.phtml +++ b/app/code/core/Mage/Checkout/view/frontend/cart/item/configure/updatecart.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Checkout/view/frontend/cart/item/default.phtml b/app/code/core/Mage/Checkout/view/frontend/cart/item/default.phtml index 6f876d80e10eea14edbdd2e7155408a95ff5c5b2..7eb82f379562add31eb0df30ccf4d88f6478659a 100644 --- a/app/code/core/Mage/Checkout/view/frontend/cart/item/default.phtml +++ b/app/code/core/Mage/Checkout/view/frontend/cart/item/default.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Checkout/view/frontend/cart/noItems.phtml b/app/code/core/Mage/Checkout/view/frontend/cart/noItems.phtml index b272645406d9ef116855e206f423312be4b4a999..da4cb19b89c590cc0fe52493086cbc18db72a2fb 100644 --- a/app/code/core/Mage/Checkout/view/frontend/cart/noItems.phtml +++ b/app/code/core/Mage/Checkout/view/frontend/cart/noItems.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Checkout/view/frontend/cart/shipping.phtml b/app/code/core/Mage/Checkout/view/frontend/cart/shipping.phtml index d4716602a670125b8fe866f7680769e367987e89..15eeec5bb959d469596bde38223003674f6141c6 100644 --- a/app/code/core/Mage/Checkout/view/frontend/cart/shipping.phtml +++ b/app/code/core/Mage/Checkout/view/frontend/cart/shipping.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Checkout/view/frontend/cart/sidebar.phtml b/app/code/core/Mage/Checkout/view/frontend/cart/sidebar.phtml index eef0fc28ac7b9144fa116720dc3f12a563cf84f9..f82a910ab0ba83e5d63b53c72df75b3cd3ad127b 100644 --- a/app/code/core/Mage/Checkout/view/frontend/cart/sidebar.phtml +++ b/app/code/core/Mage/Checkout/view/frontend/cart/sidebar.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Checkout/view/frontend/cart/sidebar/default.phtml b/app/code/core/Mage/Checkout/view/frontend/cart/sidebar/default.phtml index 09e0612e438ebd726b464257863d5909d27f9cb1..68020f158ef259a1db5ef62ae5a77bfdcc6f89f5 100644 --- a/app/code/core/Mage/Checkout/view/frontend/cart/sidebar/default.phtml +++ b/app/code/core/Mage/Checkout/view/frontend/cart/sidebar/default.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Checkout/view/frontend/cart/totals.phtml b/app/code/core/Mage/Checkout/view/frontend/cart/totals.phtml index e9910f41413ef7217920ae3ed2bebf246026c2b1..ebb08622aa3c910cbe5486c6d5dfc8016c517ead 100644 --- a/app/code/core/Mage/Checkout/view/frontend/cart/totals.phtml +++ b/app/code/core/Mage/Checkout/view/frontend/cart/totals.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Checkout/view/frontend/js/checkout-topcart.js b/app/code/core/Mage/Checkout/view/frontend/js/checkout-topcart.js index e94bc6bbb1cac5ed5153fcd8ee84d916c2cc2d47..5dd3bbd85299927894ac76645322ae8949c621e9 100644 --- a/app/code/core/Mage/Checkout/view/frontend/js/checkout-topcart.js +++ b/app/code/core/Mage/Checkout/view/frontend/js/checkout-topcart.js @@ -19,7 +19,7 @@ * * @category mage product view * @package mage - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /*jshint browser:true jquery:true*/ diff --git a/app/code/core/Mage/Checkout/view/frontend/js/discount-codes.js b/app/code/core/Mage/Checkout/view/frontend/js/discount-codes.js index 91109acb245ffbb0a4bb50f7d92ed5986bc4ab04..f2c4204538e6d9b6b912e95ca27fbdbac1fb6579 100644 --- a/app/code/core/Mage/Checkout/view/frontend/js/discount-codes.js +++ b/app/code/core/Mage/Checkout/view/frontend/js/discount-codes.js @@ -19,7 +19,7 @@ * * @category checkout coupon discount codes * @package mage - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /*jshint browser:true jquery:true*/ diff --git a/app/code/core/Mage/Checkout/view/frontend/js/region-updater.js b/app/code/core/Mage/Checkout/view/frontend/js/region-updater.js index 3cd610f3fa9940f5fc1f6bd830cb6188d2a6d2d3..809b5dc36308695d70c26560b88b5644fa91863c 100644 --- a/app/code/core/Mage/Checkout/view/frontend/js/region-updater.js +++ b/app/code/core/Mage/Checkout/view/frontend/js/region-updater.js @@ -19,7 +19,7 @@ * * @category frontend Checkout region-updater * @package mage - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /*jshint browser:true jquery:true expr:true*/ diff --git a/app/code/core/Mage/Checkout/view/frontend/js/shopping-cart.js b/app/code/core/Mage/Checkout/view/frontend/js/shopping-cart.js index b0858cd78c2d76552b1b0daf584c66e6fa26eb33..1e6baf526475ae33fb1a1888944ceeb4545e585d 100644 --- a/app/code/core/Mage/Checkout/view/frontend/js/shopping-cart.js +++ b/app/code/core/Mage/Checkout/view/frontend/js/shopping-cart.js @@ -19,7 +19,7 @@ * * @category mage checkout shopping cart * @package mage - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /*jshint browser:true jquery:true*/ diff --git a/app/code/core/Mage/Checkout/view/frontend/js/sidebar.js b/app/code/core/Mage/Checkout/view/frontend/js/sidebar.js index cbef41ccfe91a14cd98e499008a52e2daa541a50..65af00a7445394432ee559b1e34e83624adb1e98 100644 --- a/app/code/core/Mage/Checkout/view/frontend/js/sidebar.js +++ b/app/code/core/Mage/Checkout/view/frontend/js/sidebar.js @@ -19,7 +19,7 @@ * * @category mage side bar * @package mage - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /*jshint browser:true jquery:true*/ diff --git a/app/code/core/Mage/Checkout/view/frontend/layout.xml b/app/code/core/Mage/Checkout/view/frontend/layout.xml index b9a4c2ff4582df59906d8314994b1ae8471a971f..7f866d8d2393127b90b0d9c35393a51c346f49dc 100644 --- a/app/code/core/Mage/Checkout/view/frontend/layout.xml +++ b/app/code/core/Mage/Checkout/view/frontend/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Checkout/view/frontend/multishipping/address/select.phtml b/app/code/core/Mage/Checkout/view/frontend/multishipping/address/select.phtml index 841f9f5274f701c6b65f362dbf0562f62aefc61c..95f40a5c8d6723a53b3c3927596c22bd1aa3a3e2 100644 --- a/app/code/core/Mage/Checkout/view/frontend/multishipping/address/select.phtml +++ b/app/code/core/Mage/Checkout/view/frontend/multishipping/address/select.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Checkout/view/frontend/multishipping/addresses.phtml b/app/code/core/Mage/Checkout/view/frontend/multishipping/addresses.phtml index bca188874da3d398dd14beb82964a8261efe5dd3..3fb73a5878b175434bda5f0f9ed4357136e4ca90 100644 --- a/app/code/core/Mage/Checkout/view/frontend/multishipping/addresses.phtml +++ b/app/code/core/Mage/Checkout/view/frontend/multishipping/addresses.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Checkout/view/frontend/multishipping/agreements.phtml b/app/code/core/Mage/Checkout/view/frontend/multishipping/agreements.phtml index c1e81952839d6848d0e224123dfbd5367ceab8dd..38fae4a2eb8bee9c2cad953f31d5ef98e2d67239 100644 --- a/app/code/core/Mage/Checkout/view/frontend/multishipping/agreements.phtml +++ b/app/code/core/Mage/Checkout/view/frontend/multishipping/agreements.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Checkout/view/frontend/multishipping/billing.phtml b/app/code/core/Mage/Checkout/view/frontend/multishipping/billing.phtml index 705d0a59fbd35f7baf9a89075a01b774c9b51adc..fc77f1633a908eb8326a56617d44bac59a546a94 100644 --- a/app/code/core/Mage/Checkout/view/frontend/multishipping/billing.phtml +++ b/app/code/core/Mage/Checkout/view/frontend/multishipping/billing.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Checkout/view/frontend/multishipping/billing/items.phtml b/app/code/core/Mage/Checkout/view/frontend/multishipping/billing/items.phtml index 9001fceb158b1a59513562e9a24e7d5e02e979a0..2999f27baf4bcfd8b2be49285f947128ebf34624 100644 --- a/app/code/core/Mage/Checkout/view/frontend/multishipping/billing/items.phtml +++ b/app/code/core/Mage/Checkout/view/frontend/multishipping/billing/items.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Checkout/view/frontend/multishipping/item/default.phtml b/app/code/core/Mage/Checkout/view/frontend/multishipping/item/default.phtml index 4f3534373eaa5a109c03ba2e5145297a31e3d62b..f1adcb2221d26592e5afe87c6a848c969a8f7011 100644 --- a/app/code/core/Mage/Checkout/view/frontend/multishipping/item/default.phtml +++ b/app/code/core/Mage/Checkout/view/frontend/multishipping/item/default.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Checkout/view/frontend/multishipping/link.phtml b/app/code/core/Mage/Checkout/view/frontend/multishipping/link.phtml index fc9929e42d654f40e3d055c06f37e38eca111a88..292fa76c122cd6cee774daa07a994fcabc0e2ae1 100644 --- a/app/code/core/Mage/Checkout/view/frontend/multishipping/link.phtml +++ b/app/code/core/Mage/Checkout/view/frontend/multishipping/link.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Checkout/view/frontend/multishipping/overview.phtml b/app/code/core/Mage/Checkout/view/frontend/multishipping/overview.phtml index ad1f51a64e77d7345703b42a34278d909fd713b2..473fd8fc619073926f2af148d5f7e8d42e0e87b8 100644 --- a/app/code/core/Mage/Checkout/view/frontend/multishipping/overview.phtml +++ b/app/code/core/Mage/Checkout/view/frontend/multishipping/overview.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Checkout/view/frontend/multishipping/overview/item.phtml b/app/code/core/Mage/Checkout/view/frontend/multishipping/overview/item.phtml index 0880a048fe998e77f235c4838b4c67d68dc6ecd2..c13223fef12bcd544bcf2ea7b024910ae7a98fa9 100644 --- a/app/code/core/Mage/Checkout/view/frontend/multishipping/overview/item.phtml +++ b/app/code/core/Mage/Checkout/view/frontend/multishipping/overview/item.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Checkout/view/frontend/multishipping/payment.js b/app/code/core/Mage/Checkout/view/frontend/multishipping/payment.js index 89e9f30a8d9504f7b8cabd1d1861af55664e1a81..a4f8afa6a8d15526e0ec346966997f7f4f5af929 100644 --- a/app/code/core/Mage/Checkout/view/frontend/multishipping/payment.js +++ b/app/code/core/Mage/Checkout/view/frontend/multishipping/payment.js @@ -19,7 +19,7 @@ * * @category Varien * @package js - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ var paymentForm = Class.create(); diff --git a/app/code/core/Mage/Checkout/view/frontend/multishipping/shipping.phtml b/app/code/core/Mage/Checkout/view/frontend/multishipping/shipping.phtml index e399445e4ff9ad7d7a22077219965e36ec384b95..7e2b9f4d850612960569cb5566b8e42af4d3f6d7 100644 --- a/app/code/core/Mage/Checkout/view/frontend/multishipping/shipping.phtml +++ b/app/code/core/Mage/Checkout/view/frontend/multishipping/shipping.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Checkout/view/frontend/multishipping/state.phtml b/app/code/core/Mage/Checkout/view/frontend/multishipping/state.phtml index a64c1161944836134828a8e431441dcf498e26e6..7dcd5f69265ab99685d05afd5bfcb5a61641eff9 100644 --- a/app/code/core/Mage/Checkout/view/frontend/multishipping/state.phtml +++ b/app/code/core/Mage/Checkout/view/frontend/multishipping/state.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Checkout/view/frontend/multishipping/success.phtml b/app/code/core/Mage/Checkout/view/frontend/multishipping/success.phtml index ba421af8b96de2c3d29ef3b69026ff4cc7a19558..9bc1f7166e080e8078f5b915fca34857199cca5b 100644 --- a/app/code/core/Mage/Checkout/view/frontend/multishipping/success.phtml +++ b/app/code/core/Mage/Checkout/view/frontend/multishipping/success.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Checkout/view/frontend/onepage.phtml b/app/code/core/Mage/Checkout/view/frontend/onepage.phtml index 2339c35a2341596b25a58aed35e9b3ec7cfbaad4..081a36858d16df15bb329bf2b6d959198fb74e02 100644 --- a/app/code/core/Mage/Checkout/view/frontend/onepage.phtml +++ b/app/code/core/Mage/Checkout/view/frontend/onepage.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Checkout/view/frontend/onepage/accordion.js b/app/code/core/Mage/Checkout/view/frontend/onepage/accordion.js index 6d02d4b39f9ac4b781c8254de844497e4d4f282a..3f12f8f0730b2d3e3e6b188e930438a2b6c8ae58 100644 --- a/app/code/core/Mage/Checkout/view/frontend/onepage/accordion.js +++ b/app/code/core/Mage/Checkout/view/frontend/onepage/accordion.js @@ -19,7 +19,7 @@ * * @category Varien * @package js - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ Accordion = Class.create(); diff --git a/app/code/core/Mage/Checkout/view/frontend/onepage/agreements.phtml b/app/code/core/Mage/Checkout/view/frontend/onepage/agreements.phtml index dc5c05f6a35cf607bd1bf4aa1b5923cf727ef3f2..afd5283c539d6820e1757dcf7bb78436a2f0ea7c 100644 --- a/app/code/core/Mage/Checkout/view/frontend/onepage/agreements.phtml +++ b/app/code/core/Mage/Checkout/view/frontend/onepage/agreements.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Checkout/view/frontend/onepage/billing.phtml b/app/code/core/Mage/Checkout/view/frontend/onepage/billing.phtml index 04851f425ca3fd0b199d4ee0f95b56bd5215fbfe..a4f356b0b89357011f226e74ceb21a7afb1a6ee5 100644 --- a/app/code/core/Mage/Checkout/view/frontend/onepage/billing.phtml +++ b/app/code/core/Mage/Checkout/view/frontend/onepage/billing.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Checkout/view/frontend/onepage/failure.phtml b/app/code/core/Mage/Checkout/view/frontend/onepage/failure.phtml index a6b3d0d0903e51fd5f5775fe9d6f2a1589193a40..9494cd03e0f8db4c5b4da59993ee568c3968ecb4 100644 --- a/app/code/core/Mage/Checkout/view/frontend/onepage/failure.phtml +++ b/app/code/core/Mage/Checkout/view/frontend/onepage/failure.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Checkout/view/frontend/onepage/link.phtml b/app/code/core/Mage/Checkout/view/frontend/onepage/link.phtml index 331ddf089d4ff67f50669e507cfd1bef804bd809..deaa0c1f1134ad9f2d7f588e547c800c6d2c7a27 100644 --- a/app/code/core/Mage/Checkout/view/frontend/onepage/link.phtml +++ b/app/code/core/Mage/Checkout/view/frontend/onepage/link.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Checkout/view/frontend/onepage/login.phtml b/app/code/core/Mage/Checkout/view/frontend/onepage/login.phtml index 681ce85a9bbce20bbf1f66489a263a9fb656183f..e2a165702ab3d7ae7d4894723a2cceda1e00e4ad 100644 --- a/app/code/core/Mage/Checkout/view/frontend/onepage/login.phtml +++ b/app/code/core/Mage/Checkout/view/frontend/onepage/login.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Checkout/view/frontend/onepage/payment.phtml b/app/code/core/Mage/Checkout/view/frontend/onepage/payment.phtml index 6a4048b3ce0f4e889dff49f0e1049f2c91e6f14e..0f855b9dc17846c863dbbadffd9b9d5bc59ee2d9 100644 --- a/app/code/core/Mage/Checkout/view/frontend/onepage/payment.phtml +++ b/app/code/core/Mage/Checkout/view/frontend/onepage/payment.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Checkout/view/frontend/onepage/payment/methods.phtml b/app/code/core/Mage/Checkout/view/frontend/onepage/payment/methods.phtml index 3a01fc1719baffb11447935599939adea299a079..c8c034762313bab7cff353521750c30df1e25057 100644 --- a/app/code/core/Mage/Checkout/view/frontend/onepage/payment/methods.phtml +++ b/app/code/core/Mage/Checkout/view/frontend/onepage/payment/methods.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Checkout/view/frontend/onepage/progress.phtml b/app/code/core/Mage/Checkout/view/frontend/onepage/progress.phtml index f7a93e38ebef30692535d79f57d87ecd2d6a644c..0096c03eacf7588c8dcbea5d9ad37e145002e540 100644 --- a/app/code/core/Mage/Checkout/view/frontend/onepage/progress.phtml +++ b/app/code/core/Mage/Checkout/view/frontend/onepage/progress.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /* @var $this Mage_Checkout_Block_Onepage_Progress */ diff --git a/app/code/core/Mage/Checkout/view/frontend/onepage/review.phtml b/app/code/core/Mage/Checkout/view/frontend/onepage/review.phtml index 800638e633f4cf86d48123c3a10b3a401f84e107..8b82981faf5f28dae164ead823e9340deb1770ba 100644 --- a/app/code/core/Mage/Checkout/view/frontend/onepage/review.phtml +++ b/app/code/core/Mage/Checkout/view/frontend/onepage/review.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Checkout/view/frontend/onepage/review/button.phtml b/app/code/core/Mage/Checkout/view/frontend/onepage/review/button.phtml index 265e504fa672fda5f4e43c26b7450b98c00e5c54..4c5617069f3de581caa5499e1dde30e69eda4643 100644 --- a/app/code/core/Mage/Checkout/view/frontend/onepage/review/button.phtml +++ b/app/code/core/Mage/Checkout/view/frontend/onepage/review/button.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Checkout/view/frontend/onepage/review/info.phtml b/app/code/core/Mage/Checkout/view/frontend/onepage/review/info.phtml index 61b88f8a5e74a884a62b808205ec11e37b9ee1dd..8bec89832008a1a1af890b29aad84fbdb32b0f17 100644 --- a/app/code/core/Mage/Checkout/view/frontend/onepage/review/info.phtml +++ b/app/code/core/Mage/Checkout/view/frontend/onepage/review/info.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Checkout/view/frontend/onepage/review/item.phtml b/app/code/core/Mage/Checkout/view/frontend/onepage/review/item.phtml index 462e3a44c06104899cf6a810b008b20e419fa59d..95fc93ab72fb28293ec96c74ab77f033a8f4d546 100644 --- a/app/code/core/Mage/Checkout/view/frontend/onepage/review/item.phtml +++ b/app/code/core/Mage/Checkout/view/frontend/onepage/review/item.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Checkout/view/frontend/onepage/review/totals.phtml b/app/code/core/Mage/Checkout/view/frontend/onepage/review/totals.phtml index 11cd172145bf87ef5708b7f2e655810a0ffd143c..facac591febc563d59837e78d85f349d496bfe06 100644 --- a/app/code/core/Mage/Checkout/view/frontend/onepage/review/totals.phtml +++ b/app/code/core/Mage/Checkout/view/frontend/onepage/review/totals.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Checkout/view/frontend/onepage/shipping.phtml b/app/code/core/Mage/Checkout/view/frontend/onepage/shipping.phtml index 1892d1adc092d5601c7b151de063ee0d54581445..d1bd71a07cc579c5ba724975acf593c65d30bf72 100644 --- a/app/code/core/Mage/Checkout/view/frontend/onepage/shipping.phtml +++ b/app/code/core/Mage/Checkout/view/frontend/onepage/shipping.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Checkout/view/frontend/onepage/shipping_method.phtml b/app/code/core/Mage/Checkout/view/frontend/onepage/shipping_method.phtml index 7ad5dd77a96d6d18ab5f68380731ef1c07401560..418cd476a5e1ba60ce6c2cdc2926fc94466804ae 100644 --- a/app/code/core/Mage/Checkout/view/frontend/onepage/shipping_method.phtml +++ b/app/code/core/Mage/Checkout/view/frontend/onepage/shipping_method.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Checkout/view/frontend/onepage/shipping_method/additional.phtml b/app/code/core/Mage/Checkout/view/frontend/onepage/shipping_method/additional.phtml index 48ad261f31deaf7c6eefe15a5bf8def21659fad6..038a4d138027e5aa611e9f6ee498c8bb796d2e14 100644 --- a/app/code/core/Mage/Checkout/view/frontend/onepage/shipping_method/additional.phtml +++ b/app/code/core/Mage/Checkout/view/frontend/onepage/shipping_method/additional.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Checkout/view/frontend/onepage/shipping_method/available.phtml b/app/code/core/Mage/Checkout/view/frontend/onepage/shipping_method/available.phtml index b080c31a0752f155ad50c258faccf5c3d4937975..4017d0ab65b0052414423852567571496963bbcf 100644 --- a/app/code/core/Mage/Checkout/view/frontend/onepage/shipping_method/available.phtml +++ b/app/code/core/Mage/Checkout/view/frontend/onepage/shipping_method/available.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Checkout/view/frontend/opcheckout.js b/app/code/core/Mage/Checkout/view/frontend/opcheckout.js index 7274e9b455ed10aee791170b26fadd89eb345b3f..e338f1977067c53943e1c8aecfa34d6bbf636aff 100644 --- a/app/code/core/Mage/Checkout/view/frontend/opcheckout.js +++ b/app/code/core/Mage/Checkout/view/frontend/opcheckout.js @@ -19,7 +19,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ var Checkout = Class.create(); diff --git a/app/code/core/Mage/Checkout/view/frontend/success.phtml b/app/code/core/Mage/Checkout/view/frontend/success.phtml index 2116616b11c2961eb2e3a37b909ce0330383c1ef..721f4641e5094b201c16d0bfe209f011fd09a190 100644 --- a/app/code/core/Mage/Checkout/view/frontend/success.phtml +++ b/app/code/core/Mage/Checkout/view/frontend/success.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Checkout/view/frontend/total/default.phtml b/app/code/core/Mage/Checkout/view/frontend/total/default.phtml index 0991b718f036a34e9ea07226611c7a6dd3557a3f..37a27aa0f4cf18603ba53fd45825f654affd7d96 100644 --- a/app/code/core/Mage/Checkout/view/frontend/total/default.phtml +++ b/app/code/core/Mage/Checkout/view/frontend/total/default.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Checkout/view/frontend/total/nominal.phtml b/app/code/core/Mage/Checkout/view/frontend/total/nominal.phtml index a3e6d15ccd3a3d3dc4ccb131107a7eb01e2b6e9c..4e70c924020cfdc4e3783d9a6e459a3bf9994421 100644 --- a/app/code/core/Mage/Checkout/view/frontend/total/nominal.phtml +++ b/app/code/core/Mage/Checkout/view/frontend/total/nominal.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Checkout/view/frontend/total/tax.phtml b/app/code/core/Mage/Checkout/view/frontend/total/tax.phtml index e84d5aae6fe4363e75810189591001ae1610f7f3..57d6aff6b6057051b7a4f0709c0a0d9159a042bd 100644 --- a/app/code/core/Mage/Checkout/view/frontend/total/tax.phtml +++ b/app/code/core/Mage/Checkout/view/frontend/total/tax.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Cms/Block/Block.php b/app/code/core/Mage/Cms/Block/Block.php index 036060ec47ae408e345124fc828f4f20ab06928b..06ad68418cfa840a5b5b7364fc2fd3025f4e6a89 100644 --- a/app/code/core/Mage/Cms/Block/Block.php +++ b/app/code/core/Mage/Cms/Block/Block.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Cms - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Cms/Block/Page.php b/app/code/core/Mage/Cms/Block/Page.php index 9f622b588a6aa5c425829f23a0dfa079781b8c93..962b77479ae5f58fc6677570b7b8bb37e94b6e66 100644 --- a/app/code/core/Mage/Cms/Block/Page.php +++ b/app/code/core/Mage/Cms/Block/Page.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Cms - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Cms/Block/Widget/Block.php b/app/code/core/Mage/Cms/Block/Widget/Block.php index 2b54f585c7ff7b2bc5090fbe41dc6761e7f34c7c..82f5fefc25272edb04fd4cd37cf118a2be8ba422 100644 --- a/app/code/core/Mage/Cms/Block/Widget/Block.php +++ b/app/code/core/Mage/Cms/Block/Widget/Block.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Cms - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Cms/Block/Widget/Page/Link.php b/app/code/core/Mage/Cms/Block/Widget/Page/Link.php index 147fc7b4b69fd498e8074247f8f9ad180675bbee..e477838c45770c848314332b645d62013234c65f 100644 --- a/app/code/core/Mage/Cms/Block/Widget/Page/Link.php +++ b/app/code/core/Mage/Cms/Block/Widget/Page/Link.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Cms - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Cms/Controller/Router.php b/app/code/core/Mage/Cms/Controller/Router.php index 0eaadafcde021cad93322288a132b7f1190dd184..a5d787f15c1b48254d990a01eb1cb1cf74a72b6d 100644 --- a/app/code/core/Mage/Cms/Controller/Router.php +++ b/app/code/core/Mage/Cms/Controller/Router.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Cms - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Cms/Helper/Data.php b/app/code/core/Mage/Cms/Helper/Data.php index f3a4764e4150895462d71afeac30bb48086154de..b402d48500f9c234c68f1a550ce93d4f77ff7a0c 100644 --- a/app/code/core/Mage/Cms/Helper/Data.php +++ b/app/code/core/Mage/Cms/Helper/Data.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Cms - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Cms/Helper/Page.php b/app/code/core/Mage/Cms/Helper/Page.php index 1727343bfa4ab4449241a49d1aab6365e59e4f72..31228934bdd5765b3324b8de2bcda6fed0ab00e9 100644 --- a/app/code/core/Mage/Cms/Helper/Page.php +++ b/app/code/core/Mage/Cms/Helper/Page.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Cms - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Cms/Helper/Wysiwyg/Images.php b/app/code/core/Mage/Cms/Helper/Wysiwyg/Images.php index 7dc938f7295b23c3ec766a9b8e2941520b3a9e59..862b23dd74f4c85ced22cb3362c4d6b95e618ba7 100644 --- a/app/code/core/Mage/Cms/Helper/Wysiwyg/Images.php +++ b/app/code/core/Mage/Cms/Helper/Wysiwyg/Images.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Cms - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Cms/Model/Block.php b/app/code/core/Mage/Cms/Model/Block.php index 6c3a171605cb067c5a478980b359ca30f5076346..310857462e19d655aa0e4fc2a4d78d700cb00123 100644 --- a/app/code/core/Mage/Cms/Model/Block.php +++ b/app/code/core/Mage/Cms/Model/Block.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Cms - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Cms/Model/Config/Source/Page.php b/app/code/core/Mage/Cms/Model/Config/Source/Page.php index 4204c2ca9546d7d8b0bc393eccf59bdb334a784c..00c4bc73a86eae6d626232c97c7e6814e8967e06 100644 --- a/app/code/core/Mage/Cms/Model/Config/Source/Page.php +++ b/app/code/core/Mage/Cms/Model/Config/Source/Page.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Cms - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Cms_Model_Config_Source_Page implements Mage_Core_Model_Option_ArrayInterface diff --git a/app/code/core/Mage/Cms/Model/Config/Source/Wysiwyg/Enabled.php b/app/code/core/Mage/Cms/Model/Config/Source/Wysiwyg/Enabled.php index 30220cdd296d34bf7d9391737bace311f8bd7f28..745231e8446ac1bf1197f7f899f2a3380c2a818f 100644 --- a/app/code/core/Mage/Cms/Model/Config/Source/Wysiwyg/Enabled.php +++ b/app/code/core/Mage/Cms/Model/Config/Source/Wysiwyg/Enabled.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Cms - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Cms/Model/Observer.php b/app/code/core/Mage/Cms/Model/Observer.php index 8357c887d70a0e73ef662f6ea58390a31087f885..2a2dc706bf6741103525afd31b86ccfcf73dbc08 100644 --- a/app/code/core/Mage/Cms/Model/Observer.php +++ b/app/code/core/Mage/Cms/Model/Observer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Cms - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Cms/Model/Page.php b/app/code/core/Mage/Cms/Model/Page.php index df14327054f6fcd899f5682ef31772e9c1acb5d2..a42a98b17afc5f8fcd008c6b9aebb7ae12818ccb 100644 --- a/app/code/core/Mage/Cms/Model/Page.php +++ b/app/code/core/Mage/Cms/Model/Page.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Cms - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Cms/Model/Page/Urlrewrite.php b/app/code/core/Mage/Cms/Model/Page/Urlrewrite.php index b602c91615337e74e773f4a666862e1428abae34..3059fdb5860f096b382a9dd149d14a8f989fe322 100644 --- a/app/code/core/Mage/Cms/Model/Page/Urlrewrite.php +++ b/app/code/core/Mage/Cms/Model/Page/Urlrewrite.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Cms - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Cms/Model/Resource/Block.php b/app/code/core/Mage/Cms/Model/Resource/Block.php index 06178422bff6ea43d8ebf6ad58401842271d9573..d767cecf404d27d86c750f8fc10d1b052e03008c 100755 --- a/app/code/core/Mage/Cms/Model/Resource/Block.php +++ b/app/code/core/Mage/Cms/Model/Resource/Block.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Cms - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Cms/Model/Resource/Block/Collection.php b/app/code/core/Mage/Cms/Model/Resource/Block/Collection.php index 2ad883a4d845eb450de0b423d764accf0e07c896..a3838d05139506a00902c57d14789ccd7fba5123 100755 --- a/app/code/core/Mage/Cms/Model/Resource/Block/Collection.php +++ b/app/code/core/Mage/Cms/Model/Resource/Block/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Cms - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Cms/Model/Resource/Page.php b/app/code/core/Mage/Cms/Model/Resource/Page.php index 695a5863bc7ce7fd708b178f3462613690c6b8ce..60a5ec522f7cde12df5bb4769682a2ad30440f61 100755 --- a/app/code/core/Mage/Cms/Model/Resource/Page.php +++ b/app/code/core/Mage/Cms/Model/Resource/Page.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Cms - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Cms/Model/Resource/Page/Collection.php b/app/code/core/Mage/Cms/Model/Resource/Page/Collection.php index fdf231172deff99e6e52ebcaada82e58947498c4..54dcd825cb17fcb7bdfd0e67b55c9bfcfa3f3673 100755 --- a/app/code/core/Mage/Cms/Model/Resource/Page/Collection.php +++ b/app/code/core/Mage/Cms/Model/Resource/Page/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Cms - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Cms/Model/Resource/Page/Service.php b/app/code/core/Mage/Cms/Model/Resource/Page/Service.php index 8c775d19e8cdfda647d90b84162382d22adc8b14..4ed1aaf51f18e76db15674373116df40e0c79199 100644 --- a/app/code/core/Mage/Cms/Model/Resource/Page/Service.php +++ b/app/code/core/Mage/Cms/Model/Resource/Page/Service.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Cms - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Cms/Model/Resource/Page/Urlrewrite.php b/app/code/core/Mage/Cms/Model/Resource/Page/Urlrewrite.php index 3133260ebb665cf9ef735a51f8110647329e243e..d183e5c934f5ef1b36ca6eb25edb3a5ea0de8852 100644 --- a/app/code/core/Mage/Cms/Model/Resource/Page/Urlrewrite.php +++ b/app/code/core/Mage/Cms/Model/Resource/Page/Urlrewrite.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Cms - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Cms/Model/Template/Filter.php b/app/code/core/Mage/Cms/Model/Template/Filter.php index d7d6f1ae1f595851a646b10c51532fe42b264d36..46683e22dd8e9cddb72bfd5f8ed8e998986c74df 100644 --- a/app/code/core/Mage/Cms/Model/Template/Filter.php +++ b/app/code/core/Mage/Cms/Model/Template/Filter.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Cms - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Cms/Model/Wysiwyg/Config.php b/app/code/core/Mage/Cms/Model/Wysiwyg/Config.php index a83f3662e0f2e7a07336fe773619b113c201c514..a1cfb028821264da5b5a8e3458713d505aac4c5e 100644 --- a/app/code/core/Mage/Cms/Model/Wysiwyg/Config.php +++ b/app/code/core/Mage/Cms/Model/Wysiwyg/Config.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Cms - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Cms/Model/Wysiwyg/Images/Storage.php b/app/code/core/Mage/Cms/Model/Wysiwyg/Images/Storage.php index a67db090a727c0fc2bc85adf8f61f909f16e77e5..a4a758eb34849b89316a6e85b8d7bf39714ec0ef 100644 --- a/app/code/core/Mage/Cms/Model/Wysiwyg/Images/Storage.php +++ b/app/code/core/Mage/Cms/Model/Wysiwyg/Images/Storage.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Cms - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Cms/Model/Wysiwyg/Images/Storage/Collection.php b/app/code/core/Mage/Cms/Model/Wysiwyg/Images/Storage/Collection.php index 2388af42d6db6c37e966c3f33f96a52ac599559f..d194647030b52b79771b8ba6e9ee16eda5040b21 100644 --- a/app/code/core/Mage/Cms/Model/Wysiwyg/Images/Storage/Collection.php +++ b/app/code/core/Mage/Cms/Model/Wysiwyg/Images/Storage/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Cms - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Cms/controllers/IndexController.php b/app/code/core/Mage/Cms/controllers/IndexController.php index 09fe70297dae9ce5ef904c3f167df85ea0c6aa27..4ca1a7093afdd7270a9be31bc10b7e53c66d3b91 100644 --- a/app/code/core/Mage/Cms/controllers/IndexController.php +++ b/app/code/core/Mage/Cms/controllers/IndexController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Cms - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Cms/controllers/PageController.php b/app/code/core/Mage/Cms/controllers/PageController.php index 49dcc35709df4632673760ffcab3ce343efc9eab..4ade36108f7e8cc0b6dbb3e8e520618ebe201c68 100644 --- a/app/code/core/Mage/Cms/controllers/PageController.php +++ b/app/code/core/Mage/Cms/controllers/PageController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Cms - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Cms/data/cms_setup/data-install-1.6.0.0.php b/app/code/core/Mage/Cms/data/cms_setup/data-install-1.6.0.0.php index 83610dedabac745bed41043188cca948d67c00ff..d07d327de0f34b8c45c76ee78ec682853bc20f9e 100644 --- a/app/code/core/Mage/Cms/data/cms_setup/data-install-1.6.0.0.php +++ b/app/code/core/Mage/Cms/data/cms_setup/data-install-1.6.0.0.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Cms - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Cms/data/cms_setup/data-upgrade-1.6.0.0.0-1.6.0.0.1.php b/app/code/core/Mage/Cms/data/cms_setup/data-upgrade-1.6.0.0.0-1.6.0.0.1.php index 5daad781551aa4e4e124943882b3e71a83432ed7..27848ebf60826671764a43a1a26b5ffafd93c0a0 100644 --- a/app/code/core/Mage/Cms/data/cms_setup/data-upgrade-1.6.0.0.0-1.6.0.0.1.php +++ b/app/code/core/Mage/Cms/data/cms_setup/data-upgrade-1.6.0.0.0-1.6.0.0.1.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Cms - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Cms/data/cms_setup/data-upgrade-1.6.0.0.2-1.6.0.0.3.php b/app/code/core/Mage/Cms/data/cms_setup/data-upgrade-1.6.0.0.2-1.6.0.0.3.php index e40c952614605013100e62d4e2f08d04026921fd..a02fc8bbea82a9f1ea413d80d31de2d5801523a1 100644 --- a/app/code/core/Mage/Cms/data/cms_setup/data-upgrade-1.6.0.0.2-1.6.0.0.3.php +++ b/app/code/core/Mage/Cms/data/cms_setup/data-upgrade-1.6.0.0.2-1.6.0.0.3.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Cms - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Cms/etc/adminhtml/acl.xml b/app/code/core/Mage/Cms/etc/adminhtml/acl.xml index d3e8fca8bdcb676c9b57f718b14816e008775105..84d740c9fcdea0c51b754d53f884a8c3d459ae97 100644 --- a/app/code/core/Mage/Cms/etc/adminhtml/acl.xml +++ b/app/code/core/Mage/Cms/etc/adminhtml/acl.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Cms - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Cms/etc/adminhtml/menu.xml b/app/code/core/Mage/Cms/etc/adminhtml/menu.xml index bcb354ef05f4c452e54a5a982e02c75ac71ddc3a..0514ddc5d002260960fc9cce9b32a8e66032962d 100644 --- a/app/code/core/Mage/Cms/etc/adminhtml/menu.xml +++ b/app/code/core/Mage/Cms/etc/adminhtml/menu.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Cms - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Cms/etc/adminhtml/system.xml b/app/code/core/Mage/Cms/etc/adminhtml/system.xml index 8a36287d24bdefde42608156dafe28d28592f5f5..c7827333ff99c93d21ed47a30387fd10b3bd6f68 100644 --- a/app/code/core/Mage/Cms/etc/adminhtml/system.xml +++ b/app/code/core/Mage/Cms/etc/adminhtml/system.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Cms - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Cms/etc/config.xml b/app/code/core/Mage/Cms/etc/config.xml index ea7c7510d387fc246a80c35d34c14dc1a23254a7..00a813e86d2e0b5eee1a285d9bd8ba2ea959e3e6 100644 --- a/app/code/core/Mage/Cms/etc/config.xml +++ b/app/code/core/Mage/Cms/etc/config.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Cms - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Cms/etc/widget.xml b/app/code/core/Mage/Cms/etc/widget.xml index 147b14e6a38f64299312e1828ee5ec071676271a..4ea7b73d7a63638dde9c15f7d413a1bc1dade692 100644 --- a/app/code/core/Mage/Cms/etc/widget.xml +++ b/app/code/core/Mage/Cms/etc/widget.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Cms - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Cms/sql/cms_setup/install-1.6.0.0.php b/app/code/core/Mage/Cms/sql/cms_setup/install-1.6.0.0.php index feb7da2b430cc317247f57823db8ced3ac3a8ad7..a9bf9cb3c94ba82322be8d3ba55ff4a38fafd2c5 100644 --- a/app/code/core/Mage/Cms/sql/cms_setup/install-1.6.0.0.php +++ b/app/code/core/Mage/Cms/sql/cms_setup/install-1.6.0.0.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Cms - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Cms/sql/cms_setup/upgrade-1.6.0.0.1-1.6.0.0.2.php b/app/code/core/Mage/Cms/sql/cms_setup/upgrade-1.6.0.0.1-1.6.0.0.2.php index 3691d44fad8bf553dcbf8bf350294e49c1942761..3487129746e9e0eb9fa3d6002c51af34b38ead16 100644 --- a/app/code/core/Mage/Cms/sql/cms_setup/upgrade-1.6.0.0.1-1.6.0.0.2.php +++ b/app/code/core/Mage/Cms/sql/cms_setup/upgrade-1.6.0.0.1-1.6.0.0.2.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Cms - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Cms/view/frontend/content.phtml b/app/code/core/Mage/Cms/view/frontend/content.phtml index 42879bd248a8c7b30337d76ad1329ff076cfd64e..3570bfa9ca130e90dee0b8d5371a4c3dc2e36666 100644 --- a/app/code/core/Mage/Cms/view/frontend/content.phtml +++ b/app/code/core/Mage/Cms/view/frontend/content.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Cms/view/frontend/content_heading.phtml b/app/code/core/Mage/Cms/view/frontend/content_heading.phtml index 28f0e2ea6d606f2545dadbdf3b7c58616ec267f7..4bb4b239282cdc19eb6fb0f8ecaf18ba84418927 100644 --- a/app/code/core/Mage/Cms/view/frontend/content_heading.phtml +++ b/app/code/core/Mage/Cms/view/frontend/content_heading.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Cms/view/frontend/default/home.phtml b/app/code/core/Mage/Cms/view/frontend/default/home.phtml index c0502bd43b90f7dea009f1cb55df387cce1b4b6c..c2fcf4d3b81d1312647ab6eda70025708f7ca86a 100644 --- a/app/code/core/Mage/Cms/view/frontend/default/home.phtml +++ b/app/code/core/Mage/Cms/view/frontend/default/home.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Cms/view/frontend/default/no-route.phtml b/app/code/core/Mage/Cms/view/frontend/default/no-route.phtml index f08d95050ae5526e4ad0f32692af2d4b2ec0b651..f9af7c6f57900ad85119aeab0c40f1e4bf3536f4 100644 --- a/app/code/core/Mage/Cms/view/frontend/default/no-route.phtml +++ b/app/code/core/Mage/Cms/view/frontend/default/no-route.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Cms/view/frontend/layout.xml b/app/code/core/Mage/Cms/view/frontend/layout.xml index 1747f19b88ea256354030f625cc42d476c706119..15da2d1628a0161f58fccff0d61cccc5b384593d 100644 --- a/app/code/core/Mage/Cms/view/frontend/layout.xml +++ b/app/code/core/Mage/Cms/view/frontend/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Cms/view/frontend/meta.phtml b/app/code/core/Mage/Cms/view/frontend/meta.phtml index 9be840442fa8b82a2400c7d9221eb7ef7fe007a5..19c5f54f5c5389c49ac357350d1075c240ca1f5b 100644 --- a/app/code/core/Mage/Cms/view/frontend/meta.phtml +++ b/app/code/core/Mage/Cms/view/frontend/meta.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Cms/view/frontend/widget/link/link_block.phtml b/app/code/core/Mage/Cms/view/frontend/widget/link/link_block.phtml index d28cd8ff63ea762e5ab2621d554285b507de61d9..66b6fddb63b43a813584d40453edac14e24725de 100644 --- a/app/code/core/Mage/Cms/view/frontend/widget/link/link_block.phtml +++ b/app/code/core/Mage/Cms/view/frontend/widget/link/link_block.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Cms/view/frontend/widget/link/link_inline.phtml b/app/code/core/Mage/Cms/view/frontend/widget/link/link_inline.phtml index 5b2e85808eb10f51aa42525e121354d91bfd494f..7afdf1b9a939c6ae863613e15e2b1d9ad0f5f8a5 100644 --- a/app/code/core/Mage/Cms/view/frontend/widget/link/link_inline.phtml +++ b/app/code/core/Mage/Cms/view/frontend/widget/link/link_inline.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Cms/view/frontend/widget/static_block/default.phtml b/app/code/core/Mage/Cms/view/frontend/widget/static_block/default.phtml index 2afe9fd816faa5408f5e6ab56e119e01ef15c464..77b50f85a702963522471ec5740deb02df848259 100644 --- a/app/code/core/Mage/Cms/view/frontend/widget/static_block/default.phtml +++ b/app/code/core/Mage/Cms/view/frontend/widget/static_block/default.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Cms/view/frontend/widgets.css b/app/code/core/Mage/Cms/view/frontend/widgets.css index e4430feca576bf291362d6a7b5411524a9bc6065..40f66253d64fe26a8447cba89d4ca4125ee92a9c 100644 --- a/app/code/core/Mage/Cms/view/frontend/widgets.css +++ b/app/code/core/Mage/Cms/view/frontend/widgets.css @@ -19,7 +19,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Connect/Block/Adminhtml/Extension/Custom/Edit.php b/app/code/core/Mage/Connect/Block/Adminhtml/Extension/Custom/Edit.php index c0fa43132107b9e8fd3a3677b30f828dfa955bfc..2a783005a1bfdee64f3ef170c96facfec12d8353 100644 --- a/app/code/core/Mage/Connect/Block/Adminhtml/Extension/Custom/Edit.php +++ b/app/code/core/Mage/Connect/Block/Adminhtml/Extension/Custom/Edit.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Connect/Block/Adminhtml/Extension/Custom/Edit/Form.php b/app/code/core/Mage/Connect/Block/Adminhtml/Extension/Custom/Edit/Form.php index 4d6d42adfb2f4676c7eb9c555c10042876156645..a3e1ca4daa6144924d2378919c9a9d4402ab4828 100644 --- a/app/code/core/Mage/Connect/Block/Adminhtml/Extension/Custom/Edit/Form.php +++ b/app/code/core/Mage/Connect/Block/Adminhtml/Extension/Custom/Edit/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Connect/Block/Adminhtml/Extension/Custom/Edit/Tab/Abstract.php b/app/code/core/Mage/Connect/Block/Adminhtml/Extension/Custom/Edit/Tab/Abstract.php index a4e17f3b5e4294a559eefce90026bae2db07be1b..80872b4aa8b97d632fbe7bf447da4e30dadbb015 100644 --- a/app/code/core/Mage/Connect/Block/Adminhtml/Extension/Custom/Edit/Tab/Abstract.php +++ b/app/code/core/Mage/Connect/Block/Adminhtml/Extension/Custom/Edit/Tab/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Connect/Block/Adminhtml/Extension/Custom/Edit/Tab/Authors.php b/app/code/core/Mage/Connect/Block/Adminhtml/Extension/Custom/Edit/Tab/Authors.php index a2fceb3dff55a504212fb5cb1af45c955e87bec8..105e9dec0f89fb7c5cafd76facafa7446d20b8f5 100644 --- a/app/code/core/Mage/Connect/Block/Adminhtml/Extension/Custom/Edit/Tab/Authors.php +++ b/app/code/core/Mage/Connect/Block/Adminhtml/Extension/Custom/Edit/Tab/Authors.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Connect/Block/Adminhtml/Extension/Custom/Edit/Tab/Contents.php b/app/code/core/Mage/Connect/Block/Adminhtml/Extension/Custom/Edit/Tab/Contents.php index 0d0900b62dd238ed63e66f5c7fd8fb2b85894daf..a9fe1093025f1fcadb525c63975480959ffd809c 100644 --- a/app/code/core/Mage/Connect/Block/Adminhtml/Extension/Custom/Edit/Tab/Contents.php +++ b/app/code/core/Mage/Connect/Block/Adminhtml/Extension/Custom/Edit/Tab/Contents.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Connect/Block/Adminhtml/Extension/Custom/Edit/Tab/Depends.php b/app/code/core/Mage/Connect/Block/Adminhtml/Extension/Custom/Edit/Tab/Depends.php index dfd0e3f24e2bf879e25056b118c21f5bd89ee86e..be52c3598737386e8f635621ae9f21d267541f4f 100644 --- a/app/code/core/Mage/Connect/Block/Adminhtml/Extension/Custom/Edit/Tab/Depends.php +++ b/app/code/core/Mage/Connect/Block/Adminhtml/Extension/Custom/Edit/Tab/Depends.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Connect/Block/Adminhtml/Extension/Custom/Edit/Tab/Grid.php b/app/code/core/Mage/Connect/Block/Adminhtml/Extension/Custom/Edit/Tab/Grid.php index c117ccdfc305b7f0e22b95ff3b4f1bd38de31847..b8af78b143a33f4c5077ab914ccf7e6c5b8ac47d 100644 --- a/app/code/core/Mage/Connect/Block/Adminhtml/Extension/Custom/Edit/Tab/Grid.php +++ b/app/code/core/Mage/Connect/Block/Adminhtml/Extension/Custom/Edit/Tab/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Connect/Block/Adminhtml/Extension/Custom/Edit/Tab/Load.php b/app/code/core/Mage/Connect/Block/Adminhtml/Extension/Custom/Edit/Tab/Load.php index 1b7b55dc621102ee9269a1879c5ceda3b0e31703..baa102ac03150d86c2d18205cb8d3a3317034c51 100644 --- a/app/code/core/Mage/Connect/Block/Adminhtml/Extension/Custom/Edit/Tab/Load.php +++ b/app/code/core/Mage/Connect/Block/Adminhtml/Extension/Custom/Edit/Tab/Load.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Connect/Block/Adminhtml/Extension/Custom/Edit/Tab/Local.php b/app/code/core/Mage/Connect/Block/Adminhtml/Extension/Custom/Edit/Tab/Local.php index 598715d6a008e1e6d9092941b42a3ce066fc4171..69afaf06fbfe2d221907f8993d6f3e82456e6757 100644 --- a/app/code/core/Mage/Connect/Block/Adminhtml/Extension/Custom/Edit/Tab/Local.php +++ b/app/code/core/Mage/Connect/Block/Adminhtml/Extension/Custom/Edit/Tab/Local.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Connect/Block/Adminhtml/Extension/Custom/Edit/Tab/Package.php b/app/code/core/Mage/Connect/Block/Adminhtml/Extension/Custom/Edit/Tab/Package.php index 9c91413a9008a3fad74086835819a223fa34ab2a..da617fdceff64061e0d9e4b7141d6d1da117fc14 100644 --- a/app/code/core/Mage/Connect/Block/Adminhtml/Extension/Custom/Edit/Tab/Package.php +++ b/app/code/core/Mage/Connect/Block/Adminhtml/Extension/Custom/Edit/Tab/Package.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Connect/Block/Adminhtml/Extension/Custom/Edit/Tab/Release.php b/app/code/core/Mage/Connect/Block/Adminhtml/Extension/Custom/Edit/Tab/Release.php index d286d2dac7e1dc2f59b94048b681fd89d3a94a27..58172cca47f024b0a547a1a60928bc4f41b0d283 100644 --- a/app/code/core/Mage/Connect/Block/Adminhtml/Extension/Custom/Edit/Tab/Release.php +++ b/app/code/core/Mage/Connect/Block/Adminhtml/Extension/Custom/Edit/Tab/Release.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Connect/Block/Adminhtml/Extension/Custom/Edit/Tabs.php b/app/code/core/Mage/Connect/Block/Adminhtml/Extension/Custom/Edit/Tabs.php index fde2f1d8c5b0f03fbc5e6749498ae08117e768c2..844349239e62b97ce5858c937888049cc5e5f2dd 100644 --- a/app/code/core/Mage/Connect/Block/Adminhtml/Extension/Custom/Edit/Tabs.php +++ b/app/code/core/Mage/Connect/Block/Adminhtml/Extension/Custom/Edit/Tabs.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Connect/Helper/Data.php b/app/code/core/Mage/Connect/Helper/Data.php index fd22c9f5fe2dda4b2ad12f993a87ba48cdd850be..2dd56624169ebe3e8f4e25d0adaea48be0109fe3 100644 --- a/app/code/core/Mage/Connect/Helper/Data.php +++ b/app/code/core/Mage/Connect/Helper/Data.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Connect/Model/Extension.php b/app/code/core/Mage/Connect/Model/Extension.php index 8ceddfbe324c6e8927d90a1c6fe7877e746cfc22..16deae927fdb173ff737979b7938a9728c592ed9 100644 --- a/app/code/core/Mage/Connect/Model/Extension.php +++ b/app/code/core/Mage/Connect/Model/Extension.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Connect/Model/Extension/Collection.php b/app/code/core/Mage/Connect/Model/Extension/Collection.php index 0db29859de684a415e9284e29d4c5ee5037f2b2f..12e6f250096f339fd8a72a4f6608b62c5e9c3587 100644 --- a/app/code/core/Mage/Connect/Model/Extension/Collection.php +++ b/app/code/core/Mage/Connect/Model/Extension/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Connect/Model/Session.php b/app/code/core/Mage/Connect/Model/Session.php index d0c2ad58c21983996779e9111614f70a90100990..1a3c5046590b5bd0ba258ed21465edd30bac920f 100644 --- a/app/code/core/Mage/Connect/Model/Session.php +++ b/app/code/core/Mage/Connect/Model/Session.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Connect/controllers/Adminhtml/Extension/CustomController.php b/app/code/core/Mage/Connect/controllers/Adminhtml/Extension/CustomController.php index 4009eb21d749a2a937224cd539bd40f7340db02b..3cb2d0e4e9563e03433dfb634ba723de8f42fd83 100644 --- a/app/code/core/Mage/Connect/controllers/Adminhtml/Extension/CustomController.php +++ b/app/code/core/Mage/Connect/controllers/Adminhtml/Extension/CustomController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Connect/controllers/Adminhtml/Extension/LocalController.php b/app/code/core/Mage/Connect/controllers/Adminhtml/Extension/LocalController.php index 82411fccb76b1f37e433fc0d044f23dd7fa0f0f0..226ab0e3dd7952d971f2e2ebbb9ba057ed8e4960 100644 --- a/app/code/core/Mage/Connect/controllers/Adminhtml/Extension/LocalController.php +++ b/app/code/core/Mage/Connect/controllers/Adminhtml/Extension/LocalController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Connect/etc/adminhtml.xml b/app/code/core/Mage/Connect/etc/adminhtml.xml index 62baab5d74ee8d4b83db0f6e899e762cf207c467..187c98c5f2b7acdf8d86f347420af18f3b8435e7 100644 --- a/app/code/core/Mage/Connect/etc/adminhtml.xml +++ b/app/code/core/Mage/Connect/etc/adminhtml.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Connect/etc/adminhtml/acl.xml b/app/code/core/Mage/Connect/etc/adminhtml/acl.xml index 9206de952a201dd006be81b59cf2e5b8a5e8238e..eda7d4b95e6a8d2bc98a4ed02f2160c05fb2ab09 100644 --- a/app/code/core/Mage/Connect/etc/adminhtml/acl.xml +++ b/app/code/core/Mage/Connect/etc/adminhtml/acl.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Connect/etc/adminhtml/menu.xml b/app/code/core/Mage/Connect/etc/adminhtml/menu.xml index 89a66191ff28dda29d5dea0f1bedf21f20ec52b1..dcbb0694cb7524919997911ad9c1fe507f60b765 100644 --- a/app/code/core/Mage/Connect/etc/adminhtml/menu.xml +++ b/app/code/core/Mage/Connect/etc/adminhtml/menu.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Connect/etc/config.xml b/app/code/core/Mage/Connect/etc/config.xml index 8b072353b2e63f3f385f0cbdf01298b133ab9113..dfaff9a3649e665c263e3f474470c8eedcd1a61b 100644 --- a/app/code/core/Mage/Connect/etc/config.xml +++ b/app/code/core/Mage/Connect/etc/config.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Connect/view/adminhtml/extension/custom/authors.phtml b/app/code/core/Mage/Connect/view/adminhtml/extension/custom/authors.phtml index 3177539845bdbf7a0701ec6526333ac790002964..8306c510947e26f3e7a8b59505a2d100251dfa6d 100644 --- a/app/code/core/Mage/Connect/view/adminhtml/extension/custom/authors.phtml +++ b/app/code/core/Mage/Connect/view/adminhtml/extension/custom/authors.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Connect/view/adminhtml/extension/custom/contents.phtml b/app/code/core/Mage/Connect/view/adminhtml/extension/custom/contents.phtml index eca39838db9b8ac80061888c19ff8de8b3ce5dfa..865bc5792370ab776ad226062659c8cb8373784e 100644 --- a/app/code/core/Mage/Connect/view/adminhtml/extension/custom/contents.phtml +++ b/app/code/core/Mage/Connect/view/adminhtml/extension/custom/contents.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Connect/view/adminhtml/extension/custom/depends.phtml b/app/code/core/Mage/Connect/view/adminhtml/extension/custom/depends.phtml index 0ddfda525773aad51bfd195380dd3f5a8ce7826e..97e8e07ee5dc604ff0b39a389ea947e6fe81c561 100644 --- a/app/code/core/Mage/Connect/view/adminhtml/extension/custom/depends.phtml +++ b/app/code/core/Mage/Connect/view/adminhtml/extension/custom/depends.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Connect/view/adminhtml/extension/custom/load.phtml b/app/code/core/Mage/Connect/view/adminhtml/extension/custom/load.phtml index 3f7d94cc19d45e8d8c209f2930580aeb5d197540..9518caf5ec1829105fed152e697e7fba823af4d1 100644 --- a/app/code/core/Mage/Connect/view/adminhtml/extension/custom/load.phtml +++ b/app/code/core/Mage/Connect/view/adminhtml/extension/custom/load.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Connect/view/adminhtml/extension/custom/package.phtml b/app/code/core/Mage/Connect/view/adminhtml/extension/custom/package.phtml index 846685880231c97bfc5ed54a4b87d601f3cd7999..0b4e138a2e761b01bea7fe01dbd3474033b4dee4 100644 --- a/app/code/core/Mage/Connect/view/adminhtml/extension/custom/package.phtml +++ b/app/code/core/Mage/Connect/view/adminhtml/extension/custom/package.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Connect/view/adminhtml/extension/custom/release.phtml b/app/code/core/Mage/Connect/view/adminhtml/extension/custom/release.phtml index 23f080ef16b55c8068e113f8eda5088677338600..25ce2314a2e8db0f0ac0bcbfab60f1fb26c0b668 100644 --- a/app/code/core/Mage/Connect/view/adminhtml/extension/custom/release.phtml +++ b/app/code/core/Mage/Connect/view/adminhtml/extension/custom/release.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Connect/view/adminhtml/layout.xml b/app/code/core/Mage/Connect/view/adminhtml/layout.xml index 99dd19ca47e59a5fe276302fda7f95f871c65287..4a300d32edbe434558526e8ca96952a70cf586d4 100644 --- a/app/code/core/Mage/Connect/view/adminhtml/layout.xml +++ b/app/code/core/Mage/Connect/view/adminhtml/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Contacts/Helper/Data.php b/app/code/core/Mage/Contacts/Helper/Data.php index 377935e377c1f99ed913d27d7078a4dc1d3d56a4..78412ae54d61db8bf060a734d32fc43193906e39 100644 --- a/app/code/core/Mage/Contacts/Helper/Data.php +++ b/app/code/core/Mage/Contacts/Helper/Data.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Contacts - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Contacts/Model/System/Config/Backend/Links.php b/app/code/core/Mage/Contacts/Model/System/Config/Backend/Links.php index d046518862398c8096c0909b28ba07d42d5b6a9a..b42314e141dd4a392d479a1c806ff08714e57cae 100644 --- a/app/code/core/Mage/Contacts/Model/System/Config/Backend/Links.php +++ b/app/code/core/Mage/Contacts/Model/System/Config/Backend/Links.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Contacts - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Contacts/controllers/IndexController.php b/app/code/core/Mage/Contacts/controllers/IndexController.php index 7b0d2bdef7515d89c4aa3c69b38b39eb522f4d65..24fa01e51f232eec282c1c7a74318eda3fd9eb46 100644 --- a/app/code/core/Mage/Contacts/controllers/IndexController.php +++ b/app/code/core/Mage/Contacts/controllers/IndexController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Contacts - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Contacts/etc/adminhtml/acl.xml b/app/code/core/Mage/Contacts/etc/adminhtml/acl.xml index db833ae72e678c01030537acec626881e165c4b8..e4296baca5632ee44af3448f69196012afffece2 100644 --- a/app/code/core/Mage/Contacts/etc/adminhtml/acl.xml +++ b/app/code/core/Mage/Contacts/etc/adminhtml/acl.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Contacts - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Contacts/etc/adminhtml/system.xml b/app/code/core/Mage/Contacts/etc/adminhtml/system.xml index 1b11fef5bec3de3fbd32a85a197b3f360ecdde2b..76d431388bba3fe0352487614b5d0ee68e751c87 100644 --- a/app/code/core/Mage/Contacts/etc/adminhtml/system.xml +++ b/app/code/core/Mage/Contacts/etc/adminhtml/system.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Contacts - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Contacts/etc/config.xml b/app/code/core/Mage/Contacts/etc/config.xml index 8aa72ee77760ef91c74e3db73d841d0db15c0b24..36b749fae5efc4dc38044c1293d335ada2658a91 100644 --- a/app/code/core/Mage/Contacts/etc/config.xml +++ b/app/code/core/Mage/Contacts/etc/config.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Contacts - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Contacts/sql/contacts_setup/install-1.6.0.0.php b/app/code/core/Mage/Contacts/sql/contacts_setup/install-1.6.0.0.php index a7d8f1abced9aa638fa12cdac1dcfae117bd8fc4..b4c8b2b91c2205ebec2d75ef74ec47c5a4db055f 100644 --- a/app/code/core/Mage/Contacts/sql/contacts_setup/install-1.6.0.0.php +++ b/app/code/core/Mage/Contacts/sql/contacts_setup/install-1.6.0.0.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Contacts - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Contacts/view/frontend/form.phtml b/app/code/core/Mage/Contacts/view/frontend/form.phtml index 837366a6ff0c63fc8a44a3f581f12cb05e0d33f1..27ad0bbfa303830cf9da4c1c4070ec3e4a7121a9 100644 --- a/app/code/core/Mage/Contacts/view/frontend/form.phtml +++ b/app/code/core/Mage/Contacts/view/frontend/form.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Contacts/view/frontend/layout.xml b/app/code/core/Mage/Contacts/view/frontend/layout.xml index d9aab2e831c8008cef5fdac0c147b22648b25571..1e42ca2439dc55c0b05853f8692f1a64e3eea74b 100644 --- a/app/code/core/Mage/Contacts/view/frontend/layout.xml +++ b/app/code/core/Mage/Contacts/view/frontend/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Core/Block.php b/app/code/core/Mage/Core/Block.php index 9cf6a062db5e8bd264367ce4365e190299d14498..6578a88e0844b2640896d5d50906e9b249be1e1f 100644 --- a/app/code/core/Mage/Core/Block.php +++ b/app/code/core/Mage/Core/Block.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Block/Abstract.php b/app/code/core/Mage/Core/Block/Abstract.php index 49b582e58fcac94673ac3563615cb6be1f01d29f..4b960fbf74cf493e9038e93d6e998594188a1e82 100644 --- a/app/code/core/Mage/Core/Block/Abstract.php +++ b/app/code/core/Mage/Core/Block/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Block/Html/Calendar.php b/app/code/core/Mage/Core/Block/Html/Calendar.php index 8ba50943f893079cbd58ee124e49f5ef3b22b203..5758e339749feeb56b1224ef6bbed2bb66b16ed4 100644 --- a/app/code/core/Mage/Core/Block/Html/Calendar.php +++ b/app/code/core/Mage/Core/Block/Html/Calendar.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Block/Html/Date.php b/app/code/core/Mage/Core/Block/Html/Date.php index cc4b5627d494c5ca0879d84fedf0e7dd74dc2867..068cd3e787dc78e7b96c544be3762ff2a9b0b303 100644 --- a/app/code/core/Mage/Core/Block/Html/Date.php +++ b/app/code/core/Mage/Core/Block/Html/Date.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Block/Html/Date/Jquery/Calendar.php b/app/code/core/Mage/Core/Block/Html/Date/Jquery/Calendar.php index b17748ebeadb5c7d8c888cf2965bb580ac9c891a..39c0516cf3c1b6139e29813b132f1c5a35966e6e 100644 --- a/app/code/core/Mage/Core/Block/Html/Date/Jquery/Calendar.php +++ b/app/code/core/Mage/Core/Block/Html/Date/Jquery/Calendar.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ @@ -83,7 +83,7 @@ class Mage_Core_Block_Html_Date_Jquery_Calendar extends Mage_Core_Block_Html_Dat } /* First include jquery-ui. */ - $jsFiles = '"' . $this->getViewFileUrl("jquery/ui/jquery-ui.js") . '", '; + $jsFiles = '"' . $this->getViewFileUrl("jquery/jquery-ui.min.js") . '", '; /* There are a small handful of localized files that use the 5 character locale. */ $locale = str_replace('_', '-', Mage::app()->getLocale()->getLocaleCode()); diff --git a/app/code/core/Mage/Core/Block/Html/Link.php b/app/code/core/Mage/Core/Block/Html/Link.php index c2018b244e4440a5d6e11880b57ed888a8e3ca35..9aa51f984f69d155a91e099ed37e69bae1fa42a1 100644 --- a/app/code/core/Mage/Core/Block/Html/Link.php +++ b/app/code/core/Mage/Core/Block/Html/Link.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Block/Html/Select.php b/app/code/core/Mage/Core/Block/Html/Select.php index b4e6e0f2120d21f05ade43e3645e941a50f1e690..ec5f98d85979212a6dc45f69abd115a8f6f07b28 100644 --- a/app/code/core/Mage/Core/Block/Html/Select.php +++ b/app/code/core/Mage/Core/Block/Html/Select.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Block/Messages.php b/app/code/core/Mage/Core/Block/Messages.php index 852665b80e0c0ae43d661c6b0fc855b5996e522d..7dc7d9ff2416847ec0e86403eac400aeda82e955 100644 --- a/app/code/core/Mage/Core/Block/Messages.php +++ b/app/code/core/Mage/Core/Block/Messages.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Block/Store/Switcher.php b/app/code/core/Mage/Core/Block/Store/Switcher.php index 7898e1dd92fe8901763b41d480a23a4d76992a57..9d85eeffd394ee4c76741252d392ce4e568820d8 100644 --- a/app/code/core/Mage/Core/Block/Store/Switcher.php +++ b/app/code/core/Mage/Core/Block/Store/Switcher.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Block/Template.php b/app/code/core/Mage/Core/Block/Template.php index a706acfbc382bc98cb47bf3a97fa472fc7f83acd..63bbdfa1e0440ae4622de292da01ccfe3694647a 100644 --- a/app/code/core/Mage/Core/Block/Template.php +++ b/app/code/core/Mage/Core/Block/Template.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Block/Template/Smarty.php b/app/code/core/Mage/Core/Block/Template/Smarty.php index e2e0279eee5b187083d11a0af56300c8b8a12d2e..f08d18c79e0d2b60221d4c22cbc3c60daf0fa7e1 100644 --- a/app/code/core/Mage/Core/Block/Template/Smarty.php +++ b/app/code/core/Mage/Core/Block/Template/Smarty.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Block/Template/Zend.php b/app/code/core/Mage/Core/Block/Template/Zend.php index 4da36b27074c661e285094ac9d0c87b8e58e4ea1..0c005e426c6bc277eeff61ea36e839f0833f36f8 100644 --- a/app/code/core/Mage/Core/Block/Template/Zend.php +++ b/app/code/core/Mage/Core/Block/Template/Zend.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Block/Text.php b/app/code/core/Mage/Core/Block/Text.php index ef9932bd803b18992c61cf993850d67be261d107..567d5c85d19e5e11ba7eed9c9b4be95c18899c08 100644 --- a/app/code/core/Mage/Core/Block/Text.php +++ b/app/code/core/Mage/Core/Block/Text.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Block/Text/List.php b/app/code/core/Mage/Core/Block/Text/List.php index d5dee55dd90f4d4a34da7755b315b98a14b6a58f..453e020c43bc1d377f96e881a12eb4d6fb7feb7d 100644 --- a/app/code/core/Mage/Core/Block/Text/List.php +++ b/app/code/core/Mage/Core/Block/Text/List.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Block/Text/List/Item.php b/app/code/core/Mage/Core/Block/Text/List/Item.php index 92e22a5cf9564d2fa569adcdb56be8d1acdc301d..71e9ae10194168ba9a0c9101d1caeee70593e0ea 100644 --- a/app/code/core/Mage/Core/Block/Text/List/Item.php +++ b/app/code/core/Mage/Core/Block/Text/List/Item.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Block/Text/List/Link.php b/app/code/core/Mage/Core/Block/Text/List/Link.php index 02e5859fa2998bcd7e7ee0c60060feef5dde0d21..851209c984f116bbf505cf302c21ed413e35a290 100644 --- a/app/code/core/Mage/Core/Block/Text/List/Link.php +++ b/app/code/core/Mage/Core/Block/Text/List/Link.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Controller/Front/Action.php b/app/code/core/Mage/Core/Controller/Front/Action.php index c01afdbac911673c5ff063b27ab0c93a97b1709f..311c5d9298e817e7fc0f8618edaf275e07543292 100755 --- a/app/code/core/Mage/Core/Controller/Front/Action.php +++ b/app/code/core/Mage/Core/Controller/Front/Action.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Controller/Front/Router.php b/app/code/core/Mage/Core/Controller/Front/Router.php index 52b0237bb41abd6218fe8ca503df76696faf36d9..b8f379fd7f3ca8862b9d99b5c5b4f68807c57abf 100644 --- a/app/code/core/Mage/Core/Controller/Front/Router.php +++ b/app/code/core/Mage/Core/Controller/Front/Router.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Controller/FrontInterface.php b/app/code/core/Mage/Core/Controller/FrontInterface.php index b213d779092640116363cc8fbe5c45e9b1f6be8b..0857fee569955ae3291d3431e5bfc9a04b8d1171 100644 --- a/app/code/core/Mage/Core/Controller/FrontInterface.php +++ b/app/code/core/Mage/Core/Controller/FrontInterface.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Controller/Request/Http.php b/app/code/core/Mage/Core/Controller/Request/Http.php index 590a34a001b7b93942317ac27f2dcad5d50a17f4..3b67f47263b6c8a1fb1cecf2e60af8ea13747060 100644 --- a/app/code/core/Mage/Core/Controller/Request/Http.php +++ b/app/code/core/Mage/Core/Controller/Request/Http.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Controller/Response/Http.php b/app/code/core/Mage/Core/Controller/Response/Http.php index e396c65d9f7d6d18af2b510043f16b823a3332b6..0122b989dbd3fe1e4f57d64ba76cfa8b4e14b318 100644 --- a/app/code/core/Mage/Core/Controller/Response/Http.php +++ b/app/code/core/Mage/Core/Controller/Response/Http.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Controller/Varien/Action.php b/app/code/core/Mage/Core/Controller/Varien/Action.php index 709305d603995644cee7413dd760fe91f2d9faa2..15ecdce39ba890249e2e8e25385e8d1e53cfb8fa 100755 --- a/app/code/core/Mage/Core/Controller/Varien/Action.php +++ b/app/code/core/Mage/Core/Controller/Varien/Action.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Controller/Varien/Action/Factory.php b/app/code/core/Mage/Core/Controller/Varien/Action/Factory.php index c378b31a338b857e50dd451322dd16f3fd4df83b..8f9d9f0e8fa4eeffebe0df219bc9c11d0f0f69ea 100644 --- a/app/code/core/Mage/Core/Controller/Varien/Action/Factory.php +++ b/app/code/core/Mage/Core/Controller/Varien/Action/Factory.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Controller/Varien/Action/Forward.php b/app/code/core/Mage/Core/Controller/Varien/Action/Forward.php index 89b93d7e038f0857275ef0652d82498f68df8b08..088d8333d29b2d473f8c136f494f97c74ca5167e 100644 --- a/app/code/core/Mage/Core/Controller/Varien/Action/Forward.php +++ b/app/code/core/Mage/Core/Controller/Varien/Action/Forward.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Controller/Varien/Action/Redirect.php b/app/code/core/Mage/Core/Controller/Varien/Action/Redirect.php index 556a2b03758847d7a98f9e55e1c6456ebf66f273..1a4c6aafc01ff76d2c9ef3d2429e83b72fd102d1 100644 --- a/app/code/core/Mage/Core/Controller/Varien/Action/Redirect.php +++ b/app/code/core/Mage/Core/Controller/Varien/Action/Redirect.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Controller/Varien/ActionAbstract.php b/app/code/core/Mage/Core/Controller/Varien/ActionAbstract.php index 69c25862ca2727ffc53eeaacd6242a216a8a6827..d2bf061d720aafc0719f7b1bb2f7dbaa551b3590 100644 --- a/app/code/core/Mage/Core/Controller/Varien/ActionAbstract.php +++ b/app/code/core/Mage/Core/Controller/Varien/ActionAbstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Controller/Varien/DispatchableInterface.php b/app/code/core/Mage/Core/Controller/Varien/DispatchableInterface.php index 74d0d9f6979e4e9cff5644367d1b8e8747da457a..abe50d0144bc1c938bd147f1bfa52b3a66ae8ae4 100644 --- a/app/code/core/Mage/Core/Controller/Varien/DispatchableInterface.php +++ b/app/code/core/Mage/Core/Controller/Varien/DispatchableInterface.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Controller/Varien/Exception.php b/app/code/core/Mage/Core/Controller/Varien/Exception.php index c3ecda5b8e06a81e6d497886370fe894a3643ed2..1df46a158ad5157a758b8521352cc62e26e7918e 100644 --- a/app/code/core/Mage/Core/Controller/Varien/Exception.php +++ b/app/code/core/Mage/Core/Controller/Varien/Exception.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Controller/Varien/Front.php b/app/code/core/Mage/Core/Controller/Varien/Front.php index f295057e9c22cd4e4f8e200c2c14bd933813c080..84394705bdf56bd9e22a4b61c113d3c7d4e6cfc1 100644 --- a/app/code/core/Mage/Core/Controller/Varien/Front.php +++ b/app/code/core/Mage/Core/Controller/Varien/Front.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Controller/Varien/Router/Abstract.php b/app/code/core/Mage/Core/Controller/Varien/Router/Abstract.php index 24037c407373531e595adb1aad6fac2e215d7df8..c9e96130335f700a57a6351634218d4b04003cfa 100644 --- a/app/code/core/Mage/Core/Controller/Varien/Router/Abstract.php +++ b/app/code/core/Mage/Core/Controller/Varien/Router/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Controller/Varien/Router/Base.php b/app/code/core/Mage/Core/Controller/Varien/Router/Base.php index 9b981b03fb500f820019c4ea5357ad960be7936e..12fa314c175ea1659c0d251b83af3adbe7e2f733 100644 --- a/app/code/core/Mage/Core/Controller/Varien/Router/Base.php +++ b/app/code/core/Mage/Core/Controller/Varien/Router/Base.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Controller/Varien/Router/Default.php b/app/code/core/Mage/Core/Controller/Varien/Router/Default.php index 6410f2b06c694ca4e289921b5d84565d26079cba..774b9856329613dc99c48cfd47b32e489941156f 100644 --- a/app/code/core/Mage/Core/Controller/Varien/Router/Default.php +++ b/app/code/core/Mage/Core/Controller/Varien/Router/Default.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Controller/Varien/Router/Factory.php b/app/code/core/Mage/Core/Controller/Varien/Router/Factory.php index a60bb5c30037dabf8e3d808bc1a1b11d20982084..06896cb459853037bd44cdf95d7519228b1da7cd 100644 --- a/app/code/core/Mage/Core/Controller/Varien/Router/Factory.php +++ b/app/code/core/Mage/Core/Controller/Varien/Router/Factory.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Exception.php b/app/code/core/Mage/Core/Exception.php index 805e4c197cff794d8c1af2140153fd84a8905f1a..bd3bb825242198edfd3ab7107af24a5cbccba2cb 100644 --- a/app/code/core/Mage/Core/Exception.php +++ b/app/code/core/Mage/Core/Exception.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Helper/Abstract.php b/app/code/core/Mage/Core/Helper/Abstract.php index 3f207beeff6aad6d73a75ae018fd70f7d3c66d11..2c8df4835e4b15e083bbcaf027c45117303f7c27 100755 --- a/app/code/core/Mage/Core/Helper/Abstract.php +++ b/app/code/core/Mage/Core/Helper/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Helper/Cookie.php b/app/code/core/Mage/Core/Helper/Cookie.php index 91e205ea1b11c43c30ae9214fbc9b597219aa98b..4b8f408a04f018e92df535c32fb7ee168498cab3 100644 --- a/app/code/core/Mage/Core/Helper/Cookie.php +++ b/app/code/core/Mage/Core/Helper/Cookie.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Helper/Data.php b/app/code/core/Mage/Core/Helper/Data.php index 78517f40886bdc5b35a899927536b123147fddf3..f32493c6e69fcd08745c1584558c838c134d7141 100644 --- a/app/code/core/Mage/Core/Helper/Data.php +++ b/app/code/core/Mage/Core/Helper/Data.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Helper/File/Storage.php b/app/code/core/Mage/Core/Helper/File/Storage.php index 059473d6d756b8bffe64391d8b3bf8370ecaca28..399b1199db737243109be7b30e34bf7cbf7a2a3d 100644 --- a/app/code/core/Mage/Core/Helper/File/Storage.php +++ b/app/code/core/Mage/Core/Helper/File/Storage.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Helper/File/Storage/Database.php b/app/code/core/Mage/Core/Helper/File/Storage/Database.php index 5278c9226982d7fd93942bd28455129d2203e8a2..53425d507e9a088adb2728492940f0306745401a 100644 --- a/app/code/core/Mage/Core/Helper/File/Storage/Database.php +++ b/app/code/core/Mage/Core/Helper/File/Storage/Database.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Helper/Hint.php b/app/code/core/Mage/Core/Helper/Hint.php index 06112022439e54e55b2b92a36f5006442252cb15..1de1d6e299bc4d0a9adc621edf81909cc9ee0fe7 100644 --- a/app/code/core/Mage/Core/Helper/Hint.php +++ b/app/code/core/Mage/Core/Helper/Hint.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Helper/Http.php b/app/code/core/Mage/Core/Helper/Http.php index 3fa7cd157842cb6fa1c28548922ea5818ef8546c..447171c98eaa4c89e9a8448cbb324bfd0d9a210c 100644 --- a/app/code/core/Mage/Core/Helper/Http.php +++ b/app/code/core/Mage/Core/Helper/Http.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Helper/Js.php b/app/code/core/Mage/Core/Helper/Js.php index 73ebc275fe76200c00d953ca6d1c1c331a57e59a..075392f462e9953b84cd68fc4c81e4152300c472 100644 --- a/app/code/core/Mage/Core/Helper/Js.php +++ b/app/code/core/Mage/Core/Helper/Js.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Helper/String.php b/app/code/core/Mage/Core/Helper/String.php index 31f8543b4c0ea056180b4577c2b9d658e5e70471..5bfcfe46b9ee38004bf532f58c19ff47343bb859 100644 --- a/app/code/core/Mage/Core/Helper/String.php +++ b/app/code/core/Mage/Core/Helper/String.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Helper/Translate.php b/app/code/core/Mage/Core/Helper/Translate.php index 13c8cc64a307d0d4b7ccb533d29d672646ed912d..6154c7c68efe0096f974911394aa652380b1e101 100644 --- a/app/code/core/Mage/Core/Helper/Translate.php +++ b/app/code/core/Mage/Core/Helper/Translate.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Helper/Url.php b/app/code/core/Mage/Core/Helper/Url.php index 0d0cac46814955c163ab15986effa93c6994fef0..7a3db68709a45babb71e7ba7e6799c9c935b5181 100644 --- a/app/code/core/Mage/Core/Helper/Url.php +++ b/app/code/core/Mage/Core/Helper/Url.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Helper/Url/Rewrite.php b/app/code/core/Mage/Core/Helper/Url/Rewrite.php index bcd61cf602f2f72699a02051f52f4ad12002833c..cf4fdd40ea5d986276cc652b79c4e88dc6751f78 100644 --- a/app/code/core/Mage/Core/Helper/Url/Rewrite.php +++ b/app/code/core/Mage/Core/Helper/Url/Rewrite.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Abstract.php b/app/code/core/Mage/Core/Model/Abstract.php index 65dae9a6e437a6494294cc1187d5b2272ef0894d..c8f52d2e49cbc3510a85e0d1e12ce81ae4f33924 100644 --- a/app/code/core/Mage/Core/Model/Abstract.php +++ b/app/code/core/Mage/Core/Model/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Acl/Builder.php b/app/code/core/Mage/Core/Model/Acl/Builder.php index 1b482721512c00e629d4ad66c6425f0c04865c2e..54d76c4ee04ad9567abbdfb3250f2c286bb39871 100644 --- a/app/code/core/Mage/Core/Model/Acl/Builder.php +++ b/app/code/core/Mage/Core/Model/Acl/Builder.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Acl/Config/ConfigInterface.php b/app/code/core/Mage/Core/Model/Acl/Config/ConfigInterface.php index c883c278b504bf005a3c78f05df265ba85b08b6c..60d96043c83b6eba1fa16870a44be53ac58d4e13 100644 --- a/app/code/core/Mage/Core/Model/Acl/Config/ConfigInterface.php +++ b/app/code/core/Mage/Core/Model/Acl/Config/ConfigInterface.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Acl/Loader/Resource/ResourceAbstract.php b/app/code/core/Mage/Core/Model/Acl/Loader/Resource/ResourceAbstract.php index 7bb0605d16b9898f60b620a2fdcb82b97182b0bd..873e3575c1f4a0ccd8fca3503f6c11d6c9057b1e 100644 --- a/app/code/core/Mage/Core/Model/Acl/Loader/Resource/ResourceAbstract.php +++ b/app/code/core/Mage/Core/Model/Acl/Loader/Resource/ResourceAbstract.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ abstract class Mage_Core_Model_Acl_Loader_Resource_ResourceAbstract implements Magento_Acl_Loader diff --git a/app/code/core/Mage/Core/Model/App.php b/app/code/core/Mage/Core/Model/App.php index 6786b20d5b4f6fd90a06c7119c0bd72f13c3463f..1ac2b880ccc3f6eaa94d59a153c1dc3f4b67daf4 100644 --- a/app/code/core/Mage/Core/Model/App.php +++ b/app/code/core/Mage/Core/Model/App.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ @@ -384,6 +384,28 @@ class Mage_Core_Model_App return $this; } + /** + * Whether the application has been installed or not + * + * @return bool + */ + public function isInstalled() + { + return (bool)$this->_config->getInstallDate(); + } + + /** + * Throw an exception, if the application has not been installed yet + * + * @throws Magento_Exception + */ + public function requireInstalledInstance() + { + if (!$this->isInstalled()) { + throw new Magento_Exception('Application is not installed yet, please complete the installation first.'); + } + } + /** * Initialize PHP environment * @@ -515,13 +537,13 @@ class Mage_Core_Model_App $scopeType = 'website'; } switch ($scopeType) { - case 'store': + case Mage_Core_Model_App_Options::APP_RUN_TYPE_STORE: $this->_currentStore = $scopeCode; break; - case 'group': + case Mage_Core_Model_App_Options::APP_RUN_TYPE_GROUP: $this->_currentStore = $this->_getStoreByGroup($scopeCode); break; - case 'website': + case Mage_Core_Model_App_Options::APP_RUN_TYPE_WEBSITE: $this->_currentStore = $this->_getStoreByWebsite($scopeCode); break; default: diff --git a/app/code/core/Mage/Core/Model/App/Area.php b/app/code/core/Mage/Core/Model/App/Area.php index 1b81e56b03b028abf20b4ad7261519292b993980..d3fc995d152d9497f27a46984008da117f2e74a0 100644 --- a/app/code/core/Mage/Core/Model/App/Area.php +++ b/app/code/core/Mage/Core/Model/App/Area.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/App/Emulation.php b/app/code/core/Mage/Core/Model/App/Emulation.php index 21ac620207fb78c13a5c3865b305110435184541..b1dd0f4178fdd8686c6173fe0cf61026c63c8a97 100644 --- a/app/code/core/Mage/Core/Model/App/Emulation.php +++ b/app/code/core/Mage/Core/Model/App/Emulation.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/App/Options.php b/app/code/core/Mage/Core/Model/App/Options.php new file mode 100644 index 0000000000000000000000000000000000000000..960dc267a36c53f9076d44577e9fa1d0b6bf87f1 --- /dev/null +++ b/app/code/core/Mage/Core/Model/App/Options.php @@ -0,0 +1,133 @@ +<?php +/** + * Magento + * + * NOTICE OF LICENSE + * + * This source file is subject to the Open Software License (OSL 3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * http://opensource.org/licenses/osl-3.0.php + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@magentocommerce.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade Magento to newer + * versions in the future. If you wish to customize Magento for your + * needs please refer to http://www.magentocommerce.com for more information. + * + * @category Mage + * @package Mage_Core + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) + * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) + */ + +class Mage_Core_Model_App_Options +{ + /**@+ + * Application option names + */ + const OPTION_APP_RUN_CODE = 'MAGE_RUN_CODE'; + const OPTION_APP_RUN_TYPE = 'MAGE_RUN_TYPE'; + const OPTION_LOCAL_CONFIG_EXTRA_FILE = 'MAGE_LOCAL_CONFIG'; + /**@-*/ + + /**@+ + * Supported application run types + */ + const APP_RUN_TYPE_STORE = 'store'; + const APP_RUN_TYPE_GROUP = 'group'; + const APP_RUN_TYPE_WEBSITE = 'website'; + /**@-*/ + + /** + * Shorthand for the list of supported application run types + * + * @var array + */ + protected $_supportedRunTypes = array( + self::APP_RUN_TYPE_STORE, self::APP_RUN_TYPE_GROUP, self::APP_RUN_TYPE_WEBSITE + ); + + /** + * Store or website code + * + * @var string + */ + protected $_runCode = ''; + + /** + * Run store or run website + * + * @var string + */ + protected $_runType = self::APP_RUN_TYPE_STORE; + + /** + * Application run options + * + * @var array + */ + protected $_runOptions = array(); + + /** + * Constructor + * + * @param array $options Source of option values + * @throws InvalidArgumentException + */ + public function __construct(array $options) + { + if (isset($options[self::OPTION_APP_RUN_CODE])) { + $this->_runCode = $options[self::OPTION_APP_RUN_CODE]; + } + + if (isset($options[self::OPTION_APP_RUN_TYPE])) { + $this->_runType = $options[self::OPTION_APP_RUN_TYPE]; + if (!in_array($this->_runType, $this->_supportedRunTypes)) { + throw new InvalidArgumentException(sprintf( + 'Application run type "%s" is not recognized, supported values: "%s".', + $this->_runType, + implode('", "', $this->_supportedRunTypes) + )); + } + } + + if (!empty($options[self::OPTION_LOCAL_CONFIG_EXTRA_FILE])) { + $localConfigFile = $options[self::OPTION_LOCAL_CONFIG_EXTRA_FILE]; + $this->_runOptions[Mage_Core_Model_Config::OPTION_LOCAL_CONFIG_EXTRA_FILE] = $localConfigFile; + } + } + + /** + * Retrieve application run code + * + * @return string + */ + public function getRunCode() + { + return $this->_runCode; + } + + /** + * Retrieve application run type + * + * @return string + */ + public function getRunType() + { + return $this->_runType; + } + + /** + * Retrieve application run options + * + * @return array + */ + public function getRunOptions() + { + return $this->_runOptions; + } +} diff --git a/app/code/core/Mage/Core/Model/Authorization.php b/app/code/core/Mage/Core/Model/Authorization.php index 672d51a1aea866fe66a64c1cd0713390e38619d6..bb07f8a62c00bc2964a66404563e436cfff00d12 100644 --- a/app/code/core/Mage/Core/Model/Authorization.php +++ b/app/code/core/Mage/Core/Model/Authorization.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/BlockFactory.php b/app/code/core/Mage/Core/Model/BlockFactory.php index 188fa0876e334f2f463991ffece03333c1f1d638..0326ee82d8b25393a43c8fd291ca65cb23e38e22 100644 --- a/app/code/core/Mage/Core/Model/BlockFactory.php +++ b/app/code/core/Mage/Core/Model/BlockFactory.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Cache.php b/app/code/core/Mage/Core/Model/Cache.php index 59a29f1b7ffd9ae9c0dafdc9801575322e7dbf2f..9104d3f6302e966d6f3ab7692ca7aeeb3b4132b0 100644 --- a/app/code/core/Mage/Core/Model/Cache.php +++ b/app/code/core/Mage/Core/Model/Cache.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Calculator.php b/app/code/core/Mage/Core/Model/Calculator.php index 57fddda6247a5a38b1b2f3fb7333925758d29796..00ad9be19ee9aff2fa8ce7f213f543a7a4605e13 100644 --- a/app/code/core/Mage/Core/Model/Calculator.php +++ b/app/code/core/Mage/Core/Model/Calculator.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Config.php b/app/code/core/Mage/Core/Model/Config.php index fcd53e18113473bdcb887afae4f6f03283cf8a88..ee59c49807f879762b510577168b63c2a90345b4 100644 --- a/app/code/core/Mage/Core/Model/Config.php +++ b/app/code/core/Mage/Core/Model/Config.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ @@ -48,6 +48,28 @@ class Mage_Core_Model_Config extends Mage_Core_Model_Config_Base */ const SCOPE_WEBSITES = 'websites'; + /**@+ + * Option key names + */ + const OPTION_LOCAL_CONFIG_EXTRA_FILE = 'local_config'; + const OPTION_LOCAL_CONFIG_EXTRA_DATA = 'local_config_extra_data'; + /**@-*/ + + /** + * Local configuration file + */ + const LOCAL_CONFIG_FILE = 'local.xml'; + + /** + * Application installation date + */ + const XML_PATH_INSTALL_DATE = 'global/install/date'; + + /** + * Configuration template for the application installation date + */ + const CONFIG_TEMPLATE_INSTALL_DATE = '<config><global><install><date>%s</date></install></global></config>'; + /** * Flag which allow use cache logic * @@ -173,7 +195,7 @@ class Mage_Core_Model_Config extends Mage_Core_Model_Config_Base protected $_prototype; /** - * Flag which identify what local configuration is loaded + * Whether local configuration is loaded or not * * @var bool */ @@ -229,6 +251,13 @@ class Mage_Core_Model_Config extends Mage_Core_Model_Config_Base */ protected $_objectManager; + /** + * Application installation timestamp + * + * @var int|null + */ + protected $_installDate; + /** * Class construct * @@ -245,6 +274,7 @@ class Mage_Core_Model_Config extends Mage_Core_Model_Config_Base } $this->_options = $this->_objectManager->create('Mage_Core_Model_Config_Options', array('data' => $options)); $this->_prototype = $this->_objectManager->create('Mage_Core_Model_Config_Base'); + $this->_prototype->loadString('<config/>'); $this->_cacheChecksum = null; parent::__construct($sourceData); } @@ -324,41 +354,94 @@ class Mage_Core_Model_Config extends Mage_Core_Model_Config_Base } /** - * Load base system configuration (config.xml and local.xml files) + * Load base configuration * * @return Mage_Core_Model_Config */ public function loadBase() { $etcDir = $this->getOptions()->getEtcDir(); - $files = array(); - $deferred = array(); + if (!$this->getNode()) { + $this->loadString('<config/>'); + } + // 1. app/etc/*.xml (except local config) foreach (scandir($etcDir) as $filename) { - if ('.' == $filename || '..' == $filename || '.xml' != substr($filename, -4)) { + if ('.' == $filename || '..' == $filename || '.xml' != substr($filename, -4) + || self::LOCAL_CONFIG_FILE == $filename + ) { continue; } - $file = "{$etcDir}/{$filename}"; - if ('local.xml' === $filename) { - $deferred[] = $file; - $this->_isLocalConfigLoaded = true; - $localConfig = $this->getOptions()->getData('local_config'); - if (preg_match('/^[a-z\d_-]+\/[a-z\d_-]+\.xml$/', $localConfig)) { - $deferred[] = "{$etcDir}/$localConfig"; - } - } else { - $files[] = $file; + $baseConfigFile = $etcDir . DIRECTORY_SEPARATOR . $filename; + $baseConfig = clone $this->_prototype; + $baseConfig->loadFile($baseConfigFile); + $this->extend($baseConfig); + } + // 2. local configuration + $this->_loadLocalConfig(); + return $this; + } + + /** + * Load local configuration (part of the base configuration) + */ + protected function _loadLocalConfig() + { + $etcDir = $this->getOptions()->getEtcDir(); + $localConfigParts = array(); + + $localConfigFile = $etcDir . DIRECTORY_SEPARATOR . self::LOCAL_CONFIG_FILE; + if (file_exists($localConfigFile)) { + // 1. app/etc/local.xml + $localConfig = clone $this->_prototype; + $localConfig->loadFile($localConfigFile); + $localConfigParts[] = $localConfig; + + // 2. app/etc/<dir>/<file>.xml + $localConfigExtraFile = $this->getOptions()->getData(self::OPTION_LOCAL_CONFIG_EXTRA_FILE); + if (preg_match('/^[a-z\d_-]+\/[a-z\d_-]+\.xml$/', $localConfigExtraFile)) { + $localConfigExtraFile = $etcDir . DIRECTORY_SEPARATOR . $localConfigExtraFile; + $localConfig = clone $this->_prototype; + $localConfig->loadFile($localConfigExtraFile); + $localConfigParts[] = $localConfig; } } - $files = array_merge($files, $deferred); - $this->loadFile(current($files)); - array_shift($files); - foreach ($files as $file) { - $merge = clone $this->_prototype; - $merge->loadFile($file); - $this->extend($merge); + // 3. extra local configuration string + $localConfigExtraData = $this->getOptions()->getData(self::OPTION_LOCAL_CONFIG_EXTRA_DATA); + if ($localConfigExtraData) { + $localConfig = clone $this->_prototype; + $localConfig->loadString($localConfigExtraData); + $localConfigParts[] = $localConfig; + } + + if ($localConfigParts) { + foreach ($localConfigParts as $oneConfigPart) { + $this->extend($oneConfigPart); + } + $this->_isLocalConfigLoaded = true; + $this->_loadInstallDate(); } - return $this; + } + + /** + * Load application installation date + */ + protected function _loadInstallDate() + { + $installDateNode = $this->getNode(self::XML_PATH_INSTALL_DATE); + if ($installDateNode) { + $this->_installDate = strtotime((string)$installDateNode); + } + } + + /** + * Retrieve application installation date as a timestamp or NULL, if it has not been installed yet + * + * @return int|null + */ + public function getInstallDate() + { + return $this->_installDate; } /** @@ -388,7 +471,7 @@ class Mage_Core_Model_Config extends Mage_Core_Model_Config_Base */ public function loadModulesCache() { - if (Mage::isInstalled(array('etc_dir' => $this->getOptions()->getEtcDir()))) { + if ($this->getInstallDate()) { if ($this->_canUseCacheForInit()) { Magento_Profiler::start('init_modules_config_cache'); $loaded = $this->loadCache(); @@ -418,14 +501,8 @@ class Mage_Core_Model_Config extends Mage_Core_Model_Config_Base $this->loadModulesConfiguration(array('config.xml',$resourceConfig), $this); Magento_Profiler::stop('load_modules_configuration'); - /** - * Prevent local.xml directives overwriting - */ - $mergeConfig = clone $this->_prototype; - $this->_isLocalConfigLoaded = $mergeConfig->loadFile($this->getOptions()->getEtcDir() . DS . 'local.xml'); - if ($this->_isLocalConfigLoaded) { - $this->extend($mergeConfig); - } + // Prevent local configuration overriding + $this->_loadLocalConfig(); $this->applyExtends(); Magento_Profiler::stop('load_modules'); @@ -451,7 +528,7 @@ class Mage_Core_Model_Config extends Mage_Core_Model_Config_Base public function loadDb() { Magento_Profiler::start('config'); - if ($this->_isLocalConfigLoaded && Mage::isInstalled()) { + if ($this->getInstallDate()) { Magento_Profiler::start('load_db'); $dbConf = $this->getResourceModel(); $dbConf->loadToXml($this); @@ -983,7 +1060,6 @@ class Mage_Core_Model_Config extends Mage_Core_Model_Config_Base { if ($mergeToObject === null) { $mergeToObject = clone $this->_prototype; - $mergeToObject->loadString('<config/>'); } $mergeModel = $mergeModel === null ? clone $this->_prototype : $mergeModel; @@ -1734,7 +1810,7 @@ class Mage_Core_Model_Config extends Mage_Core_Model_Config_Base public function __destruct() { $this->_cacheLoadedSections = array(); - + $this->_prototype = null; parent::__destruct(); } } diff --git a/app/code/core/Mage/Core/Model/Config/Base.php b/app/code/core/Mage/Core/Model/Config/Base.php index 19d22024d7b814d7ca217812c381ad4e2476b47a..66b9565a1d41cdbf0746c7787dd88a9bc112edb3 100644 --- a/app/code/core/Mage/Core/Model/Config/Base.php +++ b/app/code/core/Mage/Core/Model/Config/Base.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Config/Data.php b/app/code/core/Mage/Core/Model/Config/Data.php index 3b3d335f88f46e3a642c95eab60df9523c90df22..e7ec068f81511eb0847dc1abe2573dbd678177a9 100644 --- a/app/code/core/Mage/Core/Model/Config/Data.php +++ b/app/code/core/Mage/Core/Model/Config/Data.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Config/Data/Factory.php b/app/code/core/Mage/Core/Model/Config/Data/Factory.php index ee44791124385f619526b0d8b9c95e32dc9b4bb1..4e7c39216b98eba5f3b33264915577bba855095a 100644 --- a/app/code/core/Mage/Core/Model/Config/Data/Factory.php +++ b/app/code/core/Mage/Core/Model/Config/Data/Factory.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Config/Element.php b/app/code/core/Mage/Core/Model/Config/Element.php index d558ff8071993a57153c75a7ace3193ad8197bbb..60e029a8d9d29b7edfd952ccbc6d3ee75beaaedb 100644 --- a/app/code/core/Mage/Core/Model/Config/Element.php +++ b/app/code/core/Mage/Core/Model/Config/Element.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Config/Fieldset.php b/app/code/core/Mage/Core/Model/Config/Fieldset.php index c70254c739af018341e46f102981308c599561e6..c1f609a3da34ddb91a550cb64c5e3b8e0d09bc2e 100644 --- a/app/code/core/Mage/Core/Model/Config/Fieldset.php +++ b/app/code/core/Mage/Core/Model/Config/Fieldset.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Config/Module.php b/app/code/core/Mage/Core/Model/Config/Module.php index cfab10aea7cbf6c661e74e2736f832e0f1d09bed..995164c33a9d85e6e5c73a0438b90f0d9e21635d 100644 --- a/app/code/core/Mage/Core/Model/Config/Module.php +++ b/app/code/core/Mage/Core/Model/Config/Module.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Config/Options.php b/app/code/core/Mage/Core/Model/Config/Options.php index 41e434ab00b16cd4cfdb040f6734d4953c35c85c..216ad012cbf9e42ea176db792a800556c291c831 100644 --- a/app/code/core/Mage/Core/Model/Config/Options.php +++ b/app/code/core/Mage/Core/Model/Config/Options.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ @@ -83,7 +83,9 @@ class Mage_Core_Model_Config_Options extends Varien_Object $this->_data['locale_dir'] = $appRoot . DIRECTORY_SEPARATOR . 'locale'; $this->_data['pub_dir'] = $root . DIRECTORY_SEPARATOR . 'pub'; $this->_data['js_dir'] = $this->_data['pub_dir'] . DIRECTORY_SEPARATOR . 'lib'; - $this->_data['media_dir'] = $this->_data['pub_dir'] . DIRECTORY_SEPARATOR . 'media'; + $this->_data['media_dir'] = isset($data['media_dir']) + ? $data['media_dir'] + : $this->_data['pub_dir'] . DIRECTORY_SEPARATOR . 'media'; $this->_data['var_dir'] = $this->getVarDir(); $this->_data['tmp_dir'] = $this->_data['var_dir'] . DIRECTORY_SEPARATOR . 'tmp'; $this->_data['cache_dir'] = $this->_data['var_dir'] . DIRECTORY_SEPARATOR . 'cache'; @@ -210,16 +212,6 @@ class Mage_Core_Model_Config_Options extends Varien_Object return $this->_data['media_dir']; } - /** - * System temporary folder paths getter - * - * @return string - */ - public function getSysTmpDir() - { - return sys_get_temp_dir(); - } - /** * Var folder paths getter * @@ -231,10 +223,7 @@ class Mage_Core_Model_Config_Options extends Varien_Object $dir = isset($this->_data['var_dir']) ? $this->_data['var_dir'] : $this->_data['base_dir'] . DIRECTORY_SEPARATOR . self::VAR_DIRECTORY; if (!$this->createDirIfNotExists($dir)) { - $dir = $this->getSysTmpDir() . DIRECTORY_SEPARATOR . 'magento' . DIRECTORY_SEPARATOR . 'var'; - if (!$this->createDirIfNotExists($dir)) { - throw new Mage_Core_Exception('Unable to find writable var_dir'); - } + throw new Mage_Core_Exception('Unable to find writable var_dir'); } return $dir; } @@ -243,15 +232,13 @@ class Mage_Core_Model_Config_Options extends Varien_Object * Temporary folder paths getter * * @return string + * @throws Mage_Core_Exception */ public function getTmpDir() { $dir = $this->_data['tmp_dir']; if (!$this->createDirIfNotExists($dir)) { - $dir = $this->getSysTmpDir() . DIRECTORY_SEPARATOR . 'magento' . DIRECTORY_SEPARATOR . 'tmp'; - if (!$this->createDirIfNotExists($dir)) { - throw new Mage_Core_Exception('Unable to find writable tmp_dir'); - } + throw new Mage_Core_Exception('Unable to find writable tmp_dir'); } return $dir; } diff --git a/app/code/core/Mage/Core/Model/Cookie.php b/app/code/core/Mage/Core/Model/Cookie.php index 7c36cd945324bd2979284f1dbbfa8bc3456cf589..1de4732752dda800845fd806cc7450681a375098 100644 --- a/app/code/core/Mage/Core/Model/Cookie.php +++ b/app/code/core/Mage/Core/Model/Cookie.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Date.php b/app/code/core/Mage/Core/Model/Date.php index b80cce4e5594872a5dadf54f592d4e5cdf1d340f..ba6b16854c7a9d20517996f43a72fe1b26c989b3 100644 --- a/app/code/core/Mage/Core/Model/Date.php +++ b/app/code/core/Mage/Core/Model/Date.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Design.php b/app/code/core/Mage/Core/Model/Design.php index 26d4db5e7f5e3609df731be47e9ee2846623b3fb..3eb0c8e947dc51b86dcd17a4859984ea1338bd52 100644 --- a/app/code/core/Mage/Core/Model/Design.php +++ b/app/code/core/Mage/Core/Model/Design.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Design/Backend/Exceptions.php b/app/code/core/Mage/Core/Model/Design/Backend/Exceptions.php index 0a6c304a1b9c3b4eca264b4468e8dd910c9591bd..eb6fcead7f2afe120dc4c3ab5447586af2cc827f 100644 --- a/app/code/core/Mage/Core/Model/Design/Backend/Exceptions.php +++ b/app/code/core/Mage/Core/Model/Design/Backend/Exceptions.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Design/Backend/Theme.php b/app/code/core/Mage/Core/Model/Design/Backend/Theme.php index 4a522b845cf33159a0a03564916ec540653f5a5a..a015e4ecf501fce5b2a50a51d2cbbe27b0784d65 100644 --- a/app/code/core/Mage/Core/Model/Design/Backend/Theme.php +++ b/app/code/core/Mage/Core/Model/Design/Backend/Theme.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Design/Fallback.php b/app/code/core/Mage/Core/Model/Design/Fallback.php index a2a0090234d80fb40c523ca77809eb409884a8f5..bcde638634ad5eb25df5f59e438b40493063d41a 100644 --- a/app/code/core/Mage/Core/Model/Design/Fallback.php +++ b/app/code/core/Mage/Core/Model/Design/Fallback.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Design/Fallback/CachingProxy.php b/app/code/core/Mage/Core/Model/Design/Fallback/CachingProxy.php index e0673e8f0b4287a2fee99e5d40544db276666b8a..2451cb42599161a99a34263cdb78d25f48063fc4 100644 --- a/app/code/core/Mage/Core/Model/Design/Fallback/CachingProxy.php +++ b/app/code/core/Mage/Core/Model/Design/Fallback/CachingProxy.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Design/FallbackInterface.php b/app/code/core/Mage/Core/Model/Design/FallbackInterface.php index ea02ae0312dbabe7fa4d91103b0e0428c287af88..fcb1cf0c98ceb8d48ac27d58549374a46d853a11 100644 --- a/app/code/core/Mage/Core/Model/Design/FallbackInterface.php +++ b/app/code/core/Mage/Core/Model/Design/FallbackInterface.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Design/Package.php b/app/code/core/Mage/Core/Model/Design/Package.php index 1862eb298cee88225b5738a7e426ba8e9d21e2eb..f84dcabca471b79a794a618fe80f760a9c14a29a 100644 --- a/app/code/core/Mage/Core/Model/Design/Package.php +++ b/app/code/core/Mage/Core/Model/Design/Package.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Design/Source/Design.php b/app/code/core/Mage/Core/Model/Design/Source/Design.php index fcbf438fbe51c34523a46fb59c0c60e597d6c5b1..2da29745cedec2dfb48e7205b69cee328cabdb2e 100644 --- a/app/code/core/Mage/Core/Model/Design/Source/Design.php +++ b/app/code/core/Mage/Core/Model/Design/Source/Design.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Email.php b/app/code/core/Mage/Core/Model/Email.php index aef054d55a1e1c9b663483800d717f87a74ce37a..f9fcd50f632935d1b9151628e2ebe3b4ee8b6826 100644 --- a/app/code/core/Mage/Core/Model/Email.php +++ b/app/code/core/Mage/Core/Model/Email.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Email/Info.php b/app/code/core/Mage/Core/Model/Email/Info.php index 06b8e772c2f205a5893bf3106bad5adf69b42687..c48a9dce7ac8c36624e5ce098723d5562c9059e3 100644 --- a/app/code/core/Mage/Core/Model/Email/Info.php +++ b/app/code/core/Mage/Core/Model/Email/Info.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Email/Template.php b/app/code/core/Mage/Core/Model/Email/Template.php index 784e5bd9b1aed26d7ecba958340fca998e6499ca..87dd662e00447e840d6e70340892a99b5d0268cb 100644 --- a/app/code/core/Mage/Core/Model/Email/Template.php +++ b/app/code/core/Mage/Core/Model/Email/Template.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Email/Template/Filter.php b/app/code/core/Mage/Core/Model/Email/Template/Filter.php index bf297e5bff453308af1362f3cf452482bd07501a..2af49e197c3dcb3677c451b3a5348d9fbc6241c5 100644 --- a/app/code/core/Mage/Core/Model/Email/Template/Filter.php +++ b/app/code/core/Mage/Core/Model/Email/Template/Filter.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Email/Template/Mailer.php b/app/code/core/Mage/Core/Model/Email/Template/Mailer.php index 11eb6421a537373863e5b58c30ed526f5d88406b..0bff785478a49e60da705cfaa97db9f0212231da 100644 --- a/app/code/core/Mage/Core/Model/Email/Template/Mailer.php +++ b/app/code/core/Mage/Core/Model/Email/Template/Mailer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Email/Transport.php b/app/code/core/Mage/Core/Model/Email/Transport.php index 909cd5c114d16802d94bd9d5b3c478b769805848..5a575a99fe5347aa1c6bc16539aa0e89fd70f387 100644 --- a/app/code/core/Mage/Core/Model/Email/Transport.php +++ b/app/code/core/Mage/Core/Model/Email/Transport.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Encryption.php b/app/code/core/Mage/Core/Model/Encryption.php index 7cf7cc1ec96cce901c072a13f5a72cca82962c64..1e8f48b92e22328cd0d754e0cdc46cfa730f028a 100755 --- a/app/code/core/Mage/Core/Model/Encryption.php +++ b/app/code/core/Mage/Core/Model/Encryption.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Event/Manager.php b/app/code/core/Mage/Core/Model/Event/Manager.php index bda7b0340d1557d9a3a1669747a77eeb0a4803b1..d119693d163dfc7a030cb2f311ec4445683b5416 100644 --- a/app/code/core/Mage/Core/Model/Event/Manager.php +++ b/app/code/core/Mage/Core/Model/Event/Manager.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Factory/Helper.php b/app/code/core/Mage/Core/Model/Factory/Helper.php index c1ca24b855143b8aa493dfd4625be3757ffb5760..ba94db7d9df3572838c77e17352e0df380f4f0ea 100644 --- a/app/code/core/Mage/Core/Model/Factory/Helper.php +++ b/app/code/core/Mage/Core/Model/Factory/Helper.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/File/Storage.php b/app/code/core/Mage/Core/Model/File/Storage.php index eaa3b33157519a113a66010f605e5db244979691..9284a5c66a20e6a7f87eefc597b63af3be55857c 100644 --- a/app/code/core/Mage/Core/Model/File/Storage.php +++ b/app/code/core/Mage/Core/Model/File/Storage.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/File/Storage/Abstract.php b/app/code/core/Mage/Core/Model/File/Storage/Abstract.php index 2e42a96363019da1a75dde9a5f9cb29a7c79177e..8abdb705d003bad069e3aa011afb1ff60892fad4 100644 --- a/app/code/core/Mage/Core/Model/File/Storage/Abstract.php +++ b/app/code/core/Mage/Core/Model/File/Storage/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/File/Storage/Database.php b/app/code/core/Mage/Core/Model/File/Storage/Database.php index a34740ca5be91f37845bb0a902742f7544d8ffb6..2427a3ec11bd77aad41b18db218468b5ed709bb6 100644 --- a/app/code/core/Mage/Core/Model/File/Storage/Database.php +++ b/app/code/core/Mage/Core/Model/File/Storage/Database.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/File/Storage/Database/Abstract.php b/app/code/core/Mage/Core/Model/File/Storage/Database/Abstract.php index d2827a4f6bbe1df50aa1615f9913de5d9fb99de4..fae3c32e0b568c32c9572a485ebb86de71c6651c 100644 --- a/app/code/core/Mage/Core/Model/File/Storage/Database/Abstract.php +++ b/app/code/core/Mage/Core/Model/File/Storage/Database/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/File/Storage/Directory/Database.php b/app/code/core/Mage/Core/Model/File/Storage/Directory/Database.php index c78b28895540243d334e1ad06877289be0ed821f..96b1fb88afbcafbc8d2b63f7b26c28d9a493875d 100644 --- a/app/code/core/Mage/Core/Model/File/Storage/Directory/Database.php +++ b/app/code/core/Mage/Core/Model/File/Storage/Directory/Database.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/File/Storage/File.php b/app/code/core/Mage/Core/Model/File/Storage/File.php index a13c22e47c2b5a039a7bc886c6da0b8feafdd969..df0fdf72f2dc686fd214d96ff2bcf1d2654e7be6 100644 --- a/app/code/core/Mage/Core/Model/File/Storage/File.php +++ b/app/code/core/Mage/Core/Model/File/Storage/File.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/File/Storage/Flag.php b/app/code/core/Mage/Core/Model/File/Storage/Flag.php index b71cec650616ff455fb4d6d56a69f7dbb7d3787b..de70626a9e22590ff60cd5a6bea18d228f80c0c9 100644 --- a/app/code/core/Mage/Core/Model/File/Storage/Flag.php +++ b/app/code/core/Mage/Core/Model/File/Storage/Flag.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/File/Uploader.php b/app/code/core/Mage/Core/Model/File/Uploader.php index 11bdecc52636a2858d6fe03fa9470f9ec0ca0276..38dd63b36350869232a4a18e6152023cd5476ed3 100644 --- a/app/code/core/Mage/Core/Model/File/Uploader.php +++ b/app/code/core/Mage/Core/Model/File/Uploader.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/File/Validator/AvailablePath.php b/app/code/core/Mage/Core/Model/File/Validator/AvailablePath.php index 71f31df52e5e50c63f3d06fdfe3d83b9572cfd54..23d106c6e607abc0ccc2bd1f701f2fe12ee5d373 100644 --- a/app/code/core/Mage/Core/Model/File/Validator/AvailablePath.php +++ b/app/code/core/Mage/Core/Model/File/Validator/AvailablePath.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/File/Validator/NotProtectedExtension.php b/app/code/core/Mage/Core/Model/File/Validator/NotProtectedExtension.php index 187c6084894971e2a5bcdb403a8f0bce06bd1350..4acae5f6268cb725eac23799e9f5cb1cc8950cde 100644 --- a/app/code/core/Mage/Core/Model/File/Validator/NotProtectedExtension.php +++ b/app/code/core/Mage/Core/Model/File/Validator/NotProtectedExtension.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Flag.php b/app/code/core/Mage/Core/Model/Flag.php index b722a2792ab5cfeefa9db78eb09c82058291fb6c..751d9635665d77fd7720f9dd4f16ff68a8cbb7ef 100644 --- a/app/code/core/Mage/Core/Model/Flag.php +++ b/app/code/core/Mage/Core/Model/Flag.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Input/Filter.php b/app/code/core/Mage/Core/Model/Input/Filter.php index b3bfa6a7221c88a6ac8ec7f04e53ca2908b4f534..d2dd8903a5c131e67a4acbae6ab8e38494faa187 100644 --- a/app/code/core/Mage/Core/Model/Input/Filter.php +++ b/app/code/core/Mage/Core/Model/Input/Filter.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Input/Filter/MaliciousCode.php b/app/code/core/Mage/Core/Model/Input/Filter/MaliciousCode.php index 5e804717417e48d18833a6a8e9127ba94e8423d6..866978d5c0d26310a77432c129e826574abcba78 100644 --- a/app/code/core/Mage/Core/Model/Input/Filter/MaliciousCode.php +++ b/app/code/core/Mage/Core/Model/Input/Filter/MaliciousCode.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Layout.php b/app/code/core/Mage/Core/Model/Layout.php index d283d7adaa7889febdafe93e5b39b505eed8b5b8..086577be1effb237b9a294e663ddbb7532f11b41 100644 --- a/app/code/core/Mage/Core/Model/Layout.php +++ b/app/code/core/Mage/Core/Model/Layout.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Layout/Argument/Handler/Object.php b/app/code/core/Mage/Core/Model/Layout/Argument/Handler/Object.php index 2d5e875a3de5b1bae7c6b007e64653ddc8f7d48e..00f8b3665c0dd84dda604088b17e455687e26a33 100644 --- a/app/code/core/Mage/Core/Model/Layout/Argument/Handler/Object.php +++ b/app/code/core/Mage/Core/Model/Layout/Argument/Handler/Object.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Layout/Argument/Handler/ObjectFactory.php b/app/code/core/Mage/Core/Model/Layout/Argument/Handler/ObjectFactory.php index a856a03369a05b552f67673cffb2e591645874ef..d7fd065e4131279da233025c44654014fd83357b 100644 --- a/app/code/core/Mage/Core/Model/Layout/Argument/Handler/ObjectFactory.php +++ b/app/code/core/Mage/Core/Model/Layout/Argument/Handler/ObjectFactory.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Layout/Argument/Handler/Options.php b/app/code/core/Mage/Core/Model/Layout/Argument/Handler/Options.php index 6daf8b440c7808284cfd7a0eddfa5717ef8c3672..8c5d7a7d4e9d59cf80364f23136e53a8dac6d06e 100644 --- a/app/code/core/Mage/Core/Model/Layout/Argument/Handler/Options.php +++ b/app/code/core/Mage/Core/Model/Layout/Argument/Handler/Options.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Layout/Argument/Handler/OptionsFactory.php b/app/code/core/Mage/Core/Model/Layout/Argument/Handler/OptionsFactory.php index 2731bb112d43c01f66ddf6d5bab6fac5c6a5d202..52e60b08bf4d4e37fa3a3c8f71d9a0ff95d722ae 100644 --- a/app/code/core/Mage/Core/Model/Layout/Argument/Handler/OptionsFactory.php +++ b/app/code/core/Mage/Core/Model/Layout/Argument/Handler/OptionsFactory.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Layout/Argument/Handler/Url.php b/app/code/core/Mage/Core/Model/Layout/Argument/Handler/Url.php index 183c830a61738bad06812608aeafde8e104f1436..964032d2995c51a07f823a1db67cceb237575bda 100644 --- a/app/code/core/Mage/Core/Model/Layout/Argument/Handler/Url.php +++ b/app/code/core/Mage/Core/Model/Layout/Argument/Handler/Url.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Layout/Argument/Handler/UrlFactory.php b/app/code/core/Mage/Core/Model/Layout/Argument/Handler/UrlFactory.php index cada813cebc8de7b2e90fbb90fccc5d0b3fb3e9b..02dde9296598e789855cd22c56a83aabbbd77b8e 100644 --- a/app/code/core/Mage/Core/Model/Layout/Argument/Handler/UrlFactory.php +++ b/app/code/core/Mage/Core/Model/Layout/Argument/Handler/UrlFactory.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Layout/Argument/HandlerAbstract.php b/app/code/core/Mage/Core/Model/Layout/Argument/HandlerAbstract.php index d054f54f753540e86b1f0f51ff20ad50129b88ae..2d0978b5275d5b6cc3e525c5da48fde1993862c6 100644 --- a/app/code/core/Mage/Core/Model/Layout/Argument/HandlerAbstract.php +++ b/app/code/core/Mage/Core/Model/Layout/Argument/HandlerAbstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Layout/Argument/HandlerFactory.php b/app/code/core/Mage/Core/Model/Layout/Argument/HandlerFactory.php index 89b8c8710de60b0b7cf7d462c0697a50e42d297a..100a8e042cdd7078585795b158a099d7c8231572 100644 --- a/app/code/core/Mage/Core/Model/Layout/Argument/HandlerFactory.php +++ b/app/code/core/Mage/Core/Model/Layout/Argument/HandlerFactory.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Layout/Argument/HandlerFactoryInterface.php b/app/code/core/Mage/Core/Model/Layout/Argument/HandlerFactoryInterface.php index 2f635fb07dba222b39e882ec72f567adcba5ff9a..11d5c175ec5d625bc2a1bd0a5582aefe425a6921 100644 --- a/app/code/core/Mage/Core/Model/Layout/Argument/HandlerFactoryInterface.php +++ b/app/code/core/Mage/Core/Model/Layout/Argument/HandlerFactoryInterface.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Layout/Argument/HandlerInterface.php b/app/code/core/Mage/Core/Model/Layout/Argument/HandlerInterface.php index ca6850080c55e59f76446a319ba415d5fc585084..8abd9817521bbeb2ae546d31de455a28326b544b 100644 --- a/app/code/core/Mage/Core/Model/Layout/Argument/HandlerInterface.php +++ b/app/code/core/Mage/Core/Model/Layout/Argument/HandlerInterface.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Layout/Argument/Processor.php b/app/code/core/Mage/Core/Model/Layout/Argument/Processor.php index 81377c9d406fd9bdd8d7fb484a308bdbb978498f..3d6184ecd0997fedc79b89eb6de6c0fe23c81c6a 100644 --- a/app/code/core/Mage/Core/Model/Layout/Argument/Processor.php +++ b/app/code/core/Mage/Core/Model/Layout/Argument/Processor.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Layout/Argument/ProcessorConfig.php b/app/code/core/Mage/Core/Model/Layout/Argument/ProcessorConfig.php index 78f947ad0307505cbc295f8823d195ac61b35098..2114d435c1ecc71db9a02676756979787bc3839f 100644 --- a/app/code/core/Mage/Core/Model/Layout/Argument/ProcessorConfig.php +++ b/app/code/core/Mage/Core/Model/Layout/Argument/ProcessorConfig.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Layout/Argument/Updater.php b/app/code/core/Mage/Core/Model/Layout/Argument/Updater.php index f618e127dcfb9a79d6a3d2fb957265024408ca22..aa90d18c43bfb6397655fdbb9736bb1563415d29 100644 --- a/app/code/core/Mage/Core/Model/Layout/Argument/Updater.php +++ b/app/code/core/Mage/Core/Model/Layout/Argument/Updater.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Layout/Argument/UpdaterInterface.php b/app/code/core/Mage/Core/Model/Layout/Argument/UpdaterInterface.php index edeeb2eea0c60cba805f399a6af098415e7d2969..1d34d69c8545f03583e47079fea80c54fca90794 100644 --- a/app/code/core/Mage/Core/Model/Layout/Argument/UpdaterInterface.php +++ b/app/code/core/Mage/Core/Model/Layout/Argument/UpdaterInterface.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Layout/Element.php b/app/code/core/Mage/Core/Model/Layout/Element.php index 8b9991cd1b3f8488688518ac08b96a578fc318cd..cae704c514e56961bd985674ffc6406f51eaec53 100644 --- a/app/code/core/Mage/Core/Model/Layout/Element.php +++ b/app/code/core/Mage/Core/Model/Layout/Element.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Layout/Factory.php b/app/code/core/Mage/Core/Model/Layout/Factory.php index 1138fab5523b7a249778270407dedba421828a36..0903d442562c6503b992528b8a5d6ded70a4040b 100644 --- a/app/code/core/Mage/Core/Model/Layout/Factory.php +++ b/app/code/core/Mage/Core/Model/Layout/Factory.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Layout/Merge.php b/app/code/core/Mage/Core/Model/Layout/Merge.php index 77e18ef7271f51b91133fa76181f9866e3f2475e..7c30d2e4af1bbee6b2280eee842573058fad89e6 100644 --- a/app/code/core/Mage/Core/Model/Layout/Merge.php +++ b/app/code/core/Mage/Core/Model/Layout/Merge.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Layout/ScheduledStructure.php b/app/code/core/Mage/Core/Model/Layout/ScheduledStructure.php index 0ab6b23d3078623a4690841129e275a42c2cce36..e49727f60386ae93a6600f70c2ac79043c512ef4 100644 --- a/app/code/core/Mage/Core/Model/Layout/ScheduledStructure.php +++ b/app/code/core/Mage/Core/Model/Layout/ScheduledStructure.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Layout/Translator.php b/app/code/core/Mage/Core/Model/Layout/Translator.php index f03c8cfd61602f45d0f4dcb480a624a672d8b235..f4f2cc859c753c920d7ebd9c1028c032e46d7a7d 100644 --- a/app/code/core/Mage/Core/Model/Layout/Translator.php +++ b/app/code/core/Mage/Core/Model/Layout/Translator.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Layout/Update.php b/app/code/core/Mage/Core/Model/Layout/Update.php index 6a3f0acf429e9e246272f3801e61c419c17b2826..81614038dc5b56249779d9de24978f5fd2c4129e 100644 --- a/app/code/core/Mage/Core/Model/Layout/Update.php +++ b/app/code/core/Mage/Core/Model/Layout/Update.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Locale.php b/app/code/core/Mage/Core/Model/Locale.php index 2c4cebdf967ed70c03bc5ae160cc091cbe027d08..d0d5e0d9d6c20f4af32a7402c2cc8ad32ff3829c 100644 --- a/app/code/core/Mage/Core/Model/Locale.php +++ b/app/code/core/Mage/Core/Model/Locale.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ @@ -507,7 +507,7 @@ class Mage_Core_Model_Locale * @param null|string $format * @return Zend_Date */ - public function utcDate($store=null, $date, $includeTime = false, $format = null) + public function utcDate($store, $date, $includeTime = false, $format = null) { $dateObj = $this->storeDate($store, $date, $includeTime); $dateObj->set($date, $format); diff --git a/app/code/core/Mage/Core/Model/Locale/Config.php b/app/code/core/Mage/Core/Model/Locale/Config.php index b6fdded4ad28dca65164eab80bb56e38a8fa6b3d..445fefce11fab8e274045606dc95052c56d89e56 100644 --- a/app/code/core/Mage/Core/Model/Locale/Config.php +++ b/app/code/core/Mage/Core/Model/Locale/Config.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Core_Model_Locale_Config diff --git a/app/code/core/Mage/Core/Model/Log/Adapter.php b/app/code/core/Mage/Core/Model/Log/Adapter.php index 3b3bffbf3b7227c177b26f431590fdd8e46bb956..8dc54bd2223ac4722439b76037d57f48ed634541 100644 --- a/app/code/core/Mage/Core/Model/Log/Adapter.php +++ b/app/code/core/Mage/Core/Model/Log/Adapter.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Logger.php b/app/code/core/Mage/Core/Model/Logger.php index 517993f7a572a5a2f7d945f07bed05a7ebd6e0e5..402828073ce9f202267dcc39a69ac6d57581742b 100644 --- a/app/code/core/Mage/Core/Model/Logger.php +++ b/app/code/core/Mage/Core/Model/Logger.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Message.php b/app/code/core/Mage/Core/Model/Message.php index f49beaaa9c247d33d9a5ab6902ba2432d926045f..cfd76ba9c80283c63596baa5057c565b1a13f995 100644 --- a/app/code/core/Mage/Core/Model/Message.php +++ b/app/code/core/Mage/Core/Model/Message.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Message/Abstract.php b/app/code/core/Mage/Core/Model/Message/Abstract.php index 272ce5af9b28e66232b50a627d9dc1bf4163fd2e..912b46e9e0dd45eddb3c4ef317c3296c994abef9 100644 --- a/app/code/core/Mage/Core/Model/Message/Abstract.php +++ b/app/code/core/Mage/Core/Model/Message/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Message/Collection.php b/app/code/core/Mage/Core/Model/Message/Collection.php index c8c0d199a082514f04ab426f6089ac693d22b70c..a667a93e6fdacc9b67144a7c591b08185397f1b6 100644 --- a/app/code/core/Mage/Core/Model/Message/Collection.php +++ b/app/code/core/Mage/Core/Model/Message/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Message/Error.php b/app/code/core/Mage/Core/Model/Message/Error.php index 1f1ab4ebab3b0c343ab40b83daf51396f00f3fae..094c477ba713d102a6b8491f317495b1573fe31f 100644 --- a/app/code/core/Mage/Core/Model/Message/Error.php +++ b/app/code/core/Mage/Core/Model/Message/Error.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Message/Notice.php b/app/code/core/Mage/Core/Model/Message/Notice.php index 2022abca358772c84a92b466ed2712e41cf665a8..278c0517688624d98d86fb6ec91c46899357288d 100644 --- a/app/code/core/Mage/Core/Model/Message/Notice.php +++ b/app/code/core/Mage/Core/Model/Message/Notice.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Message/Success.php b/app/code/core/Mage/Core/Model/Message/Success.php index 5bb0cb21a9a55d77aa9da768b6a2499acc16b024..280666618cd5c7a56a3c25cc51ec96bd3f80f88d 100644 --- a/app/code/core/Mage/Core/Model/Message/Success.php +++ b/app/code/core/Mage/Core/Model/Message/Success.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Message/Warning.php b/app/code/core/Mage/Core/Model/Message/Warning.php index 0a21d91914c77a72ff68030306f8c90fbb8a4813..1a8ead99fcaeff929af08fbd87671de3e5f534e3 100644 --- a/app/code/core/Mage/Core/Model/Message/Warning.php +++ b/app/code/core/Mage/Core/Model/Message/Warning.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Observer.php b/app/code/core/Mage/Core/Model/Observer.php index a4747ac12b20b48cb5b2f951d948ad14d7119772..3bc5e79623053e28dca80364647c0ec0ab99d9ee 100644 --- a/app/code/core/Mage/Core/Model/Observer.php +++ b/app/code/core/Mage/Core/Model/Observer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Option/ArrayInterface.php b/app/code/core/Mage/Core/Model/Option/ArrayInterface.php index 4eedb34649f688ec73fb18c065e90e9b1d8c5ef6..f9deb12339939d253c2aef0712e30b86a853f995 100644 --- a/app/code/core/Mage/Core/Model/Option/ArrayInterface.php +++ b/app/code/core/Mage/Core/Model/Option/ArrayInterface.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Registry.php b/app/code/core/Mage/Core/Model/Registry.php index 66d425f18c833265f1d5defbbb2f90eab13a5f01..117978427521f32367859fad51cdaad7d9147774 100644 --- a/app/code/core/Mage/Core/Model/Registry.php +++ b/app/code/core/Mage/Core/Model/Registry.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Resource.php b/app/code/core/Mage/Core/Model/Resource.php index d91487da8863f2d43e8d4fcd20cb0e971d8fbbda..af3bcc3d7c3453a52d37a8f47f823974d32d5e34 100644 --- a/app/code/core/Mage/Core/Model/Resource.php +++ b/app/code/core/Mage/Core/Model/Resource.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Core_Model_Resource diff --git a/app/code/core/Mage/Core/Model/Resource/Abstract.php b/app/code/core/Mage/Core/Model/Resource/Abstract.php index 55859c63cf4a03b6380ac466c05859538b564eb0..e5db22d3cd23b3e2f1e32f380e6d946f65ba3373 100644 --- a/app/code/core/Mage/Core/Model/Resource/Abstract.php +++ b/app/code/core/Mage/Core/Model/Resource/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Resource/Cache.php b/app/code/core/Mage/Core/Model/Resource/Cache.php index 99cd6549c13b3c9c7a854c6639316faebb161637..85276e31ab21d7d593fa412a62fb93db8e23bd72 100644 --- a/app/code/core/Mage/Core/Model/Resource/Cache.php +++ b/app/code/core/Mage/Core/Model/Resource/Cache.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Resource/Config.php b/app/code/core/Mage/Core/Model/Resource/Config.php index 917b5829f7f5c62ddb2e9a4c122cfb7a337f180e..edd72944ba80ce83fe7edc3379c6362375add5a2 100644 --- a/app/code/core/Mage/Core/Model/Resource/Config.php +++ b/app/code/core/Mage/Core/Model/Resource/Config.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Resource/Config/Data.php b/app/code/core/Mage/Core/Model/Resource/Config/Data.php index c509e668302a1d5c236f9e638495ea2510597ddd..8b2b9b66fd8bc02825ce046e2d34ca0467c5675a 100644 --- a/app/code/core/Mage/Core/Model/Resource/Config/Data.php +++ b/app/code/core/Mage/Core/Model/Resource/Config/Data.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Resource/Config/Data/Collection.php b/app/code/core/Mage/Core/Model/Resource/Config/Data/Collection.php index 27fa60fccfa97b0b6519f86e34ee788034719df1..338c64cfc938751f0a75f51d9a921f51bc93d6e6 100644 --- a/app/code/core/Mage/Core/Model/Resource/Config/Data/Collection.php +++ b/app/code/core/Mage/Core/Model/Resource/Config/Data/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Resource/Db/Abstract.php b/app/code/core/Mage/Core/Model/Resource/Db/Abstract.php index fa632bbf358c564031390f9819688880a40acc1a..67d28b81eecd0ecf76c486edd776022ea216a25c 100644 --- a/app/code/core/Mage/Core/Model/Resource/Db/Abstract.php +++ b/app/code/core/Mage/Core/Model/Resource/Db/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Resource/Db/Collection/Abstract.php b/app/code/core/Mage/Core/Model/Resource/Db/Collection/Abstract.php index 4d93bab68a2d83675212f23bcf9962d09fda364d..5a0d9dc2c27da55c401ae0164f0abd98bbdd1f43 100644 --- a/app/code/core/Mage/Core/Model/Resource/Db/Collection/Abstract.php +++ b/app/code/core/Mage/Core/Model/Resource/Db/Collection/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Resource/Db/Profiler.php b/app/code/core/Mage/Core/Model/Resource/Db/Profiler.php index bdf3a57f7dc2e0e5444e188b7eb92ab78cb79912..00570592148cd7d143e324570454bbe8295142ef 100644 --- a/app/code/core/Mage/Core/Model/Resource/Db/Profiler.php +++ b/app/code/core/Mage/Core/Model/Resource/Db/Profiler.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Core_Model_Resource_Db_Profiler extends Varien_Db_Profiler diff --git a/app/code/core/Mage/Core/Model/Resource/Design.php b/app/code/core/Mage/Core/Model/Resource/Design.php index d0e6ee2a01c39cf1ae0b0713c1eab92c04ffad08..d68d0597ad04e519f428d15b6d60bf7e3b27d1f9 100644 --- a/app/code/core/Mage/Core/Model/Resource/Design.php +++ b/app/code/core/Mage/Core/Model/Resource/Design.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Resource/Design/Collection.php b/app/code/core/Mage/Core/Model/Resource/Design/Collection.php index 980df1627d9c0f32aad0db2914a105abecfec6f0..0eec4cf575596f54b3dea8449cd3a65b2f093a34 100644 --- a/app/code/core/Mage/Core/Model/Resource/Design/Collection.php +++ b/app/code/core/Mage/Core/Model/Resource/Design/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Resource/Email/Template.php b/app/code/core/Mage/Core/Model/Resource/Email/Template.php index 4cb82413413584c25e6eaee882e8989e6e78c4bd..6335711b667fd90984bf2594d6e99c5b7bf7d8f2 100644 --- a/app/code/core/Mage/Core/Model/Resource/Email/Template.php +++ b/app/code/core/Mage/Core/Model/Resource/Email/Template.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Resource/Email/Template/Collection.php b/app/code/core/Mage/Core/Model/Resource/Email/Template/Collection.php index 804588ee63a1639e48758b236e94799c0a0ccfea..e1d48d6a77c0e145079973f64ca1a541449c52e4 100644 --- a/app/code/core/Mage/Core/Model/Resource/Email/Template/Collection.php +++ b/app/code/core/Mage/Core/Model/Resource/Email/Template/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Resource/Entity/Abstract.php b/app/code/core/Mage/Core/Model/Resource/Entity/Abstract.php index 27e7c94d8a1cf2d008f0561414206a6f78a9168a..d47f12dfc6e313811faa8544b9ea1dbccd33c374 100644 --- a/app/code/core/Mage/Core/Model/Resource/Entity/Abstract.php +++ b/app/code/core/Mage/Core/Model/Resource/Entity/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Resource/Entity/Table.php b/app/code/core/Mage/Core/Model/Resource/Entity/Table.php index 990c39f9b7d7be6bc007a367aa62aff92d03e3c1..6e96872471113760f784bd4d728967e3d43890f8 100644 --- a/app/code/core/Mage/Core/Model/Resource/Entity/Table.php +++ b/app/code/core/Mage/Core/Model/Resource/Entity/Table.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Resource/File/Storage/Abstract.php b/app/code/core/Mage/Core/Model/Resource/File/Storage/Abstract.php index 3b61c666e99ab4c31303c7048dc4c38db857fa4c..1f2555553cbd765658fb3d42c106d6a367a395f3 100644 --- a/app/code/core/Mage/Core/Model/Resource/File/Storage/Abstract.php +++ b/app/code/core/Mage/Core/Model/Resource/File/Storage/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Resource/File/Storage/Database.php b/app/code/core/Mage/Core/Model/Resource/File/Storage/Database.php index b38454c684d2637adf244c3728224706e8785131..2efacbdefb59adb0df973340a12b4d2ba9b790b4 100644 --- a/app/code/core/Mage/Core/Model/Resource/File/Storage/Database.php +++ b/app/code/core/Mage/Core/Model/Resource/File/Storage/Database.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Resource/File/Storage/Directory/Database.php b/app/code/core/Mage/Core/Model/Resource/File/Storage/Directory/Database.php index 6f1c0d0c2b104130409140a748f439a60bc6cb8b..2dfc47bcfbdc67f478ff2d627bf5b544fa7f5320 100644 --- a/app/code/core/Mage/Core/Model/Resource/File/Storage/Directory/Database.php +++ b/app/code/core/Mage/Core/Model/Resource/File/Storage/Directory/Database.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Resource/File/Storage/File.php b/app/code/core/Mage/Core/Model/Resource/File/Storage/File.php index 5a0cbb3f994aeae48cb57971993410bffec54359..bd9fd0073a3e0383953ab7d8ac71f7137380a430 100644 --- a/app/code/core/Mage/Core/Model/Resource/File/Storage/File.php +++ b/app/code/core/Mage/Core/Model/Resource/File/Storage/File.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Resource/Flag.php b/app/code/core/Mage/Core/Model/Resource/Flag.php index dc5255556f6ec3e0240b2411d7b98a35e6d1a5e0..2a003626d320c24ea7463f29abc0407c4f2edf71 100644 --- a/app/code/core/Mage/Core/Model/Resource/Flag.php +++ b/app/code/core/Mage/Core/Model/Resource/Flag.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Resource/Helper/Abstract.php b/app/code/core/Mage/Core/Model/Resource/Helper/Abstract.php index 6c0672e76ae9a102897947b675fe40ab4926c455..d36ca5503147091311afd1c09c9fdee7c88b6596 100644 --- a/app/code/core/Mage/Core/Model/Resource/Helper/Abstract.php +++ b/app/code/core/Mage/Core/Model/Resource/Helper/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Resource/Helper/Mysql4.php b/app/code/core/Mage/Core/Model/Resource/Helper/Mysql4.php index 07da44cf8cbd7d9f2954008d1d7f21d1a07e17fd..7d2fc506a50d8302230ab3d2f5697bfe6ac5ca8f 100644 --- a/app/code/core/Mage/Core/Model/Resource/Helper/Mysql4.php +++ b/app/code/core/Mage/Core/Model/Resource/Helper/Mysql4.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Resource/Iterator.php b/app/code/core/Mage/Core/Model/Resource/Iterator.php index 7f62136ef6ecaac4963546facd4eb94d50d911c2..af7a7dba42390a8428fe03de0a111e070cf5c02f 100644 --- a/app/code/core/Mage/Core/Model/Resource/Iterator.php +++ b/app/code/core/Mage/Core/Model/Resource/Iterator.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Resource/Layout/Update.php b/app/code/core/Mage/Core/Model/Resource/Layout/Update.php index 360f8c006ca59ec4c7c8bf96c017defe3e5fc34c..f9875d088ed101cbbe2f285641f37a49fde1b674 100644 --- a/app/code/core/Mage/Core/Model/Resource/Layout/Update.php +++ b/app/code/core/Mage/Core/Model/Resource/Layout/Update.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Resource/Layout/Update/Collection.php b/app/code/core/Mage/Core/Model/Resource/Layout/Update/Collection.php index 3839fbc4cc86fb5983afad2f48d7532d77abbae0..e491c3303804fa39719924c4da5c01a86c459ffa 100644 --- a/app/code/core/Mage/Core/Model/Resource/Layout/Update/Collection.php +++ b/app/code/core/Mage/Core/Model/Resource/Layout/Update/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Resource/Resource.php b/app/code/core/Mage/Core/Model/Resource/Resource.php index 26116a25244c36b1001f217ebe7d1d4a1b62ac2d..9c4cf63668d543b0d7e17da2433177c76f6cc3e2 100644 --- a/app/code/core/Mage/Core/Model/Resource/Resource.php +++ b/app/code/core/Mage/Core/Model/Resource/Resource.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Resource/Session.php b/app/code/core/Mage/Core/Model/Resource/Session.php index a6ba16bfe388cb1a0fecb8ebfb1fb5c655087dfc..5f60c6fc66da6468d72086227fd1bc3681ad043e 100644 --- a/app/code/core/Mage/Core/Model/Resource/Session.php +++ b/app/code/core/Mage/Core/Model/Resource/Session.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Resource/Setup.php b/app/code/core/Mage/Core/Model/Resource/Setup.php index d669117096debe904ef2b459f7e2f1daa2101844..21523516e89f7d02cd7d168cbda96ffa304052ea 100644 --- a/app/code/core/Mage/Core/Model/Resource/Setup.php +++ b/app/code/core/Mage/Core/Model/Resource/Setup.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Resource/Setup/Migration.php b/app/code/core/Mage/Core/Model/Resource/Setup/Migration.php index 8db455028c7a3341932679e937eebb7011b4ece7..89c8646c323b9a7ffd8c39c3cad39ba5a283a1d4 100644 --- a/app/code/core/Mage/Core/Model/Resource/Setup/Migration.php +++ b/app/code/core/Mage/Core/Model/Resource/Setup/Migration.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Resource/Setup/Query/Modifier.php b/app/code/core/Mage/Core/Model/Resource/Setup/Query/Modifier.php index 3f081f4562ed683a15cb615f6d1222a117043b85..f32e9621f89265ce6f7bbf4126bf6329ddc47d0e 100644 --- a/app/code/core/Mage/Core/Model/Resource/Setup/Query/Modifier.php +++ b/app/code/core/Mage/Core/Model/Resource/Setup/Query/Modifier.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Resource/Store.php b/app/code/core/Mage/Core/Model/Resource/Store.php index 525a93176833f2643f07a7989e3c8d464c2b1966..1de9afb624908135d1ad61483cfd4c446011dc33 100644 --- a/app/code/core/Mage/Core/Model/Resource/Store.php +++ b/app/code/core/Mage/Core/Model/Resource/Store.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Resource/Store/Collection.php b/app/code/core/Mage/Core/Model/Resource/Store/Collection.php index 00062ca648fa829ec575101ca5ad6bfbfe3326a8..a2afb2193abecd6c007b4a2e5091f2979e9b08ea 100644 --- a/app/code/core/Mage/Core/Model/Resource/Store/Collection.php +++ b/app/code/core/Mage/Core/Model/Resource/Store/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Resource/Store/Group.php b/app/code/core/Mage/Core/Model/Resource/Store/Group.php index 416bd4fbe91efcbfdbce6202a0aaefad6ab535c0..1e612e8f06b4b743f9aa361e8615f68b1ac94489 100644 --- a/app/code/core/Mage/Core/Model/Resource/Store/Group.php +++ b/app/code/core/Mage/Core/Model/Resource/Store/Group.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Resource/Store/Group/Collection.php b/app/code/core/Mage/Core/Model/Resource/Store/Group/Collection.php index 0ce13d08abcee24e8e54799e31e494c26ce4aca3..3f434436e918d342389d691a466a0ff89e7ff838 100644 --- a/app/code/core/Mage/Core/Model/Resource/Store/Group/Collection.php +++ b/app/code/core/Mage/Core/Model/Resource/Store/Group/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Resource/Theme.php b/app/code/core/Mage/Core/Model/Resource/Theme.php index 55df9d4bbb5107ef0def148ebdc92a3544175efa..4dd15e362aeb4c09ecb46067ec551fc62caac5fc 100644 --- a/app/code/core/Mage/Core/Model/Resource/Theme.php +++ b/app/code/core/Mage/Core/Model/Resource/Theme.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Resource/Theme/Collection.php b/app/code/core/Mage/Core/Model/Resource/Theme/Collection.php index f78b754f4f503b91d2671ac117e28de54b9696fe..d6cf2ed12c434a6314a47c5ef970a539f51f1ed8 100644 --- a/app/code/core/Mage/Core/Model/Resource/Theme/Collection.php +++ b/app/code/core/Mage/Core/Model/Resource/Theme/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Resource/Transaction.php b/app/code/core/Mage/Core/Model/Resource/Transaction.php index a7bb7146bcdd45b48b0835158f745f8318fb4856..bbbca0abbf8fed233606a30caadf3e1e5b26a9e1 100644 --- a/app/code/core/Mage/Core/Model/Resource/Transaction.php +++ b/app/code/core/Mage/Core/Model/Resource/Transaction.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Resource/Transaction/Factory.php b/app/code/core/Mage/Core/Model/Resource/Transaction/Factory.php index d90a3cf390c68f6319c0fe5c51cac596bd54eb08..671f89be2d02d056f65ed4a55ee59e255c3e978f 100644 --- a/app/code/core/Mage/Core/Model/Resource/Transaction/Factory.php +++ b/app/code/core/Mage/Core/Model/Resource/Transaction/Factory.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Resource/Translate.php b/app/code/core/Mage/Core/Model/Resource/Translate.php index 18d2fb075e90e255e49ddb8c95b9d4da7c8bd5a7..ed52de131ca38d5cf665dcb385dca8dec8c50d8e 100644 --- a/app/code/core/Mage/Core/Model/Resource/Translate.php +++ b/app/code/core/Mage/Core/Model/Resource/Translate.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Resource/Translate/String.php b/app/code/core/Mage/Core/Model/Resource/Translate/String.php index d5d081393ef44c2691dc96bc07cc1d714faeec30..3a00aa01aeff9f00f4e3e12da99ed7f036e90cb7 100644 --- a/app/code/core/Mage/Core/Model/Resource/Translate/String.php +++ b/app/code/core/Mage/Core/Model/Resource/Translate/String.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Resource/Type/Abstract.php b/app/code/core/Mage/Core/Model/Resource/Type/Abstract.php index e6d740e66e8374303429881bf433b5c0257282ff..0cd70fbde124ba9580c1ab360f55a877a7c809c9 100644 --- a/app/code/core/Mage/Core/Model/Resource/Type/Abstract.php +++ b/app/code/core/Mage/Core/Model/Resource/Type/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Resource/Type/Db.php b/app/code/core/Mage/Core/Model/Resource/Type/Db.php index 98b8ae2db2cd6ca593f6c97eaae901f8ca8acdf5..06df852c98f7093a9bd30ad9ccb01937fdd12c01 100644 --- a/app/code/core/Mage/Core/Model/Resource/Type/Db.php +++ b/app/code/core/Mage/Core/Model/Resource/Type/Db.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Resource/Type/Db/Mysqli.php b/app/code/core/Mage/Core/Model/Resource/Type/Db/Mysqli.php index 8455e957144a73a166c5ef3bbbcb3ac4003118dd..496c2421d38b7c4c765a596f108db78c01cd27ff 100644 --- a/app/code/core/Mage/Core/Model/Resource/Type/Db/Mysqli.php +++ b/app/code/core/Mage/Core/Model/Resource/Type/Db/Mysqli.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Resource/Type/Db/Mysqli/Setup.php b/app/code/core/Mage/Core/Model/Resource/Type/Db/Mysqli/Setup.php index 488fa19d7764f1a3c6ea83d5f8c5050af8394e68..7bea5d461437dd620278dfe4b6f0951ec08cdef0 100644 --- a/app/code/core/Mage/Core/Model/Resource/Type/Db/Mysqli/Setup.php +++ b/app/code/core/Mage/Core/Model/Resource/Type/Db/Mysqli/Setup.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Resource/Type/Db/Pdo/Mysql.php b/app/code/core/Mage/Core/Model/Resource/Type/Db/Pdo/Mysql.php index ae22807a9144660999f16b03b728f8a327e2c04f..20dca5c6cb84f0679fb60681d561acb8ab53247e 100644 --- a/app/code/core/Mage/Core/Model/Resource/Type/Db/Pdo/Mysql.php +++ b/app/code/core/Mage/Core/Model/Resource/Type/Db/Pdo/Mysql.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Resource/Url/Rewrite.php b/app/code/core/Mage/Core/Model/Resource/Url/Rewrite.php index 4bfe67936ae4e7be750fe43346a11073fc2f66b4..47829c24c8c68b4888927a919f1cbd3feed5a6b1 100644 --- a/app/code/core/Mage/Core/Model/Resource/Url/Rewrite.php +++ b/app/code/core/Mage/Core/Model/Resource/Url/Rewrite.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Resource/Url/Rewrite/Collection.php b/app/code/core/Mage/Core/Model/Resource/Url/Rewrite/Collection.php index 5fd2914d0cc330d7e5b3a9092a87c4ad2524f72d..5359e815b2f2a83cc23f9983754f977200482676 100644 --- a/app/code/core/Mage/Core/Model/Resource/Url/Rewrite/Collection.php +++ b/app/code/core/Mage/Core/Model/Resource/Url/Rewrite/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Resource/Variable.php b/app/code/core/Mage/Core/Model/Resource/Variable.php index 49f7e27df17f26bbdaa0cf05c28124e263d58f66..83d461b374e1fc40ab80c245ae69616009b44f22 100644 --- a/app/code/core/Mage/Core/Model/Resource/Variable.php +++ b/app/code/core/Mage/Core/Model/Resource/Variable.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Resource/Variable/Collection.php b/app/code/core/Mage/Core/Model/Resource/Variable/Collection.php index f0fb09c19552576a384ead68b37d9abda115583b..7df155ce1ef074c7bfc0396b58212b306212cb26 100644 --- a/app/code/core/Mage/Core/Model/Resource/Variable/Collection.php +++ b/app/code/core/Mage/Core/Model/Resource/Variable/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Resource/Website.php b/app/code/core/Mage/Core/Model/Resource/Website.php index f3f7fac8c3d74e7bf1bfeb5aadfaf5ed4aea7c4a..adea3e08b0e83804430d2ea392f49d6d693a59b1 100644 --- a/app/code/core/Mage/Core/Model/Resource/Website.php +++ b/app/code/core/Mage/Core/Model/Resource/Website.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Resource/Website/Collection.php b/app/code/core/Mage/Core/Model/Resource/Website/Collection.php index 96ee07d226e0d2ec5e4073f0d6bfdb2c8deb69b8..192c5fb346097395b10a7edb36f4cfa377ce958f 100644 --- a/app/code/core/Mage/Core/Model/Resource/Website/Collection.php +++ b/app/code/core/Mage/Core/Model/Resource/Website/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Resource/Website/Grid/Collection.php b/app/code/core/Mage/Core/Model/Resource/Website/Grid/Collection.php index 0e6a37feffe3ebaa27545b7ebe3c147da515ca98..966269573c2c2f10ed429e609bb31cb9a493c154 100644 --- a/app/code/core/Mage/Core/Model/Resource/Website/Grid/Collection.php +++ b/app/code/core/Mage/Core/Model/Resource/Website/Grid/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Session.php b/app/code/core/Mage/Core/Model/Session.php index 598ee5eecc0c271cb792c9e7ed50d4f352deffd8..fc579ab2475d326a7559dec51ef24df26766234e 100644 --- a/app/code/core/Mage/Core/Model/Session.php +++ b/app/code/core/Mage/Core/Model/Session.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Session/Abstract.php b/app/code/core/Mage/Core/Model/Session/Abstract.php index 108d63efb67f2c61e86368ba7f1a9879f6831b39..0d174fe5cefdee0dd127aba3b9cdcf4eb88096ad 100644 --- a/app/code/core/Mage/Core/Model/Session/Abstract.php +++ b/app/code/core/Mage/Core/Model/Session/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Session/Exception.php b/app/code/core/Mage/Core/Model/Session/Exception.php index d2d7d66a165660d01db4cec01f85eb5d94b74a90..a1ef0490f4d8b6fe18b8b2bd5f14c020d08cb917 100644 --- a/app/code/core/Mage/Core/Model/Session/Exception.php +++ b/app/code/core/Mage/Core/Model/Session/Exception.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/ShellAbstract.php b/app/code/core/Mage/Core/Model/ShellAbstract.php index 6816f0ede35ce8508157888a60122cc47faabfa6..a24fe3826b3fa14a0fda1b025fed4c4cfa5c31fc 100644 --- a/app/code/core/Mage/Core/Model/ShellAbstract.php +++ b/app/code/core/Mage/Core/Model/ShellAbstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Shell - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Source/Email/Variables.php b/app/code/core/Mage/Core/Model/Source/Email/Variables.php index ee4d8a86b297fb1afd3676a4f3fd50d9a80109f1..f25b36150bc14717d02eac48a8d0ddf42de24083 100644 --- a/app/code/core/Mage/Core/Model/Source/Email/Variables.php +++ b/app/code/core/Mage/Core/Model/Source/Email/Variables.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Source/Urlrewrite/Options.php b/app/code/core/Mage/Core/Model/Source/Urlrewrite/Options.php index def8f896c340f62f1dc1e22638767eb258281c15..810fc6ec267d5ed7a8f2f8e762795c961c336c25 100644 --- a/app/code/core/Mage/Core/Model/Source/Urlrewrite/Options.php +++ b/app/code/core/Mage/Core/Model/Source/Urlrewrite/Options.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Source/Urlrewrite/Types.php b/app/code/core/Mage/Core/Model/Source/Urlrewrite/Types.php index e6bad520a4aeb0d40470de49c30576747a1aa9f5..7e39ae7805315423b88bcba8c9340b352140d6f9 100644 --- a/app/code/core/Mage/Core/Model/Source/Urlrewrite/Types.php +++ b/app/code/core/Mage/Core/Model/Source/Urlrewrite/Types.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Store.php b/app/code/core/Mage/Core/Model/Store.php index f1e6a4e5e17dd260765afb58a816ab9b8876728c..cf27b851a9a1d183e58ac10a57c2e50498399456 100644 --- a/app/code/core/Mage/Core/Model/Store.php +++ b/app/code/core/Mage/Core/Model/Store.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Store/Config.php b/app/code/core/Mage/Core/Model/Store/Config.php index 66e9e1cf6ca8fe291b2a24daa8727a1e1d1f17e7..05af7ea3fda957d7be234c0e8f256a1bd98bde9b 100644 --- a/app/code/core/Mage/Core/Model/Store/Config.php +++ b/app/code/core/Mage/Core/Model/Store/Config.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Store/Exception.php b/app/code/core/Mage/Core/Model/Store/Exception.php index d75b9d9f3fe9808c77f20a18d22368eeff89cf12..12df732bb7734bbfbbc30c033b312dd81b7f06fa 100644 --- a/app/code/core/Mage/Core/Model/Store/Exception.php +++ b/app/code/core/Mage/Core/Model/Store/Exception.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Store/Group.php b/app/code/core/Mage/Core/Model/Store/Group.php index f7d2a26f443e562d83f42b33092b7cc7556b6c5f..f53b7712b0627fa951d4e7e1e9e8289369554f68 100644 --- a/app/code/core/Mage/Core/Model/Store/Group.php +++ b/app/code/core/Mage/Core/Model/Store/Group.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Store/Group/Factory.php b/app/code/core/Mage/Core/Model/Store/Group/Factory.php index 505221f74fb2f67ef9af4bf5ce79241567b00f47..fb01d21c63fd8be1f8301cfa8891f4685e785fd4 100644 --- a/app/code/core/Mage/Core/Model/Store/Group/Factory.php +++ b/app/code/core/Mage/Core/Model/Store/Group/Factory.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/System/Store.php b/app/code/core/Mage/Core/Model/System/Store.php index a2f9fa428d6bfb128593b961a747cfdab9b04c60..18390ec377e092b81058e24e2c759db16d621149 100644 --- a/app/code/core/Mage/Core/Model/System/Store.php +++ b/app/code/core/Mage/Core/Model/System/Store.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Template.php b/app/code/core/Mage/Core/Model/Template.php index 800669fdcbe646c685b9a0b65f5b64cf7fc63bfb..ba3b122b21e135ed31cc2b73284143172fa00d38 100644 --- a/app/code/core/Mage/Core/Model/Template.php +++ b/app/code/core/Mage/Core/Model/Template.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Theme.php b/app/code/core/Mage/Core/Model/Theme.php index 1efb5dbfc622baba2785cb8174a696d1f362884b..58d18249ee98e398d85aa5b0a516f18e6a18bd01 100644 --- a/app/code/core/Mage/Core/Model/Theme.php +++ b/app/code/core/Mage/Core/Model/Theme.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Theme/Collection.php b/app/code/core/Mage/Core/Model/Theme/Collection.php index e42287fd35f477713a6e0cdcbcbf78f93e8def54..b7bc7b862aeea3d58db3a4a7a197afcab0f237d5 100644 --- a/app/code/core/Mage/Core/Model/Theme/Collection.php +++ b/app/code/core/Mage/Core/Model/Theme/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ @@ -254,7 +254,7 @@ class Mage_Core_Model_Theme_Collection extends Varien_Data_Collection 'preview_image' => $media['preview_image'] ? $media['preview_image'] : null, 'magento_version_from' => $themeVersions['from'], 'magento_version_to' => $themeVersions['to'], - 'is_featured' => $themeConfig->getFeatured($packageCode, $themeCode), + 'is_featured' => $themeConfig->isFeatured($packageCode, $themeCode), 'parent_theme_path' => $parentTheme ? implode('/', $parentTheme) : null ); } diff --git a/app/code/core/Mage/Core/Model/Theme/Factory.php b/app/code/core/Mage/Core/Model/Theme/Factory.php index d108ce8e908db3cb21392d6f8216ac33999afdcd..84b695a375d315a76e1bb2597c17de70d2aafe82 100644 --- a/app/code/core/Mage/Core/Model/Theme/Factory.php +++ b/app/code/core/Mage/Core/Model/Theme/Factory.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Theme/Registration.php b/app/code/core/Mage/Core/Model/Theme/Registration.php index cebc813da5ac71db95ca464c24dffcb9b4854ada..4ba0e34826e0b340e400b359f51ee19467f7ad5d 100644 --- a/app/code/core/Mage/Core/Model/Theme/Registration.php +++ b/app/code/core/Mage/Core/Model/Theme/Registration.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Theme/Service.php b/app/code/core/Mage/Core/Model/Theme/Service.php index b458d7a2a7e0ac65e0ae9bd63137471b67b8ee2d..09dc25e9adaa6fb72370020757da8ec414547ab5 100644 --- a/app/code/core/Mage/Core/Model/Theme/Service.php +++ b/app/code/core/Mage/Core/Model/Theme/Service.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Theme/Validator.php b/app/code/core/Mage/Core/Model/Theme/Validator.php index 7b2cae137f858f70d1461d46965e86641c891cb6..1dd3234769f47f86f98398eb5f46201654120000 100644 --- a/app/code/core/Mage/Core/Model/Theme/Validator.php +++ b/app/code/core/Mage/Core/Model/Theme/Validator.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Core_Model_Theme_Validator diff --git a/app/code/core/Mage/Core/Model/Translate.php b/app/code/core/Mage/Core/Model/Translate.php index 1033f449d38b44cc4a6ef0ebe172cd1ee459581d..9b149871abb4dfce33b6f248a285e621e5235c8e 100644 --- a/app/code/core/Mage/Core/Model/Translate.php +++ b/app/code/core/Mage/Core/Model/Translate.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Translate/Expr.php b/app/code/core/Mage/Core/Model/Translate/Expr.php index e8c56d310215965ad73aa939c70392787f8df83f..081dbe8358826d31f20500041ae57c44a5c4c50b 100644 --- a/app/code/core/Mage/Core/Model/Translate/Expr.php +++ b/app/code/core/Mage/Core/Model/Translate/Expr.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Translate/Inline.php b/app/code/core/Mage/Core/Model/Translate/Inline.php index feb22f8c69c7aff8c66fd0f641972e62a6855ef0..6c2d3724a54518a779edcce566e9966150b10b29 100644 --- a/app/code/core/Mage/Core/Model/Translate/Inline.php +++ b/app/code/core/Mage/Core/Model/Translate/Inline.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Translate/String.php b/app/code/core/Mage/Core/Model/Translate/String.php index 72187e310b9a5615e02ac13355b52abf7dd23201..cacf8b8b41f4d32174aa03aa859590a8f2e347c5 100644 --- a/app/code/core/Mage/Core/Model/Translate/String.php +++ b/app/code/core/Mage/Core/Model/Translate/String.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Url.php b/app/code/core/Mage/Core/Model/Url.php index c5ed7f7020a8d144509719740bf460d7a7338d0c..66b957e810b18f1f1e31e2b0d3bfebd1c11d67e6 100644 --- a/app/code/core/Mage/Core/Model/Url.php +++ b/app/code/core/Mage/Core/Model/Url.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ @@ -364,6 +364,7 @@ class Mage_Core_Model_Url extends Varien_Object */ public function getBaseUrl($params = array()) { + $currentType = $this->getType(); if (isset($params['_store'])) { $this->setStore($params['_store']); } @@ -382,7 +383,9 @@ class Mage_Core_Model_Url extends Varien_Object $this->setType(Mage_Core_Model_Store::URL_TYPE_DIRECT_LINK); } - return $this->getStore()->getBaseUrl($this->getType(), $this->isSecure()); + $result = $this->getStore()->getBaseUrl($this->getType(), $this->isSecure()); + $this->setType($currentType); + return $result; } /** diff --git a/app/code/core/Mage/Core/Model/Url/Rewrite.php b/app/code/core/Mage/Core/Model/Url/Rewrite.php index aa1fc5915683ca4606b159cc2691a119e4e90bec..0a9edf042ca9c36688e14ab03080a917ffd5fa13 100644 --- a/app/code/core/Mage/Core/Model/Url/Rewrite.php +++ b/app/code/core/Mage/Core/Model/Url/Rewrite.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Url/RewriteFactory.php b/app/code/core/Mage/Core/Model/Url/RewriteFactory.php index 046c070d01c785fc4e4d1d51e590927577f50413..a67be9ab1b56b488ea4936688ae1a649ec284d98 100644 --- a/app/code/core/Mage/Core/Model/Url/RewriteFactory.php +++ b/app/code/core/Mage/Core/Model/Url/RewriteFactory.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Url/Validator.php b/app/code/core/Mage/Core/Model/Url/Validator.php index 222e156ed337572542a664f63ce1f0ce125cae50..8eb5111ea07456829747b0a4bc8c3be24a51ca43 100644 --- a/app/code/core/Mage/Core/Model/Url/Validator.php +++ b/app/code/core/Mage/Core/Model/Url/Validator.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Validator/Factory.php b/app/code/core/Mage/Core/Model/Validator/Factory.php index 916db82685510a51b44a2495bc40161e4b38d81e..051de560fe9b42e454ff1feb2c46679b0f1b8f7f 100644 --- a/app/code/core/Mage/Core/Model/Validator/Factory.php +++ b/app/code/core/Mage/Core/Model/Validator/Factory.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Core_Model_Validator_Factory diff --git a/app/code/core/Mage/Core/Model/Variable.php b/app/code/core/Mage/Core/Model/Variable.php index 4c8ad25e4f97fc5576723181749c501fd6f5bceb..4d183e7db619554ce49a42b8560cb08e5a7afeaa 100644 --- a/app/code/core/Mage/Core/Model/Variable.php +++ b/app/code/core/Mage/Core/Model/Variable.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Variable/Config.php b/app/code/core/Mage/Core/Model/Variable/Config.php index 41632382db1b209d58f4fd948d314eb275befdda..c1144dee217864bc7e93b7040c9ce5c8c2a7fb8c 100644 --- a/app/code/core/Mage/Core/Model/Variable/Config.php +++ b/app/code/core/Mage/Core/Model/Variable/Config.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Variable/Observer.php b/app/code/core/Mage/Core/Model/Variable/Observer.php index 8f9a56bd8bf9116645929ab027b1ad6254fde0b9..88017c39fe4d671d2a2c150c2e07db9e0b081fd0 100644 --- a/app/code/core/Mage/Core/Model/Variable/Observer.php +++ b/app/code/core/Mage/Core/Model/Variable/Observer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Website.php b/app/code/core/Mage/Core/Model/Website.php index bf9b2422841a20f8390802d22fa7c3559de2ac90..8c2b6f4a238a42885a491efa287f79a0c3d8b16a 100644 --- a/app/code/core/Mage/Core/Model/Website.php +++ b/app/code/core/Mage/Core/Model/Website.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Model/Website/Factory.php b/app/code/core/Mage/Core/Model/Website/Factory.php index b0fa3759be96dfcb6c24f30c50490ae1f0ebbb1b..a90f5a5d1c5b54d6d24aee38c41e60095a45da8d 100644 --- a/app/code/core/Mage/Core/Model/Website/Factory.php +++ b/app/code/core/Mage/Core/Model/Website/Factory.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/Service/ServiceAbstract.php b/app/code/core/Mage/Core/Service/ServiceAbstract.php index d82baa5160febe52a29828cd249136094c2b2480..007c9547277079847a7f5b2b1250aca351a26dd2 100644 --- a/app/code/core/Mage/Core/Service/ServiceAbstract.php +++ b/app/code/core/Mage/Core/Service/ServiceAbstract.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ abstract class Mage_Core_Service_ServiceAbstract diff --git a/app/code/core/Mage/Core/controllers/AjaxController.php b/app/code/core/Mage/Core/controllers/AjaxController.php index 7022c4bf5405f2d5663e2f847bb4adb0268c9934..e9e4610ffa2d9dbee1188e99532d4ed085884cfc 100644 --- a/app/code/core/Mage/Core/controllers/AjaxController.php +++ b/app/code/core/Mage/Core/controllers/AjaxController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/controllers/IndexController.php b/app/code/core/Mage/Core/controllers/IndexController.php index 4289487f4cd4ee5c7e9bf9ebf1efc89140df09ed..50a014e24863417f29ebbb9d870144e8b5238516 100644 --- a/app/code/core/Mage/Core/controllers/IndexController.php +++ b/app/code/core/Mage/Core/controllers/IndexController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/data/core_setup/data-upgrade-1.6.0.3-1.6.0.4.php b/app/code/core/Mage/Core/data/core_setup/data-upgrade-1.6.0.3-1.6.0.4.php index 3528d655e0b397f08fcd13f2db79ebef0451d897..c811674f73d93d336464085f3bd0dcc515af0d3b 100644 --- a/app/code/core/Mage/Core/data/core_setup/data-upgrade-1.6.0.3-1.6.0.4.php +++ b/app/code/core/Mage/Core/data/core_setup/data-upgrade-1.6.0.3-1.6.0.4.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/data/core_setup/data-upgrade-1.6.0.4-1.6.0.5.php b/app/code/core/Mage/Core/data/core_setup/data-upgrade-1.6.0.4-1.6.0.5.php index 62b8caa946786c5f111308ed7190527161fc8cad..5dee185f2468fd88fe87b7113e59e108e6f9cdc3 100644 --- a/app/code/core/Mage/Core/data/core_setup/data-upgrade-1.6.0.4-1.6.0.5.php +++ b/app/code/core/Mage/Core/data/core_setup/data-upgrade-1.6.0.4-1.6.0.5.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/data/core_setup/data-upgrade-1.6.0.5-1.6.0.6.php b/app/code/core/Mage/Core/data/core_setup/data-upgrade-1.6.0.5-1.6.0.6.php index a9796e4f54e948026d2c524c8289982129a0f740..69f7ac076776857162064962106a1d3ea30b0731 100644 --- a/app/code/core/Mage/Core/data/core_setup/data-upgrade-1.6.0.5-1.6.0.6.php +++ b/app/code/core/Mage/Core/data/core_setup/data-upgrade-1.6.0.5-1.6.0.6.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/etc/config.xml b/app/code/core/Mage/Core/etc/config.xml index 46d1e2fb4f541559f72bea62d39f063be9de6df3..5479ba8f01c63fe1acdec386048845ece197618e 100644 --- a/app/code/core/Mage/Core/etc/config.xml +++ b/app/code/core/Mage/Core/etc/config.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> @@ -107,6 +107,12 @@ <Magento_Data_Structure> <shared>0</shared> </Magento_Data_Structure> + <Magento_Filesystem> + <shared>0</shared> + <parameters> + <adapter>Magento_Filesystem_Adapter_Local</adapter> + </parameters> + </Magento_Filesystem> </di> </global> <frontend> diff --git a/app/code/core/Mage/Core/etc/jstranslator.xml b/app/code/core/Mage/Core/etc/jstranslator.xml index ac5513e7c21cbbed137e83003129c51f1222a276..ee51b61886c02053540e3a96a3a786f5b9441aec 100644 --- a/app/code/core/Mage/Core/etc/jstranslator.xml +++ b/app/code/core/Mage/Core/etc/jstranslator.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Core/functions.php b/app/code/core/Mage/Core/functions.php index a9bac47d07e8c76addcaf3ebe0d4b4ad66ae9d2c..79d98305ff84e1aed193b6e22645ba1065a7803d 100644 --- a/app/code/core/Mage/Core/functions.php +++ b/app/code/core/Mage/Core/functions.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/sql/core_setup/install-1.6.0.0.php b/app/code/core/Mage/Core/sql/core_setup/install-1.6.0.0.php index 3bf7910f2fcdc718216472c7e4d40318a8876f06..46ec7e4f22ce4d692b2c1ac90a7892a942a4fcbc 100644 --- a/app/code/core/Mage/Core/sql/core_setup/install-1.6.0.0.php +++ b/app/code/core/Mage/Core/sql/core_setup/install-1.6.0.0.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/sql/core_setup/mysql4-data-upgrade-1.6.0.2-1.6.0.3.php b/app/code/core/Mage/Core/sql/core_setup/mysql4-data-upgrade-1.6.0.2-1.6.0.3.php index 02401906068dec9120da68393e822ebe9438dc80..ecc17e77068339d36d262af6928762118d739b5b 100644 --- a/app/code/core/Mage/Core/sql/core_setup/mysql4-data-upgrade-1.6.0.2-1.6.0.3.php +++ b/app/code/core/Mage/Core/sql/core_setup/mysql4-data-upgrade-1.6.0.2-1.6.0.3.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/sql/core_setup/upgrade-1.6.0.1-1.6.0.2.php b/app/code/core/Mage/Core/sql/core_setup/upgrade-1.6.0.1-1.6.0.2.php index 5b030c6a5fc36dac4fba194a379aff63b242abe1..18f031c7c3db761689470b98507224246d372ef7 100644 --- a/app/code/core/Mage/Core/sql/core_setup/upgrade-1.6.0.1-1.6.0.2.php +++ b/app/code/core/Mage/Core/sql/core_setup/upgrade-1.6.0.1-1.6.0.2.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/sql/core_setup/upgrade-1.6.0.2-1.6.0.3.php b/app/code/core/Mage/Core/sql/core_setup/upgrade-1.6.0.2-1.6.0.3.php index 2ac15dcdd3a8db756e09df63c59658ec7c9a3a8a..053d505f16d363c98e632cd817f6680143bd019e 100644 --- a/app/code/core/Mage/Core/sql/core_setup/upgrade-1.6.0.2-1.6.0.3.php +++ b/app/code/core/Mage/Core/sql/core_setup/upgrade-1.6.0.2-1.6.0.3.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/sql/core_setup/upgrade-1.6.0.3-1.6.0.4.php b/app/code/core/Mage/Core/sql/core_setup/upgrade-1.6.0.3-1.6.0.4.php index 0bac6fceaa05e258ecbdfe7a7da8fb80634b42af..27181c40b9515a4a9bd3ee62043c688d5901770b 100644 --- a/app/code/core/Mage/Core/sql/core_setup/upgrade-1.6.0.3-1.6.0.4.php +++ b/app/code/core/Mage/Core/sql/core_setup/upgrade-1.6.0.3-1.6.0.4.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/sql/core_setup/upgrade-1.6.0.5-1.6.0.6.php b/app/code/core/Mage/Core/sql/core_setup/upgrade-1.6.0.5-1.6.0.6.php index 27477bf75e9c847f36570836b4cd6192cbb6b662..a0b91742d74f7785ab25b2f2bf99ab1b72381139 100644 --- a/app/code/core/Mage/Core/sql/core_setup/upgrade-1.6.0.5-1.6.0.6.php +++ b/app/code/core/Mage/Core/sql/core_setup/upgrade-1.6.0.5-1.6.0.6.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Core/view/adminhtml/prototype/magento.css b/app/code/core/Mage/Core/view/adminhtml/prototype/magento.css index 973fee9ec9f5501e0414ddb18a9bafe896670a6f..3a56677fbb66d51ae49be1dc435d1dca897f0ef7 100644 --- a/app/code/core/Mage/Core/view/adminhtml/prototype/magento.css +++ b/app/code/core/Mage/Core/view/adminhtml/prototype/magento.css @@ -19,7 +19,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Core/view/frontend/formkey.phtml b/app/code/core/Mage/Core/view/frontend/formkey.phtml index 04ddcdb09fc75b6f5f59ac235352b21ff8bd100a..1d030f4ca7ebd6c528b84d3a8cecd1d5726dd7e3 100644 --- a/app/code/core/Mage/Core/view/frontend/formkey.phtml +++ b/app/code/core/Mage/Core/view/frontend/formkey.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Core/view/frontend/layout.xml b/app/code/core/Mage/Core/view/frontend/layout.xml index 487721f94f93fb7d60f0a9053f79cc5e260f22c3..6e5ee4f4f83e49eb10b9de34b65ab3465a247b74 100644 --- a/app/code/core/Mage/Core/view/frontend/layout.xml +++ b/app/code/core/Mage/Core/view/frontend/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Core/view/frontend/link.phtml b/app/code/core/Mage/Core/view/frontend/link.phtml index 0b87d3f73efa37749f3128009e8744da64262b22..c5953d24181d08f0aa41012447a5d691a2f9f13f 100644 --- a/app/code/core/Mage/Core/view/frontend/link.phtml +++ b/app/code/core/Mage/Core/view/frontend/link.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Core/view/frontend/messages.phtml b/app/code/core/Mage/Core/view/frontend/messages.phtml index 5b72a09c18a932b64975bce287ef5fc7896c006a..3d81757eec84fe55b6d0485bb39682f472ad1dc5 100644 --- a/app/code/core/Mage/Core/view/frontend/messages.phtml +++ b/app/code/core/Mage/Core/view/frontend/messages.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Core/view/frontend/prototype/magento.css b/app/code/core/Mage/Core/view/frontend/prototype/magento.css index 38b8b82e8c425e02c3a183e543e90bf6af9b8f40..57e2c4a5b38e9e771b4ecc785844dd52f94d06eb 100644 --- a/app/code/core/Mage/Core/view/frontend/prototype/magento.css +++ b/app/code/core/Mage/Core/view/frontend/prototype/magento.css @@ -19,7 +19,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Cron/Exception.php b/app/code/core/Mage/Cron/Exception.php index a5a023ed5fc0cc4310cc342c228d32437a7d0ad6..f1f3a6e3ac2a47dd190717fc6f2f9d2d9cf1fbd9 100644 --- a/app/code/core/Mage/Cron/Exception.php +++ b/app/code/core/Mage/Cron/Exception.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Cron - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Cron/Helper/Data.php b/app/code/core/Mage/Cron/Helper/Data.php index bcd2058993caa1643ddd7c1145306a4bbd1e8c1d..f2add92c2d815b74e3e2442fb8b2ae823a13e71b 100644 --- a/app/code/core/Mage/Cron/Helper/Data.php +++ b/app/code/core/Mage/Cron/Helper/Data.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Cron - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Cron/Model/Config/Backend/Product/Alert.php b/app/code/core/Mage/Cron/Model/Config/Backend/Product/Alert.php index f8fc21408885079183951cdabe3cad58d882701b..5ec01d2900acbcaafd945a9469163533363644ac 100644 --- a/app/code/core/Mage/Cron/Model/Config/Backend/Product/Alert.php +++ b/app/code/core/Mage/Cron/Model/Config/Backend/Product/Alert.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Cron - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Cron/Model/Config/Backend/Sitemap.php b/app/code/core/Mage/Cron/Model/Config/Backend/Sitemap.php index 8d1df8ad4827c3ffcc7e8da1e176efa5a7956c94..05d95e9cf81e8308841c3359cf482a7b3e93c10b 100644 --- a/app/code/core/Mage/Cron/Model/Config/Backend/Sitemap.php +++ b/app/code/core/Mage/Cron/Model/Config/Backend/Sitemap.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Cron - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Cron/Model/Config/Source/Frequency.php b/app/code/core/Mage/Cron/Model/Config/Source/Frequency.php index ec95790516e757176364c20a9cef2f6d444c2415..5828fc2e231c81408ae92f7975c041313397f81e 100644 --- a/app/code/core/Mage/Cron/Model/Config/Source/Frequency.php +++ b/app/code/core/Mage/Cron/Model/Config/Source/Frequency.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Cron - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Cron/Model/Observer.php b/app/code/core/Mage/Cron/Model/Observer.php index 09b72fbe988a239ab19b53213ef3a2b90c6d9a9a..01ae53307b5d535e300ea0f1404a1c10771a10fa 100644 --- a/app/code/core/Mage/Cron/Model/Observer.php +++ b/app/code/core/Mage/Cron/Model/Observer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Cron - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Cron/Model/Resource/Schedule.php b/app/code/core/Mage/Cron/Model/Resource/Schedule.php index 6592e3419e30d47017e3368dc82c585493d3fffc..b70258aba64b7905dbfdf165c1a223b4564f70d6 100755 --- a/app/code/core/Mage/Cron/Model/Resource/Schedule.php +++ b/app/code/core/Mage/Cron/Model/Resource/Schedule.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Cron - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Cron/Model/Resource/Schedule/Collection.php b/app/code/core/Mage/Cron/Model/Resource/Schedule/Collection.php index 517dfec75be889ac596300784c81d333e0a5e4e1..b075b65a1dd60fb5c5c06ca8c742dbd6ffed78bf 100755 --- a/app/code/core/Mage/Cron/Model/Resource/Schedule/Collection.php +++ b/app/code/core/Mage/Cron/Model/Resource/Schedule/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Cron - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Cron/Model/Schedule.php b/app/code/core/Mage/Cron/Model/Schedule.php index b5e30dfcf56fade11068b3a2576fb00fa2702031..ccc87793f781d0ae21e200afbd42c48756c3211c 100644 --- a/app/code/core/Mage/Cron/Model/Schedule.php +++ b/app/code/core/Mage/Cron/Model/Schedule.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Cron - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Cron/etc/adminhtml/system.xml b/app/code/core/Mage/Cron/etc/adminhtml/system.xml index 74ba4658d6275f670d1f8bdb17de64316aeb9751..ff4b85d80a37fa97e1509cab72ab2d12107b22cb 100644 --- a/app/code/core/Mage/Cron/etc/adminhtml/system.xml +++ b/app/code/core/Mage/Cron/etc/adminhtml/system.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Cron - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Cron/etc/config.xml b/app/code/core/Mage/Cron/etc/config.xml index 92ce22e9310bd37f84568f53347e87e5b6d4a600..802d50f6f1ab999c486dbbfe2c1a4f070b9fbe27 100644 --- a/app/code/core/Mage/Cron/etc/config.xml +++ b/app/code/core/Mage/Cron/etc/config.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Cron - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Cron/sql/cron_setup/install-1.6.0.0.php b/app/code/core/Mage/Cron/sql/cron_setup/install-1.6.0.0.php index 84d39e23a7ef08117be746467e8c965fdc9b0640..694b34ae0154cf94e11025523cb44825784a1de4 100644 --- a/app/code/core/Mage/Cron/sql/cron_setup/install-1.6.0.0.php +++ b/app/code/core/Mage/Cron/sql/cron_setup/install-1.6.0.0.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Cron - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CurrencySymbol/Block/Adminhtml/System/Currencysymbol.php b/app/code/core/Mage/CurrencySymbol/Block/Adminhtml/System/Currencysymbol.php index bf3e98b2fd6720287258bdde50de9387eb6fd0db..44e07099fea99d043d61fe1cfda3f1041f93cf97 100644 --- a/app/code/core/Mage/CurrencySymbol/Block/Adminhtml/System/Currencysymbol.php +++ b/app/code/core/Mage/CurrencySymbol/Block/Adminhtml/System/Currencysymbol.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CurrencySymbol - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CurrencySymbol/Helper/Data.php b/app/code/core/Mage/CurrencySymbol/Helper/Data.php index 734ad066dc6afae260404334c1329e0a02d7bb31..47ed52ddf705ed6b76d3c2589c4854fbc9a6514f 100644 --- a/app/code/core/Mage/CurrencySymbol/Helper/Data.php +++ b/app/code/core/Mage/CurrencySymbol/Helper/Data.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CurrencySymbol - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CurrencySymbol/Model/Observer.php b/app/code/core/Mage/CurrencySymbol/Model/Observer.php index 233e80080b191d2a8ebecd1333fb739c95036126..9ece825efdb912dafc62963f2f3ca9a7e1be7d1e 100644 --- a/app/code/core/Mage/CurrencySymbol/Model/Observer.php +++ b/app/code/core/Mage/CurrencySymbol/Model/Observer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CurrencySymbol - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CurrencySymbol/Model/System/Currencysymbol.php b/app/code/core/Mage/CurrencySymbol/Model/System/Currencysymbol.php index a36cbdbecc60644faae41165abc788ecdceb1d95..e90d41931fa0d099fe67787a5171e0947f801a5c 100644 --- a/app/code/core/Mage/CurrencySymbol/Model/System/Currencysymbol.php +++ b/app/code/core/Mage/CurrencySymbol/Model/System/Currencysymbol.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CurrencySymbol - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CurrencySymbol/controllers/Adminhtml/System/CurrencysymbolController.php b/app/code/core/Mage/CurrencySymbol/controllers/Adminhtml/System/CurrencysymbolController.php index 76a203b5066b0daad8df1ee1a60fe4afeb0e790d..4d4ac6a005a743f89755adc6a2412005578c5b77 100644 --- a/app/code/core/Mage/CurrencySymbol/controllers/Adminhtml/System/CurrencysymbolController.php +++ b/app/code/core/Mage/CurrencySymbol/controllers/Adminhtml/System/CurrencysymbolController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CurrencySymbol - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/CurrencySymbol/etc/adminhtml/acl.xml b/app/code/core/Mage/CurrencySymbol/etc/adminhtml/acl.xml index 6939dd56bb13e57ded46a2f703c86f971204ce8e..5cc952605ad442280dac6012cdc79a07a4e7448f 100644 --- a/app/code/core/Mage/CurrencySymbol/etc/adminhtml/acl.xml +++ b/app/code/core/Mage/CurrencySymbol/etc/adminhtml/acl.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_CurrencySymbol - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/CurrencySymbol/etc/adminhtml/menu.xml b/app/code/core/Mage/CurrencySymbol/etc/adminhtml/menu.xml index 1c1db826fde24ae529a9040432a7783ce8a54d85..55368694d4f143159b29d10ff66bb190fc972d14 100644 --- a/app/code/core/Mage/CurrencySymbol/etc/adminhtml/menu.xml +++ b/app/code/core/Mage/CurrencySymbol/etc/adminhtml/menu.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_CurrencySymbol - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/CurrencySymbol/etc/config.xml b/app/code/core/Mage/CurrencySymbol/etc/config.xml index 166506696c322e9d3e5764879f5dff6ecf0815e1..0a5f11598e4e19a65eae10d491fe678ef672ca36 100644 --- a/app/code/core/Mage/CurrencySymbol/etc/config.xml +++ b/app/code/core/Mage/CurrencySymbol/etc/config.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_CurrencySymbol - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/CurrencySymbol/view/adminhtml/grid.phtml b/app/code/core/Mage/CurrencySymbol/view/adminhtml/grid.phtml index d3ab6061b5af6ec738e95a507682673c2b8adbf1..9d3d42be146719158db305669ff29b12ae5a72a7 100644 --- a/app/code/core/Mage/CurrencySymbol/view/adminhtml/grid.phtml +++ b/app/code/core/Mage/CurrencySymbol/view/adminhtml/grid.phtml @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_CurrencySymbol - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/CurrencySymbol/view/adminhtml/layout.xml b/app/code/core/Mage/CurrencySymbol/view/adminhtml/layout.xml index fdebfabd1d00b4d3fb321f6c52b9f840b1b25c72..6f824b3a13f3411ff0143ecb6c03b911ca26bde5 100644 --- a/app/code/core/Mage/CurrencySymbol/view/adminhtml/layout.xml +++ b/app/code/core/Mage/CurrencySymbol/view/adminhtml/layout.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_CurrencySymbol - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Customer/Block/Account/Dashboard.php b/app/code/core/Mage/Customer/Block/Account/Dashboard.php index 8fc6d7e702a891b426889b3197368195688f4ff2..961cd2b3d1a8a020b8b0b7d23eb4263635f15fdd 100644 --- a/app/code/core/Mage/Customer/Block/Account/Dashboard.php +++ b/app/code/core/Mage/Customer/Block/Account/Dashboard.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Block/Account/Dashboard/Address.php b/app/code/core/Mage/Customer/Block/Account/Dashboard/Address.php index 8d39248baa1d811f433ba775115b2f9a3722434d..7f0002b135758a56f9eb6d69cc3ecf02a827c77c 100644 --- a/app/code/core/Mage/Customer/Block/Account/Dashboard/Address.php +++ b/app/code/core/Mage/Customer/Block/Account/Dashboard/Address.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Block/Account/Dashboard/Block.php b/app/code/core/Mage/Customer/Block/Account/Dashboard/Block.php index 64bda96025c39bff884d1a6bf5bc26262a8afbd2..1150cf5e8b9d6f42bc41b05ac3598cde230add6e 100644 --- a/app/code/core/Mage/Customer/Block/Account/Dashboard/Block.php +++ b/app/code/core/Mage/Customer/Block/Account/Dashboard/Block.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Block/Account/Dashboard/Hello.php b/app/code/core/Mage/Customer/Block/Account/Dashboard/Hello.php index b22bcb11e3d8c4683c60f04662dd7d49d43bd9e3..1cd2a12a6a1b985835b3dcee8675a212dba3df8f 100644 --- a/app/code/core/Mage/Customer/Block/Account/Dashboard/Hello.php +++ b/app/code/core/Mage/Customer/Block/Account/Dashboard/Hello.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Block/Account/Dashboard/Info.php b/app/code/core/Mage/Customer/Block/Account/Dashboard/Info.php index a58cf7c30b5c9e32e1c49f6416b37da9489e21db..7e30feae36de1889a1ec477908470e826e9062e0 100644 --- a/app/code/core/Mage/Customer/Block/Account/Dashboard/Info.php +++ b/app/code/core/Mage/Customer/Block/Account/Dashboard/Info.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Block/Account/Dashboard/Newsletter.php b/app/code/core/Mage/Customer/Block/Account/Dashboard/Newsletter.php index 187d199f28ac71a90f5e79df6399c9d2557e7a90..dd1318a8f7e80b6b5a66958355548a4d5f983d36 100644 --- a/app/code/core/Mage/Customer/Block/Account/Dashboard/Newsletter.php +++ b/app/code/core/Mage/Customer/Block/Account/Dashboard/Newsletter.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Block/Account/Dashboard/Sidebar.php b/app/code/core/Mage/Customer/Block/Account/Dashboard/Sidebar.php index 7b33dfd9cdeca7fe9aa9dc6e458dd441d085448d..648cb551db6caa753a5acea26fedbfd7687771b6 100644 --- a/app/code/core/Mage/Customer/Block/Account/Dashboard/Sidebar.php +++ b/app/code/core/Mage/Customer/Block/Account/Dashboard/Sidebar.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Block/Account/Forgotpassword.php b/app/code/core/Mage/Customer/Block/Account/Forgotpassword.php index 16410827335a1b7d06d4362edd39594c65c8049c..7fc551084f87385c112334c4023f45e763b5edcb 100644 --- a/app/code/core/Mage/Customer/Block/Account/Forgotpassword.php +++ b/app/code/core/Mage/Customer/Block/Account/Forgotpassword.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Block/Account/Link.php b/app/code/core/Mage/Customer/Block/Account/Link.php index 559384cbff176a0d640645117d89daf43bfb5c20..c0b633ddbb66af7717fa12ca996a9cdf82c1cd86 100644 --- a/app/code/core/Mage/Customer/Block/Account/Link.php +++ b/app/code/core/Mage/Customer/Block/Account/Link.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Block/Account/Navigation.php b/app/code/core/Mage/Customer/Block/Account/Navigation.php index 7aba4443fe5402ee35b6e33ceb232ed18db358fa..0e23b991d40526a9238215c37c855f28b0a61eb1 100644 --- a/app/code/core/Mage/Customer/Block/Account/Navigation.php +++ b/app/code/core/Mage/Customer/Block/Account/Navigation.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Block/Account/Resetpassword.php b/app/code/core/Mage/Customer/Block/Account/Resetpassword.php index 99bae5297782ba23d9e6c10d6f803270bef889e0..e4af8476628fba30756ed963a45e218297f6661c 100644 --- a/app/code/core/Mage/Customer/Block/Account/Resetpassword.php +++ b/app/code/core/Mage/Customer/Block/Account/Resetpassword.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Block/Address/Book.php b/app/code/core/Mage/Customer/Block/Address/Book.php index de7d509a10d14927ad58822d4b20952f60d1ae4e..df364132839dbc32c9435159ed159f3841e46ec3 100644 --- a/app/code/core/Mage/Customer/Block/Address/Book.php +++ b/app/code/core/Mage/Customer/Block/Address/Book.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Block/Address/Edit.php b/app/code/core/Mage/Customer/Block/Address/Edit.php index f0308770bd6fc870b01fbf31e1c6cf4672e27533..370d5fbcf946d3426618d617e2d3ebc600edd78f 100644 --- a/app/code/core/Mage/Customer/Block/Address/Edit.php +++ b/app/code/core/Mage/Customer/Block/Address/Edit.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Block/Address/Renderer/Default.php b/app/code/core/Mage/Customer/Block/Address/Renderer/Default.php index 5fc1fef902f1be007f0b9a36efd37035c8ef7372..1c026410b3270a8ad4fb5884a78aaa20337946f0 100644 --- a/app/code/core/Mage/Customer/Block/Address/Renderer/Default.php +++ b/app/code/core/Mage/Customer/Block/Address/Renderer/Default.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Block/Address/Renderer/Interface.php b/app/code/core/Mage/Customer/Block/Address/Renderer/Interface.php index 4afe7899c1ea99405176533dcd1f232eac47432f..017723a46f3c6e672ac0274fbf3274223fcb735d 100644 --- a/app/code/core/Mage/Customer/Block/Address/Renderer/Interface.php +++ b/app/code/core/Mage/Customer/Block/Address/Renderer/Interface.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Block/Form/Edit.php b/app/code/core/Mage/Customer/Block/Form/Edit.php index 57f2e9396a110cae6d1ad308cf8f96ca0d7a0244..755df691f5a90c3dd8ec1a257fd3b921c0a5795e 100644 --- a/app/code/core/Mage/Customer/Block/Form/Edit.php +++ b/app/code/core/Mage/Customer/Block/Form/Edit.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Block/Form/Login.php b/app/code/core/Mage/Customer/Block/Form/Login.php index a90da0da129b131f68ceb23ce0b7f9a342ea8401..2cbb4ccea3225e8de2cacf56b8cf0a9731073649 100644 --- a/app/code/core/Mage/Customer/Block/Form/Login.php +++ b/app/code/core/Mage/Customer/Block/Form/Login.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Block/Form/Register.php b/app/code/core/Mage/Customer/Block/Form/Register.php index 0555f372f9d77bba0cb4d5062e40c02d90effdd7..b6e727327336ec7c7d1a3d4f39b56bef2b22942c 100644 --- a/app/code/core/Mage/Customer/Block/Form/Register.php +++ b/app/code/core/Mage/Customer/Block/Form/Register.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Block/Newsletter.php b/app/code/core/Mage/Customer/Block/Newsletter.php index a787b8ce7bd5d33b2f5f10770b4706774d21f5fc..85d08bef5415cf0ee3ffc8d6fa367f58414b688a 100644 --- a/app/code/core/Mage/Customer/Block/Newsletter.php +++ b/app/code/core/Mage/Customer/Block/Newsletter.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Block/Widget/Abstract.php b/app/code/core/Mage/Customer/Block/Widget/Abstract.php index a5f5d8b916b471cdfaab5d3e8126eb8a646fae09..cacbdca1a2eaa8bacf2b27660bf98f87c95c34bb 100644 --- a/app/code/core/Mage/Customer/Block/Widget/Abstract.php +++ b/app/code/core/Mage/Customer/Block/Widget/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Block/Widget/Dob.php b/app/code/core/Mage/Customer/Block/Widget/Dob.php index 745719bbfe0eb841b1048e619f91fe1c64f11593..35fe4ae6d3deeb57977d995c188e6b2e55797922 100644 --- a/app/code/core/Mage/Customer/Block/Widget/Dob.php +++ b/app/code/core/Mage/Customer/Block/Widget/Dob.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Block/Widget/Gender.php b/app/code/core/Mage/Customer/Block/Widget/Gender.php index 039ce7c2f546159e19761b34789e293e6cf95faf..43f7d5a3d8ddf15e54f53890190eb461794733db 100644 --- a/app/code/core/Mage/Customer/Block/Widget/Gender.php +++ b/app/code/core/Mage/Customer/Block/Widget/Gender.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Block/Widget/Name.php b/app/code/core/Mage/Customer/Block/Widget/Name.php index 9925d9f0e1609929e145cfb84748156711be9c16..35933324acc32fe4d104028f651aa7cb8bb55719 100644 --- a/app/code/core/Mage/Customer/Block/Widget/Name.php +++ b/app/code/core/Mage/Customer/Block/Widget/Name.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Block/Widget/Taxvat.php b/app/code/core/Mage/Customer/Block/Widget/Taxvat.php index a78fc33b64ba73a61516a18275087a78b42dd3f9..84daee40994036fb45778966823b807c9a05466f 100644 --- a/app/code/core/Mage/Customer/Block/Widget/Taxvat.php +++ b/app/code/core/Mage/Customer/Block/Widget/Taxvat.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Exception.php b/app/code/core/Mage/Customer/Exception.php index ce8ac210f39ea7f00cf19b8885f5fb4b7420eac0..51c33072cc98beec5df84f3283e1ca15f149f0f6 100644 --- a/app/code/core/Mage/Customer/Exception.php +++ b/app/code/core/Mage/Customer/Exception.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Helper/Address.php b/app/code/core/Mage/Customer/Helper/Address.php index 19bede11e302572de0641e60f5f3bf7b426f8e8d..90755a9a27db9a2b8f6d003ddad3148cc1afcffa 100644 --- a/app/code/core/Mage/Customer/Helper/Address.php +++ b/app/code/core/Mage/Customer/Helper/Address.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Helper/Data.php b/app/code/core/Mage/Customer/Helper/Data.php index b6e1911d75f6736b627a66b6e8691f07bcc03fc0..abea5207ac0b06a05e6da8df8ae0ce6f7dd7e4c0 100644 --- a/app/code/core/Mage/Customer/Helper/Data.php +++ b/app/code/core/Mage/Customer/Helper/Data.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Model/Address.php b/app/code/core/Mage/Customer/Model/Address.php index acf7f13727bf1393d806771382204e3f3d6ea755..74ad94ec7e8c71bce336f2525456330ada54611e 100644 --- a/app/code/core/Mage/Customer/Model/Address.php +++ b/app/code/core/Mage/Customer/Model/Address.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Model/Address/Abstract.php b/app/code/core/Mage/Customer/Model/Address/Abstract.php index 8a2ff0d504214df57dab16c6ada31623103b14c9..7bb8e7b17ccafd0e2cd17e4452941c1be5d8c9c4 100644 --- a/app/code/core/Mage/Customer/Model/Address/Abstract.php +++ b/app/code/core/Mage/Customer/Model/Address/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Model/Address/Config.php b/app/code/core/Mage/Customer/Model/Address/Config.php index 66ede8803d47983a58080d7a4836b5bf0eec05b9..91e50da431ebd03bc113f5f6e4854c33e759e8a9 100644 --- a/app/code/core/Mage/Customer/Model/Address/Config.php +++ b/app/code/core/Mage/Customer/Model/Address/Config.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Model/Address/Factory.php b/app/code/core/Mage/Customer/Model/Address/Factory.php index d865a254f9e556391eac05411cd0639baba6d89a..6a5270118c34af788a66cf2cdaa625882d85bf0d 100644 --- a/app/code/core/Mage/Customer/Model/Address/Factory.php +++ b/app/code/core/Mage/Customer/Model/Address/Factory.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Customer_Model_Address_Factory diff --git a/app/code/core/Mage/Customer/Model/Address/Form.php b/app/code/core/Mage/Customer/Model/Address/Form.php index 92b3e84390c5f3c3c15db8200f231b36d8fc83b9..f16aa21404d0b2101f4f7d58d3820228e0063dba 100644 --- a/app/code/core/Mage/Customer/Model/Address/Form.php +++ b/app/code/core/Mage/Customer/Model/Address/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Model/Attribute.php b/app/code/core/Mage/Customer/Model/Attribute.php index 25216776406d70cf858ac8fd4217eb822004efd8..2d7e8ef72143cfcd364d0eadbaec72c08a80f00e 100644 --- a/app/code/core/Mage/Customer/Model/Attribute.php +++ b/app/code/core/Mage/Customer/Model/Attribute.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Model/Attribute/Backend/Data/Boolean.php b/app/code/core/Mage/Customer/Model/Attribute/Backend/Data/Boolean.php index 6d77dbf5568d408b2662ce172e66008c17b3bca1..76ca20af035bba5298ffbcc98559563a688e36e2 100644 --- a/app/code/core/Mage/Customer/Model/Attribute/Backend/Data/Boolean.php +++ b/app/code/core/Mage/Customer/Model/Attribute/Backend/Data/Boolean.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Model/Attribute/Data.php b/app/code/core/Mage/Customer/Model/Attribute/Data.php index da84c8275b135b678f7bebcd2cf7a80a58e2404e..fa5dc5c0a35f4366ddfaeddcdabd2740b919f6dd 100644 --- a/app/code/core/Mage/Customer/Model/Attribute/Data.php +++ b/app/code/core/Mage/Customer/Model/Attribute/Data.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Model/Attribute/Data/Abstract.php b/app/code/core/Mage/Customer/Model/Attribute/Data/Abstract.php index 71f7beffc268e39c6b13ee851b69e2dd55532c0b..e06aca2b3c74f12d14c83bc86bf49c73e8337883 100644 --- a/app/code/core/Mage/Customer/Model/Attribute/Data/Abstract.php +++ b/app/code/core/Mage/Customer/Model/Attribute/Data/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Model/Attribute/Data/Boolean.php b/app/code/core/Mage/Customer/Model/Attribute/Data/Boolean.php index e65c6a36c751bc2379b4e6efdf39309af5a51203..6d88cccfd592ed13968b7d59575a1894cca72412 100644 --- a/app/code/core/Mage/Customer/Model/Attribute/Data/Boolean.php +++ b/app/code/core/Mage/Customer/Model/Attribute/Data/Boolean.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Model/Attribute/Data/Date.php b/app/code/core/Mage/Customer/Model/Attribute/Data/Date.php index 1ca9d9aebb409e8c11d042eaf1b573b114d94d03..9eef8e00218b3fc80cfbd9721a3fef69d7e49107 100644 --- a/app/code/core/Mage/Customer/Model/Attribute/Data/Date.php +++ b/app/code/core/Mage/Customer/Model/Attribute/Data/Date.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Model/Attribute/Data/File.php b/app/code/core/Mage/Customer/Model/Attribute/Data/File.php index 16fcac8aaae7fd612724ff1ec981445c120ef0a6..b2dea64039175a85e7137102a6aa7f49e8624072 100644 --- a/app/code/core/Mage/Customer/Model/Attribute/Data/File.php +++ b/app/code/core/Mage/Customer/Model/Attribute/Data/File.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Model/Attribute/Data/Hidden.php b/app/code/core/Mage/Customer/Model/Attribute/Data/Hidden.php index 7d125d2e4d85e59dfe83dfe30a4f2fa08ad8ee9a..5946576fc2ebd4de604a4a1e7233b254d96c9075 100644 --- a/app/code/core/Mage/Customer/Model/Attribute/Data/Hidden.php +++ b/app/code/core/Mage/Customer/Model/Attribute/Data/Hidden.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Model/Attribute/Data/Image.php b/app/code/core/Mage/Customer/Model/Attribute/Data/Image.php index 7a4f208c04ca44575d76b26fe0af637ee6850ab4..f6fb634a7c4e58b59cbd46aaee5ac2fc60f05da9 100644 --- a/app/code/core/Mage/Customer/Model/Attribute/Data/Image.php +++ b/app/code/core/Mage/Customer/Model/Attribute/Data/Image.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Model/Attribute/Data/Multiline.php b/app/code/core/Mage/Customer/Model/Attribute/Data/Multiline.php index b250f7fe4bbc9436ecaf3372f7dad1a6d948f6a7..17a692cae9d213da19610b39f98909148c0e237a 100644 --- a/app/code/core/Mage/Customer/Model/Attribute/Data/Multiline.php +++ b/app/code/core/Mage/Customer/Model/Attribute/Data/Multiline.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Model/Attribute/Data/Multiselect.php b/app/code/core/Mage/Customer/Model/Attribute/Data/Multiselect.php index 9972c532d2965f61deb46aa5dc29140626615f38..9408fe5e5ece50d0e786ed9fde21436406259efa 100644 --- a/app/code/core/Mage/Customer/Model/Attribute/Data/Multiselect.php +++ b/app/code/core/Mage/Customer/Model/Attribute/Data/Multiselect.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Model/Attribute/Data/Postcode.php b/app/code/core/Mage/Customer/Model/Attribute/Data/Postcode.php index ffb39a0f9f60337a32df44e8be4894a07dd3021a..ea54e65521d6ac73f9aa94017377750b0873ac34 100644 --- a/app/code/core/Mage/Customer/Model/Attribute/Data/Postcode.php +++ b/app/code/core/Mage/Customer/Model/Attribute/Data/Postcode.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Model/Attribute/Data/Select.php b/app/code/core/Mage/Customer/Model/Attribute/Data/Select.php index 621d2e2091853f76abd35c2629ce43c8ce17a718..e41ada9d217e64e47da5d57019bfdfa6cf2db5e3 100644 --- a/app/code/core/Mage/Customer/Model/Attribute/Data/Select.php +++ b/app/code/core/Mage/Customer/Model/Attribute/Data/Select.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Model/Attribute/Data/Text.php b/app/code/core/Mage/Customer/Model/Attribute/Data/Text.php index dbb7825e938ea9cda0556df881568fea9168fda4..e559d340bf2a4b60096bfad360e015852622b5ce 100644 --- a/app/code/core/Mage/Customer/Model/Attribute/Data/Text.php +++ b/app/code/core/Mage/Customer/Model/Attribute/Data/Text.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Model/Attribute/Data/Textarea.php b/app/code/core/Mage/Customer/Model/Attribute/Data/Textarea.php index 3689258db182d038e773bb753ddcac046c19ac84..e76ce9004e2f6aac5d294e2f1c79f992edfabfec 100644 --- a/app/code/core/Mage/Customer/Model/Attribute/Data/Textarea.php +++ b/app/code/core/Mage/Customer/Model/Attribute/Data/Textarea.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Model/Config/Backend/Address/Street.php b/app/code/core/Mage/Customer/Model/Config/Backend/Address/Street.php index cf5a391f9b344a998e29f66a701f763e742185b2..7ad5049f1037fa28efd7092a7e4d6b6e52582044 100644 --- a/app/code/core/Mage/Customer/Model/Config/Backend/Address/Street.php +++ b/app/code/core/Mage/Customer/Model/Config/Backend/Address/Street.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Model/Config/Backend/Password/Link/Expirationperiod.php b/app/code/core/Mage/Customer/Model/Config/Backend/Password/Link/Expirationperiod.php index 19c5d408a4a9badc29dad038bd9413e03b7f598a..881ccdc76c56f6c014152475803626e477d86de8 100644 --- a/app/code/core/Mage/Customer/Model/Config/Backend/Password/Link/Expirationperiod.php +++ b/app/code/core/Mage/Customer/Model/Config/Backend/Password/Link/Expirationperiod.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Model/Config/Backend/Show/Address.php b/app/code/core/Mage/Customer/Model/Config/Backend/Show/Address.php index 16fa64690f3edf61bf8a8b966633aafe037223e0..b53eb6deeb3f6c1d5c0079857f2b1ea09dd877dc 100644 --- a/app/code/core/Mage/Customer/Model/Config/Backend/Show/Address.php +++ b/app/code/core/Mage/Customer/Model/Config/Backend/Show/Address.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Model/Config/Backend/Show/Customer.php b/app/code/core/Mage/Customer/Model/Config/Backend/Show/Customer.php index 121f59109b7d7bc58015b8311c6a297b298b10a5..1ca7df55cd3a015bd02882936f232ab82f83332d 100644 --- a/app/code/core/Mage/Customer/Model/Config/Backend/Show/Customer.php +++ b/app/code/core/Mage/Customer/Model/Config/Backend/Show/Customer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Model/Config/Share.php b/app/code/core/Mage/Customer/Model/Config/Share.php index cbb10e44581066ebd7450a3e545d77fa5a1044c8..dbec28aa8aa1a5b91896aeee14c5b3d1da08730e 100644 --- a/app/code/core/Mage/Customer/Model/Config/Share.php +++ b/app/code/core/Mage/Customer/Model/Config/Share.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Model/Config/Source/Address/Type.php b/app/code/core/Mage/Customer/Model/Config/Source/Address/Type.php index 916eb553c4d8d536825d2021884cdafdcdd3ed6d..5c8e2763023a9578d21fc50f1a3d7049d61bdb64 100644 --- a/app/code/core/Mage/Customer/Model/Config/Source/Address/Type.php +++ b/app/code/core/Mage/Customer/Model/Config/Source/Address/Type.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Model/Config/Source/Group.php b/app/code/core/Mage/Customer/Model/Config/Source/Group.php index de3caf103c167c4ce3958b91b8be29172a5ffc9b..73f2bc4d85fa533b9293519b6c2923f6e0f4fd43 100644 --- a/app/code/core/Mage/Customer/Model/Config/Source/Group.php +++ b/app/code/core/Mage/Customer/Model/Config/Source/Group.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Model/Config/Source/Group/Multiselect.php b/app/code/core/Mage/Customer/Model/Config/Source/Group/Multiselect.php index 85e456fa66d6a5b9f6879e1e7d4e288236bda3c2..ca447b8cdae32a9101495d1ca87b06ab82653704 100644 --- a/app/code/core/Mage/Customer/Model/Config/Source/Group/Multiselect.php +++ b/app/code/core/Mage/Customer/Model/Config/Source/Group/Multiselect.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Model/Customer.php b/app/code/core/Mage/Customer/Model/Customer.php index 783ff8d9dee2d1278ea1061eca9a75ad7a31d608..df4af987c47c7f44670ff2e50226958e10c4cb84 100644 --- a/app/code/core/Mage/Customer/Model/Customer.php +++ b/app/code/core/Mage/Customer/Model/Customer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Model/Customer/Attribute/Backend/Billing.php b/app/code/core/Mage/Customer/Model/Customer/Attribute/Backend/Billing.php index 800dd2ac8a3c8d6d4aebe4c4dadbaf87b0624212..9efd97915ab6712c694f298d4c893d96de967bdd 100644 --- a/app/code/core/Mage/Customer/Model/Customer/Attribute/Backend/Billing.php +++ b/app/code/core/Mage/Customer/Model/Customer/Attribute/Backend/Billing.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Model/Customer/Attribute/Backend/Password.php b/app/code/core/Mage/Customer/Model/Customer/Attribute/Backend/Password.php index 8ed8432d7374a5433b0cc12047dbe2037d98d6f7..7af0f4e9ef0b7576b3a64b7f397c6d1848617cc1 100644 --- a/app/code/core/Mage/Customer/Model/Customer/Attribute/Backend/Password.php +++ b/app/code/core/Mage/Customer/Model/Customer/Attribute/Backend/Password.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Model/Customer/Attribute/Backend/Shipping.php b/app/code/core/Mage/Customer/Model/Customer/Attribute/Backend/Shipping.php index 1434ff7d90dc0be09531723229aa240f02eca226..c4fd41d34ba91673e162cfa3e93a16eafe7b9c57 100644 --- a/app/code/core/Mage/Customer/Model/Customer/Attribute/Backend/Shipping.php +++ b/app/code/core/Mage/Customer/Model/Customer/Attribute/Backend/Shipping.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Model/Customer/Attribute/Backend/Store.php b/app/code/core/Mage/Customer/Model/Customer/Attribute/Backend/Store.php index d30e3f21e7c242d1e1466060b85d7411c193b892..0f4fcda2d1aefa143caa3ed7affeb2d601b684e7 100644 --- a/app/code/core/Mage/Customer/Model/Customer/Attribute/Backend/Store.php +++ b/app/code/core/Mage/Customer/Model/Customer/Attribute/Backend/Store.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Model/Customer/Attribute/Backend/Website.php b/app/code/core/Mage/Customer/Model/Customer/Attribute/Backend/Website.php index 8d3ba16694dd383ff8485eaef4abe651e0330730..093a4e8e63147b1604e3265029d17ff433f244c7 100644 --- a/app/code/core/Mage/Customer/Model/Customer/Attribute/Backend/Website.php +++ b/app/code/core/Mage/Customer/Model/Customer/Attribute/Backend/Website.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Model/Customer/Attribute/Source/Group.php b/app/code/core/Mage/Customer/Model/Customer/Attribute/Source/Group.php index db4f198c2f623cc85c12e4615ce9d594b0dcebd5..774054c4b0f597ccfdace39d8b90dfdfadc31261 100644 --- a/app/code/core/Mage/Customer/Model/Customer/Attribute/Source/Group.php +++ b/app/code/core/Mage/Customer/Model/Customer/Attribute/Source/Group.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Model/Customer/Attribute/Source/Store.php b/app/code/core/Mage/Customer/Model/Customer/Attribute/Source/Store.php index 492ef3505bd9e7250757bb99f0f4b384a0575aae..1d7be90fc1a96d0e2901c5fe25e4bab78a6ae34d 100644 --- a/app/code/core/Mage/Customer/Model/Customer/Attribute/Source/Store.php +++ b/app/code/core/Mage/Customer/Model/Customer/Attribute/Source/Store.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Model/Customer/Attribute/Source/Website.php b/app/code/core/Mage/Customer/Model/Customer/Attribute/Source/Website.php index 0e92ff1e938a4f40dbe07855c26cf6455db8de0c..67f28959096b2d078d3c79351b0e73cb230100c8 100644 --- a/app/code/core/Mage/Customer/Model/Customer/Attribute/Source/Website.php +++ b/app/code/core/Mage/Customer/Model/Customer/Attribute/Source/Website.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Model/Customer/Factory.php b/app/code/core/Mage/Customer/Model/Customer/Factory.php index dd558d6089daf0ca10fb937de3cbea732714e492..4f42b025956878fe27e5eb86ae6b596f6cac00e8 100644 --- a/app/code/core/Mage/Customer/Model/Customer/Factory.php +++ b/app/code/core/Mage/Customer/Model/Customer/Factory.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Customer_Model_Customer_Factory diff --git a/app/code/core/Mage/Customer/Model/Form.php b/app/code/core/Mage/Customer/Model/Form.php index f9f99cac2635d61b2a8ea23d6aa428a99e787c2a..abde80e8df6772f514a63b44477785ff59aba6d0 100644 --- a/app/code/core/Mage/Customer/Model/Form.php +++ b/app/code/core/Mage/Customer/Model/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Model/Group.php b/app/code/core/Mage/Customer/Model/Group.php index 21e9791ba430182917d3ba676d218f5cbcdd2058..91302beb5350ca35a3e1119172915e40523d5954 100644 --- a/app/code/core/Mage/Customer/Model/Group.php +++ b/app/code/core/Mage/Customer/Model/Group.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Model/Observer.php b/app/code/core/Mage/Customer/Model/Observer.php index 7d58e859328098e33c11e61f9d84ba4b98c69905..39c5dc4b916a4d4304d334a0c5fdeb782bb01aef 100644 --- a/app/code/core/Mage/Customer/Model/Observer.php +++ b/app/code/core/Mage/Customer/Model/Observer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Model/Resource/Address.php b/app/code/core/Mage/Customer/Model/Resource/Address.php index bfe1d3b71b41d29d6ac2bdbe93ddb797660f5f2a..5a77f6b8480154108d7034ab5eb4e5b9f32236ff 100755 --- a/app/code/core/Mage/Customer/Model/Resource/Address.php +++ b/app/code/core/Mage/Customer/Model/Resource/Address.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Customer_Model_Resource_Address extends Mage_Eav_Model_Entity_Abstract diff --git a/app/code/core/Mage/Customer/Model/Resource/Address/Attribute/Backend/Region.php b/app/code/core/Mage/Customer/Model/Resource/Address/Attribute/Backend/Region.php index 59a78dc5b3a6d86220a62979efd1acf89b9d02cb..89b401db11e3184fb65c9ba2ef1e6db2f81f5d1e 100755 --- a/app/code/core/Mage/Customer/Model/Resource/Address/Attribute/Backend/Region.php +++ b/app/code/core/Mage/Customer/Model/Resource/Address/Attribute/Backend/Region.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Model/Resource/Address/Attribute/Backend/Street.php b/app/code/core/Mage/Customer/Model/Resource/Address/Attribute/Backend/Street.php index be9ee4b7de014132d8682897ea094e4532128cfb..11b8a9dd693785ab1060882d9ed7e104703254ac 100755 --- a/app/code/core/Mage/Customer/Model/Resource/Address/Attribute/Backend/Street.php +++ b/app/code/core/Mage/Customer/Model/Resource/Address/Attribute/Backend/Street.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Model/Resource/Address/Attribute/Collection.php b/app/code/core/Mage/Customer/Model/Resource/Address/Attribute/Collection.php index 5f97360bcf2adfd645e1b081502b42b213017edf..ffd71a2fa0dcfeede8caaed0509b36f95166fbab 100755 --- a/app/code/core/Mage/Customer/Model/Resource/Address/Attribute/Collection.php +++ b/app/code/core/Mage/Customer/Model/Resource/Address/Attribute/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Model/Resource/Address/Attribute/Source/Country.php b/app/code/core/Mage/Customer/Model/Resource/Address/Attribute/Source/Country.php index 69a2560c46323c0628cd586a3d2b98d30b809515..9b7a4152b9003d319b300ff742f3e88138c2b213 100755 --- a/app/code/core/Mage/Customer/Model/Resource/Address/Attribute/Source/Country.php +++ b/app/code/core/Mage/Customer/Model/Resource/Address/Attribute/Source/Country.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Model/Resource/Address/Attribute/Source/Region.php b/app/code/core/Mage/Customer/Model/Resource/Address/Attribute/Source/Region.php index 4f75509e2b37055f4ca84be408b94cd12a835f88..0d3953aeda79983b3bfd1966ac20dccfc47b406b 100755 --- a/app/code/core/Mage/Customer/Model/Resource/Address/Attribute/Source/Region.php +++ b/app/code/core/Mage/Customer/Model/Resource/Address/Attribute/Source/Region.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Model/Resource/Address/Collection.php b/app/code/core/Mage/Customer/Model/Resource/Address/Collection.php index b43f9b9ae6801f74caf77c717bb5f71d048619a0..d1e70811e8ab2566deafa3eb2f9346ab6d28b76e 100755 --- a/app/code/core/Mage/Customer/Model/Resource/Address/Collection.php +++ b/app/code/core/Mage/Customer/Model/Resource/Address/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Model/Resource/Attribute.php b/app/code/core/Mage/Customer/Model/Resource/Attribute.php index e96a8f3d6e21d4f99a3cb746a9e90f92ad834560..93fc4918eb42de2edaea4f1c924729f13ed243fe 100755 --- a/app/code/core/Mage/Customer/Model/Resource/Attribute.php +++ b/app/code/core/Mage/Customer/Model/Resource/Attribute.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Model/Resource/Attribute/Collection.php b/app/code/core/Mage/Customer/Model/Resource/Attribute/Collection.php index ae32557c152776caf451a36f24dc3c6dd732802d..83b158e63eab83f0cb0d73c70f703e8b79575bb5 100755 --- a/app/code/core/Mage/Customer/Model/Resource/Attribute/Collection.php +++ b/app/code/core/Mage/Customer/Model/Resource/Attribute/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Model/Resource/Customer.php b/app/code/core/Mage/Customer/Model/Resource/Customer.php index ef2ed2f2f4277d1b695a7e053ea6b3d11fefa819..9934189d43021e67a635132b96009fe17d724a19 100755 --- a/app/code/core/Mage/Customer/Model/Resource/Customer.php +++ b/app/code/core/Mage/Customer/Model/Resource/Customer.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Customer_Model_Resource_Customer extends Mage_Eav_Model_Entity_Abstract diff --git a/app/code/core/Mage/Customer/Model/Resource/Customer/Collection.php b/app/code/core/Mage/Customer/Model/Resource/Customer/Collection.php index 9055c296167480b1178f364672c7006202dae30e..48fbc255278314bc872c3543096d5fc0be938ff4 100755 --- a/app/code/core/Mage/Customer/Model/Resource/Customer/Collection.php +++ b/app/code/core/Mage/Customer/Model/Resource/Customer/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Model/Resource/Form/Attribute.php b/app/code/core/Mage/Customer/Model/Resource/Form/Attribute.php index c88972b96625ad8b643818d31fb81081c54e663a..ddf6ce9ac912f06dad8954fbb579363934b7d2b4 100755 --- a/app/code/core/Mage/Customer/Model/Resource/Form/Attribute.php +++ b/app/code/core/Mage/Customer/Model/Resource/Form/Attribute.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Model/Resource/Form/Attribute/Collection.php b/app/code/core/Mage/Customer/Model/Resource/Form/Attribute/Collection.php index ee225861abdb19173dad8d5e28e3c5c08ea3c937..1b43d58250227d99cc8868c5cf9abeb052ce14c9 100755 --- a/app/code/core/Mage/Customer/Model/Resource/Form/Attribute/Collection.php +++ b/app/code/core/Mage/Customer/Model/Resource/Form/Attribute/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Model/Resource/Group.php b/app/code/core/Mage/Customer/Model/Resource/Group.php index ee84e0d724e47061bf7a8bc4ab3aeb9db7e0fcfc..8811ddfae79a28313282e9bdd72c861d45c93feb 100755 --- a/app/code/core/Mage/Customer/Model/Resource/Group.php +++ b/app/code/core/Mage/Customer/Model/Resource/Group.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Model/Resource/Group/Collection.php b/app/code/core/Mage/Customer/Model/Resource/Group/Collection.php index d6356df69607cedac10312dcc8ac6166a0352744..ce741359b80b74680a92dacd1855bc2f1e48aa76 100755 --- a/app/code/core/Mage/Customer/Model/Resource/Group/Collection.php +++ b/app/code/core/Mage/Customer/Model/Resource/Group/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Model/Resource/Setup.php b/app/code/core/Mage/Customer/Model/Resource/Setup.php index e58d7b67ceffe1813503ccd405a267aa6045f0e0..2f17ada98c9aef919be5fd3af9ac913f6c17faea 100755 --- a/app/code/core/Mage/Customer/Model/Resource/Setup.php +++ b/app/code/core/Mage/Customer/Model/Resource/Setup.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Model/Session.php b/app/code/core/Mage/Customer/Model/Session.php index d68391d7c44d46d95d9d89e5f76cffe425d65e59..93d07d7e15b422516c0f915ed35a2578b84743e5 100644 --- a/app/code/core/Mage/Customer/Model/Session.php +++ b/app/code/core/Mage/Customer/Model/Session.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/Service/Customer.php b/app/code/core/Mage/Customer/Service/Customer.php index cd15ac8bfa1961f45c41f11c615bc7471ae6dacc..83537f61f8394f0c3277ba14582c96ab7289f180 100644 --- a/app/code/core/Mage/Customer/Service/Customer.php +++ b/app/code/core/Mage/Customer/Service/Customer.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Customer_Service_Customer extends Mage_Core_Service_ServiceAbstract diff --git a/app/code/core/Mage/Customer/controllers/AccountController.php b/app/code/core/Mage/Customer/controllers/AccountController.php index 6f746aa6dfe2e10a75a0b66fbd3609410acc9ae4..f4f46a35b43d952f222c92084e4700636d377cfa 100644 --- a/app/code/core/Mage/Customer/controllers/AccountController.php +++ b/app/code/core/Mage/Customer/controllers/AccountController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/controllers/AddressController.php b/app/code/core/Mage/Customer/controllers/AddressController.php index 3dac1679cdb05a07b6bf2610affbebfb3d688bd4..2a050ed44aa5c64baf9521bf53cd2011bf8c2f8a 100644 --- a/app/code/core/Mage/Customer/controllers/AddressController.php +++ b/app/code/core/Mage/Customer/controllers/AddressController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/controllers/ReviewController.php b/app/code/core/Mage/Customer/controllers/ReviewController.php index 2067f4353eb7047094a99104dfa7c384fef9db49..68e8d549b04fec0705876b77feaee7d1816aa14f 100644 --- a/app/code/core/Mage/Customer/controllers/ReviewController.php +++ b/app/code/core/Mage/Customer/controllers/ReviewController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/data/customer_setup/data-upgrade-1.6.1.0-1.6.2.0.php b/app/code/core/Mage/Customer/data/customer_setup/data-upgrade-1.6.1.0-1.6.2.0.php index a4b7875e6fadd247e90e6c5983e3784340c47f9e..96b28db666c5c28c382070c330fd714b25710dd1 100644 --- a/app/code/core/Mage/Customer/data/customer_setup/data-upgrade-1.6.1.0-1.6.2.0.php +++ b/app/code/core/Mage/Customer/data/customer_setup/data-upgrade-1.6.1.0-1.6.2.0.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/data/customer_setup/data-upgrade-1.6.2.0.1-1.6.2.0.2.php b/app/code/core/Mage/Customer/data/customer_setup/data-upgrade-1.6.2.0.1-1.6.2.0.2.php index 74d5e36389e3c1d1be7937c95e80627b060da9bc..1d578f1d64935ca3b92430abea2b8e85bf07d500 100644 --- a/app/code/core/Mage/Customer/data/customer_setup/data-upgrade-1.6.2.0.1-1.6.2.0.2.php +++ b/app/code/core/Mage/Customer/data/customer_setup/data-upgrade-1.6.2.0.1-1.6.2.0.2.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/etc/adminhtml/acl.xml b/app/code/core/Mage/Customer/etc/adminhtml/acl.xml index ab1dc84c165c1ba1fdee46a411398f0ad86b71ce..2820df64e56d9204b56e9e04f423eda86344dc23 100644 --- a/app/code/core/Mage/Customer/etc/adminhtml/acl.xml +++ b/app/code/core/Mage/Customer/etc/adminhtml/acl.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Customer/etc/adminhtml/menu.xml b/app/code/core/Mage/Customer/etc/adminhtml/menu.xml index 3e015019ad5fda17f340cc8b9c5929a497aed258..6b4c6bf9b5478091419267eaeb81ed7c94868205 100644 --- a/app/code/core/Mage/Customer/etc/adminhtml/menu.xml +++ b/app/code/core/Mage/Customer/etc/adminhtml/menu.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Customer/etc/adminhtml/system.xml b/app/code/core/Mage/Customer/etc/adminhtml/system.xml index b0205d099d10eab558a3f5d950244562e169bdfb..a48dd8b072e3d24ff7e434c51c2fb8d9d529447e 100644 --- a/app/code/core/Mage/Customer/etc/adminhtml/system.xml +++ b/app/code/core/Mage/Customer/etc/adminhtml/system.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Customer/etc/config.xml b/app/code/core/Mage/Customer/etc/config.xml index 055d3570070bd4cecc357067d78a4b586a0cd045..9e10e7de39e39a4c39d007a891b61d9e7f2f3b10 100644 --- a/app/code/core/Mage/Customer/etc/config.xml +++ b/app/code/core/Mage/Customer/etc/config.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Customer/etc/fieldset.xml b/app/code/core/Mage/Customer/etc/fieldset.xml index a07a4a7e84bbb22a446c87d04d16b3ecc5f3d385..ea4fb3f38df30d4a312cf046a34383a0fdb8b8a2 100644 --- a/app/code/core/Mage/Customer/etc/fieldset.xml +++ b/app/code/core/Mage/Customer/etc/fieldset.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Customer/etc/validation.xml b/app/code/core/Mage/Customer/etc/validation.xml index dfcdb97ace695ccd16b0c0aa8006dcbf170225c1..39a4fc37962573cb5cd1d64e1c511b91ee03891c 100644 --- a/app/code/core/Mage/Customer/etc/validation.xml +++ b/app/code/core/Mage/Customer/etc/validation.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Customer/sql/customer_setup/install-1.6.0.0.php b/app/code/core/Mage/Customer/sql/customer_setup/install-1.6.0.0.php index b3b528de8fcd93feafd8cf3151ad487ff90ab3ba..f989a4be1ba44f20bbc9f5f4f1be0e2a490078f8 100644 --- a/app/code/core/Mage/Customer/sql/customer_setup/install-1.6.0.0.php +++ b/app/code/core/Mage/Customer/sql/customer_setup/install-1.6.0.0.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/sql/customer_setup/mysql4-upgrade-1.6.0.0-1.6.1.0.php b/app/code/core/Mage/Customer/sql/customer_setup/mysql4-upgrade-1.6.0.0-1.6.1.0.php index 417dae6ececaf576e8506d923be4d9ab829c3bf2..83ac720c78d78cb1c8a8abe307213ca99fb1bb98 100644 --- a/app/code/core/Mage/Customer/sql/customer_setup/mysql4-upgrade-1.6.0.0-1.6.1.0.php +++ b/app/code/core/Mage/Customer/sql/customer_setup/mysql4-upgrade-1.6.0.0-1.6.1.0.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/sql/customer_setup/upgrade-1.6.0.0-1.6.1.0.php b/app/code/core/Mage/Customer/sql/customer_setup/upgrade-1.6.0.0-1.6.1.0.php index 417dae6ececaf576e8506d923be4d9ab829c3bf2..83ac720c78d78cb1c8a8abe307213ca99fb1bb98 100644 --- a/app/code/core/Mage/Customer/sql/customer_setup/upgrade-1.6.0.0-1.6.1.0.php +++ b/app/code/core/Mage/Customer/sql/customer_setup/upgrade-1.6.0.0-1.6.1.0.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/sql/customer_setup/upgrade-1.6.1.0-1.6.2.0.php b/app/code/core/Mage/Customer/sql/customer_setup/upgrade-1.6.1.0-1.6.2.0.php index 64d4b6003820de06d616dad5d7fecc16ab2c63c1..63a52485aa4e28d04bc3ecefebe7299a8320aae4 100644 --- a/app/code/core/Mage/Customer/sql/customer_setup/upgrade-1.6.1.0-1.6.2.0.php +++ b/app/code/core/Mage/Customer/sql/customer_setup/upgrade-1.6.1.0-1.6.2.0.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/sql/customer_setup/upgrade-1.6.2.0-1.6.2.0.1.php b/app/code/core/Mage/Customer/sql/customer_setup/upgrade-1.6.2.0-1.6.2.0.1.php index 47ba666a13339626dfa222bc2439af0bdb63fe40..e3575279aeeecf287a2bef47603ce648e9774557 100644 --- a/app/code/core/Mage/Customer/sql/customer_setup/upgrade-1.6.2.0-1.6.2.0.1.php +++ b/app/code/core/Mage/Customer/sql/customer_setup/upgrade-1.6.2.0-1.6.2.0.1.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/sql/customer_setup/upgrade-1.6.2.0.1-1.6.2.0.3.php b/app/code/core/Mage/Customer/sql/customer_setup/upgrade-1.6.2.0.1-1.6.2.0.3.php index 4fe61063a004b26b6545d1a826819262de675745..c9c0708169486d1f3c41ea7cde3a731073b08693 100644 --- a/app/code/core/Mage/Customer/sql/customer_setup/upgrade-1.6.2.0.1-1.6.2.0.3.php +++ b/app/code/core/Mage/Customer/sql/customer_setup/upgrade-1.6.2.0.1-1.6.2.0.3.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Customer/view/frontend/account/dashboard.phtml b/app/code/core/Mage/Customer/view/frontend/account/dashboard.phtml index f9ef38a69b6ca88e6cd7e27bf1919bc164c9d657..d104cf7ae752905f69ac388d4851cf4158639e24 100644 --- a/app/code/core/Mage/Customer/view/frontend/account/dashboard.phtml +++ b/app/code/core/Mage/Customer/view/frontend/account/dashboard.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Customer/view/frontend/account/dashboard/address.phtml b/app/code/core/Mage/Customer/view/frontend/account/dashboard/address.phtml index 71e15de6fa2b19af81c466e3761bbc81a258d606..89dd3002889ad3a79e7f5b7583a1a723d0b542eb 100644 --- a/app/code/core/Mage/Customer/view/frontend/account/dashboard/address.phtml +++ b/app/code/core/Mage/Customer/view/frontend/account/dashboard/address.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Customer/view/frontend/account/dashboard/hello.phtml b/app/code/core/Mage/Customer/view/frontend/account/dashboard/hello.phtml index 032f32249f409993992cb3c18bc1ed86ab73c1ea..1360341f4d94d13acd04a38682c1c7e112589f97 100644 --- a/app/code/core/Mage/Customer/view/frontend/account/dashboard/hello.phtml +++ b/app/code/core/Mage/Customer/view/frontend/account/dashboard/hello.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Customer/view/frontend/account/dashboard/info.phtml b/app/code/core/Mage/Customer/view/frontend/account/dashboard/info.phtml index f9ca2ea6f31b685640086e7067786c7b54d5a495..b0c8ff4b5c2866c74a52deb878da252751346769 100644 --- a/app/code/core/Mage/Customer/view/frontend/account/dashboard/info.phtml +++ b/app/code/core/Mage/Customer/view/frontend/account/dashboard/info.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Customer/view/frontend/account/dashboard/newsletter.phtml b/app/code/core/Mage/Customer/view/frontend/account/dashboard/newsletter.phtml index eee15a7942fec2ab4dd5feaad701eb9dbfed7905..d0c7d09fcecb427273b09f13b2ce51fc8f3bb8b4 100644 --- a/app/code/core/Mage/Customer/view/frontend/account/dashboard/newsletter.phtml +++ b/app/code/core/Mage/Customer/view/frontend/account/dashboard/newsletter.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Customer/view/frontend/account/link/back.phtml b/app/code/core/Mage/Customer/view/frontend/account/link/back.phtml index 093ce42b493b0cc38b64bf8f6401bd66073c1902..cf1d069e75f0a5b2e5a25a2ae6e01c57eaca8f18 100644 --- a/app/code/core/Mage/Customer/view/frontend/account/link/back.phtml +++ b/app/code/core/Mage/Customer/view/frontend/account/link/back.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Customer/view/frontend/account/navigation.phtml b/app/code/core/Mage/Customer/view/frontend/account/navigation.phtml index 0b41b9bd7b1d489390064f7c9c611ddd0e466429..a1570a3179a63a459a66b2dc88eb71e4c4f17b06 100644 --- a/app/code/core/Mage/Customer/view/frontend/account/navigation.phtml +++ b/app/code/core/Mage/Customer/view/frontend/account/navigation.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Customer/view/frontend/address.phtml b/app/code/core/Mage/Customer/view/frontend/address.phtml index 59984a3e77462b05d66772db442dd054c5f7ed60..edb97dd2a41501673674e894cbf892f6155a0a46 100644 --- a/app/code/core/Mage/Customer/view/frontend/address.phtml +++ b/app/code/core/Mage/Customer/view/frontend/address.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Customer/view/frontend/address/book.phtml b/app/code/core/Mage/Customer/view/frontend/address/book.phtml index a65b4a10b612a0f4c660083fc022c67d9e075132..b9abc3d65074626fcdf1d0f202301f3a2b51e562 100644 --- a/app/code/core/Mage/Customer/view/frontend/address/book.phtml +++ b/app/code/core/Mage/Customer/view/frontend/address/book.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Customer/view/frontend/address/edit.phtml b/app/code/core/Mage/Customer/view/frontend/address/edit.phtml index 3824d3221e49cec307cb14af5d60970fdb113892..b63f0293bc61ca7d2b507b7404a3ac3a2013e033 100644 --- a/app/code/core/Mage/Customer/view/frontend/address/edit.phtml +++ b/app/code/core/Mage/Customer/view/frontend/address/edit.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Customer/view/frontend/balance.phtml b/app/code/core/Mage/Customer/view/frontend/balance.phtml index 18d68224e1275d47fedcbeb7c5dedac04c0d502c..1d51961bdfd3cbbdb752ab6814fbe426239597d2 100644 --- a/app/code/core/Mage/Customer/view/frontend/balance.phtml +++ b/app/code/core/Mage/Customer/view/frontend/balance.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Customer/view/frontend/form/address.phtml b/app/code/core/Mage/Customer/view/frontend/form/address.phtml index e2f2afd500c519fcf8dad7eb2aedf12c6acebf93..ae4ae49c9f6350041acbf38cad5ec5926d8d4fbb 100644 --- a/app/code/core/Mage/Customer/view/frontend/form/address.phtml +++ b/app/code/core/Mage/Customer/view/frontend/form/address.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Customer/view/frontend/form/changepassword.phtml b/app/code/core/Mage/Customer/view/frontend/form/changepassword.phtml index 57ef3906407960d06c5b8010e8583bde28a7e29c..d8ba78a03ea98b97da059759a6849dd79e5a98e4 100644 --- a/app/code/core/Mage/Customer/view/frontend/form/changepassword.phtml +++ b/app/code/core/Mage/Customer/view/frontend/form/changepassword.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Customer/view/frontend/form/confirmation.phtml b/app/code/core/Mage/Customer/view/frontend/form/confirmation.phtml index 8f806adbb724967bb158fb10678cb76606935afc..ea6e8d314dbf4539a907959b038ab8b2a62f036e 100644 --- a/app/code/core/Mage/Customer/view/frontend/form/confirmation.phtml +++ b/app/code/core/Mage/Customer/view/frontend/form/confirmation.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Customer/view/frontend/form/edit.phtml b/app/code/core/Mage/Customer/view/frontend/form/edit.phtml index 3382360f7b9bfcef5267a93bf47b21b9d137de0e..f7ec011f51cf9a3b3eda4767ba8b8f1dfe2c9d81 100644 --- a/app/code/core/Mage/Customer/view/frontend/form/edit.phtml +++ b/app/code/core/Mage/Customer/view/frontend/form/edit.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Customer/view/frontend/form/forgotpassword.phtml b/app/code/core/Mage/Customer/view/frontend/form/forgotpassword.phtml index 7146ce840dc27436003183bec6d2ca40e8286f68..79c971947c8e1356edcc5b778fb298b857fa2911 100644 --- a/app/code/core/Mage/Customer/view/frontend/form/forgotpassword.phtml +++ b/app/code/core/Mage/Customer/view/frontend/form/forgotpassword.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Customer/view/frontend/form/login.phtml b/app/code/core/Mage/Customer/view/frontend/form/login.phtml index 6dbc20ee88ff2c39910e4c35d9ca9f4ecbf3bfb9..ceca186bc930e690b39ddd7e729ccff4b211fbdb 100644 --- a/app/code/core/Mage/Customer/view/frontend/form/login.phtml +++ b/app/code/core/Mage/Customer/view/frontend/form/login.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Customer/view/frontend/form/mini.login.phtml b/app/code/core/Mage/Customer/view/frontend/form/mini.login.phtml index 8b91634fc8ef9c66e9fb610560dd1e02d64bae52..9d8b273c452bcbf33e3093eb530ef151a8f37686 100644 --- a/app/code/core/Mage/Customer/view/frontend/form/mini.login.phtml +++ b/app/code/core/Mage/Customer/view/frontend/form/mini.login.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Customer/view/frontend/form/newsletter.phtml b/app/code/core/Mage/Customer/view/frontend/form/newsletter.phtml index a0586155862a022b9475eec63b78f1e25d360746..a911146defe0b4350a74222b44361e5e250bb7d5 100644 --- a/app/code/core/Mage/Customer/view/frontend/form/newsletter.phtml +++ b/app/code/core/Mage/Customer/view/frontend/form/newsletter.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Customer/view/frontend/form/register.phtml b/app/code/core/Mage/Customer/view/frontend/form/register.phtml index d5783523ba574f96590001bbb50d5a87a6210b03..6763824fcf6ef592b0ce1bc6f3f30cf819a05f1b 100644 --- a/app/code/core/Mage/Customer/view/frontend/form/register.phtml +++ b/app/code/core/Mage/Customer/view/frontend/form/register.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Customer/view/frontend/form/resetforgottenpassword.phtml b/app/code/core/Mage/Customer/view/frontend/form/resetforgottenpassword.phtml index 7d8e41706dc5a3506632deddd6ece0b061565d63..00c555c1d6a59cf14e17a313e51bde76994f76e4 100644 --- a/app/code/core/Mage/Customer/view/frontend/form/resetforgottenpassword.phtml +++ b/app/code/core/Mage/Customer/view/frontend/form/resetforgottenpassword.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Customer/view/frontend/layout.xml b/app/code/core/Mage/Customer/view/frontend/layout.xml index 5a9eac3942f1fbe6c7820b0a033c30148e9bfc39..296608d179dd11873af813bf2e479683d058107a 100644 --- a/app/code/core/Mage/Customer/view/frontend/layout.xml +++ b/app/code/core/Mage/Customer/view/frontend/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Customer/view/frontend/logout.phtml b/app/code/core/Mage/Customer/view/frontend/logout.phtml index a27faa9e0156255b725f58375c9fb8ac7ce236a5..e3728d657b1552de5e207ac063b5e55657e24c8d 100644 --- a/app/code/core/Mage/Customer/view/frontend/logout.phtml +++ b/app/code/core/Mage/Customer/view/frontend/logout.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Customer/view/frontend/register.js b/app/code/core/Mage/Customer/view/frontend/register.js index 675edeabcc7f4e58d3fb56ec651df7f3abf8810b..7fda1b71fb32e258ca465bd844afeb1265b33131 100644 --- a/app/code/core/Mage/Customer/view/frontend/register.js +++ b/app/code/core/Mage/Customer/view/frontend/register.js @@ -19,7 +19,7 @@ * * @category customer frontend register * @package mage - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /*jshint browser:true jquery:true*/ diff --git a/app/code/core/Mage/Customer/view/frontend/widget/dob.phtml b/app/code/core/Mage/Customer/view/frontend/widget/dob.phtml index 3a0728b3a2282f30177d4fbf722a89072f325bef..c2bf355b00db6151593781adaf25c1b12a119107 100644 --- a/app/code/core/Mage/Customer/view/frontend/widget/dob.phtml +++ b/app/code/core/Mage/Customer/view/frontend/widget/dob.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Customer/view/frontend/widget/gender.phtml b/app/code/core/Mage/Customer/view/frontend/widget/gender.phtml index f885f1329a0edbd5753972e66a19a94abe060610..bd896c217e06af4e78c35dccf849435bec7c8215 100644 --- a/app/code/core/Mage/Customer/view/frontend/widget/gender.phtml +++ b/app/code/core/Mage/Customer/view/frontend/widget/gender.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Customer/view/frontend/widget/name.phtml b/app/code/core/Mage/Customer/view/frontend/widget/name.phtml index 68f5f9bff73019bf9655c5ef4de5df02ef1237b4..bd560f421c345b91050cac0b74eedb8b59e2fe38 100644 --- a/app/code/core/Mage/Customer/view/frontend/widget/name.phtml +++ b/app/code/core/Mage/Customer/view/frontend/widget/name.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Customer/view/frontend/widget/taxvat.phtml b/app/code/core/Mage/Customer/view/frontend/widget/taxvat.phtml index e8cbac00ee2f3a47c02a7c0546da009858a5d7ce..356a49fbae54bebfd7abf5ccb7c2b4a17f6a0e18 100644 --- a/app/code/core/Mage/Customer/view/frontend/widget/taxvat.phtml +++ b/app/code/core/Mage/Customer/view/frontend/widget/taxvat.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/DesignEditor/Block/Adminhtml/Editor/Container.php b/app/code/core/Mage/DesignEditor/Block/Adminhtml/Editor/Container.php index c36596357a85114d4fbbc2a3d8d5414fa74421f4..0372430cfda22df36ec56e48637103286a962ea4 100644 --- a/app/code/core/Mage/DesignEditor/Block/Adminhtml/Editor/Container.php +++ b/app/code/core/Mage/DesignEditor/Block/Adminhtml/Editor/Container.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_DesignEditor - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/DesignEditor/Block/Adminhtml/Editor/Toolbar/BlockAbstract.php b/app/code/core/Mage/DesignEditor/Block/Adminhtml/Editor/Toolbar/BlockAbstract.php index 842168f52bf2232e584f7ddfbe71eabb7e13f01c..b91023785f56521b121f8c44ab3a2977ae930bc5 100644 --- a/app/code/core/Mage/DesignEditor/Block/Adminhtml/Editor/Toolbar/BlockAbstract.php +++ b/app/code/core/Mage/DesignEditor/Block/Adminhtml/Editor/Toolbar/BlockAbstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_DesignEditor - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/DesignEditor/Block/Adminhtml/Editor/Toolbar/Buttons.php b/app/code/core/Mage/DesignEditor/Block/Adminhtml/Editor/Toolbar/Buttons.php index 373f7f481adb3cc31ad6cc7868d20fbd651e2c7c..10e82de881fd27fbeb0f19e7049a3a11e3e27641 100644 --- a/app/code/core/Mage/DesignEditor/Block/Adminhtml/Editor/Toolbar/Buttons.php +++ b/app/code/core/Mage/DesignEditor/Block/Adminhtml/Editor/Toolbar/Buttons.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_DesignEditor - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/DesignEditor/Block/Adminhtml/Editor/Toolbar/HandlesHierarchy.php b/app/code/core/Mage/DesignEditor/Block/Adminhtml/Editor/Toolbar/HandlesHierarchy.php index 169dc3efb87192e9a7142c71d606f9cc5640544b..eca6836b80a64a8586ba384c172da55722edf9ec 100644 --- a/app/code/core/Mage/DesignEditor/Block/Adminhtml/Editor/Toolbar/HandlesHierarchy.php +++ b/app/code/core/Mage/DesignEditor/Block/Adminhtml/Editor/Toolbar/HandlesHierarchy.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_DesignEditor - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/DesignEditor/Block/Adminhtml/Editor/Toolbar/ViewOptions.php b/app/code/core/Mage/DesignEditor/Block/Adminhtml/Editor/Toolbar/ViewOptions.php index 5553b7e3a969cca85b16a7e8bc9263a8576d845d..e9a5ea8ad8ecb39a0879666c73f6926745ea9352 100644 --- a/app/code/core/Mage/DesignEditor/Block/Adminhtml/Editor/Toolbar/ViewOptions.php +++ b/app/code/core/Mage/DesignEditor/Block/Adminhtml/Editor/Toolbar/ViewOptions.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_DesignEditor - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/DesignEditor/Block/Adminhtml/Theme.php b/app/code/core/Mage/DesignEditor/Block/Adminhtml/Theme.php index c380f6ce5657939c449e33605da27b3addb116f4..48ea4bcbda3c6294b705e874c84cac64ed375858 100644 --- a/app/code/core/Mage/DesignEditor/Block/Adminhtml/Theme.php +++ b/app/code/core/Mage/DesignEditor/Block/Adminhtml/Theme.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_DesignEditor - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/DesignEditor/Block/Adminhtml/Theme/Selector/List/Abstract.php b/app/code/core/Mage/DesignEditor/Block/Adminhtml/Theme/Selector/List/Abstract.php index 0bbc766cc195166284d31915d2e7d6f98c144be9..1d550539e005abedb644e610fda695e2b28b0104 100644 --- a/app/code/core/Mage/DesignEditor/Block/Adminhtml/Theme/Selector/List/Abstract.php +++ b/app/code/core/Mage/DesignEditor/Block/Adminhtml/Theme/Selector/List/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_DesignEditor - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/DesignEditor/Block/Adminhtml/Theme/Selector/List/Assigned.php b/app/code/core/Mage/DesignEditor/Block/Adminhtml/Theme/Selector/List/Assigned.php index d1d7ca9dba2969efd0c7661fb1ce71a4312cab0a..be9decd98091eaacc71625174905309a553ca310 100644 --- a/app/code/core/Mage/DesignEditor/Block/Adminhtml/Theme/Selector/List/Assigned.php +++ b/app/code/core/Mage/DesignEditor/Block/Adminhtml/Theme/Selector/List/Assigned.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_DesignEditor - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/DesignEditor/Block/Adminhtml/Theme/Selector/List/Available.php b/app/code/core/Mage/DesignEditor/Block/Adminhtml/Theme/Selector/List/Available.php index 55338a0b91f0c84b3248a729da4a2fee61468bfc..54ee5c12a8851376f69519285da106c69cff8154 100644 --- a/app/code/core/Mage/DesignEditor/Block/Adminhtml/Theme/Selector/List/Available.php +++ b/app/code/core/Mage/DesignEditor/Block/Adminhtml/Theme/Selector/List/Available.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_DesignEditor - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/DesignEditor/Block/Adminhtml/Theme/Selector/List/Unassigned.php b/app/code/core/Mage/DesignEditor/Block/Adminhtml/Theme/Selector/List/Unassigned.php index a9ba65e88b620762afc6e2efecc5d9613304bbea..696c04dde47f1e6ba8f8fa518b3dda7bc41b3cf1 100644 --- a/app/code/core/Mage/DesignEditor/Block/Adminhtml/Theme/Selector/List/Unassigned.php +++ b/app/code/core/Mage/DesignEditor/Block/Adminhtml/Theme/Selector/List/Unassigned.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_DesignEditor - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/DesignEditor/Block/Adminhtml/Theme/Selector/StoreView.php b/app/code/core/Mage/DesignEditor/Block/Adminhtml/Theme/Selector/StoreView.php index 89e92002cd8574539d44d0d3c1284a4cda3c25bf..9683dbb7977c789fadf41cdbec9222fb6a098ec3 100644 --- a/app/code/core/Mage/DesignEditor/Block/Adminhtml/Theme/Selector/StoreView.php +++ b/app/code/core/Mage/DesignEditor/Block/Adminhtml/Theme/Selector/StoreView.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_DesignEditor - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/DesignEditor/Block/Adminhtml/Theme/Selector/Tab/Available.php b/app/code/core/Mage/DesignEditor/Block/Adminhtml/Theme/Selector/Tab/Available.php index 72fbe5dc6219b84704d334539103a72c4eef9f1a..c2379d93575a04cc024a79970b4e66b3e9f71abb 100644 --- a/app/code/core/Mage/DesignEditor/Block/Adminhtml/Theme/Selector/Tab/Available.php +++ b/app/code/core/Mage/DesignEditor/Block/Adminhtml/Theme/Selector/Tab/Available.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_DesignEditor - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/DesignEditor/Block/Adminhtml/Theme/Selector/Tab/Customizations.php b/app/code/core/Mage/DesignEditor/Block/Adminhtml/Theme/Selector/Tab/Customizations.php index c72861ba1bc8d26cba8dcc657b4dab893112ca21..0f9a1ae0b05918ce9008049a00235738054d7922 100644 --- a/app/code/core/Mage/DesignEditor/Block/Adminhtml/Theme/Selector/Tab/Customizations.php +++ b/app/code/core/Mage/DesignEditor/Block/Adminhtml/Theme/Selector/Tab/Customizations.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_DesignEditor - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/DesignEditor/Block/Adminhtml/Theme/Selector/Tabs.php b/app/code/core/Mage/DesignEditor/Block/Adminhtml/Theme/Selector/Tabs.php index 9d794b8face509e40918e0b5ad4ad0377754e9da..db972857d9e94e0b038294dc9add3e316b1bfeda 100644 --- a/app/code/core/Mage/DesignEditor/Block/Adminhtml/Theme/Selector/Tabs.php +++ b/app/code/core/Mage/DesignEditor/Block/Adminhtml/Theme/Selector/Tabs.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_DesignEditor - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/DesignEditor/Block/Container.php b/app/code/core/Mage/DesignEditor/Block/Container.php index d4a269f739fefb6fcffa4b077f1c9fe85a28e107..0ada0af1adc83be3bef17f9ee7d0109284278c21 100644 --- a/app/code/core/Mage/DesignEditor/Block/Container.php +++ b/app/code/core/Mage/DesignEditor/Block/Container.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_DesignEditor - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/DesignEditor/Block/Page/Html/Head.php b/app/code/core/Mage/DesignEditor/Block/Page/Html/Head.php index b824fd8f6013d9d28d0bb18dd0f23ba573d78a6a..8d7fe555654d9e53df4a627fda338c8e7b19e605 100644 --- a/app/code/core/Mage/DesignEditor/Block/Page/Html/Head.php +++ b/app/code/core/Mage/DesignEditor/Block/Page/Html/Head.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_DesignEditor - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/DesignEditor/Block/Page/Html/Head/Vde.php b/app/code/core/Mage/DesignEditor/Block/Page/Html/Head/Vde.php index eb1257944faf21fa6c556631d69270ef8d3dc7ec..38d031b97ff1294e67079547d6cf19bf844763e6 100644 --- a/app/code/core/Mage/DesignEditor/Block/Page/Html/Head/Vde.php +++ b/app/code/core/Mage/DesignEditor/Block/Page/Html/Head/Vde.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_DesignEditor - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/DesignEditor/Block/Template.php b/app/code/core/Mage/DesignEditor/Block/Template.php index 3ae79e146dc7425116d7aaae8454612b8600ecc2..28d3d1737990d1d1f13b7f8b2cedbb770bcc23f5 100644 --- a/app/code/core/Mage/DesignEditor/Block/Template.php +++ b/app/code/core/Mage/DesignEditor/Block/Template.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_DesignEditor - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/DesignEditor/Block/Toolbar/History.php b/app/code/core/Mage/DesignEditor/Block/Toolbar/History.php index 109d8a121b115e837f01b23e4e4980e38b14e0e7..12b62dfba4959ee50fade3fbb3c9ef2e676b6f1e 100644 --- a/app/code/core/Mage/DesignEditor/Block/Toolbar/History.php +++ b/app/code/core/Mage/DesignEditor/Block/Toolbar/History.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_DesignEditor - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/DesignEditor/Block/Wrapper/Remove.php b/app/code/core/Mage/DesignEditor/Block/Wrapper/Remove.php index d0af15f54b8396fdc2b66a038f2b48254ad9350b..88c16daa7f48fa14d1554e536fdc357b39b78259 100644 --- a/app/code/core/Mage/DesignEditor/Block/Wrapper/Remove.php +++ b/app/code/core/Mage/DesignEditor/Block/Wrapper/Remove.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_DesignEditor - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/DesignEditor/Controller/Varien/Router/Standard.php b/app/code/core/Mage/DesignEditor/Controller/Varien/Router/Standard.php index b38bba36efab515736cb96614c81bbf9ab3c6531..2e50df56052e17d67fef5d4d0e8dfec4b17dd743 100644 --- a/app/code/core/Mage/DesignEditor/Controller/Varien/Router/Standard.php +++ b/app/code/core/Mage/DesignEditor/Controller/Varien/Router/Standard.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_DesignEditor - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/DesignEditor/Helper/Data.php b/app/code/core/Mage/DesignEditor/Helper/Data.php index e0e4ebc28245c89392728f8d879f729bbff4ad4b..c93212a57402e13a87078db2dd0262ed24558fba 100644 --- a/app/code/core/Mage/DesignEditor/Helper/Data.php +++ b/app/code/core/Mage/DesignEditor/Helper/Data.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_DesignEditor - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/DesignEditor/Model/Area.php b/app/code/core/Mage/DesignEditor/Model/Area.php index 64bbcb29c9f157fb0d162431c51feafb93927828..eb9e27f93f583be2d866be0859f4d87faf288335 100644 --- a/app/code/core/Mage/DesignEditor/Model/Area.php +++ b/app/code/core/Mage/DesignEditor/Model/Area.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_DesignEditor - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/DesignEditor/Model/Change/Collection.php b/app/code/core/Mage/DesignEditor/Model/Change/Collection.php index 732b708d5b44573bc97ab744674f63050ae8d541..324f9c442dd9283246e966d409eef42411ba8bae 100644 --- a/app/code/core/Mage/DesignEditor/Model/Change/Collection.php +++ b/app/code/core/Mage/DesignEditor/Model/Change/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_DesignEditor - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/DesignEditor/Model/Change/Factory.php b/app/code/core/Mage/DesignEditor/Model/Change/Factory.php index faa00464cc4c68460d432902acd436ecf20613dd..954c786118f5ab1cb7ebe09a64be8fd40603dcf9 100644 --- a/app/code/core/Mage/DesignEditor/Model/Change/Factory.php +++ b/app/code/core/Mage/DesignEditor/Model/Change/Factory.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_DesignEditor - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/DesignEditor/Model/Change/Layout/Move.php b/app/code/core/Mage/DesignEditor/Model/Change/Layout/Move.php index e5c746182677760f6cd8c11ada892417efa7970e..49b3e1127277400fe22bffad5817b3b65b4d4950 100644 --- a/app/code/core/Mage/DesignEditor/Model/Change/Layout/Move.php +++ b/app/code/core/Mage/DesignEditor/Model/Change/Layout/Move.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_DesignEditor - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/DesignEditor/Model/Change/Layout/Remove.php b/app/code/core/Mage/DesignEditor/Model/Change/Layout/Remove.php index 282f642fb63d88e778838b1338044ce7b2b377bb..2306488abbb8d3ae133e050875acd8bf582fa650 100644 --- a/app/code/core/Mage/DesignEditor/Model/Change/Layout/Remove.php +++ b/app/code/core/Mage/DesignEditor/Model/Change/Layout/Remove.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_DesignEditor - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/DesignEditor/Model/Change/LayoutAbstract.php b/app/code/core/Mage/DesignEditor/Model/Change/LayoutAbstract.php index c0ca23703cde397d6f27fecddf4dd0284b52a5b7..34db25cfca066fbd2c985f6eb06620a388f2bd85 100644 --- a/app/code/core/Mage/DesignEditor/Model/Change/LayoutAbstract.php +++ b/app/code/core/Mage/DesignEditor/Model/Change/LayoutAbstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_DesignEditor - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/DesignEditor/Model/ChangeAbstract.php b/app/code/core/Mage/DesignEditor/Model/ChangeAbstract.php index d6be477983e65b8c30ad065850cc421d7eb668b0..7973f0eafd8c7356fac9ff755ed74e3bc996887d 100644 --- a/app/code/core/Mage/DesignEditor/Model/ChangeAbstract.php +++ b/app/code/core/Mage/DesignEditor/Model/ChangeAbstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_DesignEditor - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/DesignEditor/Model/History.php b/app/code/core/Mage/DesignEditor/Model/History.php index 240ec7ec4a77f4793a3a963a04a8a4090bc59467..270bcd51b4bc9803939e4a9328ef1a2f2960e077 100644 --- a/app/code/core/Mage/DesignEditor/Model/History.php +++ b/app/code/core/Mage/DesignEditor/Model/History.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_DesignEditor - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/DesignEditor/Model/History/Compact.php b/app/code/core/Mage/DesignEditor/Model/History/Compact.php index da680751c37aa693c49d890071457a7c073fca52..e159b854e563d7dd849e7b1f4469c3a992c62afc 100644 --- a/app/code/core/Mage/DesignEditor/Model/History/Compact.php +++ b/app/code/core/Mage/DesignEditor/Model/History/Compact.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_DesignEditor - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/DesignEditor/Model/History/Compact/Layout.php b/app/code/core/Mage/DesignEditor/Model/History/Compact/Layout.php index 9f0e92cb4e624e7cbb02c05da8b5b6a5cf399073..a899dadf64bca8031e872595f42fdf6c7e439411 100644 --- a/app/code/core/Mage/DesignEditor/Model/History/Compact/Layout.php +++ b/app/code/core/Mage/DesignEditor/Model/History/Compact/Layout.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_DesignEditor - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/DesignEditor/Model/History/CompactAbstract.php b/app/code/core/Mage/DesignEditor/Model/History/CompactAbstract.php index 71dcad9cecde1d55bc80fb59979eab521f1fa2a7..05ee42ac2b911bdb73cc9d5311aa4fb45b34c1f0 100644 --- a/app/code/core/Mage/DesignEditor/Model/History/CompactAbstract.php +++ b/app/code/core/Mage/DesignEditor/Model/History/CompactAbstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_DesignEditor - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/DesignEditor/Model/History/CompactInterface.php b/app/code/core/Mage/DesignEditor/Model/History/CompactInterface.php index ce75145e6daf753e2b9db2943d296f1a1a8e1318..413dc463c0997ad9efb17a7a9db73a99ad844c03 100644 --- a/app/code/core/Mage/DesignEditor/Model/History/CompactInterface.php +++ b/app/code/core/Mage/DesignEditor/Model/History/CompactInterface.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_DesignEditor - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/DesignEditor/Model/History/Renderer/LayoutUpdate.php b/app/code/core/Mage/DesignEditor/Model/History/Renderer/LayoutUpdate.php index 661519c4055a1c73fb302c70ff38c8d391dac438..54b7a8fdc0d98bf7118158335fe76200f6c5d82b 100644 --- a/app/code/core/Mage/DesignEditor/Model/History/Renderer/LayoutUpdate.php +++ b/app/code/core/Mage/DesignEditor/Model/History/Renderer/LayoutUpdate.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_DesignEditor - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/DesignEditor/Model/History/RendererInterface.php b/app/code/core/Mage/DesignEditor/Model/History/RendererInterface.php index 7908afc88a2907c570e606c741f88a53a8000fad..224005201a9e1e8fb0fb4a00b1e963c2e14cabfd 100644 --- a/app/code/core/Mage/DesignEditor/Model/History/RendererInterface.php +++ b/app/code/core/Mage/DesignEditor/Model/History/RendererInterface.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_DesignEditor - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/DesignEditor/Model/Layout.php b/app/code/core/Mage/DesignEditor/Model/Layout.php index 5d89dbc2af59bb939c74157b975f91fe3627b2e3..4c2892e9a236df635771d5b0d8d86da34c2cad13 100644 --- a/app/code/core/Mage/DesignEditor/Model/Layout.php +++ b/app/code/core/Mage/DesignEditor/Model/Layout.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_DesignEditor - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/DesignEditor/Model/Observer.php b/app/code/core/Mage/DesignEditor/Model/Observer.php index 6c60c15accf375893866a223bcba2c2f5bdb77dc..43c07842c359839c51e1d8aa1a495a85b5ec9104 100644 --- a/app/code/core/Mage/DesignEditor/Model/Observer.php +++ b/app/code/core/Mage/DesignEditor/Model/Observer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_DesignEditor - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/DesignEditor/Model/State.php b/app/code/core/Mage/DesignEditor/Model/State.php index 595e2dc35b36d410e1d7aeec5e5122f2904459cc..b7caad860dda50a561b013ec2b061530b3f94f8b 100644 --- a/app/code/core/Mage/DesignEditor/Model/State.php +++ b/app/code/core/Mage/DesignEditor/Model/State.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_DesignEditor - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/DesignEditor/Model/Url/DesignMode.php b/app/code/core/Mage/DesignEditor/Model/Url/DesignMode.php index 6d17e0af32ff2db57714844579a274393180686d..e992cdc3c5730a03067fe2bf56a6853e954176cf 100644 --- a/app/code/core/Mage/DesignEditor/Model/Url/DesignMode.php +++ b/app/code/core/Mage/DesignEditor/Model/Url/DesignMode.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_DesignEditor - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/DesignEditor/Model/Url/Factory.php b/app/code/core/Mage/DesignEditor/Model/Url/Factory.php index 68481873331fc24734c837a7949598cc548e02aa..869611a1654f919dd490dcc43cd6cef8e3aebe61 100644 --- a/app/code/core/Mage/DesignEditor/Model/Url/Factory.php +++ b/app/code/core/Mage/DesignEditor/Model/Url/Factory.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/DesignEditor/Model/Url/Handle.php b/app/code/core/Mage/DesignEditor/Model/Url/Handle.php index 2c77262e9ae2011bef67f2584434f75d0677d3e6..1698b8aac9a2bf2c0e616c67de432a8af417d21f 100644 --- a/app/code/core/Mage/DesignEditor/Model/Url/Handle.php +++ b/app/code/core/Mage/DesignEditor/Model/Url/Handle.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_DesignEditor - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/DesignEditor/Model/Url/NavigationMode.php b/app/code/core/Mage/DesignEditor/Model/Url/NavigationMode.php index 247b66e41dff9f004a8b61d9941d72c653bfab6c..0fb28f955173a269178c6a820aa4a8e63c1c8c3a 100644 --- a/app/code/core/Mage/DesignEditor/Model/Url/NavigationMode.php +++ b/app/code/core/Mage/DesignEditor/Model/Url/NavigationMode.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_DesignEditor - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/DesignEditor/controllers/Adminhtml/System/Design/EditorController.php b/app/code/core/Mage/DesignEditor/controllers/Adminhtml/System/Design/EditorController.php index fc7bcc425fede6856bb9c7aa517bf30765fc388b..9fe148da4e4d46ab9514a5dfaff697c16749c49c 100644 --- a/app/code/core/Mage/DesignEditor/controllers/Adminhtml/System/Design/EditorController.php +++ b/app/code/core/Mage/DesignEditor/controllers/Adminhtml/System/Design/EditorController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_DesignEditor - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/DesignEditor/controllers/PageController.php b/app/code/core/Mage/DesignEditor/controllers/PageController.php index d74ab6158a2614cc5bd523af400386c66bf45849..0ec26ef071eb20df63c5b3dcdf0aa050f4fca6c1 100644 --- a/app/code/core/Mage/DesignEditor/controllers/PageController.php +++ b/app/code/core/Mage/DesignEditor/controllers/PageController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_DesignEditor - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/DesignEditor/etc/adminhtml/acl.xml b/app/code/core/Mage/DesignEditor/etc/adminhtml/acl.xml index 027e2ef9a53b5b11e95ee92d6244711819ff990e..b2ff7745bdd154f263a4169b26eb4dd8f7696880 100644 --- a/app/code/core/Mage/DesignEditor/etc/adminhtml/acl.xml +++ b/app/code/core/Mage/DesignEditor/etc/adminhtml/acl.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_DesignEditor - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/DesignEditor/etc/adminhtml/menu.xml b/app/code/core/Mage/DesignEditor/etc/adminhtml/menu.xml index 512cfdf184d6bfdacb5b0a79beb849334f0ea1cf..251fa7af6fbb200621f48650b4471b3aaded522e 100644 --- a/app/code/core/Mage/DesignEditor/etc/adminhtml/menu.xml +++ b/app/code/core/Mage/DesignEditor/etc/adminhtml/menu.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_DesignEditor - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/DesignEditor/etc/config.xml b/app/code/core/Mage/DesignEditor/etc/config.xml index 40c8b10c110a6898f24d6c2ab4917a27872fdc73..208b6ab8a34b0361df2b41ddbe8307497b27753d 100644 --- a/app/code/core/Mage/DesignEditor/etc/config.xml +++ b/app/code/core/Mage/DesignEditor/etc/config.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_DesignEditor - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/DesignEditor/etc/jstranslator.xml b/app/code/core/Mage/DesignEditor/etc/jstranslator.xml index 0b094225d54743f21a4f29701301a842ad306420..71b9055233a8acddbc68f5ffad1d7ae0f15efa29 100644 --- a/app/code/core/Mage/DesignEditor/etc/jstranslator.xml +++ b/app/code/core/Mage/DesignEditor/etc/jstranslator.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_DesignEditor - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/DesignEditor/view/adminhtml/css/styles.css b/app/code/core/Mage/DesignEditor/view/adminhtml/css/styles.css index 2d1032ebf0b41e05eecebff0f75762990e2e441c..0a3f533512f940a794724763733c40a7cd471e59 100644 --- a/app/code/core/Mage/DesignEditor/view/adminhtml/css/styles.css +++ b/app/code/core/Mage/DesignEditor/view/adminhtml/css/styles.css @@ -19,7 +19,7 @@ * * @category design * @package Mage_DesignEditor - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ .theme-element { diff --git a/app/code/core/Mage/DesignEditor/view/adminhtml/editor.phtml b/app/code/core/Mage/DesignEditor/view/adminhtml/editor.phtml index 38f3617c1f300905044c59a70eb75c4ab4c18331..0fac254814c6698cf720785a7560a892c73e8f88 100644 --- a/app/code/core/Mage/DesignEditor/view/adminhtml/editor.phtml +++ b/app/code/core/Mage/DesignEditor/view/adminhtml/editor.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/DesignEditor/view/adminhtml/editor/container.phtml b/app/code/core/Mage/DesignEditor/view/adminhtml/editor/container.phtml index 46ef16dd1378356c9e533f3720c430a605913621..9676de5c2a8ac70248a3d5c2fe952815bc166f22 100644 --- a/app/code/core/Mage/DesignEditor/view/adminhtml/editor/container.phtml +++ b/app/code/core/Mage/DesignEditor/view/adminhtml/editor/container.phtml @@ -20,7 +20,7 @@ * * @category design * @package Mage_DesignEditor - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/DesignEditor/view/adminhtml/editor/toolbar.phtml b/app/code/core/Mage/DesignEditor/view/adminhtml/editor/toolbar.phtml index 674a1df76057a38ea5e35653ecbe21f1b7848782..11ae67d0f156e3e9eeb19f7c972f567419adf2c7 100644 --- a/app/code/core/Mage/DesignEditor/view/adminhtml/editor/toolbar.phtml +++ b/app/code/core/Mage/DesignEditor/view/adminhtml/editor/toolbar.phtml @@ -20,7 +20,7 @@ * * @category design * @package Mage_DesignEditor - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/DesignEditor/view/adminhtml/editor/toolbar/buttons.phtml b/app/code/core/Mage/DesignEditor/view/adminhtml/editor/toolbar/buttons.phtml index c2e0243df6889a23d2b81e9e2f351c2ad451754c..026854a652902d10eeb80f2807308806a6160626 100644 --- a/app/code/core/Mage/DesignEditor/view/adminhtml/editor/toolbar/buttons.phtml +++ b/app/code/core/Mage/DesignEditor/view/adminhtml/editor/toolbar/buttons.phtml @@ -20,7 +20,7 @@ * * @category design * @package Mage_DesignEditor - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/DesignEditor/view/adminhtml/editor/toolbar/handles_hierarchy.phtml b/app/code/core/Mage/DesignEditor/view/adminhtml/editor/toolbar/handles_hierarchy.phtml index c9b2617757a027da82477c3154b0fc7a86aafc89..6612396ce31dfc024dfdba9ac84d6d9571b878f1 100644 --- a/app/code/core/Mage/DesignEditor/view/adminhtml/editor/toolbar/handles_hierarchy.phtml +++ b/app/code/core/Mage/DesignEditor/view/adminhtml/editor/toolbar/handles_hierarchy.phtml @@ -20,7 +20,7 @@ * * @category design * @package Mage_DesignEditor - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/DesignEditor/view/adminhtml/editor/toolbar/view_options.phtml b/app/code/core/Mage/DesignEditor/view/adminhtml/editor/toolbar/view_options.phtml index 6caa3fc3195a367db20faae3dffe8e561de10ed9..58fd4116231ea8c2b293649fc800c17eafe8bf7c 100644 --- a/app/code/core/Mage/DesignEditor/view/adminhtml/editor/toolbar/view_options.phtml +++ b/app/code/core/Mage/DesignEditor/view/adminhtml/editor/toolbar/view_options.phtml @@ -20,7 +20,7 @@ * * @category design * @package Mage_DesignEditor - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/DesignEditor/view/adminhtml/js/base.js b/app/code/core/Mage/DesignEditor/view/adminhtml/js/base.js index f263c3bfa43a7e9cd5932503eeb08f672540388f..33f136148c5036c714e6d6e378ce79299481872f 100644 --- a/app/code/core/Mage/DesignEditor/view/adminhtml/js/base.js +++ b/app/code/core/Mage/DesignEditor/view/adminhtml/js/base.js @@ -19,7 +19,7 @@ * * @category Mage * @package Mage_DesignEditor - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/DesignEditor/view/adminhtml/js/design_editor.js b/app/code/core/Mage/DesignEditor/view/adminhtml/js/design_editor.js index 91c92506f623a8df1c23b94ba3d434bb84af455d..bde2616d0606458e6209e7bb067197f8f3cf5bb9 100644 --- a/app/code/core/Mage/DesignEditor/view/adminhtml/js/design_editor.js +++ b/app/code/core/Mage/DesignEditor/view/adminhtml/js/design_editor.js @@ -19,7 +19,7 @@ * * @category Mage * @package Mage_DesignEditor - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/DesignEditor/view/adminhtml/js/infinitescroll.js b/app/code/core/Mage/DesignEditor/view/adminhtml/js/infinitescroll.js index 1c9985f5e60323f6fd267aee0aa4ea5ee1d3acd5..e23b201b4b8482431817ff71bad62a8636e8b7fd 100644 --- a/app/code/core/Mage/DesignEditor/view/adminhtml/js/infinitescroll.js +++ b/app/code/core/Mage/DesignEditor/view/adminhtml/js/infinitescroll.js @@ -19,7 +19,7 @@ * * @category Mage * @package Mage_DesignEditor - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/DesignEditor/view/adminhtml/js/theme-selector.js b/app/code/core/Mage/DesignEditor/view/adminhtml/js/theme-selector.js index 2b13910d41f7a1924c6faaa5183db774662cfa1e..4ec06127ce2352a1ea461ec85d2a34f7d26d2ef6 100644 --- a/app/code/core/Mage/DesignEditor/view/adminhtml/js/theme-selector.js +++ b/app/code/core/Mage/DesignEditor/view/adminhtml/js/theme-selector.js @@ -19,7 +19,7 @@ * * @category mage * @package mage - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /*jshint jquery:true*/ diff --git a/app/code/core/Mage/DesignEditor/view/adminhtml/layout.xml b/app/code/core/Mage/DesignEditor/view/adminhtml/layout.xml index b39004e5381bd1375c562aa882fd871fc696fc19..b4d85112aad9cea26c9b07e760d86bf89cd5d280 100644 --- a/app/code/core/Mage/DesignEditor/view/adminhtml/layout.xml +++ b/app/code/core/Mage/DesignEditor/view/adminhtml/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package Mage_DesignEditor - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/DesignEditor/view/adminhtml/theme.phtml b/app/code/core/Mage/DesignEditor/view/adminhtml/theme.phtml index 26118cc1aad8170a0cbc14cdffbef308ce439399..cd58919e12b6478f7658d66a9c57eb6f957939be 100644 --- a/app/code/core/Mage/DesignEditor/view/adminhtml/theme.phtml +++ b/app/code/core/Mage/DesignEditor/view/adminhtml/theme.phtml @@ -20,7 +20,7 @@ * * @category design * @package Mage_DesignEditor - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/DesignEditor/view/adminhtml/theme/list/available.phtml b/app/code/core/Mage/DesignEditor/view/adminhtml/theme/list/available.phtml index 73d080cc22f0bb2618f8a83ecd4699f8c0600e99..2d1f0a55bd613ed82f79e076774d11f1d072bc62 100644 --- a/app/code/core/Mage/DesignEditor/view/adminhtml/theme/list/available.phtml +++ b/app/code/core/Mage/DesignEditor/view/adminhtml/theme/list/available.phtml @@ -20,7 +20,7 @@ * * @category design * @package Mage_DesignEditor - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/DesignEditor/view/adminhtml/theme/list/available_ajax.phtml b/app/code/core/Mage/DesignEditor/view/adminhtml/theme/list/available_ajax.phtml index a14511af1f0430e107ae903d920993e9270b2633..9e1bd9fd10df68baf461ba436c4d830846db2eae 100644 --- a/app/code/core/Mage/DesignEditor/view/adminhtml/theme/list/available_ajax.phtml +++ b/app/code/core/Mage/DesignEditor/view/adminhtml/theme/list/available_ajax.phtml @@ -20,7 +20,7 @@ * * @category design * @package Mage_DesignEditor - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/DesignEditor/view/adminhtml/theme/list/customized.phtml b/app/code/core/Mage/DesignEditor/view/adminhtml/theme/list/customized.phtml index 104c2d697eaeaba4171beada4be9b413e6e6bc35..7c856c7fbea1ad30a778e241a1146b3fb8f547f7 100644 --- a/app/code/core/Mage/DesignEditor/view/adminhtml/theme/list/customized.phtml +++ b/app/code/core/Mage/DesignEditor/view/adminhtml/theme/list/customized.phtml @@ -20,7 +20,7 @@ * * @category design * @package Mage_DesignEditor - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/DesignEditor/view/adminhtml/theme/selector/firstEntrance.phtml b/app/code/core/Mage/DesignEditor/view/adminhtml/theme/selector/firstEntrance.phtml index 5254dca3d68ecaa63ea61afb497e251f41a1fd13..67878f72ce3dcdc0bf99bb078f4520542fc1c3fc 100644 --- a/app/code/core/Mage/DesignEditor/view/adminhtml/theme/selector/firstEntrance.phtml +++ b/app/code/core/Mage/DesignEditor/view/adminhtml/theme/selector/firstEntrance.phtml @@ -20,7 +20,7 @@ * * @category design * @package Mage_DesignEditor - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/DesignEditor/view/adminhtml/theme/selector/myCustomizationsTab.phtml b/app/code/core/Mage/DesignEditor/view/adminhtml/theme/selector/myCustomizationsTab.phtml index 3ddea290b1c0fdf95a000ab5de6ac11b1658251f..81603a2281587c54b943384d296041176513272a 100644 --- a/app/code/core/Mage/DesignEditor/view/adminhtml/theme/selector/myCustomizationsTab.phtml +++ b/app/code/core/Mage/DesignEditor/view/adminhtml/theme/selector/myCustomizationsTab.phtml @@ -20,7 +20,7 @@ * * @category design * @package Mage_DesignEditor - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/DesignEditor/view/adminhtml/theme/selector/storeview.phtml b/app/code/core/Mage/DesignEditor/view/adminhtml/theme/selector/storeview.phtml index 187fdf1d629d72717ee9b00b88eced59e1da0c86..c24968cb69df500def59bf83018154c63d030fc1 100644 --- a/app/code/core/Mage/DesignEditor/view/adminhtml/theme/selector/storeview.phtml +++ b/app/code/core/Mage/DesignEditor/view/adminhtml/theme/selector/storeview.phtml @@ -20,7 +20,7 @@ * * @category design * @package Mage_DesignEditor - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/DesignEditor/view/adminhtml/theme_customizations.phtml b/app/code/core/Mage/DesignEditor/view/adminhtml/theme_customizations.phtml index a829abaaa6b5a6156b147c3f90c0fe12e2426404..c9d4fdb33d5c3003ca49c427d29f6e0612888493 100644 --- a/app/code/core/Mage/DesignEditor/view/adminhtml/theme_customizations.phtml +++ b/app/code/core/Mage/DesignEditor/view/adminhtml/theme_customizations.phtml @@ -20,7 +20,7 @@ * * @category design * @package Mage_DesignEditor - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/DesignEditor/view/frontend/css/design.css b/app/code/core/Mage/DesignEditor/view/frontend/css/design.css index 03ae0a294f91866857aab0e1461d8c73708dfb19..ae20890496c25a77be745bdb6fcce25ac09b3f28 100644 --- a/app/code/core/Mage/DesignEditor/view/frontend/css/design.css +++ b/app/code/core/Mage/DesignEditor/view/frontend/css/design.css @@ -19,7 +19,7 @@ * * @category design * @package Mage_DesignEditor - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ #vde_toolbar { diff --git a/app/code/core/Mage/DesignEditor/view/frontend/js/change/layout.js b/app/code/core/Mage/DesignEditor/view/frontend/js/change/layout.js index eda557a88b1e5f8c4a69277277e6042522697637..e6b1f2289662c08f836e18babecdb8f43efc49ac 100644 --- a/app/code/core/Mage/DesignEditor/view/frontend/js/change/layout.js +++ b/app/code/core/Mage/DesignEditor/view/frontend/js/change/layout.js @@ -19,7 +19,7 @@ * * @category Mage * @package Mage_DesignEditor - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/DesignEditor/view/frontend/js/design_editor.js b/app/code/core/Mage/DesignEditor/view/frontend/js/design_editor.js index 5b8f74f25af4984bef981fcb41803a269b1fc4d9..d4d5b8d9b6963901eacc008407ab15b4827bd6c0 100644 --- a/app/code/core/Mage/DesignEditor/view/frontend/js/design_editor.js +++ b/app/code/core/Mage/DesignEditor/view/frontend/js/design_editor.js @@ -19,7 +19,7 @@ * * @category Mage * @package Mage_DesignEditor - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/DesignEditor/view/frontend/layout.xml b/app/code/core/Mage/DesignEditor/view/frontend/layout.xml index addd373f8f119a9edde0d161abf234570ae16b08..16350958e833c861939e3569d74b6c4d922588cd 100644 --- a/app/code/core/Mage/DesignEditor/view/frontend/layout.xml +++ b/app/code/core/Mage/DesignEditor/view/frontend/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package Mage_DesignEditor - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> @@ -33,13 +33,13 @@ </reference> <reference name="vde_head"> - <action method="addJs"><file>jquery/jquery-1.7.1.min.js</file></action> + <action method="addJs"><file>jquery/jquery.min.js</file></action> + <action method="addJs"><file>jquery/jquery-ui.custom.min.js</file></action> <action method="addJs"><file>mage/jquery-no-conflict.js</file></action> <action method="addJs"><file>jquery/head.js</file></action> <action method="addJs"><file>mage/mage.js</file></action> <action method="addJs"><file>mage/decorate.js</file></action> <action method="addJs"><file>mage/translate.js</file></action> - <action method="addJs"><file>jquery/ui/jquery-ui.js</file></action> <action method="addJs"><file>jquery/jquery.tmpl.min.js</file></action> <action method="addJs"><file>Mage_DesignEditor::js/design_editor.js</file></action> <action method="addJs"><file>Mage_DesignEditor::js/change/layout.js</file></action> diff --git a/app/code/core/Mage/DesignEditor/view/frontend/stub.phtml b/app/code/core/Mage/DesignEditor/view/frontend/stub.phtml index e8f2a1cb8ec84452d2d7a148489a8b37d1ab5242..8d1d88c12696a08f737e4f0aaaace867808f9f42 100644 --- a/app/code/core/Mage/DesignEditor/view/frontend/stub.phtml +++ b/app/code/core/Mage/DesignEditor/view/frontend/stub.phtml @@ -20,7 +20,7 @@ * * @category design * @package Mage_DesignEditor - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/DesignEditor/view/frontend/toolbar/history.phtml b/app/code/core/Mage/DesignEditor/view/frontend/toolbar/history.phtml index d1bf6b4569d0917820199a0ab9d2855eb71d4a78..e8cc2f9a1b2656fc06658619ce7023e1a9b49d4c 100644 --- a/app/code/core/Mage/DesignEditor/view/frontend/toolbar/history.phtml +++ b/app/code/core/Mage/DesignEditor/view/frontend/toolbar/history.phtml @@ -20,7 +20,7 @@ * * @category design * @package Mage_DesignEditor - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/DesignEditor/view/frontend/wrapper/remove.phtml b/app/code/core/Mage/DesignEditor/view/frontend/wrapper/remove.phtml index 5bfcacd01b5ad6f735eb84c30ca958771579c368..e0bd4d9f91ca95e775dcc3c4d221cfe4e9352d4a 100644 --- a/app/code/core/Mage/DesignEditor/view/frontend/wrapper/remove.phtml +++ b/app/code/core/Mage/DesignEditor/view/frontend/wrapper/remove.phtml @@ -20,7 +20,7 @@ * * @category design * @package Mage_DesignEditor - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/DesignEditor/view/frontend/wrapping.phtml b/app/code/core/Mage/DesignEditor/view/frontend/wrapping.phtml index 02ce02ea8cd2e40814add4369e176756c7e57559..3d71d2c6f725c7e954ce62da831c59598460c6da 100644 --- a/app/code/core/Mage/DesignEditor/view/frontend/wrapping.phtml +++ b/app/code/core/Mage/DesignEditor/view/frontend/wrapping.phtml @@ -20,7 +20,7 @@ * * @category design * @package Mage_DesignEditor - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Directory/Block/Adminhtml/Frontend/Currency/Base.php b/app/code/core/Mage/Directory/Block/Adminhtml/Frontend/Currency/Base.php index b28b86ad0f5a5d5a28c7e49c0f50296ee880c727..52655778830db32a57846bb8dc6a6ab76d08115f 100644 --- a/app/code/core/Mage/Directory/Block/Adminhtml/Frontend/Currency/Base.php +++ b/app/code/core/Mage/Directory/Block/Adminhtml/Frontend/Currency/Base.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Directory - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Directory/Block/Adminhtml/Frontend/Region/Updater.php b/app/code/core/Mage/Directory/Block/Adminhtml/Frontend/Region/Updater.php index 0fbcaca1ddcf5536925f8f8bd8fdb384f2551d66..f572b1f9dd7114298f831caba29cc4679dc8046c 100644 --- a/app/code/core/Mage/Directory/Block/Adminhtml/Frontend/Region/Updater.php +++ b/app/code/core/Mage/Directory/Block/Adminhtml/Frontend/Region/Updater.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Directory - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Directory/Block/Currency.php b/app/code/core/Mage/Directory/Block/Currency.php index 16835f922f453c2b4b7ceb76649b07e1760c78df..def5d2c5ea8eb029acbb9e62251bc63ee72a325f 100644 --- a/app/code/core/Mage/Directory/Block/Currency.php +++ b/app/code/core/Mage/Directory/Block/Currency.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Directory - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Directory/Block/Data.php b/app/code/core/Mage/Directory/Block/Data.php index a419810e23972d7a5cb19a71684a80e832da44e3..b71e61f8bc2e6ab658573371e47123b7e989e1c9 100644 --- a/app/code/core/Mage/Directory/Block/Data.php +++ b/app/code/core/Mage/Directory/Block/Data.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Directory - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Directory/Exception.php b/app/code/core/Mage/Directory/Exception.php index 79ce25896b541694b213d78d9240e4a89e1a8f4f..44182e3429faa1446df7a1d96e5dd61dc0c03a1a 100644 --- a/app/code/core/Mage/Directory/Exception.php +++ b/app/code/core/Mage/Directory/Exception.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Directory - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Directory/Helper/Data.php b/app/code/core/Mage/Directory/Helper/Data.php index 50e02da41f4d0f91d8359448ff014bc496fe8d29..69bb96e7022886acb75e6cbf9f580aef8ffbe04f 100644 --- a/app/code/core/Mage/Directory/Helper/Data.php +++ b/app/code/core/Mage/Directory/Helper/Data.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Directory - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Directory/Helper/Url.php b/app/code/core/Mage/Directory/Helper/Url.php index 655deae7c33c5a3ba978dd477ae5e2ac7202a638..16c23e4e5bf53a31fee81f20232235c02848bd6d 100644 --- a/app/code/core/Mage/Directory/Helper/Url.php +++ b/app/code/core/Mage/Directory/Helper/Url.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Directory - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Directory/Model/Config/Source/Allregion.php b/app/code/core/Mage/Directory/Model/Config/Source/Allregion.php index 03382626c9925929fcea083180e5eb9d1598955b..55526db6173ec32c7b9e766df78370bdffa572ed 100644 --- a/app/code/core/Mage/Directory/Model/Config/Source/Allregion.php +++ b/app/code/core/Mage/Directory/Model/Config/Source/Allregion.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Directory - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Directory/Model/Config/Source/Country.php b/app/code/core/Mage/Directory/Model/Config/Source/Country.php index 2906d25de93001050b15cf7ae1d56d1156895a6e..75fd9cde07a3b61568129a47bd4cf451a464b85e 100644 --- a/app/code/core/Mage/Directory/Model/Config/Source/Country.php +++ b/app/code/core/Mage/Directory/Model/Config/Source/Country.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Directory - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Directory/Model/Config/Source/Country/Full.php b/app/code/core/Mage/Directory/Model/Config/Source/Country/Full.php index df5238621f459600e4a4cd068ba591be4785b34e..69b89ad73be4e453a1c6175372c1ae795dfab852 100644 --- a/app/code/core/Mage/Directory/Model/Config/Source/Country/Full.php +++ b/app/code/core/Mage/Directory/Model/Config/Source/Country/Full.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Directory - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Directory/Model/Country.php b/app/code/core/Mage/Directory/Model/Country.php index 0e38550f0f3d3ae37d2eb7ebf35b5d2569024169..6ad5ecfa7d43bb19e242fdf5047a8d7d728f2b24 100644 --- a/app/code/core/Mage/Directory/Model/Country.php +++ b/app/code/core/Mage/Directory/Model/Country.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Directory - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Directory/Model/Country/Format.php b/app/code/core/Mage/Directory/Model/Country/Format.php index b1b013a79b71c1d8b78590badace46b3d28130d3..585d8e1ac9996e6a837086f1a0ffd7a3ce6d361d 100644 --- a/app/code/core/Mage/Directory/Model/Country/Format.php +++ b/app/code/core/Mage/Directory/Model/Country/Format.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Directory - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Directory/Model/CountryFactory.php b/app/code/core/Mage/Directory/Model/CountryFactory.php index ed48a4ab188c9cdee27d6ead484cb1404505a704..4fbec86a54ab495a251659ddda5cb37e333e944b 100644 --- a/app/code/core/Mage/Directory/Model/CountryFactory.php +++ b/app/code/core/Mage/Directory/Model/CountryFactory.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Directory - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Directory/Model/Currency.php b/app/code/core/Mage/Directory/Model/Currency.php index 19df81f86371cbc5273799d739f63c61f6fb617a..2ad43b6587702f6123f7b4ef14ea0eb9f0f3002e 100644 --- a/app/code/core/Mage/Directory/Model/Currency.php +++ b/app/code/core/Mage/Directory/Model/Currency.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Directory - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Directory/Model/Currency/DefaultLocator.php b/app/code/core/Mage/Directory/Model/Currency/DefaultLocator.php index 02d7cc120c9161d8f1d18b9cd63e20f9fce022d4..cddb1b303db2a08ada071f5b59c38915f0644203 100644 --- a/app/code/core/Mage/Directory/Model/Currency/DefaultLocator.php +++ b/app/code/core/Mage/Directory/Model/Currency/DefaultLocator.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Directory - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Directory/Model/Currency/Filter.php b/app/code/core/Mage/Directory/Model/Currency/Filter.php index fd61d755950e55fbe7e1a898050d141f11b2b4b2..80779e138a3c46d5467273b3c83884a875bac057 100644 --- a/app/code/core/Mage/Directory/Model/Currency/Filter.php +++ b/app/code/core/Mage/Directory/Model/Currency/Filter.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Directory - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Directory/Model/Currency/Import/Abstract.php b/app/code/core/Mage/Directory/Model/Currency/Import/Abstract.php index bdf540408f6edf5f48a48b03eabd5b4a04c9e6a9..df1e362bb943fe77f0c3b4a323e7be4193c47ac9 100644 --- a/app/code/core/Mage/Directory/Model/Currency/Import/Abstract.php +++ b/app/code/core/Mage/Directory/Model/Currency/Import/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Directory - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Directory/Model/Currency/Import/Webservicex.php b/app/code/core/Mage/Directory/Model/Currency/Import/Webservicex.php index ebdf1982d8d5d7ed4f4d116183ecb939be94fba2..95295893c31d70362a8aa70678c44d1b1d9e6c7b 100644 --- a/app/code/core/Mage/Directory/Model/Currency/Import/Webservicex.php +++ b/app/code/core/Mage/Directory/Model/Currency/Import/Webservicex.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Directory - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Directory/Model/Observer.php b/app/code/core/Mage/Directory/Model/Observer.php index e3ae88d57977e14e73b0961e1801a6e3564ce98e..2051f806b50494ecaf7fd7f3cc4f300285a94d32 100644 --- a/app/code/core/Mage/Directory/Model/Observer.php +++ b/app/code/core/Mage/Directory/Model/Observer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Directory - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Directory/Model/Region.php b/app/code/core/Mage/Directory/Model/Region.php index 8935c4e686f4816d56adb24caa0e2714bf621b86..403f5bddd76343031a1e5c2bbf867d7c2b05c9e1 100644 --- a/app/code/core/Mage/Directory/Model/Region.php +++ b/app/code/core/Mage/Directory/Model/Region.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Directory - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Directory/Model/RegionFactory.php b/app/code/core/Mage/Directory/Model/RegionFactory.php index ffd2b1d8997e8ce1809ef28db72fd66d592aa5dc..27438b543c14451e64fa6250bf97a265b7034ca8 100644 --- a/app/code/core/Mage/Directory/Model/RegionFactory.php +++ b/app/code/core/Mage/Directory/Model/RegionFactory.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Directory - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Directory/Model/Resource/Country.php b/app/code/core/Mage/Directory/Model/Resource/Country.php index a2beb8439ea1722d19618c26826c8ee0084380d8..2522e7c6d99b85e65b652e527cd19ee25115f2f3 100755 --- a/app/code/core/Mage/Directory/Model/Resource/Country.php +++ b/app/code/core/Mage/Directory/Model/Resource/Country.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Directory - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Directory/Model/Resource/Country/Collection.php b/app/code/core/Mage/Directory/Model/Resource/Country/Collection.php index f1b59567da53fa64f772c9ed4059cd287b43d294..5bfafa0eac66c16eb12f777bc835c14a87f49f1b 100755 --- a/app/code/core/Mage/Directory/Model/Resource/Country/Collection.php +++ b/app/code/core/Mage/Directory/Model/Resource/Country/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Directory - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Directory/Model/Resource/Country/Format.php b/app/code/core/Mage/Directory/Model/Resource/Country/Format.php index 4eb175d3b26963d25490bd55dcd9b9c9b81ad0a2..b0ce35fa0bc4f209ca8ce6311fe19d24bc4790e7 100755 --- a/app/code/core/Mage/Directory/Model/Resource/Country/Format.php +++ b/app/code/core/Mage/Directory/Model/Resource/Country/Format.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Directory - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Directory/Model/Resource/Country/Format/Collection.php b/app/code/core/Mage/Directory/Model/Resource/Country/Format/Collection.php index a5731698af35274ad71b2bb77d62e2eb9d6e0d12..700e715adb318c0562f68568b57a44424e20a0ee 100755 --- a/app/code/core/Mage/Directory/Model/Resource/Country/Format/Collection.php +++ b/app/code/core/Mage/Directory/Model/Resource/Country/Format/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Directory - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Directory/Model/Resource/Currency.php b/app/code/core/Mage/Directory/Model/Resource/Currency.php index 4d94a1f12b0b34d97bebd7a430672e61bfc24e67..b2a9a0d3731f33154b496ef82d7d62cf394ca2f2 100755 --- a/app/code/core/Mage/Directory/Model/Resource/Currency.php +++ b/app/code/core/Mage/Directory/Model/Resource/Currency.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Directory - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Directory/Model/Resource/Region.php b/app/code/core/Mage/Directory/Model/Resource/Region.php index 1865e2c5ba958b9225a2e7a203054a83da544b56..568f38125db00bb6bae7ef3a5daf50348d9c4ea6 100755 --- a/app/code/core/Mage/Directory/Model/Resource/Region.php +++ b/app/code/core/Mage/Directory/Model/Resource/Region.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Directory - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Directory/Model/Resource/Region/Collection.php b/app/code/core/Mage/Directory/Model/Resource/Region/Collection.php index 94ce23d2d74cc987df09ad85f28fcf80692029c5..6d2708610b9ea4dcdd2e96b8bdf25ed52762da9e 100755 --- a/app/code/core/Mage/Directory/Model/Resource/Region/Collection.php +++ b/app/code/core/Mage/Directory/Model/Resource/Region/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Directory - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Directory/controllers/CurrencyController.php b/app/code/core/Mage/Directory/controllers/CurrencyController.php index 5fa8f7d7892a508137f1da1960f3cc2176053101..18964ec089303afbb2bd6889bf5421abc0312598 100644 --- a/app/code/core/Mage/Directory/controllers/CurrencyController.php +++ b/app/code/core/Mage/Directory/controllers/CurrencyController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Directory - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Directory/data/directory_setup/data-install-1.6.0.0.php b/app/code/core/Mage/Directory/data/directory_setup/data-install-1.6.0.0.php index d4a66f3f8a1de14bcac7e7a624b2bdae3d36e6f7..131bf7938b382f6966198d3711ec8aef3a401a84 100644 --- a/app/code/core/Mage/Directory/data/directory_setup/data-install-1.6.0.0.php +++ b/app/code/core/Mage/Directory/data/directory_setup/data-install-1.6.0.0.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Directory - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Directory/data/directory_setup/data-upgrade-1.6.0.0-1.6.0.1.php b/app/code/core/Mage/Directory/data/directory_setup/data-upgrade-1.6.0.0-1.6.0.1.php index 4ad4246125133b76adb56ac025233eb533ae1cd0..a8e3c09bd2f2da7c3203f0185c99320663f10547 100644 --- a/app/code/core/Mage/Directory/data/directory_setup/data-upgrade-1.6.0.0-1.6.0.1.php +++ b/app/code/core/Mage/Directory/data/directory_setup/data-upgrade-1.6.0.0-1.6.0.1.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Directory - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Directory/etc/adminhtml/system.xml b/app/code/core/Mage/Directory/etc/adminhtml/system.xml index 765f996db139980063afd8826cd4f464d15437ec..874aa126aae410290609867eba58fbf453aa718d 100644 --- a/app/code/core/Mage/Directory/etc/adminhtml/system.xml +++ b/app/code/core/Mage/Directory/etc/adminhtml/system.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Directory - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Directory/etc/config.xml b/app/code/core/Mage/Directory/etc/config.xml index 851df56607138f664088e12aee3f6a9b85296b9f..9c64f06af3300dfc2f6f092fe87073e20bb3f704 100644 --- a/app/code/core/Mage/Directory/etc/config.xml +++ b/app/code/core/Mage/Directory/etc/config.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Directory - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Directory/sql/directory_setup/install-1.6.0.0.php b/app/code/core/Mage/Directory/sql/directory_setup/install-1.6.0.0.php index e6a7884532cb33ccc39c13c0217b426c326afbd4..e61ba0d67d1ec448fa8fba507289acc99a20a1d3 100644 --- a/app/code/core/Mage/Directory/sql/directory_setup/install-1.6.0.0.php +++ b/app/code/core/Mage/Directory/sql/directory_setup/install-1.6.0.0.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Directory - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Directory/view/adminhtml/js/optional_zip_countries.phtml b/app/code/core/Mage/Directory/view/adminhtml/js/optional_zip_countries.phtml index fb7036e92dea92fdbba7b6386d77d6579bf5136f..2ec1f699f21816781de7b25501a8e01d11b4b9ce 100644 --- a/app/code/core/Mage/Directory/view/adminhtml/js/optional_zip_countries.phtml +++ b/app/code/core/Mage/Directory/view/adminhtml/js/optional_zip_countries.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Directory/view/frontend/currency.phtml b/app/code/core/Mage/Directory/view/frontend/currency.phtml index 15d1a61bb73170e774dc2d3c81f5d439155939d1..3637df8985665900d139571fd71babcb2133bd42 100644 --- a/app/code/core/Mage/Directory/view/frontend/currency.phtml +++ b/app/code/core/Mage/Directory/view/frontend/currency.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Directory/view/frontend/currency/switch.phtml b/app/code/core/Mage/Directory/view/frontend/currency/switch.phtml index 316e26c365b2ddf0ea86a6d5136b4e5404b22b73..b107bbe597ebec929ae0d8f8443772a7156d342a 100644 --- a/app/code/core/Mage/Directory/view/frontend/currency/switch.phtml +++ b/app/code/core/Mage/Directory/view/frontend/currency/switch.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Directory/view/frontend/js/optional_zip_countries.phtml b/app/code/core/Mage/Directory/view/frontend/js/optional_zip_countries.phtml index 58a520c4e4b96b79d646105a1674a8b9761d0f64..9188828bbd01d64d404ae89a0601e0b8cdebbe13 100644 --- a/app/code/core/Mage/Directory/view/frontend/js/optional_zip_countries.phtml +++ b/app/code/core/Mage/Directory/view/frontend/js/optional_zip_countries.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Directory/view/frontend/layout.xml b/app/code/core/Mage/Directory/view/frontend/layout.xml index d4dc4273302c88aa7c4016121d515b9733866f32..8770e3053b0065d3a74e7ada2e23c869f456f402 100644 --- a/app/code/core/Mage/Directory/view/frontend/layout.xml +++ b/app/code/core/Mage/Directory/view/frontend/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Downloadable/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Downloadable.php b/app/code/core/Mage/Downloadable/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Downloadable.php index 61325088fb94d2e97c2da812098bec99007ce261..8f7107b1900334cc3110176b87f9bb9acd71f9cf 100644 --- a/app/code/core/Mage/Downloadable/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Downloadable.php +++ b/app/code/core/Mage/Downloadable/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Downloadable.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Downloadable - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Downloadable/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable.php b/app/code/core/Mage/Downloadable/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable.php index 86704ad259f90866b4bdd1537095b8e955c4bd2a..d1e6846e1666f0c73f4573d0bd9683979e2aaa5a 100644 --- a/app/code/core/Mage/Downloadable/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable.php +++ b/app/code/core/Mage/Downloadable/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Downloadable - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Downloadable/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/Links.php b/app/code/core/Mage/Downloadable/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/Links.php index 4bc1d37772c47900097d349452e6237e1ac9e1ce..2b69a9385e4f85c4d5455b8d33b39eb917e7f806 100644 --- a/app/code/core/Mage/Downloadable/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/Links.php +++ b/app/code/core/Mage/Downloadable/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/Links.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Downloadable - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Downloadable/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/Samples.php b/app/code/core/Mage/Downloadable/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/Samples.php index e80437b8f8c33c69e22da3e4ff64f132ade7da38..1b949653012da8969ce578c249fd9ced877a07cc 100644 --- a/app/code/core/Mage/Downloadable/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/Samples.php +++ b/app/code/core/Mage/Downloadable/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/Samples.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Downloadable - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Downloadable/Block/Adminhtml/Sales/Items/Column/Downloadable/Name.php b/app/code/core/Mage/Downloadable/Block/Adminhtml/Sales/Items/Column/Downloadable/Name.php index 86228a54874f614f05d915b0c0ea64814a180be9..01453805b4fe54640186e430dc248ab9aa5594cb 100644 --- a/app/code/core/Mage/Downloadable/Block/Adminhtml/Sales/Items/Column/Downloadable/Name.php +++ b/app/code/core/Mage/Downloadable/Block/Adminhtml/Sales/Items/Column/Downloadable/Name.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Downloadable - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Downloadable/Block/Catalog/Product/Links.php b/app/code/core/Mage/Downloadable/Block/Catalog/Product/Links.php index 72ef1f710672f5329d7273f80e75d161da0f86c0..e82f1c69d9ef10af915657aabc7a7fca94e25cfb 100644 --- a/app/code/core/Mage/Downloadable/Block/Catalog/Product/Links.php +++ b/app/code/core/Mage/Downloadable/Block/Catalog/Product/Links.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Downloadable - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Downloadable/Block/Catalog/Product/Samples.php b/app/code/core/Mage/Downloadable/Block/Catalog/Product/Samples.php index ffe8fa3138a5a8893cb1bbe6b82c9747cb2c4ce8..7124b0948e265eab52df0b01a5e3c269906fc39f 100644 --- a/app/code/core/Mage/Downloadable/Block/Catalog/Product/Samples.php +++ b/app/code/core/Mage/Downloadable/Block/Catalog/Product/Samples.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Downloadable - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Downloadable/Block/Catalog/Product/View/Type.php b/app/code/core/Mage/Downloadable/Block/Catalog/Product/View/Type.php index 3438e787b5a45cc4cbc738ec8c69dae65d5155a4..c2d58e36a4f741c67900fa02fc4c05bcf62bc4d5 100644 --- a/app/code/core/Mage/Downloadable/Block/Catalog/Product/View/Type.php +++ b/app/code/core/Mage/Downloadable/Block/Catalog/Product/View/Type.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Downloadable - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Downloadable/Block/Checkout/Cart/Item/Renderer.php b/app/code/core/Mage/Downloadable/Block/Checkout/Cart/Item/Renderer.php index e18197005636044c8ab0e78e4e6a6a6a76e84392..6a22d59b639b7102058f41f1370b4a91a5e42bab 100644 --- a/app/code/core/Mage/Downloadable/Block/Checkout/Cart/Item/Renderer.php +++ b/app/code/core/Mage/Downloadable/Block/Checkout/Cart/Item/Renderer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Downloadable - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Downloadable/Block/Checkout/Success.php b/app/code/core/Mage/Downloadable/Block/Checkout/Success.php index c581e7c5896b9385fea66870a93837c521617b13..29365084b960dc9bcff1a8cf024e915e4adaa911 100644 --- a/app/code/core/Mage/Downloadable/Block/Checkout/Success.php +++ b/app/code/core/Mage/Downloadable/Block/Checkout/Success.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Downloadable - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Downloadable/Block/Customer/Products/List.php b/app/code/core/Mage/Downloadable/Block/Customer/Products/List.php index d5372720ddf4b0d3a2f6925765917c012d838367..c34af50842d8e357e439dfcaaf16b69bfdb7c75c 100644 --- a/app/code/core/Mage/Downloadable/Block/Customer/Products/List.php +++ b/app/code/core/Mage/Downloadable/Block/Customer/Products/List.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Downloadable - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Downloadable/Block/Sales/Order/Email/Items/Downloadable.php b/app/code/core/Mage/Downloadable/Block/Sales/Order/Email/Items/Downloadable.php index 9127630dadc805ab7f5ff1bb874599179a8b07a2..ed127bff92f68d7b6c3256cb7379f5eadd5e2924 100644 --- a/app/code/core/Mage/Downloadable/Block/Sales/Order/Email/Items/Downloadable.php +++ b/app/code/core/Mage/Downloadable/Block/Sales/Order/Email/Items/Downloadable.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Downloadable - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Downloadable/Block/Sales/Order/Email/Items/Order/Downloadable.php b/app/code/core/Mage/Downloadable/Block/Sales/Order/Email/Items/Order/Downloadable.php index 35421023488ab29bb37a626911289d76f1829c5b..b9209156a77c5a499c89f4d423a10599fb3f8c8f 100644 --- a/app/code/core/Mage/Downloadable/Block/Sales/Order/Email/Items/Order/Downloadable.php +++ b/app/code/core/Mage/Downloadable/Block/Sales/Order/Email/Items/Order/Downloadable.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Downloadable - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Downloadable/Block/Sales/Order/Item/Renderer/Downloadable.php b/app/code/core/Mage/Downloadable/Block/Sales/Order/Item/Renderer/Downloadable.php index 3f53d0fed528521bbc87626f27daa2e92fdb3170..e17fb2bde32cca1485e97992a70e3c8e9764a505 100644 --- a/app/code/core/Mage/Downloadable/Block/Sales/Order/Item/Renderer/Downloadable.php +++ b/app/code/core/Mage/Downloadable/Block/Sales/Order/Item/Renderer/Downloadable.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Downloadable - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Downloadable/Helper/Catalog/Product/Configuration.php b/app/code/core/Mage/Downloadable/Helper/Catalog/Product/Configuration.php index 306eaed8146d2f74c3e7cca0ca8fbebf944339d8..9517d5b610c484f7b776dff2ac3052826f0d1d7b 100644 --- a/app/code/core/Mage/Downloadable/Helper/Catalog/Product/Configuration.php +++ b/app/code/core/Mage/Downloadable/Helper/Catalog/Product/Configuration.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Downloadable - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Downloadable/Helper/Data.php b/app/code/core/Mage/Downloadable/Helper/Data.php index 7912dc0bee5b332e1ab1ab82084607a37479089c..418507ff606d8b17077cc23d73d6bcd2bb4d37e4 100644 --- a/app/code/core/Mage/Downloadable/Helper/Data.php +++ b/app/code/core/Mage/Downloadable/Helper/Data.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Downloadable - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Downloadable/Helper/Download.php b/app/code/core/Mage/Downloadable/Helper/Download.php index 3d73b1d9629ac64c3df66617fa5399328ac09e92..07db586ffca327db13961b4e525863c88f0e9946 100644 --- a/app/code/core/Mage/Downloadable/Helper/Download.php +++ b/app/code/core/Mage/Downloadable/Helper/Download.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Downloadable - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Downloadable/Helper/File.php b/app/code/core/Mage/Downloadable/Helper/File.php index 26c12aa1375866d850d5cf1319b7f3eb949a70fe..354f75ca70b32c54a22022c66a4d69b89c2729ef 100644 --- a/app/code/core/Mage/Downloadable/Helper/File.php +++ b/app/code/core/Mage/Downloadable/Helper/File.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Downloadable - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Downloadable/Model/Link.php b/app/code/core/Mage/Downloadable/Model/Link.php index b2f5959f49b2976bd1069fb8514dd495c731d228..f50cfd7caba6a043aa7d21ac4eb3798e0b078235 100644 --- a/app/code/core/Mage/Downloadable/Model/Link.php +++ b/app/code/core/Mage/Downloadable/Model/Link.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Downloadable - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Downloadable/Model/Link/Purchased.php b/app/code/core/Mage/Downloadable/Model/Link/Purchased.php index 5bc0a12497fa2477db038ed542fb9b7ecc7bb7ad..d91b00b8a6ba285b54bcc8e196d7f8e7f2cd1320 100644 --- a/app/code/core/Mage/Downloadable/Model/Link/Purchased.php +++ b/app/code/core/Mage/Downloadable/Model/Link/Purchased.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Downloadable - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Downloadable/Model/Link/Purchased/Item.php b/app/code/core/Mage/Downloadable/Model/Link/Purchased/Item.php index 89785f5c16eb024298bdcdd4a131f71c3799cfe8..fe769d7fd1077b46deb3f4c09eebefaa4ecd5273 100644 --- a/app/code/core/Mage/Downloadable/Model/Link/Purchased/Item.php +++ b/app/code/core/Mage/Downloadable/Model/Link/Purchased/Item.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Downloadable - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Downloadable/Model/Observer.php b/app/code/core/Mage/Downloadable/Model/Observer.php index 215fccd5772491d2baea4a3d55b2bf745ad8d7f8..18bc557ece47f31ccccb862d405b1ce1b423b131 100644 --- a/app/code/core/Mage/Downloadable/Model/Observer.php +++ b/app/code/core/Mage/Downloadable/Model/Observer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Downloadable - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Downloadable/Model/Product/Price.php b/app/code/core/Mage/Downloadable/Model/Product/Price.php index 153da447ba41f83160dae4464cdcf9331c03a3fa..aae88d585efb854b738c102a032747211dc741c7 100644 --- a/app/code/core/Mage/Downloadable/Model/Product/Price.php +++ b/app/code/core/Mage/Downloadable/Model/Product/Price.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Downloadable - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Downloadable/Model/Product/Type.php b/app/code/core/Mage/Downloadable/Model/Product/Type.php index 18441bab60c1a644191dee634d20529433ee9a4f..ff870d87e2ed9e2005d7f1a2bf83065520d8f208 100644 --- a/app/code/core/Mage/Downloadable/Model/Product/Type.php +++ b/app/code/core/Mage/Downloadable/Model/Product/Type.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Downloadable - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Downloadable/Model/Resource/Indexer/Price.php b/app/code/core/Mage/Downloadable/Model/Resource/Indexer/Price.php index 7c37441b6817360df49db43052609510cd4e2593..e7f9fbf81494f953609ac417ae3b5c2369b31250 100755 --- a/app/code/core/Mage/Downloadable/Model/Resource/Indexer/Price.php +++ b/app/code/core/Mage/Downloadable/Model/Resource/Indexer/Price.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Downloadable - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Downloadable/Model/Resource/Link.php b/app/code/core/Mage/Downloadable/Model/Resource/Link.php index 47225fbdacee33ce13169a51d893ce5b375a1007..73d84b05d123a910a59e91e942333f0e4c9d708f 100755 --- a/app/code/core/Mage/Downloadable/Model/Resource/Link.php +++ b/app/code/core/Mage/Downloadable/Model/Resource/Link.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Downloadable - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Downloadable/Model/Resource/Link/Collection.php b/app/code/core/Mage/Downloadable/Model/Resource/Link/Collection.php index 9da6353db5eb452f9f7e2627525750d6de8f07d1..d3808f05598ed92956b80f607569efafbb68579b 100755 --- a/app/code/core/Mage/Downloadable/Model/Resource/Link/Collection.php +++ b/app/code/core/Mage/Downloadable/Model/Resource/Link/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Downloadable - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Downloadable/Model/Resource/Link/Purchased.php b/app/code/core/Mage/Downloadable/Model/Resource/Link/Purchased.php index 952160bfb563234a5cdd6348925958462aa1f40f..d806da5683300ca8ffa1b4712882f2a62614064b 100755 --- a/app/code/core/Mage/Downloadable/Model/Resource/Link/Purchased.php +++ b/app/code/core/Mage/Downloadable/Model/Resource/Link/Purchased.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Downloadable - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Downloadable/Model/Resource/Link/Purchased/Collection.php b/app/code/core/Mage/Downloadable/Model/Resource/Link/Purchased/Collection.php index 4c1cf272cf94331fdfc55698be409dd47e3e6b06..237264ff79d7703e2792f0ea25c889d3f997249f 100755 --- a/app/code/core/Mage/Downloadable/Model/Resource/Link/Purchased/Collection.php +++ b/app/code/core/Mage/Downloadable/Model/Resource/Link/Purchased/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Downloadable - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Downloadable/Model/Resource/Link/Purchased/Item.php b/app/code/core/Mage/Downloadable/Model/Resource/Link/Purchased/Item.php index 94602e32a3619bda91838ecf5082f11da3e2821f..1d6db2017f043dd290214f4a7f4f1020499cef8d 100755 --- a/app/code/core/Mage/Downloadable/Model/Resource/Link/Purchased/Item.php +++ b/app/code/core/Mage/Downloadable/Model/Resource/Link/Purchased/Item.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Downloadable - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Downloadable/Model/Resource/Link/Purchased/Item/Collection.php b/app/code/core/Mage/Downloadable/Model/Resource/Link/Purchased/Item/Collection.php index 3dcadfa16804fe343665749170b8efdb4a14b639..96ef7e6d072d6d11faff69f87410b92d6c476464 100755 --- a/app/code/core/Mage/Downloadable/Model/Resource/Link/Purchased/Item/Collection.php +++ b/app/code/core/Mage/Downloadable/Model/Resource/Link/Purchased/Item/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Downloadable - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Downloadable/Model/Resource/Sample.php b/app/code/core/Mage/Downloadable/Model/Resource/Sample.php index c4f9909a80bb076fd495cb72351b16e92c5ef39c..e04542a761488ad56b125716bf2a7c70addb70c3 100755 --- a/app/code/core/Mage/Downloadable/Model/Resource/Sample.php +++ b/app/code/core/Mage/Downloadable/Model/Resource/Sample.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Downloadable - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Downloadable/Model/Resource/Sample/Collection.php b/app/code/core/Mage/Downloadable/Model/Resource/Sample/Collection.php index a8773492dad6e7a1a9f37714f4c83421b9e24e41..b061efbf9e54996022e73675b5cc54a4346a3f57 100755 --- a/app/code/core/Mage/Downloadable/Model/Resource/Sample/Collection.php +++ b/app/code/core/Mage/Downloadable/Model/Resource/Sample/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Downloadable - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Downloadable/Model/Sales/Order/Pdf/Items/Abstract.php b/app/code/core/Mage/Downloadable/Model/Sales/Order/Pdf/Items/Abstract.php index 1a289c8e9a9631bba055440c81f19eee482e53f2..b56c90c9f262ad85be84a49299b90a3a6a71c889 100644 --- a/app/code/core/Mage/Downloadable/Model/Sales/Order/Pdf/Items/Abstract.php +++ b/app/code/core/Mage/Downloadable/Model/Sales/Order/Pdf/Items/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Downloadable - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Downloadable/Model/Sales/Order/Pdf/Items/Creditmemo.php b/app/code/core/Mage/Downloadable/Model/Sales/Order/Pdf/Items/Creditmemo.php index c41f1e57cbb894767108d9d2d62a2c126b861910..40973f11076b8766d595ebf0904afb54d03f1e35 100644 --- a/app/code/core/Mage/Downloadable/Model/Sales/Order/Pdf/Items/Creditmemo.php +++ b/app/code/core/Mage/Downloadable/Model/Sales/Order/Pdf/Items/Creditmemo.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Downloadable - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Downloadable/Model/Sales/Order/Pdf/Items/Invoice.php b/app/code/core/Mage/Downloadable/Model/Sales/Order/Pdf/Items/Invoice.php index 07114f8f7c9aaf7d1c993671a0d8d9818300b943..c8631955a21306e8447578e6bf02aa1ccfb9ad41 100644 --- a/app/code/core/Mage/Downloadable/Model/Sales/Order/Pdf/Items/Invoice.php +++ b/app/code/core/Mage/Downloadable/Model/Sales/Order/Pdf/Items/Invoice.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Downloadable - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Downloadable/Model/Sample.php b/app/code/core/Mage/Downloadable/Model/Sample.php index 219ee751de813d3242c83f89b8bfcb85aead6019..98f26e7d5a421643a3ca59dab9208435f240065c 100644 --- a/app/code/core/Mage/Downloadable/Model/Sample.php +++ b/app/code/core/Mage/Downloadable/Model/Sample.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Downloadable - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Downloadable/Model/System/Config/Source/Contentdisposition.php b/app/code/core/Mage/Downloadable/Model/System/Config/Source/Contentdisposition.php index 9106353462e13c43c9e5b18a9f18ac05cc1ddf65..4b0a032f524bb8d282999778402a3708cbb247b3 100644 --- a/app/code/core/Mage/Downloadable/Model/System/Config/Source/Contentdisposition.php +++ b/app/code/core/Mage/Downloadable/Model/System/Config/Source/Contentdisposition.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Downloadable - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Downloadable/Model/System/Config/Source/Orderitemstatus.php b/app/code/core/Mage/Downloadable/Model/System/Config/Source/Orderitemstatus.php index 9252ccaf756c5a142a88abc97eb03981859aa2b7..b694eb3fe04a44301d6325196b494bb4d36051b5 100644 --- a/app/code/core/Mage/Downloadable/Model/System/Config/Source/Orderitemstatus.php +++ b/app/code/core/Mage/Downloadable/Model/System/Config/Source/Orderitemstatus.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Downloadable - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Downloadable/controllers/Adminhtml/Downloadable/FileController.php b/app/code/core/Mage/Downloadable/controllers/Adminhtml/Downloadable/FileController.php index 3c09c2538af08a4a7736abfba7f387b545d4f3b7..534f02171ef6166612db349499495f1021941c67 100644 --- a/app/code/core/Mage/Downloadable/controllers/Adminhtml/Downloadable/FileController.php +++ b/app/code/core/Mage/Downloadable/controllers/Adminhtml/Downloadable/FileController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Downloadable - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Downloadable/controllers/Adminhtml/Downloadable/Product/EditController.php b/app/code/core/Mage/Downloadable/controllers/Adminhtml/Downloadable/Product/EditController.php index e1264ec0b55fec88a1a78325aabd48c2284508dc..63896b0cddb6784581663dcb35a15d9a3fb5e07e 100644 --- a/app/code/core/Mage/Downloadable/controllers/Adminhtml/Downloadable/Product/EditController.php +++ b/app/code/core/Mage/Downloadable/controllers/Adminhtml/Downloadable/Product/EditController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Downloadable - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Downloadable/controllers/CustomerController.php b/app/code/core/Mage/Downloadable/controllers/CustomerController.php index c87396afb5d254d73f9dcdbe8c4bc42c9735a3e6..d347e3e9b1c9b25f54d04cf3167af2b0be8229b2 100644 --- a/app/code/core/Mage/Downloadable/controllers/CustomerController.php +++ b/app/code/core/Mage/Downloadable/controllers/CustomerController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Downloadable - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Downloadable/controllers/DownloadController.php b/app/code/core/Mage/Downloadable/controllers/DownloadController.php index d71aa32bd620c7666e076886047ee27f4d9c67fa..31f0ae7f1c0114b3f18afd0a976317bc9b83cea4 100644 --- a/app/code/core/Mage/Downloadable/controllers/DownloadController.php +++ b/app/code/core/Mage/Downloadable/controllers/DownloadController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Downloadable - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Downloadable/data/downloadable_setup/data-install-1.6.0.0.php b/app/code/core/Mage/Downloadable/data/downloadable_setup/data-install-1.6.0.0.php index f9f3ef891c27768178746ff80ceb8975007e0a00..8804d1e93327a074498787c6f890a31262007b19 100644 --- a/app/code/core/Mage/Downloadable/data/downloadable_setup/data-install-1.6.0.0.php +++ b/app/code/core/Mage/Downloadable/data/downloadable_setup/data-install-1.6.0.0.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Downloadable - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ /** @var $installer Mage_Downloadable_Model_Resource_Setup */ diff --git a/app/code/core/Mage/Downloadable/data/downloadable_setup/data-upgrade-1.6.0.0.2-1.6.0.0.3.php b/app/code/core/Mage/Downloadable/data/downloadable_setup/data-upgrade-1.6.0.0.2-1.6.0.0.3.php index 55496ff75b3c672ec17e785d64b4eb09fe339e31..97d30a2ee8d84005268bcf6dd8f07a91bae7c5d6 100644 --- a/app/code/core/Mage/Downloadable/data/downloadable_setup/data-upgrade-1.6.0.0.2-1.6.0.0.3.php +++ b/app/code/core/Mage/Downloadable/data/downloadable_setup/data-upgrade-1.6.0.0.2-1.6.0.0.3.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Downloadable - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Downloadable/etc/adminhtml/acl.xml b/app/code/core/Mage/Downloadable/etc/adminhtml/acl.xml index 96c6b2ed63493ce89550ad94f5e2211818542465..64fcebaa5c58507fffd2039702b6de43dc3ca6c7 100644 --- a/app/code/core/Mage/Downloadable/etc/adminhtml/acl.xml +++ b/app/code/core/Mage/Downloadable/etc/adminhtml/acl.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Downloadable - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Downloadable/etc/adminhtml/menu.xml b/app/code/core/Mage/Downloadable/etc/adminhtml/menu.xml index 84a13b4a71ce5d3ee369d5f1aa335991644467f4..a776340083e19af8d25b10b415af6b5e6bb51391 100644 --- a/app/code/core/Mage/Downloadable/etc/adminhtml/menu.xml +++ b/app/code/core/Mage/Downloadable/etc/adminhtml/menu.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Downloadable - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Downloadable/etc/adminhtml/system.xml b/app/code/core/Mage/Downloadable/etc/adminhtml/system.xml index 94a1ce2ef359f7064625491e021f64ccf3869c49..dbe70021a5944ddf0f8e32662232f2e7e4f2f1d8 100644 --- a/app/code/core/Mage/Downloadable/etc/adminhtml/system.xml +++ b/app/code/core/Mage/Downloadable/etc/adminhtml/system.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Downloadable - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Downloadable/etc/config.xml b/app/code/core/Mage/Downloadable/etc/config.xml index 46cc6daed674edfdcc2636944b57be3f13177b9c..126dae0c99fe9056954ff6f86e046cb310d84333 100644 --- a/app/code/core/Mage/Downloadable/etc/config.xml +++ b/app/code/core/Mage/Downloadable/etc/config.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Downloadable - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Downloadable/etc/fieldset.xml b/app/code/core/Mage/Downloadable/etc/fieldset.xml index aad4f701570a6873ab64820ca90739228120455e..f4941c86397f5c27e203193d02c62d2139fde288 100644 --- a/app/code/core/Mage/Downloadable/etc/fieldset.xml +++ b/app/code/core/Mage/Downloadable/etc/fieldset.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Downloadable - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Downloadable/sql/downloadable_setup/install-1.6.0.0.php b/app/code/core/Mage/Downloadable/sql/downloadable_setup/install-1.6.0.0.php index 57082385267e0febbac1b9976d43fc6b8b149f83..1faa93d88fa22e5255842679c85af5e4f4616cba 100644 --- a/app/code/core/Mage/Downloadable/sql/downloadable_setup/install-1.6.0.0.php +++ b/app/code/core/Mage/Downloadable/sql/downloadable_setup/install-1.6.0.0.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Downloadable - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Downloadable/sql/downloadable_setup/mysql4-upgrade-1.6.0.0.1-1.6.0.0.2.php b/app/code/core/Mage/Downloadable/sql/downloadable_setup/mysql4-upgrade-1.6.0.0.1-1.6.0.0.2.php index 60b29c1c0508830c5f6a9855a463209ac8495f3f..00a67772963e0f55fc63325acfd2631f38a06a0e 100644 --- a/app/code/core/Mage/Downloadable/sql/downloadable_setup/mysql4-upgrade-1.6.0.0.1-1.6.0.0.2.php +++ b/app/code/core/Mage/Downloadable/sql/downloadable_setup/mysql4-upgrade-1.6.0.0.1-1.6.0.0.2.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Downloadable - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ $installFile = dirname(__FILE__) . DS . 'upgrade-1.6.0.0.1-1.6.0.0.2.php'; diff --git a/app/code/core/Mage/Downloadable/sql/downloadable_setup/upgrade-1.6.0.0-1.6.0.0.1.php b/app/code/core/Mage/Downloadable/sql/downloadable_setup/upgrade-1.6.0.0-1.6.0.0.1.php index e01d7139bc04aa16ada8ed79cf907cb15346d523..0d1dde2ea4ad107a9fb8b6609274d9570aa1ea1c 100644 --- a/app/code/core/Mage/Downloadable/sql/downloadable_setup/upgrade-1.6.0.0-1.6.0.0.1.php +++ b/app/code/core/Mage/Downloadable/sql/downloadable_setup/upgrade-1.6.0.0-1.6.0.0.1.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Downloadable - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Downloadable/sql/downloadable_setup/upgrade-1.6.0.0.1-1.6.0.0.2.php b/app/code/core/Mage/Downloadable/sql/downloadable_setup/upgrade-1.6.0.0.1-1.6.0.0.2.php index 88388677b7615e066e16dbe9ea6d093e46d8ae68..ea3c7677f726232be48038523c4af3f6274f4c2c 100644 --- a/app/code/core/Mage/Downloadable/sql/downloadable_setup/upgrade-1.6.0.0.1-1.6.0.0.2.php +++ b/app/code/core/Mage/Downloadable/sql/downloadable_setup/upgrade-1.6.0.0.1-1.6.0.0.2.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Downloadable - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Downloadable/view/adminhtml/layout.xml b/app/code/core/Mage/Downloadable/view/adminhtml/layout.xml index 6d953b1453d08dae036da4a3999f702f7b6e6654..c4116d1b4da861d4af98a2800487025b0732d0f5 100644 --- a/app/code/core/Mage/Downloadable/view/adminhtml/layout.xml +++ b/app/code/core/Mage/Downloadable/view/adminhtml/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Downloadable/view/adminhtml/product/composite/fieldset/downloadable.phtml b/app/code/core/Mage/Downloadable/view/adminhtml/product/composite/fieldset/downloadable.phtml index 2875a8f8342b5d0e8c478f80617baecc191e8eab..ed52311f912519ac5a9a783aa8cbd211b622615a 100644 --- a/app/code/core/Mage/Downloadable/view/adminhtml/product/composite/fieldset/downloadable.phtml +++ b/app/code/core/Mage/Downloadable/view/adminhtml/product/composite/fieldset/downloadable.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Downloadable/view/adminhtml/product/edit/downloadable.phtml b/app/code/core/Mage/Downloadable/view/adminhtml/product/edit/downloadable.phtml index 499440019b0959b29690fb5657dbf0a796607130..31af293dcf3f6df360889d4d8e26017b47dd6991 100644 --- a/app/code/core/Mage/Downloadable/view/adminhtml/product/edit/downloadable.phtml +++ b/app/code/core/Mage/Downloadable/view/adminhtml/product/edit/downloadable.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Downloadable/view/adminhtml/product/edit/downloadable/links.phtml b/app/code/core/Mage/Downloadable/view/adminhtml/product/edit/downloadable/links.phtml index 5aabb14f597953c9cee05aad3bc1fc66faaab33f..d198bfb1f76ef6b4d93a762f98c7230d735c6f06 100644 --- a/app/code/core/Mage/Downloadable/view/adminhtml/product/edit/downloadable/links.phtml +++ b/app/code/core/Mage/Downloadable/view/adminhtml/product/edit/downloadable/links.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Downloadable/view/adminhtml/product/edit/downloadable/samples.phtml b/app/code/core/Mage/Downloadable/view/adminhtml/product/edit/downloadable/samples.phtml index 3c1ea578375d206db6fd0c7c77728751548c1e1b..a1aafe8b27ebc8f4365be0435d4c27320b3eef2f 100644 --- a/app/code/core/Mage/Downloadable/view/adminhtml/product/edit/downloadable/samples.phtml +++ b/app/code/core/Mage/Downloadable/view/adminhtml/product/edit/downloadable/samples.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Downloadable/view/adminhtml/sales/items/column/downloadable/creditmemo/name.phtml b/app/code/core/Mage/Downloadable/view/adminhtml/sales/items/column/downloadable/creditmemo/name.phtml index cb9470ff3524e6bbb719634af3c9453cbb1040fe..e659175c7086c0d6bcd03d9cfbf12eeca6d66df2 100644 --- a/app/code/core/Mage/Downloadable/view/adminhtml/sales/items/column/downloadable/creditmemo/name.phtml +++ b/app/code/core/Mage/Downloadable/view/adminhtml/sales/items/column/downloadable/creditmemo/name.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Downloadable/view/adminhtml/sales/items/column/downloadable/invoice/name.phtml b/app/code/core/Mage/Downloadable/view/adminhtml/sales/items/column/downloadable/invoice/name.phtml index 6f3a33f0791555b3251f05f1afdbe6e588a5c2c4..a10d8f29df54d0aae18fd22b0075b5bb01cf2387 100644 --- a/app/code/core/Mage/Downloadable/view/adminhtml/sales/items/column/downloadable/invoice/name.phtml +++ b/app/code/core/Mage/Downloadable/view/adminhtml/sales/items/column/downloadable/invoice/name.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Downloadable/view/adminhtml/sales/items/column/downloadable/name.phtml b/app/code/core/Mage/Downloadable/view/adminhtml/sales/items/column/downloadable/name.phtml index 7e0f2635bdb514fa98cdcaa791899eda4e124089..5759a7340fe299e7166169409b48c1e438b335eb 100644 --- a/app/code/core/Mage/Downloadable/view/adminhtml/sales/items/column/downloadable/name.phtml +++ b/app/code/core/Mage/Downloadable/view/adminhtml/sales/items/column/downloadable/name.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Downloadable/view/adminhtml/sales/order/creditmemo/create/items/renderer/downloadable.phtml b/app/code/core/Mage/Downloadable/view/adminhtml/sales/order/creditmemo/create/items/renderer/downloadable.phtml index 58d72593fe5df7957942fafb48a4e1dac96aa880..f984966c63400f11bb6de009fab9438a56da9a05 100644 --- a/app/code/core/Mage/Downloadable/view/adminhtml/sales/order/creditmemo/create/items/renderer/downloadable.phtml +++ b/app/code/core/Mage/Downloadable/view/adminhtml/sales/order/creditmemo/create/items/renderer/downloadable.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Downloadable/view/adminhtml/sales/order/creditmemo/view/items/renderer/downloadable.phtml b/app/code/core/Mage/Downloadable/view/adminhtml/sales/order/creditmemo/view/items/renderer/downloadable.phtml index 80cfaaaa529a865325e870869f740c21fed4d236..9fa313210d0748b74da017483ce926ec733f6d90 100644 --- a/app/code/core/Mage/Downloadable/view/adminhtml/sales/order/creditmemo/view/items/renderer/downloadable.phtml +++ b/app/code/core/Mage/Downloadable/view/adminhtml/sales/order/creditmemo/view/items/renderer/downloadable.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Downloadable/view/adminhtml/sales/order/invoice/create/items/renderer/downloadable.phtml b/app/code/core/Mage/Downloadable/view/adminhtml/sales/order/invoice/create/items/renderer/downloadable.phtml index 6583618e4293a1e295e2d8e369bd804a732b1b21..421931d13b91bde1f110f5fbaffe061cd5f12b34 100644 --- a/app/code/core/Mage/Downloadable/view/adminhtml/sales/order/invoice/create/items/renderer/downloadable.phtml +++ b/app/code/core/Mage/Downloadable/view/adminhtml/sales/order/invoice/create/items/renderer/downloadable.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Downloadable/view/adminhtml/sales/order/invoice/view/items/renderer/downloadable.phtml b/app/code/core/Mage/Downloadable/view/adminhtml/sales/order/invoice/view/items/renderer/downloadable.phtml index dead28288d21355dc9f14cd0a042bd39f9ef52c7..5717fe5fee4546057e9288dc5ba4fbfc1439d3bd 100644 --- a/app/code/core/Mage/Downloadable/view/adminhtml/sales/order/invoice/view/items/renderer/downloadable.phtml +++ b/app/code/core/Mage/Downloadable/view/adminhtml/sales/order/invoice/view/items/renderer/downloadable.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Downloadable/view/adminhtml/sales/order/view/items/renderer/downloadable.phtml b/app/code/core/Mage/Downloadable/view/adminhtml/sales/order/view/items/renderer/downloadable.phtml index f95471f74f7a72cca9e8d6fdaa65e325293215fa..443c6670739e3b764462f78a290b84dda5447bbd 100644 --- a/app/code/core/Mage/Downloadable/view/adminhtml/sales/order/view/items/renderer/downloadable.phtml +++ b/app/code/core/Mage/Downloadable/view/adminhtml/sales/order/view/items/renderer/downloadable.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Downloadable/view/frontend/catalog/product/links.phtml b/app/code/core/Mage/Downloadable/view/frontend/catalog/product/links.phtml index d69317051ca6bb0c188eff380caac96d76178748..4ca0ffa86bca9fcae392f84a7d93d9e5eec09bb8 100644 --- a/app/code/core/Mage/Downloadable/view/frontend/catalog/product/links.phtml +++ b/app/code/core/Mage/Downloadable/view/frontend/catalog/product/links.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Downloadable/view/frontend/catalog/product/samples.phtml b/app/code/core/Mage/Downloadable/view/frontend/catalog/product/samples.phtml index d37dac4f22bc7c30fc8252886ef90dfa09ba6ba6..95d63cda1532a2c1c1f4fa59dd2f1e85556aad7b 100644 --- a/app/code/core/Mage/Downloadable/view/frontend/catalog/product/samples.phtml +++ b/app/code/core/Mage/Downloadable/view/frontend/catalog/product/samples.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Downloadable/view/frontend/catalog/product/type.phtml b/app/code/core/Mage/Downloadable/view/frontend/catalog/product/type.phtml index dc6ade6cd69a7473cf210fbdcbe16a991b26f5c9..c184c87604697cca01584939435e6d995cccc663 100644 --- a/app/code/core/Mage/Downloadable/view/frontend/catalog/product/type.phtml +++ b/app/code/core/Mage/Downloadable/view/frontend/catalog/product/type.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Downloadable/view/frontend/checkout/cart/item/default.phtml b/app/code/core/Mage/Downloadable/view/frontend/checkout/cart/item/default.phtml index 65010384cd6456e15ba82e256ef8384a0b22c841..0f013a36f998a352d1ce6b0aba170c17b4ba8a68 100644 --- a/app/code/core/Mage/Downloadable/view/frontend/checkout/cart/item/default.phtml +++ b/app/code/core/Mage/Downloadable/view/frontend/checkout/cart/item/default.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Downloadable/view/frontend/checkout/multishipping/item/downloadable.phtml b/app/code/core/Mage/Downloadable/view/frontend/checkout/multishipping/item/downloadable.phtml index fcf963fb38b187bb85fa6789880f74bce0153b35..6a408e5a3cafe2fb87b4f63a87bcd534a6996224 100644 --- a/app/code/core/Mage/Downloadable/view/frontend/checkout/multishipping/item/downloadable.phtml +++ b/app/code/core/Mage/Downloadable/view/frontend/checkout/multishipping/item/downloadable.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Downloadable/view/frontend/checkout/onepage/review/item.phtml b/app/code/core/Mage/Downloadable/view/frontend/checkout/onepage/review/item.phtml index f7013e51391ad7052e06563b3738c64af1fcd36e..0b49fe223b849a271682942a33dd3922b21eafe1 100644 --- a/app/code/core/Mage/Downloadable/view/frontend/checkout/onepage/review/item.phtml +++ b/app/code/core/Mage/Downloadable/view/frontend/checkout/onepage/review/item.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Downloadable/view/frontend/checkout/success.phtml b/app/code/core/Mage/Downloadable/view/frontend/checkout/success.phtml index 8dc6574720ac8f1aef80f8bf2bea876c52681535..435a839bf69822dbde9b574e0f202c3b1b5f9531 100644 --- a/app/code/core/Mage/Downloadable/view/frontend/checkout/success.phtml +++ b/app/code/core/Mage/Downloadable/view/frontend/checkout/success.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Downloadable/view/frontend/customer/products/list.phtml b/app/code/core/Mage/Downloadable/view/frontend/customer/products/list.phtml index 77b5cf5241636df328496bb6d18ea732665931f7..05275015fd23ff8da9b0517730dcba1d98c3d094 100644 --- a/app/code/core/Mage/Downloadable/view/frontend/customer/products/list.phtml +++ b/app/code/core/Mage/Downloadable/view/frontend/customer/products/list.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Downloadable/view/frontend/email/order/items/creditmemo/downloadable.phtml b/app/code/core/Mage/Downloadable/view/frontend/email/order/items/creditmemo/downloadable.phtml index 5cbc172e7aa3004880138040b708c27eee193183..adfa80c7ae08a36f4956f5f7ccf093df857b5b46 100644 --- a/app/code/core/Mage/Downloadable/view/frontend/email/order/items/creditmemo/downloadable.phtml +++ b/app/code/core/Mage/Downloadable/view/frontend/email/order/items/creditmemo/downloadable.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Downloadable/view/frontend/email/order/items/invoice/downloadable.phtml b/app/code/core/Mage/Downloadable/view/frontend/email/order/items/invoice/downloadable.phtml index 7b889eed523ba60cad62a4dc2f0c4eaeff98c250..10b531d068802f41f22d534008b7a1329fc2c9ba 100644 --- a/app/code/core/Mage/Downloadable/view/frontend/email/order/items/invoice/downloadable.phtml +++ b/app/code/core/Mage/Downloadable/view/frontend/email/order/items/invoice/downloadable.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Downloadable/view/frontend/email/order/items/order/downloadable.phtml b/app/code/core/Mage/Downloadable/view/frontend/email/order/items/order/downloadable.phtml index b5bf397d929816e7cc0dc920909b96f80a100414..d7bd975b67029ccef02e7b30f4734946c015cf25 100644 --- a/app/code/core/Mage/Downloadable/view/frontend/email/order/items/order/downloadable.phtml +++ b/app/code/core/Mage/Downloadable/view/frontend/email/order/items/order/downloadable.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Downloadable/view/frontend/layout.xml b/app/code/core/Mage/Downloadable/view/frontend/layout.xml index 85350f5beaaaeef5b48044f178015feba1ea625c..3393e9538e0b95e077e870893a2c470716502e88 100644 --- a/app/code/core/Mage/Downloadable/view/frontend/layout.xml +++ b/app/code/core/Mage/Downloadable/view/frontend/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Downloadable/view/frontend/sales/order/creditmemo/items/renderer/downloadable.phtml b/app/code/core/Mage/Downloadable/view/frontend/sales/order/creditmemo/items/renderer/downloadable.phtml index 03f79c9eb530d89c3e0ffc4afd1606b3574b238d..f1d89c613389e6a42bb9495e03b777ca32906900 100644 --- a/app/code/core/Mage/Downloadable/view/frontend/sales/order/creditmemo/items/renderer/downloadable.phtml +++ b/app/code/core/Mage/Downloadable/view/frontend/sales/order/creditmemo/items/renderer/downloadable.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Downloadable/view/frontend/sales/order/invoice/items/renderer/downloadable.phtml b/app/code/core/Mage/Downloadable/view/frontend/sales/order/invoice/items/renderer/downloadable.phtml index 367b8733dd03983c131cac8fa02a9f2f11327655..7c9b5cba3eecb30e3f13d69795771ccc89054354 100644 --- a/app/code/core/Mage/Downloadable/view/frontend/sales/order/invoice/items/renderer/downloadable.phtml +++ b/app/code/core/Mage/Downloadable/view/frontend/sales/order/invoice/items/renderer/downloadable.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Downloadable/view/frontend/sales/order/items/renderer/downloadable.phtml b/app/code/core/Mage/Downloadable/view/frontend/sales/order/items/renderer/downloadable.phtml index 441b06a855f24bf778838037170a60b0bce2270e..cc0fb76f2f96e585f560c69d6b3029217d495be3 100644 --- a/app/code/core/Mage/Downloadable/view/frontend/sales/order/items/renderer/downloadable.phtml +++ b/app/code/core/Mage/Downloadable/view/frontend/sales/order/items/renderer/downloadable.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Eav/Block/Adminhtml/Attribute/Edit/Js.php b/app/code/core/Mage/Eav/Block/Adminhtml/Attribute/Edit/Js.php index 636d945698a4e1cfe8ae6d3b6416d92ee4d57777..f4c2c592f42e94e2b10a6d24fb98ad1f1dcc7a10 100644 --- a/app/code/core/Mage/Eav/Block/Adminhtml/Attribute/Edit/Js.php +++ b/app/code/core/Mage/Eav/Block/Adminhtml/Attribute/Edit/Js.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Block/Adminhtml/Attribute/Edit/Main/Abstract.php b/app/code/core/Mage/Eav/Block/Adminhtml/Attribute/Edit/Main/Abstract.php index d767240024aac4035079e9b0c282c0fe72265c51..13f051d5b1348a22b15f43cf26dbcad0e4e30e42 100644 --- a/app/code/core/Mage/Eav/Block/Adminhtml/Attribute/Edit/Main/Abstract.php +++ b/app/code/core/Mage/Eav/Block/Adminhtml/Attribute/Edit/Main/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Block/Adminhtml/Attribute/Edit/Options/Abstract.php b/app/code/core/Mage/Eav/Block/Adminhtml/Attribute/Edit/Options/Abstract.php index 56bec34dea9ed1d854ad05859e4d4526ebbe810a..d3ab5db541f0af4eda4fafbbed87a0216ce393f5 100644 --- a/app/code/core/Mage/Eav/Block/Adminhtml/Attribute/Edit/Options/Abstract.php +++ b/app/code/core/Mage/Eav/Block/Adminhtml/Attribute/Edit/Options/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Block/Adminhtml/Attribute/Grid/Abstract.php b/app/code/core/Mage/Eav/Block/Adminhtml/Attribute/Grid/Abstract.php index fe55cdd07c488fe9a92bd9d8006947e7da8734e9..b44b8b3b7de1c9bb9cba135be0151db185c7a79d 100644 --- a/app/code/core/Mage/Eav/Block/Adminhtml/Attribute/Grid/Abstract.php +++ b/app/code/core/Mage/Eav/Block/Adminhtml/Attribute/Grid/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Exception.php b/app/code/core/Mage/Eav/Exception.php index 11965e0756bbefd3dc38dd0c57d4289f1001c2d3..de0495ad92a75f15532b7048013b5809cffe1590 100644 --- a/app/code/core/Mage/Eav/Exception.php +++ b/app/code/core/Mage/Eav/Exception.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Helper/Data.php b/app/code/core/Mage/Eav/Helper/Data.php index 424e4c38804158bbe6b3973701e619c6e65bf6b4..b1e79b8d9de11988f93531d13c940ce5b8d6aaee 100644 --- a/app/code/core/Mage/Eav/Helper/Data.php +++ b/app/code/core/Mage/Eav/Helper/Data.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Adminhtml/System/Config/Source/Inputtype.php b/app/code/core/Mage/Eav/Model/Adminhtml/System/Config/Source/Inputtype.php index a531ccac95034c3a7335cd349649e6680114e34d..c26c5d9137b60e2bd4f01e287cb20fee44265220 100644 --- a/app/code/core/Mage/Eav/Model/Adminhtml/System/Config/Source/Inputtype.php +++ b/app/code/core/Mage/Eav/Model/Adminhtml/System/Config/Source/Inputtype.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Eav_Model_Adminhtml_System_Config_Source_Inputtype diff --git a/app/code/core/Mage/Eav/Model/Adminhtml/System/Config/Source/Inputtype/Validator.php b/app/code/core/Mage/Eav/Model/Adminhtml/System/Config/Source/Inputtype/Validator.php index 6442f8d57040d2610773c43b81db898bf2ea1e3b..596f0e796124bcc2cea9099ec615961b1a83f1da 100644 --- a/app/code/core/Mage/Eav/Model/Adminhtml/System/Config/Source/Inputtype/Validator.php +++ b/app/code/core/Mage/Eav/Model/Adminhtml/System/Config/Source/Inputtype/Validator.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Attribute.php b/app/code/core/Mage/Eav/Model/Attribute.php index 4373a527d8bd8d8e86f398e3c4d2e87164280542..f3714f6919e9a6123978f13378afc00a3ed4c294 100644 --- a/app/code/core/Mage/Eav/Model/Attribute.php +++ b/app/code/core/Mage/Eav/Model/Attribute.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Attribute/Data.php b/app/code/core/Mage/Eav/Model/Attribute/Data.php index 99bd74f36f7fec7d8e367c71dbecec1b056cd0ca..4debccf2b7605fa262948d8342c12d642189de99 100644 --- a/app/code/core/Mage/Eav/Model/Attribute/Data.php +++ b/app/code/core/Mage/Eav/Model/Attribute/Data.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Attribute/Data/Abstract.php b/app/code/core/Mage/Eav/Model/Attribute/Data/Abstract.php index d5f7d05016cc1c8f1057521c954dbc697d908582..f8e812a06635a0d146a5c7121e8c2459d59effe4 100644 --- a/app/code/core/Mage/Eav/Model/Attribute/Data/Abstract.php +++ b/app/code/core/Mage/Eav/Model/Attribute/Data/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Attribute/Data/Boolean.php b/app/code/core/Mage/Eav/Model/Attribute/Data/Boolean.php index 24d2bc0959e8203b60ee417091108f40bbe4d126..0eb91c0fe0ca4bfb6728aa1f9b31d884baab618d 100644 --- a/app/code/core/Mage/Eav/Model/Attribute/Data/Boolean.php +++ b/app/code/core/Mage/Eav/Model/Attribute/Data/Boolean.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Attribute/Data/Date.php b/app/code/core/Mage/Eav/Model/Attribute/Data/Date.php index f2a6b0e2a32b21d8598c12319584f44a9147b4a7..a32f35f07920ccf9d67267553eaf267bd70d098e 100644 --- a/app/code/core/Mage/Eav/Model/Attribute/Data/Date.php +++ b/app/code/core/Mage/Eav/Model/Attribute/Data/Date.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Attribute/Data/File.php b/app/code/core/Mage/Eav/Model/Attribute/Data/File.php index 68824f3d8ea9da3298f9c3791195bb3fb2ed2870..2b148fa97f6628933d1f20a5e31b2fda962e75cf 100644 --- a/app/code/core/Mage/Eav/Model/Attribute/Data/File.php +++ b/app/code/core/Mage/Eav/Model/Attribute/Data/File.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Attribute/Data/Hidden.php b/app/code/core/Mage/Eav/Model/Attribute/Data/Hidden.php index ff3f3c626ac978c437ddd857a7a349ad0e56c4e2..8b78fb400026a7691ee809b7938f0d38fb3367fa 100644 --- a/app/code/core/Mage/Eav/Model/Attribute/Data/Hidden.php +++ b/app/code/core/Mage/Eav/Model/Attribute/Data/Hidden.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Attribute/Data/Image.php b/app/code/core/Mage/Eav/Model/Attribute/Data/Image.php index 64f75f954cd7e4683b3b523811b8915c3e8f40c7..96e1b3781047d2c72fa9c897012f0bdda431818c 100644 --- a/app/code/core/Mage/Eav/Model/Attribute/Data/Image.php +++ b/app/code/core/Mage/Eav/Model/Attribute/Data/Image.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Attribute/Data/Multiline.php b/app/code/core/Mage/Eav/Model/Attribute/Data/Multiline.php index e0c4bb5d31693f7ab190393eb6cf31ba22278fa5..1eb2574b54cafacd483bd31769710d3b7ee9f00a 100644 --- a/app/code/core/Mage/Eav/Model/Attribute/Data/Multiline.php +++ b/app/code/core/Mage/Eav/Model/Attribute/Data/Multiline.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Attribute/Data/Multiselect.php b/app/code/core/Mage/Eav/Model/Attribute/Data/Multiselect.php index 3188be857b4323d95128992bc9db5d2a1ea1e2e2..2b182d5a347819af3413de64c8d55c53da970e65 100644 --- a/app/code/core/Mage/Eav/Model/Attribute/Data/Multiselect.php +++ b/app/code/core/Mage/Eav/Model/Attribute/Data/Multiselect.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Attribute/Data/Select.php b/app/code/core/Mage/Eav/Model/Attribute/Data/Select.php index 68c3192a9d079a2c5b90c2a3c6b0e45a07a738b8..279e023f15817eafca24cb507da2b99c54925a0c 100644 --- a/app/code/core/Mage/Eav/Model/Attribute/Data/Select.php +++ b/app/code/core/Mage/Eav/Model/Attribute/Data/Select.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Attribute/Data/Text.php b/app/code/core/Mage/Eav/Model/Attribute/Data/Text.php index 35f950e2ce13719f3f603449d87a36eacb8b42d7..cd20ceb1adbd40575ff78a9020a948af01433e3b 100644 --- a/app/code/core/Mage/Eav/Model/Attribute/Data/Text.php +++ b/app/code/core/Mage/Eav/Model/Attribute/Data/Text.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Attribute/Data/Textarea.php b/app/code/core/Mage/Eav/Model/Attribute/Data/Textarea.php index 4712d77635ea3f23978d05a388e800cc2bed3ff3..c9cc5f9e176cb75b424b897146c2f00023368aaf 100644 --- a/app/code/core/Mage/Eav/Model/Attribute/Data/Textarea.php +++ b/app/code/core/Mage/Eav/Model/Attribute/Data/Textarea.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/AttributeFactory.php b/app/code/core/Mage/Eav/Model/AttributeFactory.php index baedc59a94e99a518cf483f25470d7bb433b2113..7de8de341304563484e052f0f0d6698412737629 100644 --- a/app/code/core/Mage/Eav/Model/AttributeFactory.php +++ b/app/code/core/Mage/Eav/Model/AttributeFactory.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Config.php b/app/code/core/Mage/Eav/Model/Config.php index 435a134f9a63741a55dbaf8c1a9b7321bf2d9304..54f3dd79fc475759aa68b393dab231b5cc586e25 100644 --- a/app/code/core/Mage/Eav/Model/Config.php +++ b/app/code/core/Mage/Eav/Model/Config.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Entity.php b/app/code/core/Mage/Eav/Model/Entity.php index 9ba8341fdfa62d53ff6d54591c5c0a0e074ec513..9c6db42f4886719980eca8e5f05521283643214a 100644 --- a/app/code/core/Mage/Eav/Model/Entity.php +++ b/app/code/core/Mage/Eav/Model/Entity.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Entity/Abstract.php b/app/code/core/Mage/Eav/Model/Entity/Abstract.php index c1349d71d789ef2d770067fff1a61eae1bc38e5f..f59723b152611c03062c289ce221986f2d118ae8 100644 --- a/app/code/core/Mage/Eav/Model/Entity/Abstract.php +++ b/app/code/core/Mage/Eav/Model/Entity/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Entity/Attribute.php b/app/code/core/Mage/Eav/Model/Entity/Attribute.php index aa1a32b32ce82f0cbaf81eb1b552559955dce883..3576d8845a328337b753088edce17a9437a62119 100644 --- a/app/code/core/Mage/Eav/Model/Entity/Attribute.php +++ b/app/code/core/Mage/Eav/Model/Entity/Attribute.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Entity/Attribute/Abstract.php b/app/code/core/Mage/Eav/Model/Entity/Attribute/Abstract.php index ddff6dff76aea7fe69f5aa4d413f643a15f0b41c..62d7264d730b36a5d0227171d675b5ad85c4e23f 100644 --- a/app/code/core/Mage/Eav/Model/Entity/Attribute/Abstract.php +++ b/app/code/core/Mage/Eav/Model/Entity/Attribute/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Entity/Attribute/Backend/Abstract.php b/app/code/core/Mage/Eav/Model/Entity/Attribute/Backend/Abstract.php index 59e0b0d67c0f4015839d6cbee4eefc064e9e49ad..70fab6ebe9205ca3900633c33ca24aef50ddcdc4 100644 --- a/app/code/core/Mage/Eav/Model/Entity/Attribute/Backend/Abstract.php +++ b/app/code/core/Mage/Eav/Model/Entity/Attribute/Backend/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Entity/Attribute/Backend/Array.php b/app/code/core/Mage/Eav/Model/Entity/Attribute/Backend/Array.php index b522dec8c2b27ed11c4e2a3f93708bd3e6f3d799..84971ba0015a103e579e6b1935571744ef98d952 100644 --- a/app/code/core/Mage/Eav/Model/Entity/Attribute/Backend/Array.php +++ b/app/code/core/Mage/Eav/Model/Entity/Attribute/Backend/Array.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Entity/Attribute/Backend/Datetime.php b/app/code/core/Mage/Eav/Model/Entity/Attribute/Backend/Datetime.php index 11478626b30ade709fa3b13a79c5113369dda7cd..f328dab80537dbec0c3ce8575a2990f205affa34 100644 --- a/app/code/core/Mage/Eav/Model/Entity/Attribute/Backend/Datetime.php +++ b/app/code/core/Mage/Eav/Model/Entity/Attribute/Backend/Datetime.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Entity/Attribute/Backend/Default.php b/app/code/core/Mage/Eav/Model/Entity/Attribute/Backend/Default.php index a0985c3f45d9dbabf28c49f36def6de65c40f448..a0350f71464cf59e200e1a24e76b9977942e0d92 100644 --- a/app/code/core/Mage/Eav/Model/Entity/Attribute/Backend/Default.php +++ b/app/code/core/Mage/Eav/Model/Entity/Attribute/Backend/Default.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Entity/Attribute/Backend/Increment.php b/app/code/core/Mage/Eav/Model/Entity/Attribute/Backend/Increment.php index d72cfedfbfae4083cb7eb6983b6a51147b5649be..29f45c928951439b48350645d2327e1d7f344232 100644 --- a/app/code/core/Mage/Eav/Model/Entity/Attribute/Backend/Increment.php +++ b/app/code/core/Mage/Eav/Model/Entity/Attribute/Backend/Increment.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Entity/Attribute/Backend/Interface.php b/app/code/core/Mage/Eav/Model/Entity/Attribute/Backend/Interface.php index 3fdb0154835a4c91ed4e552168e9111dfefd00e3..e769618a340770e917529bf38806df5e787152d3 100644 --- a/app/code/core/Mage/Eav/Model/Entity/Attribute/Backend/Interface.php +++ b/app/code/core/Mage/Eav/Model/Entity/Attribute/Backend/Interface.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Entity/Attribute/Backend/Serialized.php b/app/code/core/Mage/Eav/Model/Entity/Attribute/Backend/Serialized.php index 132a327dac5383e00cce255a4c029ee39098792f..d0904b2d50900cf31ec213e4e01e2b901f7f7c46 100644 --- a/app/code/core/Mage/Eav/Model/Entity/Attribute/Backend/Serialized.php +++ b/app/code/core/Mage/Eav/Model/Entity/Attribute/Backend/Serialized.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Entity/Attribute/Backend/Store.php b/app/code/core/Mage/Eav/Model/Entity/Attribute/Backend/Store.php index 7bdceb2dea2070859db8faf88fc0f667a0c75904..d7971f39e4e38a07ea6566b7a4acbd207e7a0a22 100644 --- a/app/code/core/Mage/Eav/Model/Entity/Attribute/Backend/Store.php +++ b/app/code/core/Mage/Eav/Model/Entity/Attribute/Backend/Store.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Entity/Attribute/Backend/Time/Created.php b/app/code/core/Mage/Eav/Model/Entity/Attribute/Backend/Time/Created.php index 4cd317e8acf6511d32b4d7a7fbc0a7a89bb52155..55f582c84cb3da48ee1a35f279c54ab45cbeb4ed 100644 --- a/app/code/core/Mage/Eav/Model/Entity/Attribute/Backend/Time/Created.php +++ b/app/code/core/Mage/Eav/Model/Entity/Attribute/Backend/Time/Created.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Entity/Attribute/Backend/Time/Updated.php b/app/code/core/Mage/Eav/Model/Entity/Attribute/Backend/Time/Updated.php index 3290aa027d9d9c82dcb48bbb0341fdcf2348e425..aa1ac3e12be697c4d16ba6c548c7e4ddda974656 100644 --- a/app/code/core/Mage/Eav/Model/Entity/Attribute/Backend/Time/Updated.php +++ b/app/code/core/Mage/Eav/Model/Entity/Attribute/Backend/Time/Updated.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Entity/Attribute/Exception.php b/app/code/core/Mage/Eav/Model/Entity/Attribute/Exception.php index 0cada76cbf7b4dd0b92111d797f8457e3e8871fd..87960b49924e608ab02630f8fd0165961d2ce88a 100644 --- a/app/code/core/Mage/Eav/Model/Entity/Attribute/Exception.php +++ b/app/code/core/Mage/Eav/Model/Entity/Attribute/Exception.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Entity/Attribute/Frontend/Abstract.php b/app/code/core/Mage/Eav/Model/Entity/Attribute/Frontend/Abstract.php index 5e11153c2cb13db7a54cefc28cd77c287a45c5c9..d9e6f31d67d7ed81e68cf368e1b44772ad9a6a66 100644 --- a/app/code/core/Mage/Eav/Model/Entity/Attribute/Frontend/Abstract.php +++ b/app/code/core/Mage/Eav/Model/Entity/Attribute/Frontend/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Entity/Attribute/Frontend/Datetime.php b/app/code/core/Mage/Eav/Model/Entity/Attribute/Frontend/Datetime.php index b9775014ea858da5c4d1d26dd8b3f156550c024c..db2214c066e0052efbb8decf48fac984dbb3952f 100644 --- a/app/code/core/Mage/Eav/Model/Entity/Attribute/Frontend/Datetime.php +++ b/app/code/core/Mage/Eav/Model/Entity/Attribute/Frontend/Datetime.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Entity/Attribute/Frontend/Default.php b/app/code/core/Mage/Eav/Model/Entity/Attribute/Frontend/Default.php index 971bacb7552d52993cfb7d922839d00742c63268..214c6d4371e2b26f85eceb6fe413d58eb22b0e3a 100644 --- a/app/code/core/Mage/Eav/Model/Entity/Attribute/Frontend/Default.php +++ b/app/code/core/Mage/Eav/Model/Entity/Attribute/Frontend/Default.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Entity/Attribute/Frontend/Interface.php b/app/code/core/Mage/Eav/Model/Entity/Attribute/Frontend/Interface.php index 13c0f5d64954e037e8da624912b381e2e74b08c2..bb56ceeb1ce9a01f019e813cf22dd52c886996ee 100644 --- a/app/code/core/Mage/Eav/Model/Entity/Attribute/Frontend/Interface.php +++ b/app/code/core/Mage/Eav/Model/Entity/Attribute/Frontend/Interface.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Entity/Attribute/Group.php b/app/code/core/Mage/Eav/Model/Entity/Attribute/Group.php index fd8343d2f4113c64d878f98dc5d277e41ca0f036..6765852c2bcb08b073f9f064b5afd979aebef3f2 100644 --- a/app/code/core/Mage/Eav/Model/Entity/Attribute/Group.php +++ b/app/code/core/Mage/Eav/Model/Entity/Attribute/Group.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Entity/Attribute/Interface.php b/app/code/core/Mage/Eav/Model/Entity/Attribute/Interface.php index 6ab8fd4269b4751be73c9ec6c3f3c199eb947c1f..868359a354c3a8a2d952998da84c44be5146134e 100644 --- a/app/code/core/Mage/Eav/Model/Entity/Attribute/Interface.php +++ b/app/code/core/Mage/Eav/Model/Entity/Attribute/Interface.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Entity/Attribute/Option.php b/app/code/core/Mage/Eav/Model/Entity/Attribute/Option.php index 3e6c3b681eacfe15f0e9ae9487c85fc7478c5ee1..5c6d1648a2f9b316b7881092514c0f7232884af3 100644 --- a/app/code/core/Mage/Eav/Model/Entity/Attribute/Option.php +++ b/app/code/core/Mage/Eav/Model/Entity/Attribute/Option.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Entity/Attribute/Set.php b/app/code/core/Mage/Eav/Model/Entity/Attribute/Set.php index 87d1ceb9775a2c5f8a1890eece6a7d1f25dde18f..6df875e7c0ff00486e3397c66903f039a1f19a28 100644 --- a/app/code/core/Mage/Eav/Model/Entity/Attribute/Set.php +++ b/app/code/core/Mage/Eav/Model/Entity/Attribute/Set.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Entity/Attribute/Source/Abstract.php b/app/code/core/Mage/Eav/Model/Entity/Attribute/Source/Abstract.php index 110a6b5a08bca62255b4679ca92fd4aef40e7d49..d9ddbda17bb2a740dfa0e99e495af3bd7848439c 100644 --- a/app/code/core/Mage/Eav/Model/Entity/Attribute/Source/Abstract.php +++ b/app/code/core/Mage/Eav/Model/Entity/Attribute/Source/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Entity/Attribute/Source/Boolean.php b/app/code/core/Mage/Eav/Model/Entity/Attribute/Source/Boolean.php index bc76dec250f182be1c5b3955e20095f8d9acbe3c..699dcb3dd97672345098352270daaf55cd729417 100644 --- a/app/code/core/Mage/Eav/Model/Entity/Attribute/Source/Boolean.php +++ b/app/code/core/Mage/Eav/Model/Entity/Attribute/Source/Boolean.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Entity/Attribute/Source/Config.php b/app/code/core/Mage/Eav/Model/Entity/Attribute/Source/Config.php index ee8c6eb3654968ad64bf19644ba4b36bdfa1c1fa..2e9ae106e0401db0e6179bcca0c84eedf4db91f1 100644 --- a/app/code/core/Mage/Eav/Model/Entity/Attribute/Source/Config.php +++ b/app/code/core/Mage/Eav/Model/Entity/Attribute/Source/Config.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Entity/Attribute/Source/Interface.php b/app/code/core/Mage/Eav/Model/Entity/Attribute/Source/Interface.php index 422836ef6ab50a6b7e4b0a96a84c1ab612a6bc71..7e228b0b0522748404a5286aee70087ea43d6423 100644 --- a/app/code/core/Mage/Eav/Model/Entity/Attribute/Source/Interface.php +++ b/app/code/core/Mage/Eav/Model/Entity/Attribute/Source/Interface.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Entity/Attribute/Source/Store.php b/app/code/core/Mage/Eav/Model/Entity/Attribute/Source/Store.php index 3736a27135f56668fe5ae5f0585a2fc21d7c1a2a..d8305adbe8b8f362114be31a254959727b625cb6 100644 --- a/app/code/core/Mage/Eav/Model/Entity/Attribute/Source/Store.php +++ b/app/code/core/Mage/Eav/Model/Entity/Attribute/Source/Store.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Entity/Attribute/Source/Table.php b/app/code/core/Mage/Eav/Model/Entity/Attribute/Source/Table.php index 52d9d83a4fa2809f5f53addb981e3a4e2d42ff3a..184c50ad581a28fada77ae1466a8bf7e55f08836 100644 --- a/app/code/core/Mage/Eav/Model/Entity/Attribute/Source/Table.php +++ b/app/code/core/Mage/Eav/Model/Entity/Attribute/Source/Table.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Entity/Collection.php b/app/code/core/Mage/Eav/Model/Entity/Collection.php index 7592acc011ef875210035339562861408bd6d049..daeb42aaab5dc65c7bbdb1fd8dd0e246b658c05f 100644 --- a/app/code/core/Mage/Eav/Model/Entity/Collection.php +++ b/app/code/core/Mage/Eav/Model/Entity/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Entity/Collection/Abstract.php b/app/code/core/Mage/Eav/Model/Entity/Collection/Abstract.php index 62b4944ece7d2aa26e78f1e6163cf8b0b1507c17..c6b3ee659626cbc887482fc691e251b0e6cc95d0 100644 --- a/app/code/core/Mage/Eav/Model/Entity/Collection/Abstract.php +++ b/app/code/core/Mage/Eav/Model/Entity/Collection/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Entity/Increment/Abstract.php b/app/code/core/Mage/Eav/Model/Entity/Increment/Abstract.php index b91221a4a26c2db5150c27bc5dcc9ea14f27b650..d617de2b8ef7d55b55baa243785f0291eefb5f06 100644 --- a/app/code/core/Mage/Eav/Model/Entity/Increment/Abstract.php +++ b/app/code/core/Mage/Eav/Model/Entity/Increment/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Entity/Increment/Alphanum.php b/app/code/core/Mage/Eav/Model/Entity/Increment/Alphanum.php index 681136e93f5adca1d9fb881062b15720f71ad07d..31157aafcbbd671d28ff702bf3ab7e917a4b7630 100644 --- a/app/code/core/Mage/Eav/Model/Entity/Increment/Alphanum.php +++ b/app/code/core/Mage/Eav/Model/Entity/Increment/Alphanum.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Entity/Increment/Interface.php b/app/code/core/Mage/Eav/Model/Entity/Increment/Interface.php index a76333bf07be05b5520eac048b27841408ac068f..61587ceabd8655c0848692c6d96307ae36013e2e 100644 --- a/app/code/core/Mage/Eav/Model/Entity/Increment/Interface.php +++ b/app/code/core/Mage/Eav/Model/Entity/Increment/Interface.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Entity/Increment/Numeric.php b/app/code/core/Mage/Eav/Model/Entity/Increment/Numeric.php index 98eb486c869b05d21567eeec5e28cf94b164b6a8..853db6e6918066cb59222fbdb0efcdc8b3827a4e 100644 --- a/app/code/core/Mage/Eav/Model/Entity/Increment/Numeric.php +++ b/app/code/core/Mage/Eav/Model/Entity/Increment/Numeric.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Entity/Interface.php b/app/code/core/Mage/Eav/Model/Entity/Interface.php index 693a9884b334c3145d99f7e7d7c3d1b32701e540..e3a92e921abd276c36941f964cb31eb35caff94c 100644 --- a/app/code/core/Mage/Eav/Model/Entity/Interface.php +++ b/app/code/core/Mage/Eav/Model/Entity/Interface.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Entity/Setup.php b/app/code/core/Mage/Eav/Model/Entity/Setup.php index d7ca5befa07de9080d726e7dd31505751c319962..c457585ee8cc6044065ea50e412fb1bafbde6e51 100644 --- a/app/code/core/Mage/Eav/Model/Entity/Setup.php +++ b/app/code/core/Mage/Eav/Model/Entity/Setup.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Entity/Store.php b/app/code/core/Mage/Eav/Model/Entity/Store.php index 4b7454b6f7b5ac29fe06fe36d37857bd742971e2..a5fc193863e486540f11dc97303d136cd106d3dc 100644 --- a/app/code/core/Mage/Eav/Model/Entity/Store.php +++ b/app/code/core/Mage/Eav/Model/Entity/Store.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Entity/Type.php b/app/code/core/Mage/Eav/Model/Entity/Type.php index 26c0af6c31e5790a48478eceb5a5a1d03c5fdb8b..f83fe0cc4d09ad350fbb5be67ccff2e0fb1b0f9c 100644 --- a/app/code/core/Mage/Eav/Model/Entity/Type.php +++ b/app/code/core/Mage/Eav/Model/Entity/Type.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Form.php b/app/code/core/Mage/Eav/Model/Form.php index 36c4ca365ac456ac94cfbc6a8512b3a75defbc55..c72495e503659d35f743542a7a7fdb7234ab04a9 100644 --- a/app/code/core/Mage/Eav/Model/Form.php +++ b/app/code/core/Mage/Eav/Model/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Form/Element.php b/app/code/core/Mage/Eav/Model/Form/Element.php index e47df1801044029f105ce51ff40d6f5c595832a5..d02158b96f9d9dc7eec9c0a9503034ca7de9391b 100644 --- a/app/code/core/Mage/Eav/Model/Form/Element.php +++ b/app/code/core/Mage/Eav/Model/Form/Element.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Form/Fieldset.php b/app/code/core/Mage/Eav/Model/Form/Fieldset.php index 7d8dda85ce46089790759eb3d9ed253139c2a6f6..f1d226b8cd412d3400e353c83cb9828903ea6001 100644 --- a/app/code/core/Mage/Eav/Model/Form/Fieldset.php +++ b/app/code/core/Mage/Eav/Model/Form/Fieldset.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Form/Type.php b/app/code/core/Mage/Eav/Model/Form/Type.php index 4f5c2968c9992b73bcc2c72e2e41c8ad7789664a..e3ea724f54ca8c7fe4adc9dcea2ee0c8b26ceb10 100644 --- a/app/code/core/Mage/Eav/Model/Form/Type.php +++ b/app/code/core/Mage/Eav/Model/Form/Type.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Resource/Attribute.php b/app/code/core/Mage/Eav/Model/Resource/Attribute.php index 5f48a5b2c8fe5ed6c3427744feb6141e9f32a11a..bded5e17c461dbbf341f4ec73bbc2d50d1ca0226 100755 --- a/app/code/core/Mage/Eav/Model/Resource/Attribute.php +++ b/app/code/core/Mage/Eav/Model/Resource/Attribute.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Resource/Attribute/Collection.php b/app/code/core/Mage/Eav/Model/Resource/Attribute/Collection.php index 539e7b9762b757c9bec7a3bc046fd58fc9c96fac..be5bcb58b1f3740319e5148a72102e64f42ee0cb 100755 --- a/app/code/core/Mage/Eav/Model/Resource/Attribute/Collection.php +++ b/app/code/core/Mage/Eav/Model/Resource/Attribute/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Resource/Config.php b/app/code/core/Mage/Eav/Model/Resource/Config.php index 5bf7841714470b592c6395e07bf8107cfda8188e..7cd9c2106c9c118c39d9a101e3926d00581ad097 100755 --- a/app/code/core/Mage/Eav/Model/Resource/Config.php +++ b/app/code/core/Mage/Eav/Model/Resource/Config.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Resource/Entity/Attribute.php b/app/code/core/Mage/Eav/Model/Resource/Entity/Attribute.php index de257058010f706e4abfe9c832172c7aea09822f..067f928a4db4fa83986572adbf91c9afb7b6771d 100755 --- a/app/code/core/Mage/Eav/Model/Resource/Entity/Attribute.php +++ b/app/code/core/Mage/Eav/Model/Resource/Entity/Attribute.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Resource/Entity/Attribute/Collection.php b/app/code/core/Mage/Eav/Model/Resource/Entity/Attribute/Collection.php index 25f65a4d074c4d8e1570c1cd8449fbe955c710d2..e052bb4986cb1993d82e126c0c4ad13f0ee87f1d 100755 --- a/app/code/core/Mage/Eav/Model/Resource/Entity/Attribute/Collection.php +++ b/app/code/core/Mage/Eav/Model/Resource/Entity/Attribute/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Resource/Entity/Attribute/Grid/Collection.php b/app/code/core/Mage/Eav/Model/Resource/Entity/Attribute/Grid/Collection.php index 3c7c12f7ea4f48b5b975b65db6d0a9f94acd064c..d4a1baa69db6516e94f47b627cd57521be619f8e 100644 --- a/app/code/core/Mage/Eav/Model/Resource/Entity/Attribute/Grid/Collection.php +++ b/app/code/core/Mage/Eav/Model/Resource/Entity/Attribute/Grid/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ @@ -41,24 +41,24 @@ class Mage_Eav_Model_Resource_Entity_Attribute_Grid_Collection /** * @param Mage_Core_Model_Resource_Db_Abstract $resource - * @param Mage_Core_Model_Registry $registry + * @param Mage_Core_Model_Registry $registryManager */ public function __construct( - Mage_Core_Model_Registry $registry, Mage_Core_Model_Resource_Db_Abstract $resource = null + Mage_Core_Model_Registry $registryManager, Mage_Core_Model_Resource_Db_Abstract $resource = null ) { + $this->_registryManager = $registryManager; parent::__construct($resource); - $this->_registryManager = $registry; } /** - * Prepare select for load + * Add filter by entity type id to collection * - * @param Varien_Db_select $select - * @return string + * @return Mage_Core_Model_Resource_Db_Collection_Abstract|Mage_Eav_Model_Resource_Entity_Attribute_Grid_Collection */ - protected function _prepareSelect(Varien_Db_Select $select) + protected function _initSelect() { + parent::_initSelect(); $this->setEntityTypeFilter($this->_registryManager->registry('entityType')); - return parent::_prepareSelect($select); + return $this; } } diff --git a/app/code/core/Mage/Eav/Model/Resource/Entity/Attribute/Group.php b/app/code/core/Mage/Eav/Model/Resource/Entity/Attribute/Group.php index beaba84a5ded0f8ae621dc0bed6a30f649df4db2..223e578959cca04a01a80abdaafed4ea91a0d663 100755 --- a/app/code/core/Mage/Eav/Model/Resource/Entity/Attribute/Group.php +++ b/app/code/core/Mage/Eav/Model/Resource/Entity/Attribute/Group.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Resource/Entity/Attribute/Group/Collection.php b/app/code/core/Mage/Eav/Model/Resource/Entity/Attribute/Group/Collection.php index 9054b1251f819e7c933a1186c0efcf71f1bbbf63..505b56b7f05ce5531a4b516af8f99e38fda6ddde 100755 --- a/app/code/core/Mage/Eav/Model/Resource/Entity/Attribute/Group/Collection.php +++ b/app/code/core/Mage/Eav/Model/Resource/Entity/Attribute/Group/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Resource/Entity/Attribute/Option.php b/app/code/core/Mage/Eav/Model/Resource/Entity/Attribute/Option.php index 6107ac6e3f4f333fea994cf277b0388371071bc8..cab9baddd37768dd4c213716e8ee9893ccec9bbc 100755 --- a/app/code/core/Mage/Eav/Model/Resource/Entity/Attribute/Option.php +++ b/app/code/core/Mage/Eav/Model/Resource/Entity/Attribute/Option.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Resource/Entity/Attribute/Option/Collection.php b/app/code/core/Mage/Eav/Model/Resource/Entity/Attribute/Option/Collection.php index 3246838704554b4b82685ee69b6266b59ce8ca3d..8992056d04ead04870cd188171c335f0e89c352e 100755 --- a/app/code/core/Mage/Eav/Model/Resource/Entity/Attribute/Option/Collection.php +++ b/app/code/core/Mage/Eav/Model/Resource/Entity/Attribute/Option/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Resource/Entity/Attribute/Set.php b/app/code/core/Mage/Eav/Model/Resource/Entity/Attribute/Set.php index 796f75dbf742fecc713a6863c6b631ee41e010b3..82677ab887c72f44274f9be554ded3de99867ac5 100755 --- a/app/code/core/Mage/Eav/Model/Resource/Entity/Attribute/Set.php +++ b/app/code/core/Mage/Eav/Model/Resource/Entity/Attribute/Set.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Resource/Entity/Attribute/Set/Collection.php b/app/code/core/Mage/Eav/Model/Resource/Entity/Attribute/Set/Collection.php index 7310054cc37bc0d8bec6ce432b4341254d50b2aa..9ab9fecb1d4f2d84633f04ab95ebb3dafe23466c 100755 --- a/app/code/core/Mage/Eav/Model/Resource/Entity/Attribute/Set/Collection.php +++ b/app/code/core/Mage/Eav/Model/Resource/Entity/Attribute/Set/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Resource/Entity/Store.php b/app/code/core/Mage/Eav/Model/Resource/Entity/Store.php index ad5bc70168ec7f3389337338198066ece60ba83d..6629b6f599a7c909209f1d6008a9d5041646600e 100755 --- a/app/code/core/Mage/Eav/Model/Resource/Entity/Store.php +++ b/app/code/core/Mage/Eav/Model/Resource/Entity/Store.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Resource/Entity/Type.php b/app/code/core/Mage/Eav/Model/Resource/Entity/Type.php index 4349b2cc3e07ab0a1801f7d05ea4cef8f3b8960f..f9212cd708f9170ba42685cd3c839fcd1657c133 100755 --- a/app/code/core/Mage/Eav/Model/Resource/Entity/Type.php +++ b/app/code/core/Mage/Eav/Model/Resource/Entity/Type.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Resource/Entity/Type/Collection.php b/app/code/core/Mage/Eav/Model/Resource/Entity/Type/Collection.php index dc8a6a403e6a44c8c9d3f83e4306dfa802a51926..2f87dae9662d6bb64d2f34e7bdc92b2afc7fedbf 100755 --- a/app/code/core/Mage/Eav/Model/Resource/Entity/Type/Collection.php +++ b/app/code/core/Mage/Eav/Model/Resource/Entity/Type/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Resource/Form/Attribute.php b/app/code/core/Mage/Eav/Model/Resource/Form/Attribute.php index 3a13189b8b60ee9d64714198703a7b8f1a8a1886..b83c66836e7c7435ca9bca3d963203f4286b3bfe 100755 --- a/app/code/core/Mage/Eav/Model/Resource/Form/Attribute.php +++ b/app/code/core/Mage/Eav/Model/Resource/Form/Attribute.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Resource/Form/Attribute/Collection.php b/app/code/core/Mage/Eav/Model/Resource/Form/Attribute/Collection.php index 4c7d606243386c40fd6b1eed3ff2a9bbb6baa3ed..787f8d75201e4e35e1067f33216d61c05d56933f 100755 --- a/app/code/core/Mage/Eav/Model/Resource/Form/Attribute/Collection.php +++ b/app/code/core/Mage/Eav/Model/Resource/Form/Attribute/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Resource/Form/Element.php b/app/code/core/Mage/Eav/Model/Resource/Form/Element.php index 9aa1cc1239bfc03e6038c3d42578f3e4ecc35c15..e7d9d8ef9f0b142fddfb1d83d1d80bc6a96e7582 100755 --- a/app/code/core/Mage/Eav/Model/Resource/Form/Element.php +++ b/app/code/core/Mage/Eav/Model/Resource/Form/Element.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Resource/Form/Element/Collection.php b/app/code/core/Mage/Eav/Model/Resource/Form/Element/Collection.php index 7f6a5148f5ee845bb346f5fb5e4e9d29daea7453..5a170790f98ae53e855286581a95dfa86d410012 100755 --- a/app/code/core/Mage/Eav/Model/Resource/Form/Element/Collection.php +++ b/app/code/core/Mage/Eav/Model/Resource/Form/Element/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Resource/Form/Fieldset.php b/app/code/core/Mage/Eav/Model/Resource/Form/Fieldset.php index 9b0cf86f1e4c2b058cf9e0862d4f375e9ec8a70e..57d338a4f95be2e6a42c876f943ab7fe05189ad8 100755 --- a/app/code/core/Mage/Eav/Model/Resource/Form/Fieldset.php +++ b/app/code/core/Mage/Eav/Model/Resource/Form/Fieldset.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Resource/Form/Fieldset/Collection.php b/app/code/core/Mage/Eav/Model/Resource/Form/Fieldset/Collection.php index f353fe8437bd4e6e53c994507d42dc6545fb42b6..32a4eff5f3c2d462e73b837eb9ef2af4be52963b 100755 --- a/app/code/core/Mage/Eav/Model/Resource/Form/Fieldset/Collection.php +++ b/app/code/core/Mage/Eav/Model/Resource/Form/Fieldset/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Resource/Form/Type.php b/app/code/core/Mage/Eav/Model/Resource/Form/Type.php index 9e3f251da45984c3315b13d0abcd5cbd1c994607..ee2c86472df9a42455645fc08e8fceb4e2e5e514 100755 --- a/app/code/core/Mage/Eav/Model/Resource/Form/Type.php +++ b/app/code/core/Mage/Eav/Model/Resource/Form/Type.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Resource/Form/Type/Collection.php b/app/code/core/Mage/Eav/Model/Resource/Form/Type/Collection.php index bc491fac125199e15361d8d1c478c7c187955ade..2dcb0e7d8880cece97ca7cdf34814edcb93a8b6f 100755 --- a/app/code/core/Mage/Eav/Model/Resource/Form/Type/Collection.php +++ b/app/code/core/Mage/Eav/Model/Resource/Form/Type/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Resource/Helper/Mysql4.php b/app/code/core/Mage/Eav/Model/Resource/Helper/Mysql4.php index a1d7ee698d457d2480ed7eaebf7b5925489145f0..5b73e5f7b5cd51fbb38a45fd3c1d7c8664d1df29 100644 --- a/app/code/core/Mage/Eav/Model/Resource/Helper/Mysql4.php +++ b/app/code/core/Mage/Eav/Model/Resource/Helper/Mysql4.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Validator/Attribute/Backend.php b/app/code/core/Mage/Eav/Model/Validator/Attribute/Backend.php index 92d14e062d836f2f7adfd6720ff8f01f26d3108c..1ad02e04156c568ed513169c87aa0e7c254c3e3f 100644 --- a/app/code/core/Mage/Eav/Model/Validator/Attribute/Backend.php +++ b/app/code/core/Mage/Eav/Model/Validator/Attribute/Backend.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/Model/Validator/Attribute/Data.php b/app/code/core/Mage/Eav/Model/Validator/Attribute/Data.php index e26190cc69a9d5781ee877eaeb0764f9abdaf5d9..b6b4527ec566912f6c443a083ac8d94a3ee7df5c 100644 --- a/app/code/core/Mage/Eav/Model/Validator/Attribute/Data.php +++ b/app/code/core/Mage/Eav/Model/Validator/Attribute/Data.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/data/eav_setup/data-upgrade-1.6.0.0-1.6.0.1.php b/app/code/core/Mage/Eav/data/eav_setup/data-upgrade-1.6.0.0-1.6.0.1.php index a50948606f84edb0aee892faf88312e2dac08177..d1986364fe3a99e1c44845bcf97845b760915c8a 100644 --- a/app/code/core/Mage/Eav/data/eav_setup/data-upgrade-1.6.0.0-1.6.0.1.php +++ b/app/code/core/Mage/Eav/data/eav_setup/data-upgrade-1.6.0.0-1.6.0.1.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/etc/config.xml b/app/code/core/Mage/Eav/etc/config.xml index 778e83799759b1c18ae6329e733626bc29213631..ff216ea6de764574157b423486433b4f422f3aa9 100644 --- a/app/code/core/Mage/Eav/etc/config.xml +++ b/app/code/core/Mage/Eav/etc/config.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Eav/etc/validation.xml b/app/code/core/Mage/Eav/etc/validation.xml index 13572efe140262513c6d1a6b204ad3cb8d3725fe..4cbb7702c7bde62e6023709c1e633d02b1820a2f 100644 --- a/app/code/core/Mage/Eav/etc/validation.xml +++ b/app/code/core/Mage/Eav/etc/validation.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Eav/sql/eav_setup/install-1.6.0.0.php b/app/code/core/Mage/Eav/sql/eav_setup/install-1.6.0.0.php index e6523d12c657bdd81fff9751beb19303a0a629c8..f2ac7d89220e1fa23a49b01df3bad02dd8576901 100644 --- a/app/code/core/Mage/Eav/sql/eav_setup/install-1.6.0.0.php +++ b/app/code/core/Mage/Eav/sql/eav_setup/install-1.6.0.0.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Eav - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Eav/view/adminhtml/attribute/edit/js.phtml b/app/code/core/Mage/Eav/view/adminhtml/attribute/edit/js.phtml index 4f7c2b89850eb1c69a259bcee5f432ab0c221d8c..3c4b39e1837e9eb3012b02daad3ae8094264164d 100644 --- a/app/code/core/Mage/Eav/view/adminhtml/attribute/edit/js.phtml +++ b/app/code/core/Mage/Eav/view/adminhtml/attribute/edit/js.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/GiftMessage/Block/Adminhtml/Product/Helper/Form/Config.php b/app/code/core/Mage/GiftMessage/Block/Adminhtml/Product/Helper/Form/Config.php index 07f1de4b7e973b0e5a338ceb749184b2e01b7c33..e12f499868b48bb7250154eaa76e5a8f0f70da73 100644 --- a/app/code/core/Mage/GiftMessage/Block/Adminhtml/Product/Helper/Form/Config.php +++ b/app/code/core/Mage/GiftMessage/Block/Adminhtml/Product/Helper/Form/Config.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GiftMessage - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GiftMessage/Block/Adminhtml/Sales/Order/Create/Form.php b/app/code/core/Mage/GiftMessage/Block/Adminhtml/Sales/Order/Create/Form.php index cff94f3808479e8cd18a3459f3bf3de20f30bd09..efb50e97b74d2acfb0af4deaa1bcd1e87b806861 100644 --- a/app/code/core/Mage/GiftMessage/Block/Adminhtml/Sales/Order/Create/Form.php +++ b/app/code/core/Mage/GiftMessage/Block/Adminhtml/Sales/Order/Create/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GiftMessage - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GiftMessage/Block/Adminhtml/Sales/Order/Create/Giftoptions.php b/app/code/core/Mage/GiftMessage/Block/Adminhtml/Sales/Order/Create/Giftoptions.php index c2c329d4b0076664c3b8938b3d5a818377b03b4d..fcc8a416496359483b0ae3a2a1c5c49e4e509cdf 100644 --- a/app/code/core/Mage/GiftMessage/Block/Adminhtml/Sales/Order/Create/Giftoptions.php +++ b/app/code/core/Mage/GiftMessage/Block/Adminhtml/Sales/Order/Create/Giftoptions.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GiftMessage - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GiftMessage/Block/Adminhtml/Sales/Order/Create/Items.php b/app/code/core/Mage/GiftMessage/Block/Adminhtml/Sales/Order/Create/Items.php index 50fbe888afcf02daf4eedbe8cf390ff6c805d556..9d0a4544ad0a243a644f8caeab110a23aa22f48e 100644 --- a/app/code/core/Mage/GiftMessage/Block/Adminhtml/Sales/Order/Create/Items.php +++ b/app/code/core/Mage/GiftMessage/Block/Adminhtml/Sales/Order/Create/Items.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GiftMessage - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GiftMessage/Block/Adminhtml/Sales/Order/View/Form.php b/app/code/core/Mage/GiftMessage/Block/Adminhtml/Sales/Order/View/Form.php index 529dd40cbe2dd2640f53ee0d5856938b2ff3b7f9..110da63722a0f15e214776fa5d09524e09dbcaa0 100644 --- a/app/code/core/Mage/GiftMessage/Block/Adminhtml/Sales/Order/View/Form.php +++ b/app/code/core/Mage/GiftMessage/Block/Adminhtml/Sales/Order/View/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GiftMessage - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GiftMessage/Block/Adminhtml/Sales/Order/View/Giftoptions.php b/app/code/core/Mage/GiftMessage/Block/Adminhtml/Sales/Order/View/Giftoptions.php index 91acb4805a316bb46af441282f02365fbae0069e..3bbd0af5416119b63073c28bd11887e2159c56b9 100644 --- a/app/code/core/Mage/GiftMessage/Block/Adminhtml/Sales/Order/View/Giftoptions.php +++ b/app/code/core/Mage/GiftMessage/Block/Adminhtml/Sales/Order/View/Giftoptions.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GiftMessage - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GiftMessage/Block/Adminhtml/Sales/Order/View/Items.php b/app/code/core/Mage/GiftMessage/Block/Adminhtml/Sales/Order/View/Items.php index 96bdd508034f91352b7f14ec0c70edcfa6571c85..a454ba5cd1444d1ebfb76f63422b2dc362e35a39 100644 --- a/app/code/core/Mage/GiftMessage/Block/Adminhtml/Sales/Order/View/Items.php +++ b/app/code/core/Mage/GiftMessage/Block/Adminhtml/Sales/Order/View/Items.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GiftMessage - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GiftMessage/Block/Message/Inline.php b/app/code/core/Mage/GiftMessage/Block/Message/Inline.php index 5e8b94f6b6c0ac61f5cbf3d04e75388ce7e377bc..c4e86a0d0d5057b8d147974b221e0453b6273827 100644 --- a/app/code/core/Mage/GiftMessage/Block/Message/Inline.php +++ b/app/code/core/Mage/GiftMessage/Block/Message/Inline.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GiftMessage - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GiftMessage/Helper/Data.php b/app/code/core/Mage/GiftMessage/Helper/Data.php index eda654ea4fcdf7ca1b0abd15325e3c543f500fe8..0517160444f7df2b83f648f8d89aff6a34c2e4b1 100644 --- a/app/code/core/Mage/GiftMessage/Helper/Data.php +++ b/app/code/core/Mage/GiftMessage/Helper/Data.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GiftMessage - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GiftMessage/Helper/Message.php b/app/code/core/Mage/GiftMessage/Helper/Message.php index 60e5aeb7a41315e4058cb3af06de30edecbf2e24..bb741ffdcdbb9530afdb7341a3ea4d6daa77f7c5 100644 --- a/app/code/core/Mage/GiftMessage/Helper/Message.php +++ b/app/code/core/Mage/GiftMessage/Helper/Message.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GiftMessage - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GiftMessage/Helper/Url.php b/app/code/core/Mage/GiftMessage/Helper/Url.php index 50896d9dbff17c638c45171680f791c8e2e683f1..bffc697b52efa167bf3e9a5ee74b639696eec351 100644 --- a/app/code/core/Mage/GiftMessage/Helper/Url.php +++ b/app/code/core/Mage/GiftMessage/Helper/Url.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GiftMessage - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GiftMessage/Model/Message.php b/app/code/core/Mage/GiftMessage/Model/Message.php index fee1d8cd98ca4cfebea4cf7cdb69f891e23aa187..1bc552ab9a19ac20a6e9fdf8daacc47198b5d13a 100644 --- a/app/code/core/Mage/GiftMessage/Model/Message.php +++ b/app/code/core/Mage/GiftMessage/Model/Message.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GiftMessage - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GiftMessage/Model/Observer.php b/app/code/core/Mage/GiftMessage/Model/Observer.php index 8d91c7e35143c102c4736446d278b66c7a23e6d8..dcdff866875dd9d7c9cdfdb0ee353e581eae0c7b 100644 --- a/app/code/core/Mage/GiftMessage/Model/Observer.php +++ b/app/code/core/Mage/GiftMessage/Model/Observer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GiftMessage - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GiftMessage/Model/Resource/Message.php b/app/code/core/Mage/GiftMessage/Model/Resource/Message.php index a43fdcb572a34936f9ecd6510756df75a5bdd189..b93e983d5e930ce76d3e0535a6b7e6711bca73de 100755 --- a/app/code/core/Mage/GiftMessage/Model/Resource/Message.php +++ b/app/code/core/Mage/GiftMessage/Model/Resource/Message.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GiftMessage - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GiftMessage/Model/Resource/Message/Collection.php b/app/code/core/Mage/GiftMessage/Model/Resource/Message/Collection.php index b4121cce5173ad8c167e48333cb60369a13f767c..479634c3871c581034a0f507b52872abc07f8905 100755 --- a/app/code/core/Mage/GiftMessage/Model/Resource/Message/Collection.php +++ b/app/code/core/Mage/GiftMessage/Model/Resource/Message/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GiftMessage - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GiftMessage/Model/Resource/Setup.php b/app/code/core/Mage/GiftMessage/Model/Resource/Setup.php index b695eea3a0427c6acc31bafa7663c24d9503eca9..5cda0339c0f4d4d3fbd3432707668c2a043b3c74 100755 --- a/app/code/core/Mage/GiftMessage/Model/Resource/Setup.php +++ b/app/code/core/Mage/GiftMessage/Model/Resource/Setup.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GiftMessage - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GiftMessage/etc/adminhtml/system.xml b/app/code/core/Mage/GiftMessage/etc/adminhtml/system.xml index c66e60948b76c2474ab4d2e6aee0fb851273cbf3..2cfb62d5219fa6e2d3b84e3fbda0a6c0439328aa 100644 --- a/app/code/core/Mage/GiftMessage/etc/adminhtml/system.xml +++ b/app/code/core/Mage/GiftMessage/etc/adminhtml/system.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_GiftMessage - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/GiftMessage/etc/config.xml b/app/code/core/Mage/GiftMessage/etc/config.xml index 8e5669ff86551b9e60c9a94e704f8153d2039179..33685a71fe9ab939ff0812263c3707a4240c9fcb 100644 --- a/app/code/core/Mage/GiftMessage/etc/config.xml +++ b/app/code/core/Mage/GiftMessage/etc/config.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_GiftMessage - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/GiftMessage/sql/giftmessage_setup/install-1.6.0.0.php b/app/code/core/Mage/GiftMessage/sql/giftmessage_setup/install-1.6.0.0.php index 996d6331444a2e584c74366d18f93de538b10695..cea2b5146a06a2de8e232f3b5f6a54f5bb00d314 100644 --- a/app/code/core/Mage/GiftMessage/sql/giftmessage_setup/install-1.6.0.0.php +++ b/app/code/core/Mage/GiftMessage/sql/giftmessage_setup/install-1.6.0.0.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GiftMessage - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GiftMessage/view/adminhtml/form.phtml b/app/code/core/Mage/GiftMessage/view/adminhtml/form.phtml index fa6d8382e8afbe1c8bc1a6c6fb975d4b63774278..94aae0559ac303aa040f11ad597d83d6673cff13 100644 --- a/app/code/core/Mage/GiftMessage/view/adminhtml/form.phtml +++ b/app/code/core/Mage/GiftMessage/view/adminhtml/form.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/GiftMessage/view/adminhtml/giftoptionsform.phtml b/app/code/core/Mage/GiftMessage/view/adminhtml/giftoptionsform.phtml index ca74d123b38c05437a928ad91feb2635fd8bf9ba..f886fbb3006ff01092fcf1bd84328d86475e4090 100644 --- a/app/code/core/Mage/GiftMessage/view/adminhtml/giftoptionsform.phtml +++ b/app/code/core/Mage/GiftMessage/view/adminhtml/giftoptionsform.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/GiftMessage/view/adminhtml/helper.phtml b/app/code/core/Mage/GiftMessage/view/adminhtml/helper.phtml index 3ad0655a395d1caaf0c22a24924c503ee7168dc0..dd3f54c240bd871ef0dd25891876286fd049768e 100644 --- a/app/code/core/Mage/GiftMessage/view/adminhtml/helper.phtml +++ b/app/code/core/Mage/GiftMessage/view/adminhtml/helper.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/GiftMessage/view/adminhtml/layout.xml b/app/code/core/Mage/GiftMessage/view/adminhtml/layout.xml index c8032f65f5b8fe8c9283edd358f380bdcd85dfb7..a5acb3fac66839d5b5481eb575f31ca489791344 100644 --- a/app/code/core/Mage/GiftMessage/view/adminhtml/layout.xml +++ b/app/code/core/Mage/GiftMessage/view/adminhtml/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/GiftMessage/view/adminhtml/popup.phtml b/app/code/core/Mage/GiftMessage/view/adminhtml/popup.phtml index 25914ca58df2f323f052918e39cbe8f9a7495ce0..9ad21fb333ababd0aae4d1215a886ca986acc806 100644 --- a/app/code/core/Mage/GiftMessage/view/adminhtml/popup.phtml +++ b/app/code/core/Mage/GiftMessage/view/adminhtml/popup.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/GiftMessage/view/adminhtml/sales/order/create/giftoptions.phtml b/app/code/core/Mage/GiftMessage/view/adminhtml/sales/order/create/giftoptions.phtml index ddbf235dc0442f0b7b8485626f23e652f6f1c2e4..1ce55b88c34b2202095edbca9ece1057c2a7790c 100644 --- a/app/code/core/Mage/GiftMessage/view/adminhtml/sales/order/create/giftoptions.phtml +++ b/app/code/core/Mage/GiftMessage/view/adminhtml/sales/order/create/giftoptions.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/GiftMessage/view/adminhtml/sales/order/create/items.phtml b/app/code/core/Mage/GiftMessage/view/adminhtml/sales/order/create/items.phtml index a652bd4b3a5da36cc2a2a91b129cfeea37993b42..beffb6c8194daca20f071f37623a4500f5ad4655 100644 --- a/app/code/core/Mage/GiftMessage/view/adminhtml/sales/order/create/items.phtml +++ b/app/code/core/Mage/GiftMessage/view/adminhtml/sales/order/create/items.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/GiftMessage/view/adminhtml/sales/order/view/giftoptions.phtml b/app/code/core/Mage/GiftMessage/view/adminhtml/sales/order/view/giftoptions.phtml index def4b326834fff3035ecb4aedeb0378dbc956184..3f1a3fd375ea993529ca585130351fa85e8b893b 100644 --- a/app/code/core/Mage/GiftMessage/view/adminhtml/sales/order/view/giftoptions.phtml +++ b/app/code/core/Mage/GiftMessage/view/adminhtml/sales/order/view/giftoptions.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/GiftMessage/view/adminhtml/sales/order/view/items.phtml b/app/code/core/Mage/GiftMessage/view/adminhtml/sales/order/view/items.phtml index 1236e10c838ed51c4f354f70c85b3ab5e802b0ab..9787820c77543d03dc417640c6aaa071e59aa268 100644 --- a/app/code/core/Mage/GiftMessage/view/adminhtml/sales/order/view/items.phtml +++ b/app/code/core/Mage/GiftMessage/view/adminhtml/sales/order/view/items.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/GiftMessage/view/frontend/inline.phtml b/app/code/core/Mage/GiftMessage/view/frontend/inline.phtml index f1022c5dfc68824acc5b194e558d3e0dea4b80e8..4c6e0eb909d09b37847dae315983ffd2839592ba 100644 --- a/app/code/core/Mage/GiftMessage/view/frontend/inline.phtml +++ b/app/code/core/Mage/GiftMessage/view/frontend/inline.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/GoogleAnalytics/Block/Ga.php b/app/code/core/Mage/GoogleAnalytics/Block/Ga.php index 1dd30565908be8b6bf5b27f55eb1882e6d63d6d1..99e73295a5f8cadd58b28b43f7b03a9556af12e0 100644 --- a/app/code/core/Mage/GoogleAnalytics/Block/Ga.php +++ b/app/code/core/Mage/GoogleAnalytics/Block/Ga.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleAnalytics - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleAnalytics/Helper/Data.php b/app/code/core/Mage/GoogleAnalytics/Helper/Data.php index b819b772c15477165b3be2b22df8a82f65d234b2..8ad3b7984808d4325803c537bda99590a124801d 100644 --- a/app/code/core/Mage/GoogleAnalytics/Helper/Data.php +++ b/app/code/core/Mage/GoogleAnalytics/Helper/Data.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleAnalytics - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleAnalytics/Model/Observer.php b/app/code/core/Mage/GoogleAnalytics/Model/Observer.php index d47244346168c24ba3033cea11250a4bae6e3f02..53c3636417c77f28ab5bfd2837d8062ca171b50a 100644 --- a/app/code/core/Mage/GoogleAnalytics/Model/Observer.php +++ b/app/code/core/Mage/GoogleAnalytics/Model/Observer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleAnalytics - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleAnalytics/etc/adminhtml/acl.xml b/app/code/core/Mage/GoogleAnalytics/etc/adminhtml/acl.xml index bbf67ee7a204e73e4727e0191271a497effd1778..3885164311a46346dd583be87eada69927a48913 100644 --- a/app/code/core/Mage/GoogleAnalytics/etc/adminhtml/acl.xml +++ b/app/code/core/Mage/GoogleAnalytics/etc/adminhtml/acl.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_GoogleAnalytics - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/GoogleAnalytics/etc/adminhtml/system.xml b/app/code/core/Mage/GoogleAnalytics/etc/adminhtml/system.xml index 2679ac9cacc89d337ca1494302b1dc0cb8b42afb..e97b63a449ddbe92439a47b67cf75d86c1daba99 100644 --- a/app/code/core/Mage/GoogleAnalytics/etc/adminhtml/system.xml +++ b/app/code/core/Mage/GoogleAnalytics/etc/adminhtml/system.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_GoogleAnalytics - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/GoogleAnalytics/etc/config.xml b/app/code/core/Mage/GoogleAnalytics/etc/config.xml index 4bb7ba950526c8a90a196b21f265842caa97eba2..0be8ae6b887783f390895c26b59c3cc26f5cb127 100644 --- a/app/code/core/Mage/GoogleAnalytics/etc/config.xml +++ b/app/code/core/Mage/GoogleAnalytics/etc/config.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_GoogleAnalytics - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/GoogleAnalytics/view/frontend/ga.phtml b/app/code/core/Mage/GoogleAnalytics/view/frontend/ga.phtml index 2d48c224b98672f7b548941948fc21a8e35d5217..fddb32fd4c6a328a212ab643ff5f868a8e947066 100644 --- a/app/code/core/Mage/GoogleAnalytics/view/frontend/ga.phtml +++ b/app/code/core/Mage/GoogleAnalytics/view/frontend/ga.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/GoogleAnalytics/view/frontend/layout.xml b/app/code/core/Mage/GoogleAnalytics/view/frontend/layout.xml index b79d93300f247b1b4b1c99ad98d2ffb452be083c..ca590d76541a144bf7beb5f134262baca7fe931a 100644 --- a/app/code/core/Mage/GoogleAnalytics/view/frontend/layout.xml +++ b/app/code/core/Mage/GoogleAnalytics/view/frontend/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/GoogleCheckout/Block/Adminhtml/Shipping/Applicable/Countries.php b/app/code/core/Mage/GoogleCheckout/Block/Adminhtml/Shipping/Applicable/Countries.php index 0a529a2cf208d8b2a2d5dff2d7f5e96bc4427a03..51f8b18152acf813b53403a8a2b8c4c6d2bc6c08 100644 --- a/app/code/core/Mage/GoogleCheckout/Block/Adminhtml/Shipping/Applicable/Countries.php +++ b/app/code/core/Mage/GoogleCheckout/Block/Adminhtml/Shipping/Applicable/Countries.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleCheckout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleCheckout/Block/Adminhtml/Shipping/Merchant.php b/app/code/core/Mage/GoogleCheckout/Block/Adminhtml/Shipping/Merchant.php index 7d32614f44eeae4e708c5a6c2c55ffe13b1ed317..ded74ca470fcbeea8edd5e1bfc3d236d615160e8 100644 --- a/app/code/core/Mage/GoogleCheckout/Block/Adminhtml/Shipping/Merchant.php +++ b/app/code/core/Mage/GoogleCheckout/Block/Adminhtml/Shipping/Merchant.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleCheckout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleCheckout/Block/Form.php b/app/code/core/Mage/GoogleCheckout/Block/Form.php index 0af9ce05535f3ed8923286ca5cd0b8d95b0116c0..d7a63c99096b69447da5d6ed2dc0c7fe7cecdb4a 100644 --- a/app/code/core/Mage/GoogleCheckout/Block/Form.php +++ b/app/code/core/Mage/GoogleCheckout/Block/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleCheckout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleCheckout/Block/Link.php b/app/code/core/Mage/GoogleCheckout/Block/Link.php index fec3411f09c878efb286f85700cbf543dfa4dacd..79cef6f04e82733b5eff93da47bad13bc81b4aea 100644 --- a/app/code/core/Mage/GoogleCheckout/Block/Link.php +++ b/app/code/core/Mage/GoogleCheckout/Block/Link.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleCheckout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleCheckout/Block/Redirect.php b/app/code/core/Mage/GoogleCheckout/Block/Redirect.php index 5f2ee13836a015b0a6802fec0b6b7993de6fdeb4..e904010696adbf8b0923705fd3f8338d5fdc4697 100644 --- a/app/code/core/Mage/GoogleCheckout/Block/Redirect.php +++ b/app/code/core/Mage/GoogleCheckout/Block/Redirect.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleCheckout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleCheckout/Exception.php b/app/code/core/Mage/GoogleCheckout/Exception.php index 9021281eab3a0c2d798e8abf4235c6d1b038c1f2..8cbd746e38f0f58036cf2fd605a671fb55d1eb31 100644 --- a/app/code/core/Mage/GoogleCheckout/Exception.php +++ b/app/code/core/Mage/GoogleCheckout/Exception.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleCheckout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleCheckout/Helper/Data.php b/app/code/core/Mage/GoogleCheckout/Helper/Data.php index f9cf26a36b46f78e43469fbfc0d8524f7a614cbc..d702c286372e1b2947b08b35cac7766e6e0457e1 100644 --- a/app/code/core/Mage/GoogleCheckout/Helper/Data.php +++ b/app/code/core/Mage/GoogleCheckout/Helper/Data.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleCheckout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleCheckout/Model/Api.php b/app/code/core/Mage/GoogleCheckout/Model/Api.php index ae693aab232bdc1a7160bb9d93bdf5c7da821988..92f73ee4f7117f16038e6f255e44fcbd677bd191 100644 --- a/app/code/core/Mage/GoogleCheckout/Model/Api.php +++ b/app/code/core/Mage/GoogleCheckout/Model/Api.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleCheckout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleCheckout/Model/Api/Debug.php b/app/code/core/Mage/GoogleCheckout/Model/Api/Debug.php index c2d5d2acf7eccf6e520430e51581c2305c78469d..5bd58a6cd12df6a37d85f36f9584a55e3dea7b7b 100644 --- a/app/code/core/Mage/GoogleCheckout/Model/Api/Debug.php +++ b/app/code/core/Mage/GoogleCheckout/Model/Api/Debug.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleCheckout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleCheckout/Model/Api/Xml/Abstract.php b/app/code/core/Mage/GoogleCheckout/Model/Api/Xml/Abstract.php index 3b979da95b6e41c96ae6b9837967346c5c49194e..97a09bd9b947461dd70ce58f9e26b505f5fa4cd3 100644 --- a/app/code/core/Mage/GoogleCheckout/Model/Api/Xml/Abstract.php +++ b/app/code/core/Mage/GoogleCheckout/Model/Api/Xml/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleCheckout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleCheckout/Model/Api/Xml/Calculate.php b/app/code/core/Mage/GoogleCheckout/Model/Api/Xml/Calculate.php index 1b23fa5f396fbd2d109c6e741cd9f1154f0b8842..7f68a323be29dd97c72cd72a717e8c0fadd74bff 100644 --- a/app/code/core/Mage/GoogleCheckout/Model/Api/Xml/Calculate.php +++ b/app/code/core/Mage/GoogleCheckout/Model/Api/Xml/Calculate.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleCheckout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleCheckout/Model/Api/Xml/Callback.php b/app/code/core/Mage/GoogleCheckout/Model/Api/Xml/Callback.php index 522b5679a614c9b966a266d0df8906e407da66a9..84b42b5152d6ac3203d25a8e54f7e681bdb62e6b 100644 --- a/app/code/core/Mage/GoogleCheckout/Model/Api/Xml/Callback.php +++ b/app/code/core/Mage/GoogleCheckout/Model/Api/Xml/Callback.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleCheckout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleCheckout/Model/Api/Xml/Checkout.php b/app/code/core/Mage/GoogleCheckout/Model/Api/Xml/Checkout.php index c49820af964a6c9ac291ab3f45060a94b9f4077d..b5c19ed0b1199fccbdb16515f85a40f539e8ecf5 100644 --- a/app/code/core/Mage/GoogleCheckout/Model/Api/Xml/Checkout.php +++ b/app/code/core/Mage/GoogleCheckout/Model/Api/Xml/Checkout.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleCheckout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleCheckout/Model/Api/Xml/Order.php b/app/code/core/Mage/GoogleCheckout/Model/Api/Xml/Order.php index 2c0ec6120ff547dd256ad8520e6a5c8e686115be..6c2305519a1b4101861b954e5f6eb1b7532c1dc3 100644 --- a/app/code/core/Mage/GoogleCheckout/Model/Api/Xml/Order.php +++ b/app/code/core/Mage/GoogleCheckout/Model/Api/Xml/Order.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleCheckout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleCheckout/Model/Notification.php b/app/code/core/Mage/GoogleCheckout/Model/Notification.php index d1e9dc0274d87588173eb66a2814ac0a4b627a23..f88cf949fca37804e2a39593b4e1cbc475489ff9 100644 --- a/app/code/core/Mage/GoogleCheckout/Model/Notification.php +++ b/app/code/core/Mage/GoogleCheckout/Model/Notification.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleCheckout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleCheckout/Model/Observer.php b/app/code/core/Mage/GoogleCheckout/Model/Observer.php index edd91c028fed75604690da76f92a1191129332b5..d34e24e244dbbb3be16b8edde7e0f61b5c278129 100644 --- a/app/code/core/Mage/GoogleCheckout/Model/Observer.php +++ b/app/code/core/Mage/GoogleCheckout/Model/Observer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleCheckout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleCheckout/Model/Payment.php b/app/code/core/Mage/GoogleCheckout/Model/Payment.php index 5398b008b0a10a24831fc3e25b96d455b8b63461..deefe562cb27f19b5eb16cd73ee9d7812d8a3d16 100644 --- a/app/code/core/Mage/GoogleCheckout/Model/Payment.php +++ b/app/code/core/Mage/GoogleCheckout/Model/Payment.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleCheckout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleCheckout/Model/Resource/Api/Debug.php b/app/code/core/Mage/GoogleCheckout/Model/Resource/Api/Debug.php index 187bb521a2fa309b7f3e0d2bdd6bf0baa44a81cf..a388fa8f789cf5e7341ade0df00a635301508e49 100755 --- a/app/code/core/Mage/GoogleCheckout/Model/Resource/Api/Debug.php +++ b/app/code/core/Mage/GoogleCheckout/Model/Resource/Api/Debug.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleCheckout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleCheckout/Model/Resource/Api/Debug/Collection.php b/app/code/core/Mage/GoogleCheckout/Model/Resource/Api/Debug/Collection.php index 143a3ea8b5c4f1bfe3c78a518f19847eaf6656e8..37d78a543304f3c61d328ee78821963825808b47 100755 --- a/app/code/core/Mage/GoogleCheckout/Model/Resource/Api/Debug/Collection.php +++ b/app/code/core/Mage/GoogleCheckout/Model/Resource/Api/Debug/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleCheckout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleCheckout/Model/Resource/Notification.php b/app/code/core/Mage/GoogleCheckout/Model/Resource/Notification.php index 5832600a7e4018019d4a5ae07c9c9c148b540c2a..dad661ebb40320b666be8280332dafae8512161e 100755 --- a/app/code/core/Mage/GoogleCheckout/Model/Resource/Notification.php +++ b/app/code/core/Mage/GoogleCheckout/Model/Resource/Notification.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleCheckout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleCheckout/Model/Resource/Setup.php b/app/code/core/Mage/GoogleCheckout/Model/Resource/Setup.php index b12e5824bf352c6427e9ddc145c30d4912d772cb..f39b84fbe901539f324c9a3a33f2650dd90fcfb7 100755 --- a/app/code/core/Mage/GoogleCheckout/Model/Resource/Setup.php +++ b/app/code/core/Mage/GoogleCheckout/Model/Resource/Setup.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleCheckout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleCheckout/Model/Shipping.php b/app/code/core/Mage/GoogleCheckout/Model/Shipping.php index cc649ecd1f8143fabbedc8e3e8b2349a1fbfef7b..9c87904fc34e640eda3a0071d5ed24078e5e8adb 100644 --- a/app/code/core/Mage/GoogleCheckout/Model/Shipping.php +++ b/app/code/core/Mage/GoogleCheckout/Model/Shipping.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleCheckout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleCheckout/Model/Source/Checkout/Image.php b/app/code/core/Mage/GoogleCheckout/Model/Source/Checkout/Image.php index d6deff7ec2359f7822688875b1ea3fcf75b3c25a..6d05a3ee6466f203cf6a65a6d389bc9404f2e242 100644 --- a/app/code/core/Mage/GoogleCheckout/Model/Source/Checkout/Image.php +++ b/app/code/core/Mage/GoogleCheckout/Model/Source/Checkout/Image.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleCheckout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleCheckout/Model/Source/Locale.php b/app/code/core/Mage/GoogleCheckout/Model/Source/Locale.php index 09743b7753838f105d203a5d7dd0f1fb2e22b940..924fb05a09e43e82c7a51cf8da93233a3b7a1af4 100644 --- a/app/code/core/Mage/GoogleCheckout/Model/Source/Locale.php +++ b/app/code/core/Mage/GoogleCheckout/Model/Source/Locale.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleCheckout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleCheckout/Model/Source/Shipping/Carrier.php b/app/code/core/Mage/GoogleCheckout/Model/Source/Shipping/Carrier.php index 7cd752965d63e6e94ae6014da039b93aa5d82b69..db005d003554cfe2baa92ab173214ba9afb35f02 100644 --- a/app/code/core/Mage/GoogleCheckout/Model/Source/Shipping/Carrier.php +++ b/app/code/core/Mage/GoogleCheckout/Model/Source/Shipping/Carrier.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleCheckout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleCheckout/Model/Source/Shipping/Category.php b/app/code/core/Mage/GoogleCheckout/Model/Source/Shipping/Category.php index 151a370f791bc542f470bca957b753a7023b29c3..dc2c914ea74e4a0e255b2ce8bdeceda40982fe30 100644 --- a/app/code/core/Mage/GoogleCheckout/Model/Source/Shipping/Category.php +++ b/app/code/core/Mage/GoogleCheckout/Model/Source/Shipping/Category.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleCheckout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleCheckout/Model/Source/Shipping/Units.php b/app/code/core/Mage/GoogleCheckout/Model/Source/Shipping/Units.php index 56e19fa9aeb3c32fd3a6cd430a9c5799013852f7..af0b2356a6263d7c7baadad287c89878fd057b0b 100644 --- a/app/code/core/Mage/GoogleCheckout/Model/Source/Shipping/Units.php +++ b/app/code/core/Mage/GoogleCheckout/Model/Source/Shipping/Units.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleCheckout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleCheckout/Model/Source/Shipping/Virtual/Method.php b/app/code/core/Mage/GoogleCheckout/Model/Source/Shipping/Virtual/Method.php index 316f2071cd3eca021fa240bf89053913fddd26c9..06255f5ea74af715ad6850a6806e0e97293161d3 100644 --- a/app/code/core/Mage/GoogleCheckout/Model/Source/Shipping/Virtual/Method.php +++ b/app/code/core/Mage/GoogleCheckout/Model/Source/Shipping/Virtual/Method.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleCheckout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleCheckout/Model/Source/Shipping/Virtual/Schedule.php b/app/code/core/Mage/GoogleCheckout/Model/Source/Shipping/Virtual/Schedule.php index e848d25c15ba584e8089b6106853ce7859b0f114..ba3f4288727de4e13db635bc6f838b9e8cd60b99 100644 --- a/app/code/core/Mage/GoogleCheckout/Model/Source/Shipping/Virtual/Schedule.php +++ b/app/code/core/Mage/GoogleCheckout/Model/Source/Shipping/Virtual/Schedule.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleCheckout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleCheckout/controllers/ApiController.php b/app/code/core/Mage/GoogleCheckout/controllers/ApiController.php index 56e715594e360eb06305c67ffd53266cc49bbcf7..2a5138eab43d886ca85fabdcf8c45cd51179cb78 100644 --- a/app/code/core/Mage/GoogleCheckout/controllers/ApiController.php +++ b/app/code/core/Mage/GoogleCheckout/controllers/ApiController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleCheckout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleCheckout/controllers/RedirectController.php b/app/code/core/Mage/GoogleCheckout/controllers/RedirectController.php index ed3c3366a4cedfc6c2cd02e2b5284f388670c1c2..2d999a0ccc56f5d97f258e9f6415322747424dec 100644 --- a/app/code/core/Mage/GoogleCheckout/controllers/RedirectController.php +++ b/app/code/core/Mage/GoogleCheckout/controllers/RedirectController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleCheckout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleCheckout/etc/adminhtml/acl.xml b/app/code/core/Mage/GoogleCheckout/etc/adminhtml/acl.xml index 6658e71fccc6b3391d605968d364e20d9b988fca..d2a5cab8a715651688cd99c435600275aaacb960 100644 --- a/app/code/core/Mage/GoogleCheckout/etc/adminhtml/acl.xml +++ b/app/code/core/Mage/GoogleCheckout/etc/adminhtml/acl.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_GoogleCheckout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/GoogleCheckout/etc/adminhtml/system.xml b/app/code/core/Mage/GoogleCheckout/etc/adminhtml/system.xml index 50ea043d223576083652173927cf0cae80240872..b2b0205d32626b46875982cfe4292b20d8ef4381 100644 --- a/app/code/core/Mage/GoogleCheckout/etc/adminhtml/system.xml +++ b/app/code/core/Mage/GoogleCheckout/etc/adminhtml/system.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_GoogleCheckout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/GoogleCheckout/etc/config.xml b/app/code/core/Mage/GoogleCheckout/etc/config.xml index 73d1a32250ddb6b6cf797b420d23ef649e971881..5255a2e4b4eb12a1e83186a4cac941b3df142283 100644 --- a/app/code/core/Mage/GoogleCheckout/etc/config.xml +++ b/app/code/core/Mage/GoogleCheckout/etc/config.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_GoogleCheckout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/GoogleCheckout/sql/googlecheckout_setup/install-1.6.0.0.php b/app/code/core/Mage/GoogleCheckout/sql/googlecheckout_setup/install-1.6.0.0.php index 73a3e41fffb812fd808d152b17e5987278b32610..354091d08cfddde964d1eb97e0b3dfac90f6b3ef 100644 --- a/app/code/core/Mage/GoogleCheckout/sql/googlecheckout_setup/install-1.6.0.0.php +++ b/app/code/core/Mage/GoogleCheckout/sql/googlecheckout_setup/install-1.6.0.0.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleCheckout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleCheckout/sql/googlecheckout_setup/upgrade-1.6.0.0-1.6.0.1.php b/app/code/core/Mage/GoogleCheckout/sql/googlecheckout_setup/upgrade-1.6.0.0-1.6.0.1.php index 270a85d5f0716af44f25b903fb0e08e0e2f5b012..aed52a0502bfa020bc274409909bfc794abaf839 100644 --- a/app/code/core/Mage/GoogleCheckout/sql/googlecheckout_setup/upgrade-1.6.0.0-1.6.0.1.php +++ b/app/code/core/Mage/GoogleCheckout/sql/googlecheckout_setup/upgrade-1.6.0.0-1.6.0.1.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleCheckout - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleCheckout/view/frontend/form.phtml b/app/code/core/Mage/GoogleCheckout/view/frontend/form.phtml index e58ea7a89609da9337a1267f05008e180061ce1e..9280241d60a504eac18e062d4bc5a498ee460317 100644 --- a/app/code/core/Mage/GoogleCheckout/view/frontend/form.phtml +++ b/app/code/core/Mage/GoogleCheckout/view/frontend/form.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/GoogleCheckout/view/frontend/layout.xml b/app/code/core/Mage/GoogleCheckout/view/frontend/layout.xml index 471bcd4ba2d9b69d1394312b06106918d9c6070f..7e072ae1b2f3ee4552f2ec5cac5d8d691c7fb8da 100644 --- a/app/code/core/Mage/GoogleCheckout/view/frontend/layout.xml +++ b/app/code/core/Mage/GoogleCheckout/view/frontend/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/GoogleCheckout/view/frontend/link.phtml b/app/code/core/Mage/GoogleCheckout/view/frontend/link.phtml index d15520c562d8cba4d897ac71272c38b4580a6f57..2e180c68293ac000599f5b29e929dc57a7551f10 100644 --- a/app/code/core/Mage/GoogleCheckout/view/frontend/link.phtml +++ b/app/code/core/Mage/GoogleCheckout/view/frontend/link.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/GoogleOptimizer/Block/Adminhtml/Catalog/Category/Edit/Tab/Googleoptimizer.php b/app/code/core/Mage/GoogleOptimizer/Block/Adminhtml/Catalog/Category/Edit/Tab/Googleoptimizer.php index 0457a5338b7e9c9b34f4ca687fde8bebb5ffe771..7f347afa0fef62dbce1fbe64309cd7aea033627d 100644 --- a/app/code/core/Mage/GoogleOptimizer/Block/Adminhtml/Catalog/Category/Edit/Tab/Googleoptimizer.php +++ b/app/code/core/Mage/GoogleOptimizer/Block/Adminhtml/Catalog/Category/Edit/Tab/Googleoptimizer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleOptimizer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleOptimizer/Block/Adminhtml/Catalog/Form/Renderer/Import.php b/app/code/core/Mage/GoogleOptimizer/Block/Adminhtml/Catalog/Form/Renderer/Import.php index f87bdcd5b5f9b346f53c6c86c561a75b406653a8..a1b5a6c60b385b5fdf964b85a110724902ced9e8 100644 --- a/app/code/core/Mage/GoogleOptimizer/Block/Adminhtml/Catalog/Form/Renderer/Import.php +++ b/app/code/core/Mage/GoogleOptimizer/Block/Adminhtml/Catalog/Form/Renderer/Import.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleOptimizer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleOptimizer/Block/Adminhtml/Catalog/Product/Edit/Tab/Googleoptimizer.php b/app/code/core/Mage/GoogleOptimizer/Block/Adminhtml/Catalog/Product/Edit/Tab/Googleoptimizer.php index 94aa73cbc0df09f5afd0098ef35eb9f4384a22a0..7e0c458db05ab644f9a7dff90b1b5d1bb51154fd 100644 --- a/app/code/core/Mage/GoogleOptimizer/Block/Adminhtml/Catalog/Product/Edit/Tab/Googleoptimizer.php +++ b/app/code/core/Mage/GoogleOptimizer/Block/Adminhtml/Catalog/Product/Edit/Tab/Googleoptimizer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleOptimizer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleOptimizer/Block/Adminhtml/Cms/Page/Edit/Enable.php b/app/code/core/Mage/GoogleOptimizer/Block/Adminhtml/Cms/Page/Edit/Enable.php index 9fd006635084c81500f63a242080fddd16679000..bb4a29fec04a94987ff1e47016f220ece5787c20 100644 --- a/app/code/core/Mage/GoogleOptimizer/Block/Adminhtml/Cms/Page/Edit/Enable.php +++ b/app/code/core/Mage/GoogleOptimizer/Block/Adminhtml/Cms/Page/Edit/Enable.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleOptimizer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleOptimizer/Block/Adminhtml/Cms/Page/Edit/Renderer/Conversion.php b/app/code/core/Mage/GoogleOptimizer/Block/Adminhtml/Cms/Page/Edit/Renderer/Conversion.php index 0a241edb5b69c5a656a765b31809578709307617..80a33dc2bb890df4e73b9e798c440f963fc6e110 100644 --- a/app/code/core/Mage/GoogleOptimizer/Block/Adminhtml/Cms/Page/Edit/Renderer/Conversion.php +++ b/app/code/core/Mage/GoogleOptimizer/Block/Adminhtml/Cms/Page/Edit/Renderer/Conversion.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleOptimizer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleOptimizer/Block/Adminhtml/Cms/Page/Edit/Tab/Googleoptimizer.php b/app/code/core/Mage/GoogleOptimizer/Block/Adminhtml/Cms/Page/Edit/Tab/Googleoptimizer.php index ce48a3e3e233a790e532bc29ccb502edc3097d24..e75a94d664a33ba109c804066fd06a3d0dffe8d1 100644 --- a/app/code/core/Mage/GoogleOptimizer/Block/Adminhtml/Cms/Page/Edit/Tab/Googleoptimizer.php +++ b/app/code/core/Mage/GoogleOptimizer/Block/Adminhtml/Cms/Page/Edit/Tab/Googleoptimizer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleOptimizer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleOptimizer/Block/Code.php b/app/code/core/Mage/GoogleOptimizer/Block/Code.php index 0b390e2027e0b71332a97a359d2c8c9afa38b3ea..0312c93894d837074cc8ab61594d1cd29292f004 100644 --- a/app/code/core/Mage/GoogleOptimizer/Block/Code.php +++ b/app/code/core/Mage/GoogleOptimizer/Block/Code.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleOptimizer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleOptimizer/Block/Code/Category.php b/app/code/core/Mage/GoogleOptimizer/Block/Code/Category.php index 95336af568dd48d0627966f2210005c252f122f4..0eb38c821c1c4fb2586ebd97ea0755c474788a87 100644 --- a/app/code/core/Mage/GoogleOptimizer/Block/Code/Category.php +++ b/app/code/core/Mage/GoogleOptimizer/Block/Code/Category.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleOptimizer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleOptimizer/Block/Code/Conversion.php b/app/code/core/Mage/GoogleOptimizer/Block/Code/Conversion.php index aa78ba702e1ee92c817f73fdbe4a6a22beed9268..f9bd8057c6108cd68f2d308299d915f9cf74faf3 100644 --- a/app/code/core/Mage/GoogleOptimizer/Block/Code/Conversion.php +++ b/app/code/core/Mage/GoogleOptimizer/Block/Code/Conversion.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleOptimizer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleOptimizer/Block/Code/Page.php b/app/code/core/Mage/GoogleOptimizer/Block/Code/Page.php index f959df4b5d5a29fcf6b898837c55ac18abf3ab29..6eb8d7a0d25a7a063707b7eecf5b61a2421d9ab9 100644 --- a/app/code/core/Mage/GoogleOptimizer/Block/Code/Page.php +++ b/app/code/core/Mage/GoogleOptimizer/Block/Code/Page.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleOptimizer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleOptimizer/Block/Code/Product.php b/app/code/core/Mage/GoogleOptimizer/Block/Code/Product.php index fa9ce103b2806415643a2b1f7dcc44a052a92acd..4881753d0d5e0d49592c993b7cd4760b6efc3988 100644 --- a/app/code/core/Mage/GoogleOptimizer/Block/Code/Product.php +++ b/app/code/core/Mage/GoogleOptimizer/Block/Code/Product.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleOptimizer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleOptimizer/Block/Js.php b/app/code/core/Mage/GoogleOptimizer/Block/Js.php index 78a2cd54330664e66b61db196d1dbf3d318cd059..fde6b34ab744b5ef378cf8c3eda1a6e5fc359238 100644 --- a/app/code/core/Mage/GoogleOptimizer/Block/Js.php +++ b/app/code/core/Mage/GoogleOptimizer/Block/Js.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleOptimizer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleOptimizer/Helper/Data.php b/app/code/core/Mage/GoogleOptimizer/Helper/Data.php index ccd1d15faf3b68524419a6cf8119d010f2c6e0c9..5ce3a819b90040664a62e4c9a3ced6527b5758c3 100644 --- a/app/code/core/Mage/GoogleOptimizer/Helper/Data.php +++ b/app/code/core/Mage/GoogleOptimizer/Helper/Data.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleOptimizer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleOptimizer/Model/Adminhtml/System/Config/Source/Googleoptimizer/Conversionpages.php b/app/code/core/Mage/GoogleOptimizer/Model/Adminhtml/System/Config/Source/Googleoptimizer/Conversionpages.php index db3fcefd2e14a7a77ff4466f769bb89c9b19ee8a..7d3eb8becd47247e82771ad028ecb75d72252016 100644 --- a/app/code/core/Mage/GoogleOptimizer/Model/Adminhtml/System/Config/Source/Googleoptimizer/Conversionpages.php +++ b/app/code/core/Mage/GoogleOptimizer/Model/Adminhtml/System/Config/Source/Googleoptimizer/Conversionpages.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleOptimizer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleOptimizer/Model/Code.php b/app/code/core/Mage/GoogleOptimizer/Model/Code.php index cbcc1c59df83769a52448668c6aa38f2ad909291..c61f6a10c985c0a981b3872d7c5e285a6bbfcd82 100644 --- a/app/code/core/Mage/GoogleOptimizer/Model/Code.php +++ b/app/code/core/Mage/GoogleOptimizer/Model/Code.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleOptimizer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleOptimizer/Model/Code/Category.php b/app/code/core/Mage/GoogleOptimizer/Model/Code/Category.php index 3bbf343967ad27adcfc63b25bb6c668d5d2123ef..dca284b2e708ef1cdf2cc203c54ff8e186f478d3 100644 --- a/app/code/core/Mage/GoogleOptimizer/Model/Code/Category.php +++ b/app/code/core/Mage/GoogleOptimizer/Model/Code/Category.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleOptimizer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleOptimizer/Model/Code/Page.php b/app/code/core/Mage/GoogleOptimizer/Model/Code/Page.php index 08e4b03c5f1470ebc4262ebc749dd5909bb80da3..1e8a1e74c8ec710d2836e8cc1cb43cb0484066aa 100644 --- a/app/code/core/Mage/GoogleOptimizer/Model/Code/Page.php +++ b/app/code/core/Mage/GoogleOptimizer/Model/Code/Page.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleOptimizer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleOptimizer/Model/Code/Product.php b/app/code/core/Mage/GoogleOptimizer/Model/Code/Product.php index 4cbf3c129ad4d95be6bc3cb3754cc30466fd0782..46bef6f13c6dda9c2d921c467bd219a5bfc3a9cc 100644 --- a/app/code/core/Mage/GoogleOptimizer/Model/Code/Product.php +++ b/app/code/core/Mage/GoogleOptimizer/Model/Code/Product.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleOptimizer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleOptimizer/Model/Observer.php b/app/code/core/Mage/GoogleOptimizer/Model/Observer.php index 6c22ac34e9299f371213bd724d6f38c409f9f882..a8ce15b7bb890f1bbdf0ac38dd59a3a6702713fc 100644 --- a/app/code/core/Mage/GoogleOptimizer/Model/Observer.php +++ b/app/code/core/Mage/GoogleOptimizer/Model/Observer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleOptimizer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleOptimizer/Model/Resource/Code.php b/app/code/core/Mage/GoogleOptimizer/Model/Resource/Code.php index a7c5da3fd2c7128af97d9354a3a1d4d0a171ffd4..0435e6b72ab9fe60cf9efd7cf25e9b67356a574b 100755 --- a/app/code/core/Mage/GoogleOptimizer/Model/Resource/Code.php +++ b/app/code/core/Mage/GoogleOptimizer/Model/Resource/Code.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleOptimizer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleOptimizer/Model/Resource/Code/Collection.php b/app/code/core/Mage/GoogleOptimizer/Model/Resource/Code/Collection.php index f818507f84588c6cb4b6472df69d48a10fb81529..d5a0416d9a5501b96c6c96b071d3dcdb9f97ca1c 100755 --- a/app/code/core/Mage/GoogleOptimizer/Model/Resource/Code/Collection.php +++ b/app/code/core/Mage/GoogleOptimizer/Model/Resource/Code/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleOptimizer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleOptimizer/controllers/Adminhtml/Googleoptimizer/IndexController.php b/app/code/core/Mage/GoogleOptimizer/controllers/Adminhtml/Googleoptimizer/IndexController.php index f807bae319dfdabfce6a8505b56c255118c59987..6eb4f60fc8ffc1835895ec481d00b3665268a69d 100755 --- a/app/code/core/Mage/GoogleOptimizer/controllers/Adminhtml/Googleoptimizer/IndexController.php +++ b/app/code/core/Mage/GoogleOptimizer/controllers/Adminhtml/Googleoptimizer/IndexController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleOptimizer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleOptimizer/etc/adminhtml/system.xml b/app/code/core/Mage/GoogleOptimizer/etc/adminhtml/system.xml index 176eee595a2b3831d73fcde17e23403d4c1014bc..0aa034c26d49c92984dde4f6b6f789df4e4573af 100644 --- a/app/code/core/Mage/GoogleOptimizer/etc/adminhtml/system.xml +++ b/app/code/core/Mage/GoogleOptimizer/etc/adminhtml/system.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_GoogleOptimizer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/GoogleOptimizer/etc/config.xml b/app/code/core/Mage/GoogleOptimizer/etc/config.xml index 7ec652873f4c8d49527d94bc0b8b9640715f4ead..d29c662f33ff0c1038ea44cc80353b43db356557 100644 --- a/app/code/core/Mage/GoogleOptimizer/etc/config.xml +++ b/app/code/core/Mage/GoogleOptimizer/etc/config.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_GoogleOptimizer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/GoogleOptimizer/sql/googleoptimizer_setup/install-1.6.0.0.php b/app/code/core/Mage/GoogleOptimizer/sql/googleoptimizer_setup/install-1.6.0.0.php index ddb527b69f96eb2103df708556f74df4218fa2a6..20588a0d6533c711df344ce3452fc4c96b577891 100644 --- a/app/code/core/Mage/GoogleOptimizer/sql/googleoptimizer_setup/install-1.6.0.0.php +++ b/app/code/core/Mage/GoogleOptimizer/sql/googleoptimizer_setup/install-1.6.0.0.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleOptimizer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleOptimizer/view/adminhtml/catalog/form/renderer/import.phtml b/app/code/core/Mage/GoogleOptimizer/view/adminhtml/catalog/form/renderer/import.phtml index f65e0f8901ba11c17fe8c196eb6a963327b986a7..d6a3079e28cff21771b13df8cb1b27fd0bd44886 100644 --- a/app/code/core/Mage/GoogleOptimizer/view/adminhtml/catalog/form/renderer/import.phtml +++ b/app/code/core/Mage/GoogleOptimizer/view/adminhtml/catalog/form/renderer/import.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/GoogleOptimizer/view/adminhtml/cms/edit/renderer/conversion.phtml b/app/code/core/Mage/GoogleOptimizer/view/adminhtml/cms/edit/renderer/conversion.phtml index f8ff7a0c1dac0851506c8ca2353cf15cdec4232f..6880ba6c519f13fbe2902b205de8f95033a9f906 100644 --- a/app/code/core/Mage/GoogleOptimizer/view/adminhtml/cms/edit/renderer/conversion.phtml +++ b/app/code/core/Mage/GoogleOptimizer/view/adminhtml/cms/edit/renderer/conversion.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/GoogleOptimizer/view/adminhtml/js.phtml b/app/code/core/Mage/GoogleOptimizer/view/adminhtml/js.phtml index a27ff4f39ad307a846e465686f41ae4c3bb5ad97..d9a97226cd62960ca1b8babe206d7a79882f5bc1 100644 --- a/app/code/core/Mage/GoogleOptimizer/view/adminhtml/js.phtml +++ b/app/code/core/Mage/GoogleOptimizer/view/adminhtml/js.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/GoogleOptimizer/view/adminhtml/layout.xml b/app/code/core/Mage/GoogleOptimizer/view/adminhtml/layout.xml index eabc57c5d5366d913b1b712b1643ea2c8cf1d3f3..6d99dca6c2e155664d3cdb40a40916fd6222b31d 100644 --- a/app/code/core/Mage/GoogleOptimizer/view/adminhtml/layout.xml +++ b/app/code/core/Mage/GoogleOptimizer/view/adminhtml/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/GoogleOptimizer/view/frontend/layout.xml b/app/code/core/Mage/GoogleOptimizer/view/frontend/layout.xml index 6a9735be18236581ea01eb60a145ed462abc5efd..8eb5a7c8f9f2e3c1da9153813c4fa6ea9b5e587f 100644 --- a/app/code/core/Mage/GoogleOptimizer/view/frontend/layout.xml +++ b/app/code/core/Mage/GoogleOptimizer/view/frontend/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/GoogleShopping/Block/Adminhtml/Captcha.php b/app/code/core/Mage/GoogleShopping/Block/Adminhtml/Captcha.php index d2245c8bfcf5430caed9aeb93714656a48ee0648..4d8753bcdc012bfcd83dda418f531cf96e34216b 100644 --- a/app/code/core/Mage/GoogleShopping/Block/Adminhtml/Captcha.php +++ b/app/code/core/Mage/GoogleShopping/Block/Adminhtml/Captcha.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleShopping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleShopping/Block/Adminhtml/Items.php b/app/code/core/Mage/GoogleShopping/Block/Adminhtml/Items.php index c43ebe1bd6b87ca584a015aa6fd872149275feb7..8abdce735e13f9a4096010d145ecef27b8d55f3d 100644 --- a/app/code/core/Mage/GoogleShopping/Block/Adminhtml/Items.php +++ b/app/code/core/Mage/GoogleShopping/Block/Adminhtml/Items.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleShopping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleShopping/Block/Adminhtml/Items/Item.php b/app/code/core/Mage/GoogleShopping/Block/Adminhtml/Items/Item.php index 2e41371a656eae1669dedd6674a5132ecbce73a4..2a2b088e0c4300461e28bcaea2ed3fa12f30acad 100644 --- a/app/code/core/Mage/GoogleShopping/Block/Adminhtml/Items/Item.php +++ b/app/code/core/Mage/GoogleShopping/Block/Adminhtml/Items/Item.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleShopping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleShopping/Block/Adminhtml/Items/Product.php b/app/code/core/Mage/GoogleShopping/Block/Adminhtml/Items/Product.php index 8203e9459e80c64122a3c4358a84eb17b25352a0..008e2bc33b1e2ebb32de28f7a1ed289225493566 100644 --- a/app/code/core/Mage/GoogleShopping/Block/Adminhtml/Items/Product.php +++ b/app/code/core/Mage/GoogleShopping/Block/Adminhtml/Items/Product.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleShopping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleShopping/Block/Adminhtml/Items/Renderer/Id.php b/app/code/core/Mage/GoogleShopping/Block/Adminhtml/Items/Renderer/Id.php index 3adfa51db568cbc0c363a55ba4f8588e0cd6ddf6..a034451dfa4be09b4827429bf9e4cefdfb2b4869 100644 --- a/app/code/core/Mage/GoogleShopping/Block/Adminhtml/Items/Renderer/Id.php +++ b/app/code/core/Mage/GoogleShopping/Block/Adminhtml/Items/Renderer/Id.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleShopping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleShopping/Block/Adminhtml/Store/Switcher.php b/app/code/core/Mage/GoogleShopping/Block/Adminhtml/Store/Switcher.php index 13048f40a23b555cfd3da93d61b0204627680b11..52901e11be09a377c79c16cc36a00e53a96b3d54 100644 --- a/app/code/core/Mage/GoogleShopping/Block/Adminhtml/Store/Switcher.php +++ b/app/code/core/Mage/GoogleShopping/Block/Adminhtml/Store/Switcher.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleShopping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleShopping/Block/Adminhtml/Types.php b/app/code/core/Mage/GoogleShopping/Block/Adminhtml/Types.php index c5bb27c75748dd848e9b45be2afb00bada904296..81404afa2d8578e6d0f48888923b6f9ba2982aae 100644 --- a/app/code/core/Mage/GoogleShopping/Block/Adminhtml/Types.php +++ b/app/code/core/Mage/GoogleShopping/Block/Adminhtml/Types.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleShopping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleShopping/Block/Adminhtml/Types/Edit.php b/app/code/core/Mage/GoogleShopping/Block/Adminhtml/Types/Edit.php index a54942fc5fbfd5ac0559fd3ed4f6726395ce0b9c..14f57789eda2ff97ffe7155389b9b60b9da14e1e 100644 --- a/app/code/core/Mage/GoogleShopping/Block/Adminhtml/Types/Edit.php +++ b/app/code/core/Mage/GoogleShopping/Block/Adminhtml/Types/Edit.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleShopping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleShopping/Block/Adminhtml/Types/Edit/Attributes.php b/app/code/core/Mage/GoogleShopping/Block/Adminhtml/Types/Edit/Attributes.php index 08cb1d2577529df3b7f4f7adbcd55ad233020523..88033575fa80a3f8e63e6a06b76068af98ca848e 100644 --- a/app/code/core/Mage/GoogleShopping/Block/Adminhtml/Types/Edit/Attributes.php +++ b/app/code/core/Mage/GoogleShopping/Block/Adminhtml/Types/Edit/Attributes.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleShopping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleShopping/Block/Adminhtml/Types/Edit/Form.php b/app/code/core/Mage/GoogleShopping/Block/Adminhtml/Types/Edit/Form.php index b306bd7f04e208931e9987c2be02c745a3678469..cf7772dc9c3dc7c7f2300d4a9f01fb737ffe3525 100644 --- a/app/code/core/Mage/GoogleShopping/Block/Adminhtml/Types/Edit/Form.php +++ b/app/code/core/Mage/GoogleShopping/Block/Adminhtml/Types/Edit/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleShopping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleShopping/Block/Adminhtml/Types/Edit/Select.php b/app/code/core/Mage/GoogleShopping/Block/Adminhtml/Types/Edit/Select.php index 2a487c21b0d1239ee4315bfe098f3a116eefe23f..abebf438c584d34491bd500a71a028b9ca1f8dad 100644 --- a/app/code/core/Mage/GoogleShopping/Block/Adminhtml/Types/Edit/Select.php +++ b/app/code/core/Mage/GoogleShopping/Block/Adminhtml/Types/Edit/Select.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleShopping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleShopping/Block/Adminhtml/Types/Grid.php b/app/code/core/Mage/GoogleShopping/Block/Adminhtml/Types/Grid.php index 1b88d1953bb45e2f90a94d5374b4f9eb13707bc0..7bb33eb7dd5d999deff7c70d64640c0248855fee 100644 --- a/app/code/core/Mage/GoogleShopping/Block/Adminhtml/Types/Grid.php +++ b/app/code/core/Mage/GoogleShopping/Block/Adminhtml/Types/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleShopping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleShopping/Block/Adminhtml/Types/Renderer/Country.php b/app/code/core/Mage/GoogleShopping/Block/Adminhtml/Types/Renderer/Country.php index 46794d6f6386eb0ba001a9a9f3175bc04bc0d1cb..ce1a5edaada934f9cfd8e218800e22fdad288553 100644 --- a/app/code/core/Mage/GoogleShopping/Block/Adminhtml/Types/Renderer/Country.php +++ b/app/code/core/Mage/GoogleShopping/Block/Adminhtml/Types/Renderer/Country.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleShopping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleShopping/Helper/Category.php b/app/code/core/Mage/GoogleShopping/Helper/Category.php index d9e1f5af1af69b0d31c8fb350fc58321721314cb..2353647eb2f3d6a4a5809d7049c062c6e09a8b49 100644 --- a/app/code/core/Mage/GoogleShopping/Helper/Category.php +++ b/app/code/core/Mage/GoogleShopping/Helper/Category.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleShopping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleShopping/Helper/Data.php b/app/code/core/Mage/GoogleShopping/Helper/Data.php index cea1bedc5ad9be9918c1a7c077e2c2e48f256c68..f27d320885aacecc7ca47e965873ce931d3db580 100644 --- a/app/code/core/Mage/GoogleShopping/Helper/Data.php +++ b/app/code/core/Mage/GoogleShopping/Helper/Data.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleShopping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleShopping/Helper/Price.php b/app/code/core/Mage/GoogleShopping/Helper/Price.php index 1a7a4ed89c1dbdcf0017ba1da902f9982552c7c3..ebb59dd08dcef2902423832aebea7013f8903811 100644 --- a/app/code/core/Mage/GoogleShopping/Helper/Price.php +++ b/app/code/core/Mage/GoogleShopping/Helper/Price.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleShopping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleShopping/Helper/Product.php b/app/code/core/Mage/GoogleShopping/Helper/Product.php index 1ba25430273304941e97e4d9d28d50eb6915a8bf..71af55621ddbaeea1e7db7b31d0537143b93db8b 100644 --- a/app/code/core/Mage/GoogleShopping/Helper/Product.php +++ b/app/code/core/Mage/GoogleShopping/Helper/Product.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleShopping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleShopping/Model/Attribute.php b/app/code/core/Mage/GoogleShopping/Model/Attribute.php index 048e355d640ae357d635faad3cc3256892be311f..813aab4b902be44199e52af88b593651294ae938 100644 --- a/app/code/core/Mage/GoogleShopping/Model/Attribute.php +++ b/app/code/core/Mage/GoogleShopping/Model/Attribute.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleShopping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleShopping/Model/Attribute/Availability.php b/app/code/core/Mage/GoogleShopping/Model/Attribute/Availability.php index 6092ab15dddee84d73f3fa155c92a2793e175f79..89effab93607a4a78f0ca52824e507b04963e5bc 100644 --- a/app/code/core/Mage/GoogleShopping/Model/Attribute/Availability.php +++ b/app/code/core/Mage/GoogleShopping/Model/Attribute/Availability.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleShopping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleShopping/Model/Attribute/Condition.php b/app/code/core/Mage/GoogleShopping/Model/Attribute/Condition.php index 0ac3c130f1ed4d986ee99b39df0f1241aa391869..da4eb9d12fc008da713951e8d97fedc07630c2ac 100644 --- a/app/code/core/Mage/GoogleShopping/Model/Attribute/Condition.php +++ b/app/code/core/Mage/GoogleShopping/Model/Attribute/Condition.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleShopping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleShopping/Model/Attribute/Content.php b/app/code/core/Mage/GoogleShopping/Model/Attribute/Content.php index f51a3c63299c3b6bbc0de57783d7cd425ec22a54..d3e4c4b6d85b171e358e308be02fe5f96bc28eb9 100644 --- a/app/code/core/Mage/GoogleShopping/Model/Attribute/Content.php +++ b/app/code/core/Mage/GoogleShopping/Model/Attribute/Content.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleShopping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleShopping/Model/Attribute/ContentLanguage.php b/app/code/core/Mage/GoogleShopping/Model/Attribute/ContentLanguage.php index 6f27832d3a9678d26960f0a69005c02bdb9a6052..7eea9b9e54d4462e2394a23619f0518b8390b0a5 100644 --- a/app/code/core/Mage/GoogleShopping/Model/Attribute/ContentLanguage.php +++ b/app/code/core/Mage/GoogleShopping/Model/Attribute/ContentLanguage.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleShopping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleShopping/Model/Attribute/Default.php b/app/code/core/Mage/GoogleShopping/Model/Attribute/Default.php index af5a6b163bff8aa299459ccd0300e87ea53bdf92..825268b1f928ba4b938d51d50f996c1e959ba043 100644 --- a/app/code/core/Mage/GoogleShopping/Model/Attribute/Default.php +++ b/app/code/core/Mage/GoogleShopping/Model/Attribute/Default.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleShopping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleShopping/Model/Attribute/Destinations.php b/app/code/core/Mage/GoogleShopping/Model/Attribute/Destinations.php index 01dba0158697f8198420fdb2c88c3cf0c8ac6996..39502b776d2151d5a559b2b93062644ee5289344 100644 --- a/app/code/core/Mage/GoogleShopping/Model/Attribute/Destinations.php +++ b/app/code/core/Mage/GoogleShopping/Model/Attribute/Destinations.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleShopping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleShopping/Model/Attribute/GoogleProductCategory.php b/app/code/core/Mage/GoogleShopping/Model/Attribute/GoogleProductCategory.php index 5b50f12f105097384d430ccf582c5ccefcd46aea..ea138d0732aaf97451d8afd342bf15d6aa44aeee 100644 --- a/app/code/core/Mage/GoogleShopping/Model/Attribute/GoogleProductCategory.php +++ b/app/code/core/Mage/GoogleShopping/Model/Attribute/GoogleProductCategory.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleShopping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleShopping/Model/Attribute/Id.php b/app/code/core/Mage/GoogleShopping/Model/Attribute/Id.php index f6b7a208c2057c43baf87bf0072bbac22d08a292..1579358e1134633f97c711a9182f6d870a2cf59b 100644 --- a/app/code/core/Mage/GoogleShopping/Model/Attribute/Id.php +++ b/app/code/core/Mage/GoogleShopping/Model/Attribute/Id.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleShopping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleShopping/Model/Attribute/ImageLink.php b/app/code/core/Mage/GoogleShopping/Model/Attribute/ImageLink.php index 9885ae651e156e2b246149727ba8311fa9799400..2ac2b73645e991f7f558e145dcf496facdc1613d 100644 --- a/app/code/core/Mage/GoogleShopping/Model/Attribute/ImageLink.php +++ b/app/code/core/Mage/GoogleShopping/Model/Attribute/ImageLink.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleShopping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleShopping/Model/Attribute/Link.php b/app/code/core/Mage/GoogleShopping/Model/Attribute/Link.php index 3995349f68e30460b13cdf02a496c249dd1e6119..ee166eeb561a3e20d8a6ae98f9a0ffcea2310ea7 100644 --- a/app/code/core/Mage/GoogleShopping/Model/Attribute/Link.php +++ b/app/code/core/Mage/GoogleShopping/Model/Attribute/Link.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleShopping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleShopping/Model/Attribute/Price.php b/app/code/core/Mage/GoogleShopping/Model/Attribute/Price.php index b5c914edf01d56a121a11ee945aebd666d0b8112..fe685e37057a9c78ed697704e08daef61e5033fe 100644 --- a/app/code/core/Mage/GoogleShopping/Model/Attribute/Price.php +++ b/app/code/core/Mage/GoogleShopping/Model/Attribute/Price.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleShopping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleShopping/Model/Attribute/ProductType.php b/app/code/core/Mage/GoogleShopping/Model/Attribute/ProductType.php index b955c65d18b2566b9d360f5577b2980b3b857307..dc8e374a8f5dcb651ab93b5a8be22951f4c18b69 100644 --- a/app/code/core/Mage/GoogleShopping/Model/Attribute/ProductType.php +++ b/app/code/core/Mage/GoogleShopping/Model/Attribute/ProductType.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleShopping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleShopping/Model/Attribute/Quantity.php b/app/code/core/Mage/GoogleShopping/Model/Attribute/Quantity.php index bcd246608bd6502db2e1162bcd76d279d9c094f3..d326c366a8471fd102a23cc6866da6fb4dc3ed12 100644 --- a/app/code/core/Mage/GoogleShopping/Model/Attribute/Quantity.php +++ b/app/code/core/Mage/GoogleShopping/Model/Attribute/Quantity.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleShopping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleShopping/Model/Attribute/SalePriceEffectiveDate.php b/app/code/core/Mage/GoogleShopping/Model/Attribute/SalePriceEffectiveDate.php index 914116eefbe42d3e9123597f84ec1587509689c1..cb9f28974a8845bdf8de343aba2b1013e139b183 100644 --- a/app/code/core/Mage/GoogleShopping/Model/Attribute/SalePriceEffectiveDate.php +++ b/app/code/core/Mage/GoogleShopping/Model/Attribute/SalePriceEffectiveDate.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleShopping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleShopping/Model/Attribute/ShippingWeight.php b/app/code/core/Mage/GoogleShopping/Model/Attribute/ShippingWeight.php index dca079d7caf0a401d465de7b8af6eea5ff5bc76c..37c53d4ccfafb5b1b84e0d3598e2b526e5ba9f2e 100644 --- a/app/code/core/Mage/GoogleShopping/Model/Attribute/ShippingWeight.php +++ b/app/code/core/Mage/GoogleShopping/Model/Attribute/ShippingWeight.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleShopping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleShopping/Model/Attribute/TargetCountry.php b/app/code/core/Mage/GoogleShopping/Model/Attribute/TargetCountry.php index 4334f7d977f7c5d5c459d75d81e3d82fcfb898a2..1e325a62c73848f40bec348877bdad5ae8ee4fa8 100644 --- a/app/code/core/Mage/GoogleShopping/Model/Attribute/TargetCountry.php +++ b/app/code/core/Mage/GoogleShopping/Model/Attribute/TargetCountry.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleShopping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleShopping/Model/Attribute/Tax.php b/app/code/core/Mage/GoogleShopping/Model/Attribute/Tax.php index 487038d0613e12e3d8a141f3512faa5eb170ff16..6d078fa416e641dd18f1ed45bdae59cbd380c381 100644 --- a/app/code/core/Mage/GoogleShopping/Model/Attribute/Tax.php +++ b/app/code/core/Mage/GoogleShopping/Model/Attribute/Tax.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleShopping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleShopping/Model/Attribute/Title.php b/app/code/core/Mage/GoogleShopping/Model/Attribute/Title.php index 90d88890d3680ba6a16000d4ca5cef4ed380c23a..8b94bd1d6ce888e260ac5382177ef61ac52b532e 100644 --- a/app/code/core/Mage/GoogleShopping/Model/Attribute/Title.php +++ b/app/code/core/Mage/GoogleShopping/Model/Attribute/Title.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleShopping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleShopping/Model/Config.php b/app/code/core/Mage/GoogleShopping/Model/Config.php index 0b672d7dce138cbed370b172934a6a3362824b2b..c3a4dddb15df6909fb95c72dc1b8b601acf65003 100644 --- a/app/code/core/Mage/GoogleShopping/Model/Config.php +++ b/app/code/core/Mage/GoogleShopping/Model/Config.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleShopping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleShopping/Model/Flag.php b/app/code/core/Mage/GoogleShopping/Model/Flag.php index 976c4034bfe91112a131e41d4343a60b945f2498..2e55213fc740f9d17a110b5619b163a6f23d6b14 100644 --- a/app/code/core/Mage/GoogleShopping/Model/Flag.php +++ b/app/code/core/Mage/GoogleShopping/Model/Flag.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleShopping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleShopping/Model/Item.php b/app/code/core/Mage/GoogleShopping/Model/Item.php index 57947280edea91f9dc610839bd8ca2c2e906ad48..a4c4e17c24c808d8c323ed3bec11858785f5f858 100644 --- a/app/code/core/Mage/GoogleShopping/Model/Item.php +++ b/app/code/core/Mage/GoogleShopping/Model/Item.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleShopping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleShopping/Model/MassOperations.php b/app/code/core/Mage/GoogleShopping/Model/MassOperations.php index d2e4e2a10c929f091c0b1f1648708651dd3e1908..eace4c0676f4126a64a36817ed64c9f67c35a162 100644 --- a/app/code/core/Mage/GoogleShopping/Model/MassOperations.php +++ b/app/code/core/Mage/GoogleShopping/Model/MassOperations.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleShopping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleShopping/Model/Observer.php b/app/code/core/Mage/GoogleShopping/Model/Observer.php index 485feec940967081e4de8040798e2f61f99af69d..86911db403b9d2e6e1d0d977bd878de777553d0d 100644 --- a/app/code/core/Mage/GoogleShopping/Model/Observer.php +++ b/app/code/core/Mage/GoogleShopping/Model/Observer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleShopping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleShopping/Model/Resource/Attribute.php b/app/code/core/Mage/GoogleShopping/Model/Resource/Attribute.php index 3fcd5abed0b9ef60169f561e79a86dae563c13b4..690f15f5bb5e3314395c8be2528f7b5a44ae03c7 100644 --- a/app/code/core/Mage/GoogleShopping/Model/Resource/Attribute.php +++ b/app/code/core/Mage/GoogleShopping/Model/Resource/Attribute.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleShopping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleShopping/Model/Resource/Attribute/Collection.php b/app/code/core/Mage/GoogleShopping/Model/Resource/Attribute/Collection.php index 728e61a892549740b78d451ab40d864b55f3f816..c9c7579597d212eec0fac3b6dedd083a3bdf3f22 100644 --- a/app/code/core/Mage/GoogleShopping/Model/Resource/Attribute/Collection.php +++ b/app/code/core/Mage/GoogleShopping/Model/Resource/Attribute/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleShopping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleShopping/Model/Resource/Item.php b/app/code/core/Mage/GoogleShopping/Model/Resource/Item.php index 0a93c36adeae7501b84f7cac32e3f9d716da619f..c6d625fff1629b6cc18c56b9190e83ff662b5f42 100644 --- a/app/code/core/Mage/GoogleShopping/Model/Resource/Item.php +++ b/app/code/core/Mage/GoogleShopping/Model/Resource/Item.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleShopping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleShopping/Model/Resource/Item/Collection.php b/app/code/core/Mage/GoogleShopping/Model/Resource/Item/Collection.php index 109afdbae0a0f086bf63da6a3bc7827c17d3b9dd..aba9579daef030f019eac8d14f067b79d2f7293d 100644 --- a/app/code/core/Mage/GoogleShopping/Model/Resource/Item/Collection.php +++ b/app/code/core/Mage/GoogleShopping/Model/Resource/Item/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleShopping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleShopping/Model/Resource/Type.php b/app/code/core/Mage/GoogleShopping/Model/Resource/Type.php index 0798dba09777996f291364de68605c37cf1b1868..0bc59843d4a4fd41664e8b6801d4491d43b46f90 100644 --- a/app/code/core/Mage/GoogleShopping/Model/Resource/Type.php +++ b/app/code/core/Mage/GoogleShopping/Model/Resource/Type.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleShopping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleShopping/Model/Resource/Type/Collection.php b/app/code/core/Mage/GoogleShopping/Model/Resource/Type/Collection.php index 1bfef7898a4fbbe461ed803bc617a821a9d01e38..c38367191100fe2c0bb22d8d7420e3c5e61a0a43 100644 --- a/app/code/core/Mage/GoogleShopping/Model/Resource/Type/Collection.php +++ b/app/code/core/Mage/GoogleShopping/Model/Resource/Type/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleShopping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleShopping/Model/Service.php b/app/code/core/Mage/GoogleShopping/Model/Service.php index 6811589a8e4bde9f37891d81c8e92c2c0a0e7eec..dc4006839b024721b342a534b51ff833fd2f97f6 100644 --- a/app/code/core/Mage/GoogleShopping/Model/Service.php +++ b/app/code/core/Mage/GoogleShopping/Model/Service.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleShopping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleShopping/Model/Service/Item.php b/app/code/core/Mage/GoogleShopping/Model/Service/Item.php index ee1d8f0134714ba4a318bf1c32bec633c540beb1..c47ce35c1ec3e2f168175ef91e790c877f192758 100644 --- a/app/code/core/Mage/GoogleShopping/Model/Service/Item.php +++ b/app/code/core/Mage/GoogleShopping/Model/Service/Item.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleShopping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleShopping/Model/Source/Accounttype.php b/app/code/core/Mage/GoogleShopping/Model/Source/Accounttype.php index 865f5f4efa2af91154c6f5a00f6a0292011d9855..d98074c0e099e6ba2bc4017ca4ec70b06d36085f 100644 --- a/app/code/core/Mage/GoogleShopping/Model/Source/Accounttype.php +++ b/app/code/core/Mage/GoogleShopping/Model/Source/Accounttype.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleShopping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleShopping/Model/Source/Authtype.php b/app/code/core/Mage/GoogleShopping/Model/Source/Authtype.php index dcaab8f1f4e410422184f7d8a0d18386205d8ebe..ac18b9a413a8d996f427575c2c706e2df834cbb1 100644 --- a/app/code/core/Mage/GoogleShopping/Model/Source/Authtype.php +++ b/app/code/core/Mage/GoogleShopping/Model/Source/Authtype.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleShopping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleShopping/Model/Source/Country.php b/app/code/core/Mage/GoogleShopping/Model/Source/Country.php index 36ab2d043fa46a9c0292ecc9e1cedd3fdf879525..6ad9d84f907740d00400f469411b8299f5f28f1f 100644 --- a/app/code/core/Mage/GoogleShopping/Model/Source/Country.php +++ b/app/code/core/Mage/GoogleShopping/Model/Source/Country.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleShopping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleShopping/Model/Source/Destinationstates.php b/app/code/core/Mage/GoogleShopping/Model/Source/Destinationstates.php index 68098429fc167cae03e4b664b48065da6bd555f3..4c22e044f527833e730f7e52c58bb5ba33eb0c05 100644 --- a/app/code/core/Mage/GoogleShopping/Model/Source/Destinationstates.php +++ b/app/code/core/Mage/GoogleShopping/Model/Source/Destinationstates.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleShopping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleShopping/Model/Source/Statuses.php b/app/code/core/Mage/GoogleShopping/Model/Source/Statuses.php index c3fea1340c171403f15bada653a5e675a75a5fd0..22fe67d0ad8da95178a361195bab2a23fd1fce1a 100644 --- a/app/code/core/Mage/GoogleShopping/Model/Source/Statuses.php +++ b/app/code/core/Mage/GoogleShopping/Model/Source/Statuses.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleShopping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleShopping/Model/Type.php b/app/code/core/Mage/GoogleShopping/Model/Type.php index f77177a89e2e05f24b754c0dd351aa42067dc898..0b47d158fd7488bba5f9d3d2b408863dbfcfe7a6 100644 --- a/app/code/core/Mage/GoogleShopping/Model/Type.php +++ b/app/code/core/Mage/GoogleShopping/Model/Type.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleShopping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleShopping/controllers/Adminhtml/Googleshopping/ItemsController.php b/app/code/core/Mage/GoogleShopping/controllers/Adminhtml/Googleshopping/ItemsController.php index 97c94d910431e44f29ed40a634521ad98255300c..fea4cf1ff7a7f01230d3b46d639dece8696f79da 100644 --- a/app/code/core/Mage/GoogleShopping/controllers/Adminhtml/Googleshopping/ItemsController.php +++ b/app/code/core/Mage/GoogleShopping/controllers/Adminhtml/Googleshopping/ItemsController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleShopping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleShopping/controllers/Adminhtml/Googleshopping/SelectionController.php b/app/code/core/Mage/GoogleShopping/controllers/Adminhtml/Googleshopping/SelectionController.php index 7b111fd96a8216f4258ce7280bf7ced6551b126e..945540b7a90fa45b4aad6273baf858f97301f53f 100644 --- a/app/code/core/Mage/GoogleShopping/controllers/Adminhtml/Googleshopping/SelectionController.php +++ b/app/code/core/Mage/GoogleShopping/controllers/Adminhtml/Googleshopping/SelectionController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleShopping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleShopping/controllers/Adminhtml/Googleshopping/TypesController.php b/app/code/core/Mage/GoogleShopping/controllers/Adminhtml/Googleshopping/TypesController.php index 3ca0dc009e0cadd123f09b67b27fca3b5532c247..fdae4a4ded61bbb2aed9a51fa7a967d7790764b4 100644 --- a/app/code/core/Mage/GoogleShopping/controllers/Adminhtml/Googleshopping/TypesController.php +++ b/app/code/core/Mage/GoogleShopping/controllers/Adminhtml/Googleshopping/TypesController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleShopping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleShopping/data/googleshopping_setup/data-install-1.6.0.0.php b/app/code/core/Mage/GoogleShopping/data/googleshopping_setup/data-install-1.6.0.0.php index da3bc307a72cde3df42ab61049b0d9dc1725bf81..2bf9b8e1d60313874f3320a42a43b906fda42e12 100644 --- a/app/code/core/Mage/GoogleShopping/data/googleshopping_setup/data-install-1.6.0.0.php +++ b/app/code/core/Mage/GoogleShopping/data/googleshopping_setup/data-install-1.6.0.0.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleShopping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleShopping/etc/adminhtml/acl.xml b/app/code/core/Mage/GoogleShopping/etc/adminhtml/acl.xml index 3d7da0795f069c35af4735b824ccdc358038b57a..bd42549fa65c34d8991e39b5643b34884b604f68 100644 --- a/app/code/core/Mage/GoogleShopping/etc/adminhtml/acl.xml +++ b/app/code/core/Mage/GoogleShopping/etc/adminhtml/acl.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_GoogleShopping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/GoogleShopping/etc/adminhtml/menu.xml b/app/code/core/Mage/GoogleShopping/etc/adminhtml/menu.xml index d42bbd4c9ce251d3e7048c91717c137cbcfb70db..04b795a959461ab7f73bc48a260625c760f7a650 100644 --- a/app/code/core/Mage/GoogleShopping/etc/adminhtml/menu.xml +++ b/app/code/core/Mage/GoogleShopping/etc/adminhtml/menu.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_GoogleShopping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/GoogleShopping/etc/adminhtml/system.xml b/app/code/core/Mage/GoogleShopping/etc/adminhtml/system.xml index 17471f38d39826e401d60ae8aa84991b63942549..3844dde4d4c08bc79847997b4be7103a309a26a8 100644 --- a/app/code/core/Mage/GoogleShopping/etc/adminhtml/system.xml +++ b/app/code/core/Mage/GoogleShopping/etc/adminhtml/system.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_GoogleShopping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/GoogleShopping/etc/config.xml b/app/code/core/Mage/GoogleShopping/etc/config.xml index 24cf9ac9de355fd0b339e18f0d03129fc627d7b3..f1b9db926ed8b489e7fbb15ecdc67d4a304ef2ef 100644 --- a/app/code/core/Mage/GoogleShopping/etc/config.xml +++ b/app/code/core/Mage/GoogleShopping/etc/config.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_GoogleShopping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/GoogleShopping/sql/googleshopping_setup/install-1.6.0.0.php b/app/code/core/Mage/GoogleShopping/sql/googleshopping_setup/install-1.6.0.0.php index 12b1d3c2ef956d72af53fad4aa6334bade26a04d..a236af3de65204095bc07014d7d325923ce36982 100644 --- a/app/code/core/Mage/GoogleShopping/sql/googleshopping_setup/install-1.6.0.0.php +++ b/app/code/core/Mage/GoogleShopping/sql/googleshopping_setup/install-1.6.0.0.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleShopping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleShopping/sql/googleshopping_setup/upgrade-1.6.0.0-1.6.0.0.1.php b/app/code/core/Mage/GoogleShopping/sql/googleshopping_setup/upgrade-1.6.0.0-1.6.0.0.1.php index ae3621d7a99d50df9192d337b98a15cffefb43f8..450b8207a8961f2fa47885f12a1ac9c6367ed9c6 100644 --- a/app/code/core/Mage/GoogleShopping/sql/googleshopping_setup/upgrade-1.6.0.0-1.6.0.0.1.php +++ b/app/code/core/Mage/GoogleShopping/sql/googleshopping_setup/upgrade-1.6.0.0-1.6.0.0.1.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_GoogleShopping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/GoogleShopping/view/adminhtml/captcha.phtml b/app/code/core/Mage/GoogleShopping/view/adminhtml/captcha.phtml index 1bb89e47004804f2527227403a5e4e6220397faa..c70a43f0278b09c4c81687f2c94946c3480d11bf 100644 --- a/app/code/core/Mage/GoogleShopping/view/adminhtml/captcha.phtml +++ b/app/code/core/Mage/GoogleShopping/view/adminhtml/captcha.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/GoogleShopping/view/adminhtml/googleshopping.js b/app/code/core/Mage/GoogleShopping/view/adminhtml/googleshopping.js index 40e675e50e0522166651010f964f41801966b380..d2e84dc79739c24aa3f48263852fb7e6cb948acd 100644 --- a/app/code/core/Mage/GoogleShopping/view/adminhtml/googleshopping.js +++ b/app/code/core/Mage/GoogleShopping/view/adminhtml/googleshopping.js @@ -19,7 +19,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ if (typeof Mage == 'undefined') { diff --git a/app/code/core/Mage/GoogleShopping/view/adminhtml/items.phtml b/app/code/core/Mage/GoogleShopping/view/adminhtml/items.phtml index c0462493ed7898cb143cb329cb9c766a08782a29..49bad8d143ca3ef0f24508f6d09851503a5e8800 100644 --- a/app/code/core/Mage/GoogleShopping/view/adminhtml/items.phtml +++ b/app/code/core/Mage/GoogleShopping/view/adminhtml/items.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/GoogleShopping/view/adminhtml/layout.xml b/app/code/core/Mage/GoogleShopping/view/adminhtml/layout.xml index 81b01dfca4b8b03c5e522c85b4640a01ab06d33d..480c4757a2407a37ed2455d669ffe2e5238a5210 100644 --- a/app/code/core/Mage/GoogleShopping/view/adminhtml/layout.xml +++ b/app/code/core/Mage/GoogleShopping/view/adminhtml/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/GoogleShopping/view/adminhtml/types/edit.phtml b/app/code/core/Mage/GoogleShopping/view/adminhtml/types/edit.phtml index f6c6dc7ea42589fcb28cd21139536169c2561e58..55fa9f836066d57d130f8cb1e189e9771efc4696 100644 --- a/app/code/core/Mage/GoogleShopping/view/adminhtml/types/edit.phtml +++ b/app/code/core/Mage/GoogleShopping/view/adminhtml/types/edit.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/GoogleShopping/view/adminhtml/types/edit/attributes.phtml b/app/code/core/Mage/GoogleShopping/view/adminhtml/types/edit/attributes.phtml index 3737c1c8213b1be8233109d9f51d9390af257be3..a9db4733eaa53dbee6e1da6b829e4e7cfc129eec 100644 --- a/app/code/core/Mage/GoogleShopping/view/adminhtml/types/edit/attributes.phtml +++ b/app/code/core/Mage/GoogleShopping/view/adminhtml/types/edit/attributes.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/GoogleShopping/view/adminhtml/types/edit/select.phtml b/app/code/core/Mage/GoogleShopping/view/adminhtml/types/edit/select.phtml index 1ca2a1334dd46a4266b54a8dc09cb657436f03d9..496c28445f51582d1a929b941037ac797f691c93 100644 --- a/app/code/core/Mage/GoogleShopping/view/adminhtml/types/edit/select.phtml +++ b/app/code/core/Mage/GoogleShopping/view/adminhtml/types/edit/select.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/ImportExport/Block/Adminhtml/Export/Edit.php b/app/code/core/Mage/ImportExport/Block/Adminhtml/Export/Edit.php index 0b70bc589f85ec805e17226da3fff62193a5fdce..27394f1c0959f393f7e37bca913af6ff49fdc3ba 100644 --- a/app/code/core/Mage/ImportExport/Block/Adminhtml/Export/Edit.php +++ b/app/code/core/Mage/ImportExport/Block/Adminhtml/Export/Edit.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ImportExport - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ImportExport/Block/Adminhtml/Export/Edit/Form.php b/app/code/core/Mage/ImportExport/Block/Adminhtml/Export/Edit/Form.php index 6a021514ecd6fe389a75aff71a470e3730f3a33c..480fcc32287450718f7302385425c47e5e412ed8 100644 --- a/app/code/core/Mage/ImportExport/Block/Adminhtml/Export/Edit/Form.php +++ b/app/code/core/Mage/ImportExport/Block/Adminhtml/Export/Edit/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ImportExport - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ImportExport/Block/Adminhtml/Export/Filter.php b/app/code/core/Mage/ImportExport/Block/Adminhtml/Export/Filter.php index 9231e3f2af791bf7845f6c6d33bd5b5f22b65d64..191a0464db810c386faf1e5c8cd59958e5f9ce49 100644 --- a/app/code/core/Mage/ImportExport/Block/Adminhtml/Export/Filter.php +++ b/app/code/core/Mage/ImportExport/Block/Adminhtml/Export/Filter.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ImportExport - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ImportExport/Block/Adminhtml/Import/Edit.php b/app/code/core/Mage/ImportExport/Block/Adminhtml/Import/Edit.php index 3068d443e3bdd51b4a85bec6481d62a895881d98..1a771c9c9a1269cb27405c4159d81f63f2d665e0 100644 --- a/app/code/core/Mage/ImportExport/Block/Adminhtml/Import/Edit.php +++ b/app/code/core/Mage/ImportExport/Block/Adminhtml/Import/Edit.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ImportExport - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ImportExport/Block/Adminhtml/Import/Edit/Before.php b/app/code/core/Mage/ImportExport/Block/Adminhtml/Import/Edit/Before.php index 135837daba602efaca354816b64c3cb21605b55b..988138578f3a356b0c08c5b7376a54654f1b9d44 100644 --- a/app/code/core/Mage/ImportExport/Block/Adminhtml/Import/Edit/Before.php +++ b/app/code/core/Mage/ImportExport/Block/Adminhtml/Import/Edit/Before.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ImportExport - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ImportExport/Block/Adminhtml/Import/Edit/Form.php b/app/code/core/Mage/ImportExport/Block/Adminhtml/Import/Edit/Form.php index 945ba45ac7d01f1b3a7c7d6a635a3eafa643d558..224295ea36987590c500d7cfb343ecb6e5d4d9aa 100644 --- a/app/code/core/Mage/ImportExport/Block/Adminhtml/Import/Edit/Form.php +++ b/app/code/core/Mage/ImportExport/Block/Adminhtml/Import/Edit/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ImportExport - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ImportExport/Block/Adminhtml/Import/Frame/Result.php b/app/code/core/Mage/ImportExport/Block/Adminhtml/Import/Frame/Result.php index b94ccbfee49350a00696fc08fc9507edf39bbf28..306dd1db381db2facc6cdc09311c8f531b64f28b 100644 --- a/app/code/core/Mage/ImportExport/Block/Adminhtml/Import/Frame/Result.php +++ b/app/code/core/Mage/ImportExport/Block/Adminhtml/Import/Frame/Result.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ImportExport - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ImportExport/Helper/Data.php b/app/code/core/Mage/ImportExport/Helper/Data.php index 691aee87b044e839dc84e36f3a2fa481f47b55bf..da81bb193fa5724258a4c1982e0303ac90b0ad4b 100644 --- a/app/code/core/Mage/ImportExport/Helper/Data.php +++ b/app/code/core/Mage/ImportExport/Helper/Data.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ImportExport - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ImportExport/Model/Abstract.php b/app/code/core/Mage/ImportExport/Model/Abstract.php index 89b7d95a8aba22bac6240ee1da5ccf25bc756fa3..54fe85215fa48a686a2000b53913697f3e26d939 100644 --- a/app/code/core/Mage/ImportExport/Model/Abstract.php +++ b/app/code/core/Mage/ImportExport/Model/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ImportExport - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ImportExport/Model/Config.php b/app/code/core/Mage/ImportExport/Model/Config.php index 1783c73fdbd482c45b12fef9fea087bc24c000b1..25eafbc8d95b47120a577a411490ab0a03968fc8 100644 --- a/app/code/core/Mage/ImportExport/Model/Config.php +++ b/app/code/core/Mage/ImportExport/Model/Config.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ImportExport - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ImportExport/Model/Export.php b/app/code/core/Mage/ImportExport/Model/Export.php index d175ceef4e5a2b8d5dbe1a90c3215101ca1bd729..50d6126baba60f4c9e878e5dc0247ec7b6ab66e9 100644 --- a/app/code/core/Mage/ImportExport/Model/Export.php +++ b/app/code/core/Mage/ImportExport/Model/Export.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ImportExport - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ImportExport/Model/Export/Adapter/Abstract.php b/app/code/core/Mage/ImportExport/Model/Export/Adapter/Abstract.php index 9aeaeb81768c8dd5ad23d097fcb646cbcfaf8957..9eb7a76f5286797bb09678a87a1af32acf4f7d8a 100644 --- a/app/code/core/Mage/ImportExport/Model/Export/Adapter/Abstract.php +++ b/app/code/core/Mage/ImportExport/Model/Export/Adapter/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ImportExport - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ImportExport/Model/Export/Adapter/Csv.php b/app/code/core/Mage/ImportExport/Model/Export/Adapter/Csv.php index 37930bdc118fd8332bd9e855e0024c788875bf3e..ad3a71734a445055480df51903ad90e66a4638cc 100644 --- a/app/code/core/Mage/ImportExport/Model/Export/Adapter/Csv.php +++ b/app/code/core/Mage/ImportExport/Model/Export/Adapter/Csv.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ImportExport - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ImportExport/Model/Export/Entity/Abstract.php b/app/code/core/Mage/ImportExport/Model/Export/Entity/Abstract.php index 9ea7f0e4fdc8bdcfce4b7827030f403b10f7adf1..8cdd7266530eb458549083b89a60722a9f0ceb84 100644 --- a/app/code/core/Mage/ImportExport/Model/Export/Entity/Abstract.php +++ b/app/code/core/Mage/ImportExport/Model/Export/Entity/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ImportExport - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ImportExport/Model/Export/Entity/Eav/Customer.php b/app/code/core/Mage/ImportExport/Model/Export/Entity/Eav/Customer.php index 2f93baeb5908b3e9657ddeacacc50f8c7f5b0a21..239588dad278c875a7e8392d08181114445244a1 100644 --- a/app/code/core/Mage/ImportExport/Model/Export/Entity/Eav/Customer.php +++ b/app/code/core/Mage/ImportExport/Model/Export/Entity/Eav/Customer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ImportExport - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ImportExport/Model/Export/Entity/Eav/Customer/Address.php b/app/code/core/Mage/ImportExport/Model/Export/Entity/Eav/Customer/Address.php index 29bb8003deeaf4b185c9b1ed8ebee174cab11cb0..8bdaf0b6f0a1f0afdee7cab5fc80d36dbc384a9f 100644 --- a/app/code/core/Mage/ImportExport/Model/Export/Entity/Eav/Customer/Address.php +++ b/app/code/core/Mage/ImportExport/Model/Export/Entity/Eav/Customer/Address.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ImportExport - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ImportExport/Model/Export/Entity/EavAbstract.php b/app/code/core/Mage/ImportExport/Model/Export/Entity/EavAbstract.php index 959f9dfc075b115d61a7324a60c45f693376a966..72d016016f9afef14806c3d0993d8ceb956784da 100644 --- a/app/code/core/Mage/ImportExport/Model/Export/Entity/EavAbstract.php +++ b/app/code/core/Mage/ImportExport/Model/Export/Entity/EavAbstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ImportExport - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ImportExport/Model/Export/Entity/Product.php b/app/code/core/Mage/ImportExport/Model/Export/Entity/Product.php index bea6f6c14870f2c01c4aea4805295d425f25895f..c0fc6e0fb89beb12c7e0cb4b3320ac799ede4efb 100644 --- a/app/code/core/Mage/ImportExport/Model/Export/Entity/Product.php +++ b/app/code/core/Mage/ImportExport/Model/Export/Entity/Product.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ImportExport - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ImportExport/Model/Export/Entity/Product/Type/Abstract.php b/app/code/core/Mage/ImportExport/Model/Export/Entity/Product/Type/Abstract.php index e203102ec947bf4af8ffeacf126c65c1cf0fc3a8..e3dc541083889054dd802b4036f82df7130c9b3c 100644 --- a/app/code/core/Mage/ImportExport/Model/Export/Entity/Product/Type/Abstract.php +++ b/app/code/core/Mage/ImportExport/Model/Export/Entity/Product/Type/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ImportExport - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ImportExport/Model/Export/Entity/Product/Type/Configurable.php b/app/code/core/Mage/ImportExport/Model/Export/Entity/Product/Type/Configurable.php index b039aa19c5030b0460bd88004907cdf830d8c361..95e741645ebad88448d637cc573905e8bb36d992 100644 --- a/app/code/core/Mage/ImportExport/Model/Export/Entity/Product/Type/Configurable.php +++ b/app/code/core/Mage/ImportExport/Model/Export/Entity/Product/Type/Configurable.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ImportExport - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ImportExport/Model/Export/Entity/Product/Type/Grouped.php b/app/code/core/Mage/ImportExport/Model/Export/Entity/Product/Type/Grouped.php index 5f1c0b5bcdf00e6bc53ed0f9e752b5df58339aa6..e0f2933cd67c641dc6c5aadcd3ff1536a207b813 100644 --- a/app/code/core/Mage/ImportExport/Model/Export/Entity/Product/Type/Grouped.php +++ b/app/code/core/Mage/ImportExport/Model/Export/Entity/Product/Type/Grouped.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ImportExport - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ImportExport/Model/Export/Entity/Product/Type/Simple.php b/app/code/core/Mage/ImportExport/Model/Export/Entity/Product/Type/Simple.php index 441626eff1180918670bc15a8a4f8c1189f46017..5ed1c34c4698266afb318a47cd6553c2544e8b33 100644 --- a/app/code/core/Mage/ImportExport/Model/Export/Entity/Product/Type/Simple.php +++ b/app/code/core/Mage/ImportExport/Model/Export/Entity/Product/Type/Simple.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ImportExport - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ImportExport/Model/Export/EntityAbstract.php b/app/code/core/Mage/ImportExport/Model/Export/EntityAbstract.php index ac4392116067579bef01ada328ec977927cedf5c..a8be8b6fc05d827b9060c679022656692ebe4362 100644 --- a/app/code/core/Mage/ImportExport/Model/Export/EntityAbstract.php +++ b/app/code/core/Mage/ImportExport/Model/Export/EntityAbstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ImportExport - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ImportExport/Model/Import.php b/app/code/core/Mage/ImportExport/Model/Import.php index 55d7da8db535ad6e7c4f05216c83e73090a172bf..f6b071f91def42045b047bcee77cb1d3a58c6f77 100644 --- a/app/code/core/Mage/ImportExport/Model/Import.php +++ b/app/code/core/Mage/ImportExport/Model/Import.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ImportExport - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ImportExport/Model/Import/Adapter.php b/app/code/core/Mage/ImportExport/Model/Import/Adapter.php index c70a20a30bf9d02d7b41a197a8eb70f240c4ae66..4c30a9531ad96c1e32a6fa31a9faeadc41935bfc 100644 --- a/app/code/core/Mage/ImportExport/Model/Import/Adapter.php +++ b/app/code/core/Mage/ImportExport/Model/Import/Adapter.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ImportExport - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ImportExport/Model/Import/Entity/Abstract.php b/app/code/core/Mage/ImportExport/Model/Import/Entity/Abstract.php index 656e4642ed0bffb9ea28f593060e5f33ba1aa03f..e43dfc759d0af192642ec276b9af21aeb2eb2605 100644 --- a/app/code/core/Mage/ImportExport/Model/Import/Entity/Abstract.php +++ b/app/code/core/Mage/ImportExport/Model/Import/Entity/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ImportExport - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ImportExport/Model/Import/Entity/CustomerComposite.php b/app/code/core/Mage/ImportExport/Model/Import/Entity/CustomerComposite.php index 3a6d576693c089395171cbebaf24e564d595f06b..6650432cb1648155d646b9619d5421535bbfcd0f 100644 --- a/app/code/core/Mage/ImportExport/Model/Import/Entity/CustomerComposite.php +++ b/app/code/core/Mage/ImportExport/Model/Import/Entity/CustomerComposite.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ImportExport - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ImportExport/Model/Import/Entity/Eav/Customer.php b/app/code/core/Mage/ImportExport/Model/Import/Entity/Eav/Customer.php index 41bc60003b05e86c7fff91968d15e3322335c067..eacdc997727c938087d7567cb55a8768504c18c7 100644 --- a/app/code/core/Mage/ImportExport/Model/Import/Entity/Eav/Customer.php +++ b/app/code/core/Mage/ImportExport/Model/Import/Entity/Eav/Customer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ImportExport - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ImportExport/Model/Import/Entity/Eav/Customer/Address.php b/app/code/core/Mage/ImportExport/Model/Import/Entity/Eav/Customer/Address.php index 97c70e2805b98d196461a4dac38005011e900cbe..b92da0981e3f314ae8e75e1e5e7434850d2b4839 100644 --- a/app/code/core/Mage/ImportExport/Model/Import/Entity/Eav/Customer/Address.php +++ b/app/code/core/Mage/ImportExport/Model/Import/Entity/Eav/Customer/Address.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ImportExport - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ImportExport/Model/Import/Entity/Eav/CustomerAbstract.php b/app/code/core/Mage/ImportExport/Model/Import/Entity/Eav/CustomerAbstract.php index bfc5e61fd4475fa53bc9205c72e87582b0ccf03a..4305874d534839365b76aed3ee30a6386ba54bff 100644 --- a/app/code/core/Mage/ImportExport/Model/Import/Entity/Eav/CustomerAbstract.php +++ b/app/code/core/Mage/ImportExport/Model/Import/Entity/Eav/CustomerAbstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ImportExport - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ImportExport/Model/Import/Entity/EavAbstract.php b/app/code/core/Mage/ImportExport/Model/Import/Entity/EavAbstract.php index 27c115814cd2bfe214e8f920c2477367940fc25c..30260edc272c9646142a653da568e2d97815822a 100644 --- a/app/code/core/Mage/ImportExport/Model/Import/Entity/EavAbstract.php +++ b/app/code/core/Mage/ImportExport/Model/Import/Entity/EavAbstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ImportExport - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ImportExport/Model/Import/Entity/Product.php b/app/code/core/Mage/ImportExport/Model/Import/Entity/Product.php index ef1035b337d8aab689787ca46c153b019777aee4..dc5a07c6b9d3f0618782772015ad6e4eebe6320a 100644 --- a/app/code/core/Mage/ImportExport/Model/Import/Entity/Product.php +++ b/app/code/core/Mage/ImportExport/Model/Import/Entity/Product.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ImportExport - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ImportExport/Model/Import/Entity/Product/Option.php b/app/code/core/Mage/ImportExport/Model/Import/Entity/Product/Option.php index 893713c2c5835c9e5f587fabc170e5a82dd21a2e..ef1ccfd42d1c4bfcc977a600ee503d67c31b80db 100644 --- a/app/code/core/Mage/ImportExport/Model/Import/Entity/Product/Option.php +++ b/app/code/core/Mage/ImportExport/Model/Import/Entity/Product/Option.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ImportExport - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ImportExport/Model/Import/Entity/Product/Type/Abstract.php b/app/code/core/Mage/ImportExport/Model/Import/Entity/Product/Type/Abstract.php index 7feaefdcdd1f85cdab456dfa3dc9fd248428cc25..ef878f4351ced30f524437cc5285c7253baedcd3 100644 --- a/app/code/core/Mage/ImportExport/Model/Import/Entity/Product/Type/Abstract.php +++ b/app/code/core/Mage/ImportExport/Model/Import/Entity/Product/Type/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ImportExport - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ImportExport/Model/Import/Entity/Product/Type/Configurable.php b/app/code/core/Mage/ImportExport/Model/Import/Entity/Product/Type/Configurable.php index a4dca9c17846623b9f115124b872738fe8b883bc..41d5285aaeba76e5a2cd24e6fb816fa6a5304e68 100644 --- a/app/code/core/Mage/ImportExport/Model/Import/Entity/Product/Type/Configurable.php +++ b/app/code/core/Mage/ImportExport/Model/Import/Entity/Product/Type/Configurable.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ImportExport - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ImportExport/Model/Import/Entity/Product/Type/Grouped.php b/app/code/core/Mage/ImportExport/Model/Import/Entity/Product/Type/Grouped.php index afa0ea388ecacf5dc3786f5209077bea6ac56f33..f16e9354304a7e1f4149314bb425e20e42dbb9f4 100644 --- a/app/code/core/Mage/ImportExport/Model/Import/Entity/Product/Type/Grouped.php +++ b/app/code/core/Mage/ImportExport/Model/Import/Entity/Product/Type/Grouped.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ImportExport - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ImportExport/Model/Import/Entity/Product/Type/Simple.php b/app/code/core/Mage/ImportExport/Model/Import/Entity/Product/Type/Simple.php index 322a68fba3ac09d63349796b34bac7ce87573b2f..ef8faa834b776118592ba3fec0853ad041fd62ee 100644 --- a/app/code/core/Mage/ImportExport/Model/Import/Entity/Product/Type/Simple.php +++ b/app/code/core/Mage/ImportExport/Model/Import/Entity/Product/Type/Simple.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ImportExport - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ImportExport/Model/Import/EntityAbstract.php b/app/code/core/Mage/ImportExport/Model/Import/EntityAbstract.php index db22c82c173599f7ba05fdc02059dbce2fd1fb90..0743ca2bba9ee710fc40eeafca6f24cbe78fdea6 100644 --- a/app/code/core/Mage/ImportExport/Model/Import/EntityAbstract.php +++ b/app/code/core/Mage/ImportExport/Model/Import/EntityAbstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ImportExport - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ImportExport/Model/Import/Proxy/Product.php b/app/code/core/Mage/ImportExport/Model/Import/Proxy/Product.php index a460aca343ed206c6f5f71dc9aa4f8e591cd7368..1848d63130ac384a26541feeba1a23c79a07a3ab 100644 --- a/app/code/core/Mage/ImportExport/Model/Import/Proxy/Product.php +++ b/app/code/core/Mage/ImportExport/Model/Import/Proxy/Product.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ImportExport - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ImportExport/Model/Import/Proxy/Product/Resource.php b/app/code/core/Mage/ImportExport/Model/Import/Proxy/Product/Resource.php index 1bb59610d29053426dabda788bf80f0cf2d6fa57..be4300a13a0c4824dc56b8668cf7b9d62b2d80fa 100644 --- a/app/code/core/Mage/ImportExport/Model/Import/Proxy/Product/Resource.php +++ b/app/code/core/Mage/ImportExport/Model/Import/Proxy/Product/Resource.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ImportExport - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ImportExport/Model/Import/Source/Csv.php b/app/code/core/Mage/ImportExport/Model/Import/Source/Csv.php index f16ef1b362f3fd464070874c0010d4a473e787b8..979f7f11b0776981dc6d8d9cfdd3305590daf6a1 100644 --- a/app/code/core/Mage/ImportExport/Model/Import/Source/Csv.php +++ b/app/code/core/Mage/ImportExport/Model/Import/Source/Csv.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ImportExport - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ImportExport/Model/Import/SourceAbstract.php b/app/code/core/Mage/ImportExport/Model/Import/SourceAbstract.php index ba7d224ebc8f4782ccdf96462e4749e72f773fc5..9fce7544f3eebda8af78a836c110bfd5c82cf431 100644 --- a/app/code/core/Mage/ImportExport/Model/Import/SourceAbstract.php +++ b/app/code/core/Mage/ImportExport/Model/Import/SourceAbstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ImportExport - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ImportExport/Model/Import/Uploader.php b/app/code/core/Mage/ImportExport/Model/Import/Uploader.php index 47db48ce5fbdb8c710be1fbd3f1f3048076eca3a..90ed56b4643443d104393abe1c8b0aa2f1be8f79 100644 --- a/app/code/core/Mage/ImportExport/Model/Import/Uploader.php +++ b/app/code/core/Mage/ImportExport/Model/Import/Uploader.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ImportExport - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ImportExport/Model/Resource/CollectionByPagesIterator.php b/app/code/core/Mage/ImportExport/Model/Resource/CollectionByPagesIterator.php index db11dbdf6ac1eeafa82c486dfa8f78f0deb6ac60..be1c425e0e968c6aec6f5cc2a8fff327d0698aa1 100644 --- a/app/code/core/Mage/ImportExport/Model/Resource/CollectionByPagesIterator.php +++ b/app/code/core/Mage/ImportExport/Model/Resource/CollectionByPagesIterator.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ImportExport - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ImportExport/Model/Resource/Customer/Storage.php b/app/code/core/Mage/ImportExport/Model/Resource/Customer/Storage.php index 4a053e2e5858f2a9dcca208b4039fa0c44c79716..0d8117d717ec96728efa62f58f78a65b98bc54fc 100644 --- a/app/code/core/Mage/ImportExport/Model/Resource/Customer/Storage.php +++ b/app/code/core/Mage/ImportExport/Model/Resource/Customer/Storage.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ImportExport - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ImportExport/Model/Resource/Helper/Mysql4.php b/app/code/core/Mage/ImportExport/Model/Resource/Helper/Mysql4.php index f56282d1915dbfedfc14e0ccf2c8be3deaf4d10d..a10b53df06621172161f1be2f4ff041d4b37ff45 100644 --- a/app/code/core/Mage/ImportExport/Model/Resource/Helper/Mysql4.php +++ b/app/code/core/Mage/ImportExport/Model/Resource/Helper/Mysql4.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ImportExport/Model/Resource/Import/CustomerComposite/Data.php b/app/code/core/Mage/ImportExport/Model/Resource/Import/CustomerComposite/Data.php index f276577c3adf6914dde6fc6e7eaf83890222db09..ea1cd523e1cc2d16324701cbf73a18642982e58a 100644 --- a/app/code/core/Mage/ImportExport/Model/Resource/Import/CustomerComposite/Data.php +++ b/app/code/core/Mage/ImportExport/Model/Resource/Import/CustomerComposite/Data.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ImportExport - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ImportExport/Model/Resource/Import/Data.php b/app/code/core/Mage/ImportExport/Model/Resource/Import/Data.php index cbe89f519e2729405bc9ec3b258af6f6bfa54325..079fdf6895b662c3cb18d10ed2a5f5f5a60448e1 100644 --- a/app/code/core/Mage/ImportExport/Model/Resource/Import/Data.php +++ b/app/code/core/Mage/ImportExport/Model/Resource/Import/Data.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ImportExport - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ImportExport/Model/Resource/Setup.php b/app/code/core/Mage/ImportExport/Model/Resource/Setup.php index 4529560a4333d566e025ae053150f7e1a1f7135d..29fd1b4c3c518bbbd65aeff628ef497e20735e7b 100644 --- a/app/code/core/Mage/ImportExport/Model/Resource/Setup.php +++ b/app/code/core/Mage/ImportExport/Model/Resource/Setup.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ImportExport - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ImportExport/Model/Source/Export/Entity.php b/app/code/core/Mage/ImportExport/Model/Source/Export/Entity.php index 10f3e3d92b3fe5dc57ee99d2b5db8ef90bc3edd1..177b1fde057a6fe6ab5e64e9604fe889e7bfc241 100644 --- a/app/code/core/Mage/ImportExport/Model/Source/Export/Entity.php +++ b/app/code/core/Mage/ImportExport/Model/Source/Export/Entity.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ImportExport - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ImportExport/Model/Source/Export/Format.php b/app/code/core/Mage/ImportExport/Model/Source/Export/Format.php index 93c5af86c044157115173ff85146b54da01053a9..cbe8bfaa54511c6a84dffd6bf7a2a2774fb071b1 100644 --- a/app/code/core/Mage/ImportExport/Model/Source/Export/Format.php +++ b/app/code/core/Mage/ImportExport/Model/Source/Export/Format.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ImportExport - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ImportExport/Model/Source/Import/Behavior/Basic.php b/app/code/core/Mage/ImportExport/Model/Source/Import/Behavior/Basic.php index c3d685161307e7711c25d1c1a67a91468061de6a..1d46d6580849e2be32d133e4c8227170110326e3 100644 --- a/app/code/core/Mage/ImportExport/Model/Source/Import/Behavior/Basic.php +++ b/app/code/core/Mage/ImportExport/Model/Source/Import/Behavior/Basic.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ImportExport - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ImportExport/Model/Source/Import/Behavior/Custom.php b/app/code/core/Mage/ImportExport/Model/Source/Import/Behavior/Custom.php index 36742da21120da76a1b7cc3443f4f1ca5aa90b81..34fe0024099888e46daa068dfe11a9c5d8e1833b 100644 --- a/app/code/core/Mage/ImportExport/Model/Source/Import/Behavior/Custom.php +++ b/app/code/core/Mage/ImportExport/Model/Source/Import/Behavior/Custom.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ImportExport - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ImportExport/Model/Source/Import/BehaviorAbstract.php b/app/code/core/Mage/ImportExport/Model/Source/Import/BehaviorAbstract.php index 9527f9343c0db4370194e9ad30142ccba4b9405c..3ebaf0db18629e25d471c3a66a7da24ef77005ca 100644 --- a/app/code/core/Mage/ImportExport/Model/Source/Import/BehaviorAbstract.php +++ b/app/code/core/Mage/ImportExport/Model/Source/Import/BehaviorAbstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ImportExport - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ImportExport/Model/Source/Import/Entity.php b/app/code/core/Mage/ImportExport/Model/Source/Import/Entity.php index 7b985b8a9e111f08f3e0e34fc2459d41966df1a6..8f734106afb477e4866ff8012e7ebcded011dcb6 100644 --- a/app/code/core/Mage/ImportExport/Model/Source/Import/Entity.php +++ b/app/code/core/Mage/ImportExport/Model/Source/Import/Entity.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ImportExport - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ImportExport/controllers/Adminhtml/ExportController.php b/app/code/core/Mage/ImportExport/controllers/Adminhtml/ExportController.php index ad6c4fce0153896aa9a8fd8a1cb268848bfaab28..2c7090bf0649d9a28f819a0c5d5d120e6a708caa 100644 --- a/app/code/core/Mage/ImportExport/controllers/Adminhtml/ExportController.php +++ b/app/code/core/Mage/ImportExport/controllers/Adminhtml/ExportController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ImportExport - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ImportExport/controllers/Adminhtml/ImportController.php b/app/code/core/Mage/ImportExport/controllers/Adminhtml/ImportController.php index 7c42f2d5c9cd1ba8f7ce263f231d589e7da62d0e..405d5450a9cfa47608bf7f6f48eca1583afa1c53 100644 --- a/app/code/core/Mage/ImportExport/controllers/Adminhtml/ImportController.php +++ b/app/code/core/Mage/ImportExport/controllers/Adminhtml/ImportController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ImportExport - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ImportExport/etc/adminhtml/acl.xml b/app/code/core/Mage/ImportExport/etc/adminhtml/acl.xml index 214af400ee4a112a92cbb52972b672368518c345..3f6b44650e05421ebe948734d79aace6d0786512 100644 --- a/app/code/core/Mage/ImportExport/etc/adminhtml/acl.xml +++ b/app/code/core/Mage/ImportExport/etc/adminhtml/acl.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_ImportExport - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/ImportExport/etc/adminhtml/menu.xml b/app/code/core/Mage/ImportExport/etc/adminhtml/menu.xml index 02581f759c03029b5a68aa62e1a6aeba43116f06..09095e355559ba9793084079ae1476c23c049d0b 100644 --- a/app/code/core/Mage/ImportExport/etc/adminhtml/menu.xml +++ b/app/code/core/Mage/ImportExport/etc/adminhtml/menu.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_ImportExport - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/ImportExport/etc/config.xml b/app/code/core/Mage/ImportExport/etc/config.xml index 2747d4363bccfc1547df3e76aad9d787528141d6..73fbe0e0c5ba6d5d6dad8faa99e61bf18e41a9e3 100644 --- a/app/code/core/Mage/ImportExport/etc/config.xml +++ b/app/code/core/Mage/ImportExport/etc/config.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_ImportExport - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/ImportExport/sql/importexport_setup/install-1.6.0.0.php b/app/code/core/Mage/ImportExport/sql/importexport_setup/install-1.6.0.0.php index 7cafbf60cd4eb14048bcdcd571716261ac5cf178..5269a2c5eba9336fd5f4185fe8514f59c0d4a8b9 100644 --- a/app/code/core/Mage/ImportExport/sql/importexport_setup/install-1.6.0.0.php +++ b/app/code/core/Mage/ImportExport/sql/importexport_setup/install-1.6.0.0.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ImportExport - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ImportExport/sql/importexport_setup/mysql4-upgrade-1.6.0.1-1.6.0.2.php b/app/code/core/Mage/ImportExport/sql/importexport_setup/mysql4-upgrade-1.6.0.1-1.6.0.2.php index 07a72036f431140d742d7a4f293feeded06a4927..e2f4112d1b680c14f77984b6b90a1ca482d7ee75 100644 --- a/app/code/core/Mage/ImportExport/sql/importexport_setup/mysql4-upgrade-1.6.0.1-1.6.0.2.php +++ b/app/code/core/Mage/ImportExport/sql/importexport_setup/mysql4-upgrade-1.6.0.1-1.6.0.2.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ImportExport - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ImportExport/sql/importexport_setup/upgrade-1.6.0.2-1.6.0.3.php b/app/code/core/Mage/ImportExport/sql/importexport_setup/upgrade-1.6.0.2-1.6.0.3.php index 5b9513cfe6885e3582bcdc714cb9a8ee653dd6fc..3ebf9c4302e95c94e90f1015dd7068eed537a13b 100644 --- a/app/code/core/Mage/ImportExport/sql/importexport_setup/upgrade-1.6.0.2-1.6.0.3.php +++ b/app/code/core/Mage/ImportExport/sql/importexport_setup/upgrade-1.6.0.2-1.6.0.3.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ImportExport - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ImportExport/sql/importexport_setup/upgrade-1.6.0.3-1.6.0.4.php b/app/code/core/Mage/ImportExport/sql/importexport_setup/upgrade-1.6.0.3-1.6.0.4.php index 950ab538d29bd6f4dc31fffc03109344fe106b63..53fa0476cadafba2a3efd08cbc5cb71256437476 100644 --- a/app/code/core/Mage/ImportExport/sql/importexport_setup/upgrade-1.6.0.3-1.6.0.4.php +++ b/app/code/core/Mage/ImportExport/sql/importexport_setup/upgrade-1.6.0.3-1.6.0.4.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ImportExport - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ImportExport/view/adminhtml/busy.phtml b/app/code/core/Mage/ImportExport/view/adminhtml/busy.phtml index 65cb1af85869a98d094406e690289408645bc579..3ac7d0abe1b4cb6ec75fd6953ff37364c641aade 100644 --- a/app/code/core/Mage/ImportExport/view/adminhtml/busy.phtml +++ b/app/code/core/Mage/ImportExport/view/adminhtml/busy.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/ImportExport/view/adminhtml/export/form/after.phtml b/app/code/core/Mage/ImportExport/view/adminhtml/export/form/after.phtml index 87151b927d1e8431a2851ec1b77d0ed97e768b6e..2d70fb0402f79860ed368680f22b806b96782144 100644 --- a/app/code/core/Mage/ImportExport/view/adminhtml/export/form/after.phtml +++ b/app/code/core/Mage/ImportExport/view/adminhtml/export/form/after.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/ImportExport/view/adminhtml/export/form/before.phtml b/app/code/core/Mage/ImportExport/view/adminhtml/export/form/before.phtml index de1f3caff703dfa41ec14654567ec42a5ea1d6ec..66cfe12cfca1550b9cad758006ed4cc0591c610e 100644 --- a/app/code/core/Mage/ImportExport/view/adminhtml/export/form/before.phtml +++ b/app/code/core/Mage/ImportExport/view/adminhtml/export/form/before.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/ImportExport/view/adminhtml/export/form/filter/after.phtml b/app/code/core/Mage/ImportExport/view/adminhtml/export/form/filter/after.phtml index 27c0fa4ab957396c4cde514aee022243cc8f62a8..aaa2e5f3c49afa3fb0cd63d13cdc51afc61a1168 100644 --- a/app/code/core/Mage/ImportExport/view/adminhtml/export/form/filter/after.phtml +++ b/app/code/core/Mage/ImportExport/view/adminhtml/export/form/filter/after.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/ImportExport/view/adminhtml/import/form/after.phtml b/app/code/core/Mage/ImportExport/view/adminhtml/import/form/after.phtml index b873ca37ccab718d5b9e9570e1a1e76b79c35ca1..5aee5fc87205612cab742eac27a2efc185fbe32a 100644 --- a/app/code/core/Mage/ImportExport/view/adminhtml/import/form/after.phtml +++ b/app/code/core/Mage/ImportExport/view/adminhtml/import/form/after.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/ImportExport/view/adminhtml/import/form/before.phtml b/app/code/core/Mage/ImportExport/view/adminhtml/import/form/before.phtml index 46b57a2db33ac5a97cacedac35daa53810017818..045244d903832e5f12032fdf644377ae4ceaa8ea 100644 --- a/app/code/core/Mage/ImportExport/view/adminhtml/import/form/before.phtml +++ b/app/code/core/Mage/ImportExport/view/adminhtml/import/form/before.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/ImportExport/view/adminhtml/import/frame/result.phtml b/app/code/core/Mage/ImportExport/view/adminhtml/import/frame/result.phtml index d49e8ec520e56fa43134ec832149a351962e96c1..45528c039bfc720545807b51eac2a0474cea4f4e 100644 --- a/app/code/core/Mage/ImportExport/view/adminhtml/import/frame/result.phtml +++ b/app/code/core/Mage/ImportExport/view/adminhtml/import/frame/result.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/ImportExport/view/adminhtml/layout.xml b/app/code/core/Mage/ImportExport/view/adminhtml/layout.xml index 9fc442926a7231940cfb696705049552fa5eae4e..44f5b1a49e63ab39009e91c0fd30dc9111c1b216 100644 --- a/app/code/core/Mage/ImportExport/view/adminhtml/layout.xml +++ b/app/code/core/Mage/ImportExport/view/adminhtml/layout.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_ImportExport - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Index/Block/Adminhtml/Notifications.php b/app/code/core/Mage/Index/Block/Adminhtml/Notifications.php index 36e1eb4c00dee8a1da79aff806131e0b9fdfeb01..bf8e89d0ab6941a832a37a6df9546daabfc2bc35 100644 --- a/app/code/core/Mage/Index/Block/Adminhtml/Notifications.php +++ b/app/code/core/Mage/Index/Block/Adminhtml/Notifications.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Index - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Index/Block/Adminhtml/Process.php b/app/code/core/Mage/Index/Block/Adminhtml/Process.php index 1ae4ce6490a3f2f62a16f72a569875938a007982..5f75f5a3593369145e9db98a8bd1ee652cc0d6f5 100644 --- a/app/code/core/Mage/Index/Block/Adminhtml/Process.php +++ b/app/code/core/Mage/Index/Block/Adminhtml/Process.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Index - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Index/Block/Adminhtml/Process/Edit.php b/app/code/core/Mage/Index/Block/Adminhtml/Process/Edit.php index 6af7c560794ef30dda7eefcbf7f6b943cad5f44a..b1c88ad6afa5b88e8566ab7b7f7e18467706beb7 100644 --- a/app/code/core/Mage/Index/Block/Adminhtml/Process/Edit.php +++ b/app/code/core/Mage/Index/Block/Adminhtml/Process/Edit.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Index - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Index/Block/Adminhtml/Process/Edit/Form.php b/app/code/core/Mage/Index/Block/Adminhtml/Process/Edit/Form.php index ac97d45a5d2fa8a2e3dc4c39ec75add7a373f3ca..364987c9d540f58686becb323282b24ead42ff1d 100644 --- a/app/code/core/Mage/Index/Block/Adminhtml/Process/Edit/Form.php +++ b/app/code/core/Mage/Index/Block/Adminhtml/Process/Edit/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Index - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Index/Block/Adminhtml/Process/Edit/Tab/Main.php b/app/code/core/Mage/Index/Block/Adminhtml/Process/Edit/Tab/Main.php index cf7e5256ff0d2f4a9ce2cbfa4e700e9fcd8cf76f..5322bcc6c76fd35b41ac08346bbf6682d6ab365d 100644 --- a/app/code/core/Mage/Index/Block/Adminhtml/Process/Edit/Tab/Main.php +++ b/app/code/core/Mage/Index/Block/Adminhtml/Process/Edit/Tab/Main.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Index - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Index/Block/Adminhtml/Process/Edit/Tabs.php b/app/code/core/Mage/Index/Block/Adminhtml/Process/Edit/Tabs.php index 5d4b27835a0b1bf2442a11d38ec3b47518f7a5b6..9a018b02e10b735bf26c6e53b5d896f83e6d693b 100644 --- a/app/code/core/Mage/Index/Block/Adminhtml/Process/Edit/Tabs.php +++ b/app/code/core/Mage/Index/Block/Adminhtml/Process/Edit/Tabs.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Index - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Index/Block/Adminhtml/Process/Grid.php b/app/code/core/Mage/Index/Block/Adminhtml/Process/Grid.php index 5907c452a515ea7fbeefd43d11396b72b03e89ad..b83f405f8944fdcf3e117791b5aec9a1c99738c7 100644 --- a/app/code/core/Mage/Index/Block/Adminhtml/Process/Grid.php +++ b/app/code/core/Mage/Index/Block/Adminhtml/Process/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Index - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Index/Block/Adminhtml/Process/Grid/Massaction.php b/app/code/core/Mage/Index/Block/Adminhtml/Process/Grid/Massaction.php index f8361e7ed1d869f35c6ea20c14c803a474f3ddaf..6e3807a94c832a421ebe6c19e5fac16def7f8f91 100644 --- a/app/code/core/Mage/Index/Block/Adminhtml/Process/Grid/Massaction.php +++ b/app/code/core/Mage/Index/Block/Adminhtml/Process/Grid/Massaction.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Index - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Index/Helper/Data.php b/app/code/core/Mage/Index/Helper/Data.php index 031b12ee873ff037e62048e229063dcb11716ef8..fb4e183631f734b37f50bd41d1ae04cc7a4c76e7 100644 --- a/app/code/core/Mage/Index/Helper/Data.php +++ b/app/code/core/Mage/Index/Helper/Data.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Index - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Index/Model/Event.php b/app/code/core/Mage/Index/Model/Event.php index ef90acfe614ae6f5f49e49954ee9be6916e746cc..fddbd2368e8dfc98c86b48fcbdbb2fb7076e955b 100644 --- a/app/code/core/Mage/Index/Model/Event.php +++ b/app/code/core/Mage/Index/Model/Event.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Index - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Index/Model/Indexer.php b/app/code/core/Mage/Index/Model/Indexer.php index fb2c98a6e6ca0fb5c0982b97e2214788002ea2b5..32a2fe2dd493c87246b943036f4f312e9cad3470 100644 --- a/app/code/core/Mage/Index/Model/Indexer.php +++ b/app/code/core/Mage/Index/Model/Indexer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Index - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Index/Model/Indexer/Abstract.php b/app/code/core/Mage/Index/Model/Indexer/Abstract.php index aa055c9c65f97534ac1b7013a0c0744f3ceffdf3..87a66a8a75aa2236f6f1a3cba4b4d810b018d3da 100644 --- a/app/code/core/Mage/Index/Model/Indexer/Abstract.php +++ b/app/code/core/Mage/Index/Model/Indexer/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Index - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Index/Model/Lock/Storage.php b/app/code/core/Mage/Index/Model/Lock/Storage.php index 2c35614b190a9cfcd4a28bf6fddcf4f02aee2706..66e9ee2a9c6da4d2e0aae198d52636c3994e131d 100644 --- a/app/code/core/Mage/Index/Model/Lock/Storage.php +++ b/app/code/core/Mage/Index/Model/Lock/Storage.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Index - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Index/Model/Observer.php b/app/code/core/Mage/Index/Model/Observer.php index 299f22688829cdee4e916a98b0ebef0e210c709f..8b547f2442e6c8ac1921c46f9f03ade9c77890a7 100644 --- a/app/code/core/Mage/Index/Model/Observer.php +++ b/app/code/core/Mage/Index/Model/Observer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Index - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Index/Model/Process.php b/app/code/core/Mage/Index/Model/Process.php index f11fe507ba5e3e035c9870dca36e6c9d53eb5b05..ec96eff5ed812eea381b735de79d66ef5309475f 100644 --- a/app/code/core/Mage/Index/Model/Process.php +++ b/app/code/core/Mage/Index/Model/Process.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Index - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Index/Model/Process/File.php b/app/code/core/Mage/Index/Model/Process/File.php index cfb749cfff5175dca8c5db65c393846e54979654..d6921af780d9c2f89c912d28bb3c4a8fce9d52ab 100644 --- a/app/code/core/Mage/Index/Model/Process/File.php +++ b/app/code/core/Mage/Index/Model/Process/File.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Index - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Index/Model/Process/FileFactory.php b/app/code/core/Mage/Index/Model/Process/FileFactory.php index c824cb6de65dc880a814fbb6dea153906545e181..3083b8a04b4a780730a6886e50db8190133afbc6 100644 --- a/app/code/core/Mage/Index/Model/Process/FileFactory.php +++ b/app/code/core/Mage/Index/Model/Process/FileFactory.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Index - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Index/Model/Resource/Abstract.php b/app/code/core/Mage/Index/Model/Resource/Abstract.php index 4d375f1b0fcc64c7072106ebe2d3a599a02261f7..3236034df414f8463662ccfc3e555042ea35d479 100755 --- a/app/code/core/Mage/Index/Model/Resource/Abstract.php +++ b/app/code/core/Mage/Index/Model/Resource/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Index - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Index/Model/Resource/Event.php b/app/code/core/Mage/Index/Model/Resource/Event.php index a144ceb64f7de8c63e9123fa04b138fd030d50a6..004de79d958342951d68d9b57cd8ae23f51e6e6a 100755 --- a/app/code/core/Mage/Index/Model/Resource/Event.php +++ b/app/code/core/Mage/Index/Model/Resource/Event.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Index - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Index/Model/Resource/Event/Collection.php b/app/code/core/Mage/Index/Model/Resource/Event/Collection.php index dab9731f31bc9a765c30a906ccdde0b3be533791..8e33fdc94933cb037dcab80296fc4e9c0574218f 100755 --- a/app/code/core/Mage/Index/Model/Resource/Event/Collection.php +++ b/app/code/core/Mage/Index/Model/Resource/Event/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Index - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Index/Model/Resource/Process.php b/app/code/core/Mage/Index/Model/Resource/Process.php index 759307c94ec52e0517ad92990d3bea4dda36883d..8ad342efcfb5d6781acbf5d694c194cdc3cd6e85 100755 --- a/app/code/core/Mage/Index/Model/Resource/Process.php +++ b/app/code/core/Mage/Index/Model/Resource/Process.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Index - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Index/Model/Resource/Process/Collection.php b/app/code/core/Mage/Index/Model/Resource/Process/Collection.php index cc133c4f7a010872a4fa95a7ed198f5edcd5d88b..8987565bc9bb4aaf1863a831911a0f17ddb2f5e7 100755 --- a/app/code/core/Mage/Index/Model/Resource/Process/Collection.php +++ b/app/code/core/Mage/Index/Model/Resource/Process/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Index - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Index/Model/Resource/Setup.php b/app/code/core/Mage/Index/Model/Resource/Setup.php index b0041c2a8a43d39de5427d730e70bf352b083f19..627f51d4ab50cb447cd3c28ad310077a57e9b8f6 100755 --- a/app/code/core/Mage/Index/Model/Resource/Setup.php +++ b/app/code/core/Mage/Index/Model/Resource/Setup.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Index - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Index/Model/Shell.php b/app/code/core/Mage/Index/Model/Shell.php index 5974056167fa55d6c40dea19001c1ab609577c94..5471b3f8169b6860e4280b27e1bf3688b18e95b0 100644 --- a/app/code/core/Mage/Index/Model/Shell.php +++ b/app/code/core/Mage/Index/Model/Shell.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Index - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Index/controllers/Adminhtml/ProcessController.php b/app/code/core/Mage/Index/controllers/Adminhtml/ProcessController.php index 259985d9023f9269133db71d6706c0c70a3f5ace..c055c223394b56fa5ccacd3cb7a3ed56c31c226e 100644 --- a/app/code/core/Mage/Index/controllers/Adminhtml/ProcessController.php +++ b/app/code/core/Mage/Index/controllers/Adminhtml/ProcessController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Index - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Index_Adminhtml_ProcessController extends Mage_Adminhtml_Controller_Action diff --git a/app/code/core/Mage/Index/etc/adminhtml/acl.xml b/app/code/core/Mage/Index/etc/adminhtml/acl.xml index 6cd0f4425a91511e95c22191bf1c72ddc04b74c3..81e24f3df699d7edb206e8fcdeb8768c103cce43 100644 --- a/app/code/core/Mage/Index/etc/adminhtml/acl.xml +++ b/app/code/core/Mage/Index/etc/adminhtml/acl.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Index - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Index/etc/adminhtml/menu.xml b/app/code/core/Mage/Index/etc/adminhtml/menu.xml index f5313cabe0be40cd93858d8d1c7c52b0616bac79..cafa5bef9f326d338e134369bd4e0ac47f1562c0 100644 --- a/app/code/core/Mage/Index/etc/adminhtml/menu.xml +++ b/app/code/core/Mage/Index/etc/adminhtml/menu.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Index - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Index/etc/config.xml b/app/code/core/Mage/Index/etc/config.xml index e817a8640f2671322797cbf01d411eb36d5b84e2..1d729c6839365a5b52c245bc72c9813ac9a4747a 100644 --- a/app/code/core/Mage/Index/etc/config.xml +++ b/app/code/core/Mage/Index/etc/config.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Index - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Index/sql/index_setup/install-1.6.0.0.php b/app/code/core/Mage/Index/sql/index_setup/install-1.6.0.0.php index 024c78a73181e0c4d62c7c0b28b7d676b037ca41..f9255c9b978ed55d7d551ecc49bb794848e237de 100644 --- a/app/code/core/Mage/Index/sql/index_setup/install-1.6.0.0.php +++ b/app/code/core/Mage/Index/sql/index_setup/install-1.6.0.0.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Index - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Index/view/adminhtml/layout.xml b/app/code/core/Mage/Index/view/adminhtml/layout.xml index 334f9fb389109f42d9dadf4ead07999740d96534..da132978da575a3ac161b6933e7bc007612a980b 100644 --- a/app/code/core/Mage/Index/view/adminhtml/layout.xml +++ b/app/code/core/Mage/Index/view/adminhtml/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Index/view/adminhtml/notifications.phtml b/app/code/core/Mage/Index/view/adminhtml/notifications.phtml index e6173e407a4ad993ecc5473b83297202d308989a..7dad411f83d283334082caa22471bebdab86ffcf 100644 --- a/app/code/core/Mage/Index/view/adminhtml/notifications.phtml +++ b/app/code/core/Mage/Index/view/adminhtml/notifications.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Install/Block/Abstract.php b/app/code/core/Mage/Install/Block/Abstract.php index f02bd115c688d4d8352505b6cafdfe35c8c89702..00b2d8a0154ce2fe0f15ef755c21d123b3c0737d 100644 --- a/app/code/core/Mage/Install/Block/Abstract.php +++ b/app/code/core/Mage/Install/Block/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Install - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Install/Block/Admin.php b/app/code/core/Mage/Install/Block/Admin.php index 5c658b612fc50cab6a422e71308aaeae05a72d7f..a8d0e3c364b4fb72b1c700a81c6763740b9778dd 100644 --- a/app/code/core/Mage/Install/Block/Admin.php +++ b/app/code/core/Mage/Install/Block/Admin.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Install - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Install/Block/Begin.php b/app/code/core/Mage/Install/Block/Begin.php index 5ea7534778d3cae74117b91d4e3cb7e5c24ae67f..8aa6b8abf1491fe072bba35a9af6c50547a57c18 100644 --- a/app/code/core/Mage/Install/Block/Begin.php +++ b/app/code/core/Mage/Install/Block/Begin.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Install - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Install/Block/Config.php b/app/code/core/Mage/Install/Block/Config.php index c8df704e60f2bc4957194eb4ef4c102aa2c8ab7f..4038d6fa6692029952fb03dde5072f4169d7e5f5 100644 --- a/app/code/core/Mage/Install/Block/Config.php +++ b/app/code/core/Mage/Install/Block/Config.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Install - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Install/Block/Db/Main.php b/app/code/core/Mage/Install/Block/Db/Main.php index 1e5a055cc715b189bbe61c36a8e6a71daa10973f..0b986eab4fa1dadfebd85bbe4233d30a949b996f 100644 --- a/app/code/core/Mage/Install/Block/Db/Main.php +++ b/app/code/core/Mage/Install/Block/Db/Main.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Install - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Install/Block/Db/Type.php b/app/code/core/Mage/Install/Block/Db/Type.php index e7fa08bf231351a14986e664975269c6a4fce051..c6a3789832e66b987e1136fecd2d8dc1bcfc2f3f 100644 --- a/app/code/core/Mage/Install/Block/Db/Type.php +++ b/app/code/core/Mage/Install/Block/Db/Type.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Install - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Install/Block/Db/Type/Mysql4.php b/app/code/core/Mage/Install/Block/Db/Type/Mysql4.php index 455d3b17b1027a6e4fee52f427d696128205f9d1..bec0e4b25dd30b4c78a6419b907e6e635a6b029a 100644 --- a/app/code/core/Mage/Install/Block/Db/Type/Mysql4.php +++ b/app/code/core/Mage/Install/Block/Db/Type/Mysql4.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Install - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Install/Block/Download.php b/app/code/core/Mage/Install/Block/Download.php index cea125ab05056a603cbbc9b92ea5ed9582e1e309..9f88a9366c0fa250e1fda0bb15a7c9a1ea284ba7 100644 --- a/app/code/core/Mage/Install/Block/Download.php +++ b/app/code/core/Mage/Install/Block/Download.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Install - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Install/Block/End.php b/app/code/core/Mage/Install/Block/End.php index 1f31828cc90099a09c2486bc4f7bf7cf1f367853..bbf5baacd5e56d77256d7ca3506fb2a98a71b3c0 100644 --- a/app/code/core/Mage/Install/Block/End.php +++ b/app/code/core/Mage/Install/Block/End.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Install - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Install/Block/Locale.php b/app/code/core/Mage/Install/Block/Locale.php index 7e3a0115d0146cff916b9520cf36260a1b4ca5e8..043b9ae18516384fbe84edff9cafbc4c38089019 100644 --- a/app/code/core/Mage/Install/Block/Locale.php +++ b/app/code/core/Mage/Install/Block/Locale.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Install - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Install/Block/State.php b/app/code/core/Mage/Install/Block/State.php index a2a3a72b4068113c15a8be4ef9a5a07c00c8760a..7a057d9f2993403e8b9ec8276104c403f39a81cb 100644 --- a/app/code/core/Mage/Install/Block/State.php +++ b/app/code/core/Mage/Install/Block/State.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Install - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Install/Controller/Action.php b/app/code/core/Mage/Install/Controller/Action.php index 6c61d248c580b69f52c41c491fbdce97a06a6fee..fafe41b9b8344bbd19637b7265bf21e55bea8a9c 100644 --- a/app/code/core/Mage/Install/Controller/Action.php +++ b/app/code/core/Mage/Install/Controller/Action.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Install - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Install/Helper/Data.php b/app/code/core/Mage/Install/Helper/Data.php index a391da82a17155eea009d1d59b15c24afbd8adad..7bafd58e67768b7296fe25ce2bf6ba2151afcc1b 100644 --- a/app/code/core/Mage/Install/Helper/Data.php +++ b/app/code/core/Mage/Install/Helper/Data.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Install - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Install/Model/Config.php b/app/code/core/Mage/Install/Model/Config.php index 86fd053439a9426c96b331ad7b38f1fdc886928d..00cd5f4a3e0e17c8a0e051e975d6ac496ae62edf 100644 --- a/app/code/core/Mage/Install/Model/Config.php +++ b/app/code/core/Mage/Install/Model/Config.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Install - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Install/Model/Installer.php b/app/code/core/Mage/Install/Model/Installer.php index e8b94a78987d0a32b38ab26651969d2da91886a2..2e24f56799f8813eefa0517cf80f8496356fe49a 100644 --- a/app/code/core/Mage/Install/Model/Installer.php +++ b/app/code/core/Mage/Install/Model/Installer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Install - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Install/Model/Installer/Abstract.php b/app/code/core/Mage/Install/Model/Installer/Abstract.php index 98495b925d5db9ce36047d0e3a0d95e78c61f5a8..263a97a4d1a678cb2e43fc2b4c455edf7943cfa5 100644 --- a/app/code/core/Mage/Install/Model/Installer/Abstract.php +++ b/app/code/core/Mage/Install/Model/Installer/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Install - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Install/Model/Installer/Config.php b/app/code/core/Mage/Install/Model/Installer/Config.php index c6a5ba48c01693e7532c554b78b68fbba2dafd48..5ddae8a4717e9783bb39ab6de18bc8344f573686 100644 --- a/app/code/core/Mage/Install/Model/Installer/Config.php +++ b/app/code/core/Mage/Install/Model/Installer/Config.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Install - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Install/Model/Installer/Console.php b/app/code/core/Mage/Install/Model/Installer/Console.php index 16788c2583e8f20ea621d87789c2c7a73b353dc2..f9e12abde3f0d4e0b8ba1695dc546562b0c48b41 100644 --- a/app/code/core/Mage/Install/Model/Installer/Console.php +++ b/app/code/core/Mage/Install/Model/Installer/Console.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Install - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Install/Model/Installer/Data.php b/app/code/core/Mage/Install/Model/Installer/Data.php index 6717c6bf8b756c84093cefb39f49ec9549826b24..c83a301ec6f274c5c642a85c808979affb8db614 100644 --- a/app/code/core/Mage/Install/Model/Installer/Data.php +++ b/app/code/core/Mage/Install/Model/Installer/Data.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Install - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Install/Model/Installer/Db.php b/app/code/core/Mage/Install/Model/Installer/Db.php index 9aff17fa235e1ac22d4a7414db9c55e8a9bdbb05..43a953bcd694fbdae417cd503939be9d628acf9f 100644 --- a/app/code/core/Mage/Install/Model/Installer/Db.php +++ b/app/code/core/Mage/Install/Model/Installer/Db.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Install - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Install/Model/Installer/Db/Abstract.php b/app/code/core/Mage/Install/Model/Installer/Db/Abstract.php index 955ab8fa39165798889cf23a8d05df8c57f0a35d..5638ac016aa76458506a287f71ebd40e644f413d 100644 --- a/app/code/core/Mage/Install/Model/Installer/Db/Abstract.php +++ b/app/code/core/Mage/Install/Model/Installer/Db/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Install - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Install/Model/Installer/Db/Mysql4.php b/app/code/core/Mage/Install/Model/Installer/Db/Mysql4.php index 871bad33c3339c9c3340f3a3966515072a37e3c0..13d0a87519c99b69d8f8623cdb5e663d062c0e58 100644 --- a/app/code/core/Mage/Install/Model/Installer/Db/Mysql4.php +++ b/app/code/core/Mage/Install/Model/Installer/Db/Mysql4.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Install - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Install/Model/Installer/Env.php b/app/code/core/Mage/Install/Model/Installer/Env.php index 4a5da8f1997662effb11768a9ab2ea4ed4f28429..d1fe30562dfc98fec11793c19453dadcdceaae1d 100644 --- a/app/code/core/Mage/Install/Model/Installer/Env.php +++ b/app/code/core/Mage/Install/Model/Installer/Env.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Install - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Install/Model/Installer/Filesystem.php b/app/code/core/Mage/Install/Model/Installer/Filesystem.php index 009d6234f7dfdcf49f84d0ac658a1c65c0cbd830..52daadc397c2565e002a604c7da433933ecb64a0 100644 --- a/app/code/core/Mage/Install/Model/Installer/Filesystem.php +++ b/app/code/core/Mage/Install/Model/Installer/Filesystem.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Install - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Install/Model/Installer/Pear.php b/app/code/core/Mage/Install/Model/Installer/Pear.php index f73a1d020be854775c89c6a1122445c735e779c7..fd5998eb6a38506faeb71c265b9972b0c334ff70 100644 --- a/app/code/core/Mage/Install/Model/Installer/Pear.php +++ b/app/code/core/Mage/Install/Model/Installer/Pear.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Install - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Install/Model/Observer.php b/app/code/core/Mage/Install/Model/Observer.php index a7b636cdd0fa7ed8cf02ddd9716ab06c8a9e9c8e..6694232fbc1dcf6ffeab132cf529ea81b4eca6ad 100644 --- a/app/code/core/Mage/Install/Model/Observer.php +++ b/app/code/core/Mage/Install/Model/Observer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Install - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Install/Model/Session.php b/app/code/core/Mage/Install/Model/Session.php index 88eb06b382cff4dcd706870229f8dfb9551cd803..b78631d1bc9090bb11b0a079e4a78e7e00ae9b5d 100644 --- a/app/code/core/Mage/Install/Model/Session.php +++ b/app/code/core/Mage/Install/Model/Session.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Install - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Install/Model/Wizard.php b/app/code/core/Mage/Install/Model/Wizard.php index 1137d9993c6217aa8bd900877aa51ede0a3f2ee9..abc9f51938f4209908febf75f49e3686b6926ca0 100644 --- a/app/code/core/Mage/Install/Model/Wizard.php +++ b/app/code/core/Mage/Install/Model/Wizard.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Install - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Install/controllers/IndexController.php b/app/code/core/Mage/Install/controllers/IndexController.php index 4ceddbcd8e3a84e1c3ab9b8bb79c76d0895d040a..9d908286988549c3754dedd7d3f551c1beba3d26 100644 --- a/app/code/core/Mage/Install/controllers/IndexController.php +++ b/app/code/core/Mage/Install/controllers/IndexController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Install - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Install/controllers/WizardController.php b/app/code/core/Mage/Install/controllers/WizardController.php index 3a83e8a610302a98fc1de2d5426b28999fe1f52e..6cc0475b9d76b83a60b774f12ee3d70aa0ebda8e 100644 --- a/app/code/core/Mage/Install/controllers/WizardController.php +++ b/app/code/core/Mage/Install/controllers/WizardController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Install - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Install/etc/config.xml b/app/code/core/Mage/Install/etc/config.xml index c8498d78ba373213f58e85c1cf99135d3bece291..633cfc8568492b6688b184527f88de8520659e9f 100644 --- a/app/code/core/Mage/Install/etc/config.xml +++ b/app/code/core/Mage/Install/etc/config.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Install - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Install/etc/install.xml b/app/code/core/Mage/Install/etc/install.xml index 8db0016b52803aeeb61a3bef08eae5300380da3d..d00dadf8abf54f26008719fd3fc251553624405a 100644 --- a/app/code/core/Mage/Install/etc/install.xml +++ b/app/code/core/Mage/Install/etc/install.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Install - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Install/view/install/begin.phtml b/app/code/core/Mage/Install/view/install/begin.phtml index ee32718371d2afa3d3c8d91b28279abb09478f20..2a2d246d16ef735dcd48eb4b4f9adb6fde9e02ff 100644 --- a/app/code/core/Mage/Install/view/install/begin.phtml +++ b/app/code/core/Mage/Install/view/install/begin.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Install/view/install/config.phtml b/app/code/core/Mage/Install/view/install/config.phtml index 1102d2f90dc08dc60b7eb859eccbbb7ccfb54c60..d971354f3ad1e1f7bbabe21c6537264920c9b26e 100644 --- a/app/code/core/Mage/Install/view/install/config.phtml +++ b/app/code/core/Mage/Install/view/install/config.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Install/view/install/create_admin.phtml b/app/code/core/Mage/Install/view/install/create_admin.phtml index fec08e88669e52142dc96472a0559d92e15ef893..8196af835a278befb9d07bad17e57d3ea015c0ea 100644 --- a/app/code/core/Mage/Install/view/install/create_admin.phtml +++ b/app/code/core/Mage/Install/view/install/create_admin.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Install/view/install/css/mage-js-ee-style.css b/app/code/core/Mage/Install/view/install/css/mage-js-ee-style.css index 5bb98f752713eef8f1db114afc395cba4aa9b7d6..21d32e8d581f37c457062e140a1e297240a9d4d2 100644 --- a/app/code/core/Mage/Install/view/install/css/mage-js-ee-style.css +++ b/app/code/core/Mage/Install/view/install/css/mage-js-ee-style.css @@ -19,7 +19,7 @@ * * @category mage style * @package mage - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Install/view/install/css/mage-js-style.css b/app/code/core/Mage/Install/view/install/css/mage-js-style.css index a43ddbb770cd1a3d646ba3e32fc570b39bddc00e..53838d666167cff4cddef4d22ce7f99ae7e1a23a 100644 --- a/app/code/core/Mage/Install/view/install/css/mage-js-style.css +++ b/app/code/core/Mage/Install/view/install/css/mage-js-style.css @@ -19,7 +19,7 @@ * * @category mage style * @package mage - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Install/view/install/css/validate.css b/app/code/core/Mage/Install/view/install/css/validate.css index 3e45dbd1c9bfaa3d7588affd5527b2c840f1b1d0..3a79d8ebcc1bea6874f3fce4de612e8d863ab834 100644 --- a/app/code/core/Mage/Install/view/install/css/validate.css +++ b/app/code/core/Mage/Install/view/install/css/validate.css @@ -19,7 +19,7 @@ * * @category validator style * @package mage - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ input.mage-error, textarea.mage-error, ul.mage-error, select.mage-error { diff --git a/app/code/core/Mage/Install/view/install/db/main.phtml b/app/code/core/Mage/Install/view/install/db/main.phtml index 721ac1de19d71aacd31c801e248b1bb0df88648c..2ce932237c31e1ba4842be7f953a2b87800a664c 100644 --- a/app/code/core/Mage/Install/view/install/db/main.phtml +++ b/app/code/core/Mage/Install/view/install/db/main.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Install/view/install/db/mysql4.phtml b/app/code/core/Mage/Install/view/install/db/mysql4.phtml index 6de5e1908bc104000a9fa5602229d503adce4082..9fcb4dd58b9ae02559df74fb0aa1af777caa416f 100644 --- a/app/code/core/Mage/Install/view/install/db/mysql4.phtml +++ b/app/code/core/Mage/Install/view/install/db/mysql4.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Install/view/install/download.phtml b/app/code/core/Mage/Install/view/install/download.phtml index 151d3a54174a5a3f9484277523ec93262529545c..2cab9ac4c1b84d62fffe262bba3ee1b87e086d48 100644 --- a/app/code/core/Mage/Install/view/install/download.phtml +++ b/app/code/core/Mage/Install/view/install/download.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Install/view/install/end.phtml b/app/code/core/Mage/Install/view/install/end.phtml index eaf3a64170ac1b2f6bd3be429982089565690c2d..5784a1039495b63fed43b68d38eb2ec77da8f648 100644 --- a/app/code/core/Mage/Install/view/install/end.phtml +++ b/app/code/core/Mage/Install/view/install/end.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Install/view/install/js/install.js b/app/code/core/Mage/Install/view/install/js/install.js index bafeaf63f59d5938ca9be71f3dcb9e6aad0058ef..c93c0071f9882b3fa6a36481a3fc9c3a4fcf0137 100644 --- a/app/code/core/Mage/Install/view/install/js/install.js +++ b/app/code/core/Mage/Install/view/install/js/install.js @@ -19,7 +19,7 @@ * * @category mage install * @package mage - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /*jshint browser:true jquery:true */ diff --git a/app/code/core/Mage/Install/view/install/layout.xml b/app/code/core/Mage/Install/view/install/layout.xml index 95ffa29dcb5915be26a7a2dd79bbbd2b20c2f618..e2a4bfe12826f46d4d4b2111a05536c266de706b 100644 --- a/app/code/core/Mage/Install/view/install/layout.xml +++ b/app/code/core/Mage/Install/view/install/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Install/view/install/locale.phtml b/app/code/core/Mage/Install/view/install/locale.phtml index 9d0d756845172e037c6cd0f7a3976ed5b6246fec..c91ee4517a7c78c2b8e685578239463ebbf1889f 100644 --- a/app/code/core/Mage/Install/view/install/locale.phtml +++ b/app/code/core/Mage/Install/view/install/locale.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Install/view/install/page.phtml b/app/code/core/Mage/Install/view/install/page.phtml index a8e88d03848f8a4404807935c775c42728cc35b7..616870bc38f9670a7e2a6eeef9eddecafaa7f696 100644 --- a/app/code/core/Mage/Install/view/install/page.phtml +++ b/app/code/core/Mage/Install/view/install/page.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> @@ -38,8 +38,8 @@ <link rel="icon" href="<?php echo $this->getViewFileUrl('Mage_Page::favicon.ico') ?>" type="image/x-icon"/> <link rel="shortcut icon" href="<?php echo $this->getViewFileUrl('Mage_Page::favicon.ico') ?>" type="image/x-icon"/> - <script type="text/javascript" src="<?php echo $this->getViewFileUrl('jquery/jquery-1.7.1.min.js') ?>"></script> - <script type="text/javascript" src="<?php echo $this->getViewFileUrl('jquery/ui/jquery-ui.js') ?>"></script> + <script type="text/javascript" src="<?php echo $this->getViewFileUrl('jquery/jquery.min.js') ?>"></script> + <script type="text/javascript" src="<?php echo $this->getViewFileUrl('jquery/jquery-ui.min.js') ?>"></script> <script type="text/javascript" src="<?php echo $this->getViewFileUrl('jquery/head.js') ?>"></script> <script type="text/javascript" src="<?php echo $this->getViewFileUrl('jquery/jquery.cookie.js') ?>"></script> <script type="text/javascript" src="<?php echo $this->getViewFileUrl('mage/mage.js') ?>"></script> diff --git a/app/code/core/Mage/Install/view/install/state.phtml b/app/code/core/Mage/Install/view/install/state.phtml index 2427b6d53feb78c9ba73cefed7aaaa76bde14ff6..3347ec492291db8b83320d9872181125d8189be5 100644 --- a/app/code/core/Mage/Install/view/install/state.phtml +++ b/app/code/core/Mage/Install/view/install/state.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Log/Helper/Data.php b/app/code/core/Mage/Log/Helper/Data.php index 9828e620eb58450f6b17b3f1baaa7305b3513d6f..e29fb0d1707cdf0f8943954d92b8c4b04ffe4f65 100644 --- a/app/code/core/Mage/Log/Helper/Data.php +++ b/app/code/core/Mage/Log/Helper/Data.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Log - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Log/Model/Aggregation.php b/app/code/core/Mage/Log/Model/Aggregation.php index 839e090266e490c6ea6bf31c62d976b80896a56e..df95c10a2624fd945c72e0f7033d55621059d4a9 100644 --- a/app/code/core/Mage/Log/Model/Aggregation.php +++ b/app/code/core/Mage/Log/Model/Aggregation.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Log - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Log/Model/Cron.php b/app/code/core/Mage/Log/Model/Cron.php index d6ab369de44143b4f6976e1aaced848e12fd9c5a..92145c7f0050be0a48d78d9239a6c36b46560ce9 100644 --- a/app/code/core/Mage/Log/Model/Cron.php +++ b/app/code/core/Mage/Log/Model/Cron.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Log - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Log/Model/Customer.php b/app/code/core/Mage/Log/Model/Customer.php index 5714b629157187812dba077bfe6e701d6bfe5ed4..a640f9b36c2fdfab2bf7e12b301080c4521cc4bb 100644 --- a/app/code/core/Mage/Log/Model/Customer.php +++ b/app/code/core/Mage/Log/Model/Customer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Log - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Log/Model/Log.php b/app/code/core/Mage/Log/Model/Log.php index b083d5b16db3a3564ceb2902b34b081f8b2adbed..40c67981a73a09d0756c1dc9b4b46debd22befd5 100644 --- a/app/code/core/Mage/Log/Model/Log.php +++ b/app/code/core/Mage/Log/Model/Log.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Log - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Log/Model/Resource/Aggregation.php b/app/code/core/Mage/Log/Model/Resource/Aggregation.php index bbcca011833f754f868855d0f3d1dddcfa5edf39..fae6a19d8550c067cc4cea9cb59d43c4cfd98ace 100644 --- a/app/code/core/Mage/Log/Model/Resource/Aggregation.php +++ b/app/code/core/Mage/Log/Model/Resource/Aggregation.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Log - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Log/Model/Resource/Customer.php b/app/code/core/Mage/Log/Model/Resource/Customer.php index be3d8e7da52b7dd5d81157c338ce3087112536c2..ea73c9294e6d3c4b6720169562ce5d5142a71421 100755 --- a/app/code/core/Mage/Log/Model/Resource/Customer.php +++ b/app/code/core/Mage/Log/Model/Resource/Customer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Log - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Log/Model/Resource/Helper/Mysql4.php b/app/code/core/Mage/Log/Model/Resource/Helper/Mysql4.php index 7989e006128150c2e96d013cd56f5890fd7a77c3..35c7ed69d6c948aa673deddeba906f6bbfd2b03b 100644 --- a/app/code/core/Mage/Log/Model/Resource/Helper/Mysql4.php +++ b/app/code/core/Mage/Log/Model/Resource/Helper/Mysql4.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Log - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Log/Model/Resource/Log.php b/app/code/core/Mage/Log/Model/Resource/Log.php index da8c31e009358cb0f046f5ea7e5dea422a29f3d5..cae4518246d780bfd251d3cd72a28445884e71a1 100755 --- a/app/code/core/Mage/Log/Model/Resource/Log.php +++ b/app/code/core/Mage/Log/Model/Resource/Log.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Log - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Log/Model/Resource/Shell.php b/app/code/core/Mage/Log/Model/Resource/Shell.php index 12e9d7f8ff3758fb6da84619e44faa818f3d56b4..f371b61b6cbed4ebe5c170815c79e5cb9484bde3 100644 --- a/app/code/core/Mage/Log/Model/Resource/Shell.php +++ b/app/code/core/Mage/Log/Model/Resource/Shell.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Log - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Log/Model/Resource/Visitor.php b/app/code/core/Mage/Log/Model/Resource/Visitor.php index 2a3cf380d7f8131ffb74efcef0247b0aff616c8e..b9bddb10563c1f0325bb9f7b4c0bea72dddb0341 100755 --- a/app/code/core/Mage/Log/Model/Resource/Visitor.php +++ b/app/code/core/Mage/Log/Model/Resource/Visitor.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Log - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Log/Model/Resource/Visitor/Collection.php b/app/code/core/Mage/Log/Model/Resource/Visitor/Collection.php index a5a120bdaac4a31ecaf4335484766d68454d9bea..9086a02bd95a09597f6d9cc1edcae4181c999876 100755 --- a/app/code/core/Mage/Log/Model/Resource/Visitor/Collection.php +++ b/app/code/core/Mage/Log/Model/Resource/Visitor/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Log - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Log/Model/Resource/Visitor/Online.php b/app/code/core/Mage/Log/Model/Resource/Visitor/Online.php index a87fd44416a997a031ef78c799be073b2450f431..6dc1503f5a5d326ec2798305a659a8cd59efa20b 100755 --- a/app/code/core/Mage/Log/Model/Resource/Visitor/Online.php +++ b/app/code/core/Mage/Log/Model/Resource/Visitor/Online.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Log - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Log/Model/Resource/Visitor/Online/Collection.php b/app/code/core/Mage/Log/Model/Resource/Visitor/Online/Collection.php index 3d230599e2876db1b8b20badb76ca0ed864ec76d..db82650cb2f9d6312f3cec6949c8176267f66258 100755 --- a/app/code/core/Mage/Log/Model/Resource/Visitor/Online/Collection.php +++ b/app/code/core/Mage/Log/Model/Resource/Visitor/Online/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Log - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Log/Model/Shell.php b/app/code/core/Mage/Log/Model/Shell.php index 845ecee963510576e11811376f73fb053a254541..019fd98281ad180b20732b4ce63d0b86f64f5b4e 100644 --- a/app/code/core/Mage/Log/Model/Shell.php +++ b/app/code/core/Mage/Log/Model/Shell.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Log - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Log/Model/Visitor.php b/app/code/core/Mage/Log/Model/Visitor.php index 23fb1a0ce093855ab5125c0b501107eb4106d123..e03f5c12694f9dd5c4f7df903f6f1aa03abe8824 100644 --- a/app/code/core/Mage/Log/Model/Visitor.php +++ b/app/code/core/Mage/Log/Model/Visitor.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Log - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Log/Model/Visitor/Online.php b/app/code/core/Mage/Log/Model/Visitor/Online.php index deed157e76cf239d2fcf9a9843751a80cccd6860..dcb51aec49cdb73d7c85aac9d076712820515c19 100644 --- a/app/code/core/Mage/Log/Model/Visitor/Online.php +++ b/app/code/core/Mage/Log/Model/Visitor/Online.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Log - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Log/data/log_setup/data-install-1.6.0.0.php b/app/code/core/Mage/Log/data/log_setup/data-install-1.6.0.0.php index 5750da1dce265ea02ba2d954373f6b7b228cfc89..0a9f0a3a236c8ff6f6dc88634fa55139a061c5d7 100644 --- a/app/code/core/Mage/Log/data/log_setup/data-install-1.6.0.0.php +++ b/app/code/core/Mage/Log/data/log_setup/data-install-1.6.0.0.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Log - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Log/etc/adminhtml/system.xml b/app/code/core/Mage/Log/etc/adminhtml/system.xml index c19fab30f889a7169b64d55f84a4ed88be679968..c4392a1c94f5c8b11cb98e36576c0f8e4a70ebca 100644 --- a/app/code/core/Mage/Log/etc/adminhtml/system.xml +++ b/app/code/core/Mage/Log/etc/adminhtml/system.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Log - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Log/etc/config.xml b/app/code/core/Mage/Log/etc/config.xml index 36a869bfea5d19d808a7a3a853f058fd67a1c0b8..f93d6f09e99561e143d1cda67c97cc9293a38abb 100644 --- a/app/code/core/Mage/Log/etc/config.xml +++ b/app/code/core/Mage/Log/etc/config.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Log - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Log/sql/log_setup/install-1.6.0.0.php b/app/code/core/Mage/Log/sql/log_setup/install-1.6.0.0.php index e4d3f3d58446860e86c8e3e51d5a7b2a40b03e95..969c20137fc0ffcc8a6eaf2a03f4e1417ed90660 100644 --- a/app/code/core/Mage/Log/sql/log_setup/install-1.6.0.0.php +++ b/app/code/core/Mage/Log/sql/log_setup/install-1.6.0.0.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Log - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Media/Helper/Data.php b/app/code/core/Mage/Media/Helper/Data.php index b8002bb895efb0c4454256e38106d80689513c25..266dc9d7cc5d835794866d9dcc53fe48df9d2f2e 100644 --- a/app/code/core/Mage/Media/Helper/Data.php +++ b/app/code/core/Mage/Media/Helper/Data.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Media - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Media/Model/File/Image.php b/app/code/core/Mage/Media/Model/File/Image.php index 9a7ae587635ca280884ae1f0cb021926b206e352..865dccba11779600a3d07921aee70692812916dd 100644 --- a/app/code/core/Mage/Media/Model/File/Image.php +++ b/app/code/core/Mage/Media/Model/File/Image.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Media - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Media/Model/Image.php b/app/code/core/Mage/Media/Model/Image.php index 3bf0a3a2b29399f4ac4ac255548d99a3fd0b9965..05aba69e4541cf339aadb122bee9c861b8a7208e 100644 --- a/app/code/core/Mage/Media/Model/Image.php +++ b/app/code/core/Mage/Media/Model/Image.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Media - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Media/Model/Image/Config/Interface.php b/app/code/core/Mage/Media/Model/Image/Config/Interface.php index 0e94e423ca2006e8d981c2249d698ec4c577611a..6d1864138509ccb74687940108d2c12324abe53e 100644 --- a/app/code/core/Mage/Media/Model/Image/Config/Interface.php +++ b/app/code/core/Mage/Media/Model/Image/Config/Interface.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Media - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Media/etc/config.xml b/app/code/core/Mage/Media/etc/config.xml index 6f6efdd1de7a7fd82d746442531dabdb92c71266..47b8aea1af09fddfa885e447afbc06fa316e0afd 100644 --- a/app/code/core/Mage/Media/etc/config.xml +++ b/app/code/core/Mage/Media/etc/config.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Media - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Newsletter/Block/Subscribe.php b/app/code/core/Mage/Newsletter/Block/Subscribe.php index f81985721e1729af7bc040425b837e61bc1bd259..07aa87c0d133f140f630bd81e72ed944972eb462 100644 --- a/app/code/core/Mage/Newsletter/Block/Subscribe.php +++ b/app/code/core/Mage/Newsletter/Block/Subscribe.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Newsletter - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Newsletter/Helper/Data.php b/app/code/core/Mage/Newsletter/Helper/Data.php index 58339c34f41d2eb24b977d63a0323e3a97b9497d..af51fb4bf0b93bda92fd5149be87b08efb54f720 100644 --- a/app/code/core/Mage/Newsletter/Helper/Data.php +++ b/app/code/core/Mage/Newsletter/Helper/Data.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Newsletter - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Newsletter/Model/Message.php b/app/code/core/Mage/Newsletter/Model/Message.php index 0c691fac2be0f2650cb393c4009cff5dc60b60a2..812304635ff8020951016f19f6a1f6ef1afdd6fa 100644 --- a/app/code/core/Mage/Newsletter/Model/Message.php +++ b/app/code/core/Mage/Newsletter/Model/Message.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Newsletter - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Newsletter/Model/Observer.php b/app/code/core/Mage/Newsletter/Model/Observer.php index 12ae5147994c322549813731333bf1f7b202eea4..aefedc2caf583c3419bab0395ca1ff541e708a1e 100644 --- a/app/code/core/Mage/Newsletter/Model/Observer.php +++ b/app/code/core/Mage/Newsletter/Model/Observer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Newsletter - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Newsletter/Model/Problem.php b/app/code/core/Mage/Newsletter/Model/Problem.php index c63358f03aadbbd0e62a27ee9c8bcdfc48818538..f3baa358cbc6abba71ad4abfd9f2156aa73496cc 100644 --- a/app/code/core/Mage/Newsletter/Model/Problem.php +++ b/app/code/core/Mage/Newsletter/Model/Problem.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Newsletter - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Newsletter/Model/Queue.php b/app/code/core/Mage/Newsletter/Model/Queue.php index 18e9061da7ed16bcbbe421b7914011419b8970df..1419b5d47ea9ef0b6ba63b8ecd454f3c03cd0120 100644 --- a/app/code/core/Mage/Newsletter/Model/Queue.php +++ b/app/code/core/Mage/Newsletter/Model/Queue.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Newsletter - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Newsletter/Model/Resource/Grid/Collection.php b/app/code/core/Mage/Newsletter/Model/Resource/Grid/Collection.php index 471a420d5a28d04d93236d236e534680c55f8910..0a74ea98d65dbd40197dc0e65248a36bf9d57885 100644 --- a/app/code/core/Mage/Newsletter/Model/Resource/Grid/Collection.php +++ b/app/code/core/Mage/Newsletter/Model/Resource/Grid/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Newsletter - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ @@ -35,15 +35,15 @@ class Mage_Newsletter_Model_Resource_Grid_Collection extends Mage_Newsletter_Model_Resource_Problem_Collection { /** - * Prepare select for load + * Adds queue info to grid * - * @param Varien_Db_Select $select - * @return string + * @return Mage_Core_Model_Resource_Db_Collection_Abstract|Mage_Newsletter_Model_Resource_Grid_Collection */ - protected function _prepareSelect(Varien_Db_Select $select) + protected function _initSelect() { + parent::_initSelect(); $this->addSubscriberInfo() ->addQueueInfo(); - return parent::_prepareSelect($select); + return $this; } } diff --git a/app/code/core/Mage/Newsletter/Model/Resource/Problem.php b/app/code/core/Mage/Newsletter/Model/Resource/Problem.php index 996cb4091e23921c83aece0ff8370c72d296f4c7..7edff39c78b29e24d30e48e695eaa085f60ab7e7 100755 --- a/app/code/core/Mage/Newsletter/Model/Resource/Problem.php +++ b/app/code/core/Mage/Newsletter/Model/Resource/Problem.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Newsletter - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Newsletter/Model/Resource/Problem/Collection.php b/app/code/core/Mage/Newsletter/Model/Resource/Problem/Collection.php index c5cc1cdd5c3a8b252cc117816000874d2dfb17e7..48cab4e925f31fb0674454298a7b7138baf7cf78 100755 --- a/app/code/core/Mage/Newsletter/Model/Resource/Problem/Collection.php +++ b/app/code/core/Mage/Newsletter/Model/Resource/Problem/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Newsletter - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Newsletter/Model/Resource/Queue.php b/app/code/core/Mage/Newsletter/Model/Resource/Queue.php index 59577388f7b592f3836265790044c6b77bf629dd..d739ec03cfddbe03f2d083183ac5d0f2260e1a39 100755 --- a/app/code/core/Mage/Newsletter/Model/Resource/Queue.php +++ b/app/code/core/Mage/Newsletter/Model/Resource/Queue.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Newsletter - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Newsletter/Model/Resource/Queue/Collection.php b/app/code/core/Mage/Newsletter/Model/Resource/Queue/Collection.php index f76c183df8cfdf095cb44f0451ea26bba4f771ef..0d9576830332ca62b0ed88a15382076db507c0ec 100755 --- a/app/code/core/Mage/Newsletter/Model/Resource/Queue/Collection.php +++ b/app/code/core/Mage/Newsletter/Model/Resource/Queue/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Newsletter - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Newsletter/Model/Resource/Subscriber.php b/app/code/core/Mage/Newsletter/Model/Resource/Subscriber.php index b0373d0803911f97d94c30baec7fcb9322a3788d..8b70d4c07a944e37513adc87c280c906e34bad3e 100755 --- a/app/code/core/Mage/Newsletter/Model/Resource/Subscriber.php +++ b/app/code/core/Mage/Newsletter/Model/Resource/Subscriber.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Newsletter - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Newsletter/Model/Resource/Subscriber/Collection.php b/app/code/core/Mage/Newsletter/Model/Resource/Subscriber/Collection.php index 91880f932a24ad5445110f970aea6a959e02b631..21866c322dd9e3d228956a783f087069c494c631 100755 --- a/app/code/core/Mage/Newsletter/Model/Resource/Subscriber/Collection.php +++ b/app/code/core/Mage/Newsletter/Model/Resource/Subscriber/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Newsletter - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Newsletter/Model/Resource/Template.php b/app/code/core/Mage/Newsletter/Model/Resource/Template.php index 9cc0997528dbe09010e322ad05070ff0358f83af..b585dae6fc58dc5aa9c00aa66a8f348226c5ac0d 100755 --- a/app/code/core/Mage/Newsletter/Model/Resource/Template.php +++ b/app/code/core/Mage/Newsletter/Model/Resource/Template.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Newsletter - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Newsletter/Model/Resource/Template/Collection.php b/app/code/core/Mage/Newsletter/Model/Resource/Template/Collection.php index d2b1e7545e9f59a55b51b4f15f49044706ecccd6..acef98c2b5a7717afa979c1ba12768a2f616e9ab 100755 --- a/app/code/core/Mage/Newsletter/Model/Resource/Template/Collection.php +++ b/app/code/core/Mage/Newsletter/Model/Resource/Template/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Newsletter - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Newsletter/Model/Session.php b/app/code/core/Mage/Newsletter/Model/Session.php index d6b4a53fceb35a9d2326ca076ff20386da32f4c7..77ccc8959d42f4d62ba4d6be6928e4553700921e 100644 --- a/app/code/core/Mage/Newsletter/Model/Session.php +++ b/app/code/core/Mage/Newsletter/Model/Session.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Newsletter - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Newsletter/Model/Subscriber.php b/app/code/core/Mage/Newsletter/Model/Subscriber.php index 93ed4db363212de1123ba8874e89297b1703ed6f..0183ebf92fd2ffad9683da78ba699b18bea3d1a6 100644 --- a/app/code/core/Mage/Newsletter/Model/Subscriber.php +++ b/app/code/core/Mage/Newsletter/Model/Subscriber.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Newsletter - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Newsletter/Model/Template.php b/app/code/core/Mage/Newsletter/Model/Template.php index 607235d4beebe930e18016ac20a5cd94bb90267b..557416edff0c06a9d3dbd582d97cca48566cbf5f 100644 --- a/app/code/core/Mage/Newsletter/Model/Template.php +++ b/app/code/core/Mage/Newsletter/Model/Template.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Newsletter - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Newsletter/Model/Template/Filter.php b/app/code/core/Mage/Newsletter/Model/Template/Filter.php index e3b11f704b73094b7c29656adb2f844dd56c278b..cb36d38780249c02815160278d94aa3e0d196605 100644 --- a/app/code/core/Mage/Newsletter/Model/Template/Filter.php +++ b/app/code/core/Mage/Newsletter/Model/Template/Filter.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Newsletter - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Newsletter/controllers/ManageController.php b/app/code/core/Mage/Newsletter/controllers/ManageController.php index 717796ade9e4fb8e744816b512d30590040a356f..ef363f17ed6b83d4105fb0224e4287a689bc5c19 100644 --- a/app/code/core/Mage/Newsletter/controllers/ManageController.php +++ b/app/code/core/Mage/Newsletter/controllers/ManageController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Newsletter - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Newsletter/controllers/SubscriberController.php b/app/code/core/Mage/Newsletter/controllers/SubscriberController.php index 41332b7f1df6e400e28c5c55347f8bf3c01ebe6c..d26cd1afd7c3deaab282d7da08a4208a876dc8bb 100644 --- a/app/code/core/Mage/Newsletter/controllers/SubscriberController.php +++ b/app/code/core/Mage/Newsletter/controllers/SubscriberController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Newsletter - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Newsletter/data/newsletter_setup/data-upgrade-1.6.0.0-1.6.0.1.php b/app/code/core/Mage/Newsletter/data/newsletter_setup/data-upgrade-1.6.0.0-1.6.0.1.php index 02116d3576e56f8ddddfb9518fe9fcd9b787ab42..fc95796f27c67ae23ab4f83e43088b97e13f0b5d 100644 --- a/app/code/core/Mage/Newsletter/data/newsletter_setup/data-upgrade-1.6.0.0-1.6.0.1.php +++ b/app/code/core/Mage/Newsletter/data/newsletter_setup/data-upgrade-1.6.0.0-1.6.0.1.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Newsletter - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Newsletter/data/newsletter_setup/data-upgrade-1.6.0.1-1.6.0.2.php b/app/code/core/Mage/Newsletter/data/newsletter_setup/data-upgrade-1.6.0.1-1.6.0.2.php index a2da89bc86affabf12a8e98686a415dd35b7f571..d80b193fca2e1188867eeed932b7565079df918b 100644 --- a/app/code/core/Mage/Newsletter/data/newsletter_setup/data-upgrade-1.6.0.1-1.6.0.2.php +++ b/app/code/core/Mage/Newsletter/data/newsletter_setup/data-upgrade-1.6.0.1-1.6.0.2.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Newsletter - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Newsletter/etc/adminhtml/acl.xml b/app/code/core/Mage/Newsletter/etc/adminhtml/acl.xml index 2f5d33cc8f7ae6ccc5a4617f4691a19b86026bba..fa0e2ed9e16dd13b62485af352f3049e46f83002 100644 --- a/app/code/core/Mage/Newsletter/etc/adminhtml/acl.xml +++ b/app/code/core/Mage/Newsletter/etc/adminhtml/acl.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Newsletter - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Newsletter/etc/adminhtml/menu.xml b/app/code/core/Mage/Newsletter/etc/adminhtml/menu.xml index 93eb6527f02dd33b059e54564c474dc61b725223..8f75080536920ccb2ab80f686ef61c923c69bfb4 100644 --- a/app/code/core/Mage/Newsletter/etc/adminhtml/menu.xml +++ b/app/code/core/Mage/Newsletter/etc/adminhtml/menu.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Newsletter - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Newsletter/etc/adminhtml/system.xml b/app/code/core/Mage/Newsletter/etc/adminhtml/system.xml index 960d2ef687514d72f4ec2f0962c40d85e7ad9eec..bb3801fe54842ab2bec7d8db422268a8a2ebaa9c 100644 --- a/app/code/core/Mage/Newsletter/etc/adminhtml/system.xml +++ b/app/code/core/Mage/Newsletter/etc/adminhtml/system.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Newsletter - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Newsletter/etc/config.xml b/app/code/core/Mage/Newsletter/etc/config.xml index 7aaa486c44aac86994fec8277bd5360ef5ea0db4..d5cf4eeded9321e35c171a13bfc75fbdff22b55d 100644 --- a/app/code/core/Mage/Newsletter/etc/config.xml +++ b/app/code/core/Mage/Newsletter/etc/config.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Newsletter - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Newsletter/sql/newsletter_setup/install-1.6.0.0.php b/app/code/core/Mage/Newsletter/sql/newsletter_setup/install-1.6.0.0.php index 0d285a989c24dd1b8c622cb4bc25e814e8821dc1..827cb686b7a0f5b4e4159c0d731824d14653a390 100644 --- a/app/code/core/Mage/Newsletter/sql/newsletter_setup/install-1.6.0.0.php +++ b/app/code/core/Mage/Newsletter/sql/newsletter_setup/install-1.6.0.0.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Newsletter - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Newsletter/view/frontend/layout.xml b/app/code/core/Mage/Newsletter/view/frontend/layout.xml index 6825ce4af8bfd043439b3627f3d912ab0b8f2f36..1bb14490aff922812e6d50b595fab4398ddc5c43 100644 --- a/app/code/core/Mage/Newsletter/view/frontend/layout.xml +++ b/app/code/core/Mage/Newsletter/view/frontend/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Newsletter/view/frontend/newsletter.js b/app/code/core/Mage/Newsletter/view/frontend/newsletter.js index 5f5a21f92ab3447705c2fd83aa43bfc80be83f20..19f38129624a68d0ea3bd504823b56443ccdd524 100644 --- a/app/code/core/Mage/Newsletter/view/frontend/newsletter.js +++ b/app/code/core/Mage/Newsletter/view/frontend/newsletter.js @@ -19,7 +19,7 @@ * * @category frontend newsletter * @package mage - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /*jshint browser:true jquery:true*/ diff --git a/app/code/core/Mage/Newsletter/view/frontend/subscribe.phtml b/app/code/core/Mage/Newsletter/view/frontend/subscribe.phtml index 61b7cf3b466ad72038816abf6a0efee5dca959ff..72835d326529d234f489fa5d6ca781f21005b489 100644 --- a/app/code/core/Mage/Newsletter/view/frontend/subscribe.phtml +++ b/app/code/core/Mage/Newsletter/view/frontend/subscribe.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Oauth/Block/Adminhtml/Oauth/Admin/Token.php b/app/code/core/Mage/Oauth/Block/Adminhtml/Oauth/Admin/Token.php index d299015391fd30451351839011658f73714ec103..e5e379b6945a466dcbf6a1bd83b6c17ad3bb6b88 100644 --- a/app/code/core/Mage/Oauth/Block/Adminhtml/Oauth/Admin/Token.php +++ b/app/code/core/Mage/Oauth/Block/Adminhtml/Oauth/Admin/Token.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Oauth/Block/Adminhtml/Oauth/Admin/Token/Grid.php b/app/code/core/Mage/Oauth/Block/Adminhtml/Oauth/Admin/Token/Grid.php index 7642d865732da454530c9ca764d8ec7e6c6e15c2..2496df9ff7cb947a72091d1663279130f122901f 100644 --- a/app/code/core/Mage/Oauth/Block/Adminhtml/Oauth/Admin/Token/Grid.php +++ b/app/code/core/Mage/Oauth/Block/Adminhtml/Oauth/Admin/Token/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Oauth/Block/Adminhtml/Oauth/Authorize.php b/app/code/core/Mage/Oauth/Block/Adminhtml/Oauth/Authorize.php index 14b0bc37886ae4051c76125f35ae5c0d7239fc2f..4cc7ad50a2a7aaf4e0fb10084f4197c698fa1a56 100644 --- a/app/code/core/Mage/Oauth/Block/Adminhtml/Oauth/Authorize.php +++ b/app/code/core/Mage/Oauth/Block/Adminhtml/Oauth/Authorize.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Oauth/Block/Adminhtml/Oauth/Authorize/Button.php b/app/code/core/Mage/Oauth/Block/Adminhtml/Oauth/Authorize/Button.php index 6734ae4d3691e90757377cccfa8fe5ee348b575f..dfbc9d608d9ee259b5b7c7747ac1225e518307ea 100644 --- a/app/code/core/Mage/Oauth/Block/Adminhtml/Oauth/Authorize/Button.php +++ b/app/code/core/Mage/Oauth/Block/Adminhtml/Oauth/Authorize/Button.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Oauth - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Oauth/Block/Adminhtml/Oauth/AuthorizedTokens.php b/app/code/core/Mage/Oauth/Block/Adminhtml/Oauth/AuthorizedTokens.php index df564cdd0b1cd9af7aa09cf862e86794bedcd5ce..ce9667eb604f88b8c288d6504e4e4436f57c3ba1 100644 --- a/app/code/core/Mage/Oauth/Block/Adminhtml/Oauth/AuthorizedTokens.php +++ b/app/code/core/Mage/Oauth/Block/Adminhtml/Oauth/AuthorizedTokens.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Oauth - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Oauth/Block/Adminhtml/Oauth/AuthorizedTokens/Grid.php b/app/code/core/Mage/Oauth/Block/Adminhtml/Oauth/AuthorizedTokens/Grid.php index 34e3fbc4f6148985e8fdba4ac92d64e3d76d9cfe..6351e1720932c60c6b22fbec5bb928313e54853a 100644 --- a/app/code/core/Mage/Oauth/Block/Adminhtml/Oauth/AuthorizedTokens/Grid.php +++ b/app/code/core/Mage/Oauth/Block/Adminhtml/Oauth/AuthorizedTokens/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Oauth/Block/Adminhtml/Oauth/Consumer.php b/app/code/core/Mage/Oauth/Block/Adminhtml/Oauth/Consumer.php index 614968ccc54a6f5b275a09cf053bdfdf3e3f08e6..a917724b1afaa67ee0455cb41e430150940ab0f3 100644 --- a/app/code/core/Mage/Oauth/Block/Adminhtml/Oauth/Consumer.php +++ b/app/code/core/Mage/Oauth/Block/Adminhtml/Oauth/Consumer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Oauth/Block/Adminhtml/Oauth/Consumer/Edit.php b/app/code/core/Mage/Oauth/Block/Adminhtml/Oauth/Consumer/Edit.php index 08843eff6e0518a49ac9e42192808ff52fa73380..10d7ed84ba497a310840f1ad6aa208f5ff799e2a 100644 --- a/app/code/core/Mage/Oauth/Block/Adminhtml/Oauth/Consumer/Edit.php +++ b/app/code/core/Mage/Oauth/Block/Adminhtml/Oauth/Consumer/Edit.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Oauth/Block/Adminhtml/Oauth/Consumer/Edit/Form.php b/app/code/core/Mage/Oauth/Block/Adminhtml/Oauth/Consumer/Edit/Form.php index 48a9404a072fd39e8be36967581255490f5865fe..fbe5010d369c28701becd7f0f90197782582d1aa 100644 --- a/app/code/core/Mage/Oauth/Block/Adminhtml/Oauth/Consumer/Edit/Form.php +++ b/app/code/core/Mage/Oauth/Block/Adminhtml/Oauth/Consumer/Edit/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Oauth/Block/Adminhtml/Oauth/Consumer/Grid.php b/app/code/core/Mage/Oauth/Block/Adminhtml/Oauth/Consumer/Grid.php index 4e5951f9ac0e0825b8876f7c65d3010f703264a2..ba83a83ff3e6fd4cb42eb0829b9fb0f1baf745cf 100644 --- a/app/code/core/Mage/Oauth/Block/Adminhtml/Oauth/Consumer/Grid.php +++ b/app/code/core/Mage/Oauth/Block/Adminhtml/Oauth/Consumer/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Oauth/Block/Authorize.php b/app/code/core/Mage/Oauth/Block/Authorize.php index dc18cdf94b0b696934ad1747e68dcd857907165a..484a603f937a5a438ce51007215f160451a9d5f3 100644 --- a/app/code/core/Mage/Oauth/Block/Authorize.php +++ b/app/code/core/Mage/Oauth/Block/Authorize.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Oauth - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Oauth/Block/Authorize/Abstract.php b/app/code/core/Mage/Oauth/Block/Authorize/Abstract.php index 2dbb937edad8e9cf2b987d37e0c260c8e88c279c..3e5886d076b4235c188b2e2505f5590c0094c3cd 100644 --- a/app/code/core/Mage/Oauth/Block/Authorize/Abstract.php +++ b/app/code/core/Mage/Oauth/Block/Authorize/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Oauth - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Oauth/Block/Authorize/Button.php b/app/code/core/Mage/Oauth/Block/Authorize/Button.php index 2cc8309d014db63f07277b36869bc99b34bdbdc7..56884daaaa94501823619d84f2241176c496d114 100644 --- a/app/code/core/Mage/Oauth/Block/Authorize/Button.php +++ b/app/code/core/Mage/Oauth/Block/Authorize/Button.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Oauth - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Oauth/Block/Authorize/ButtonBaseAbstract.php b/app/code/core/Mage/Oauth/Block/Authorize/ButtonBaseAbstract.php index c2c8202d2d2f0bf3c4aa40f5fd5b800d7299f985..929ca450f599d4af47dc0c7471d3c9d25b045827 100644 --- a/app/code/core/Mage/Oauth/Block/Authorize/ButtonBaseAbstract.php +++ b/app/code/core/Mage/Oauth/Block/Authorize/ButtonBaseAbstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Oauth - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Oauth/Block/AuthorizeBaseAbstract.php b/app/code/core/Mage/Oauth/Block/AuthorizeBaseAbstract.php index f3e12d1e07388d202bc42c7a0bdb9d41ee553721..980db4361b562cc7676135857bb90a5cf828bfb2 100644 --- a/app/code/core/Mage/Oauth/Block/AuthorizeBaseAbstract.php +++ b/app/code/core/Mage/Oauth/Block/AuthorizeBaseAbstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Oauth - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Oauth/Block/Customer/Token/List.php b/app/code/core/Mage/Oauth/Block/Customer/Token/List.php index b1a9a6c0585d746e79c6958fb830023d27dfd8aa..dd01ce95a5803c80dc51a93183e601ef7c8deacd 100644 --- a/app/code/core/Mage/Oauth/Block/Customer/Token/List.php +++ b/app/code/core/Mage/Oauth/Block/Customer/Token/List.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Oauth - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Oauth/Exception.php b/app/code/core/Mage/Oauth/Exception.php index 8cb3042585f9c42aef7cd7edf9a19c877ccf2133..93f029817b84aab861d45611643bbdfb90eea998 100644 --- a/app/code/core/Mage/Oauth/Exception.php +++ b/app/code/core/Mage/Oauth/Exception.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Oauth - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Oauth/Helper/Data.php b/app/code/core/Mage/Oauth/Helper/Data.php index 1b6580e7914ab79e7990752f7c95dd32905e4fbc..0b18711dd91072d30cc5dffd26e1186961465894 100644 --- a/app/code/core/Mage/Oauth/Helper/Data.php +++ b/app/code/core/Mage/Oauth/Helper/Data.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Oauth - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Oauth/Model/Consumer.php b/app/code/core/Mage/Oauth/Model/Consumer.php index a011c21309d46d46c1b3b78aad24fb17c182708a..16c91a9e052d06547b60299d47a87fba8b3c2d1b 100644 --- a/app/code/core/Mage/Oauth/Model/Consumer.php +++ b/app/code/core/Mage/Oauth/Model/Consumer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Oauth - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Oauth/Model/Consumer/Factory.php b/app/code/core/Mage/Oauth/Model/Consumer/Factory.php index 3322315024d2569650088608cd0296f37358fa08..7e84d0371ef30982a90ddff497fc6f18c98fd30c 100644 --- a/app/code/core/Mage/Oauth/Model/Consumer/Factory.php +++ b/app/code/core/Mage/Oauth/Model/Consumer/Factory.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Oauth_Model_Consumer_Factory diff --git a/app/code/core/Mage/Oauth/Model/Consumer/Validator/KeyLength.php b/app/code/core/Mage/Oauth/Model/Consumer/Validator/KeyLength.php index d6148bcb36172de12500cf3a086545752df39e1d..2ba60223ec17fef81c499184c8ecff9057f3c760 100644 --- a/app/code/core/Mage/Oauth/Model/Consumer/Validator/KeyLength.php +++ b/app/code/core/Mage/Oauth/Model/Consumer/Validator/KeyLength.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Oauth - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Oauth/Model/ConsumerInterface.php b/app/code/core/Mage/Oauth/Model/ConsumerInterface.php index 9576f85b9cc688ea480fb2f9208b020817e24939..79db2d6b33464ebd654ddd64975483ee73471e87 100644 --- a/app/code/core/Mage/Oauth/Model/ConsumerInterface.php +++ b/app/code/core/Mage/Oauth/Model/ConsumerInterface.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ interface Mage_Oauth_Model_ConsumerInterface diff --git a/app/code/core/Mage/Oauth/Model/Nonce.php b/app/code/core/Mage/Oauth/Model/Nonce.php index d14126c2462db7f08a1b295aac2b1b17aa7669d1..094751ef38fc29dc73082ac398ce870438efc353 100644 --- a/app/code/core/Mage/Oauth/Model/Nonce.php +++ b/app/code/core/Mage/Oauth/Model/Nonce.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Oauth - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Oauth/Model/Nonce/Factory.php b/app/code/core/Mage/Oauth/Model/Nonce/Factory.php index 6929958e8eb6ab16b15a9644513109124f478f4e..8172552a37d4527ee483c083c59e526e3b2cdf52 100644 --- a/app/code/core/Mage/Oauth/Model/Nonce/Factory.php +++ b/app/code/core/Mage/Oauth/Model/Nonce/Factory.php @@ -2,7 +2,7 @@ /** * Nonce builder factory. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) */ class Mage_Oauth_Model_Nonce_Factory { diff --git a/app/code/core/Mage/Oauth/Model/Observer.php b/app/code/core/Mage/Oauth/Model/Observer.php index 90c22000a177f44343c1c486b8094bd869139039..94647f1d9cf34b0c143839c6546aa294f2a0d057 100644 --- a/app/code/core/Mage/Oauth/Model/Observer.php +++ b/app/code/core/Mage/Oauth/Model/Observer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Oauth - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Oauth/Model/Resource/Consumer.php b/app/code/core/Mage/Oauth/Model/Resource/Consumer.php index f07eda2fbe6ae2805bf551981a6046d7d731eaad..326a74f7bfef8701ae69b92841ca3798836a70e2 100644 --- a/app/code/core/Mage/Oauth/Model/Resource/Consumer.php +++ b/app/code/core/Mage/Oauth/Model/Resource/Consumer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Oauth - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Oauth/Model/Resource/Consumer/Collection.php b/app/code/core/Mage/Oauth/Model/Resource/Consumer/Collection.php index 62a072faace55b6672b0ac3440b136b39c717bbe..93c36ee067113ebb609be86aa20e781043cb6f72 100644 --- a/app/code/core/Mage/Oauth/Model/Resource/Consumer/Collection.php +++ b/app/code/core/Mage/Oauth/Model/Resource/Consumer/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Oauth - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Oauth/Model/Resource/Nonce.php b/app/code/core/Mage/Oauth/Model/Resource/Nonce.php index 3c5490f738058472bf3dd1ae83fa4731d8f935e1..d6146a1365f8d42a44cb96ffd74c2b92e9368608 100644 --- a/app/code/core/Mage/Oauth/Model/Resource/Nonce.php +++ b/app/code/core/Mage/Oauth/Model/Resource/Nonce.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Oauth - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Oauth/Model/Resource/Nonce/Collection.php b/app/code/core/Mage/Oauth/Model/Resource/Nonce/Collection.php index 14fdf61d3dea6b55dedeba0fa95b8150d8f37624..881401fcfb0d81f248e28f853da8f194d7041348 100644 --- a/app/code/core/Mage/Oauth/Model/Resource/Nonce/Collection.php +++ b/app/code/core/Mage/Oauth/Model/Resource/Nonce/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Oauth - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Oauth/Model/Resource/Setup.php b/app/code/core/Mage/Oauth/Model/Resource/Setup.php index d13cc65c79bca6cd8a2a9b67913ff485f9de90b0..48a73859f792a15d1c873e7d333471bdd19db04a 100644 --- a/app/code/core/Mage/Oauth/Model/Resource/Setup.php +++ b/app/code/core/Mage/Oauth/Model/Resource/Setup.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Oauth - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Oauth/Model/Resource/Token.php b/app/code/core/Mage/Oauth/Model/Resource/Token.php index 965b08fa0cb33643b64a8c20756c85a82c4cf2a6..e93545ba5e29d78f2652bab6af2125e960e0cf65 100644 --- a/app/code/core/Mage/Oauth/Model/Resource/Token.php +++ b/app/code/core/Mage/Oauth/Model/Resource/Token.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Oauth - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Oauth/Model/Resource/Token/Collection.php b/app/code/core/Mage/Oauth/Model/Resource/Token/Collection.php index a6d83aefe309e0b68e41607faca57715a6ed6d66..c4929d8dd7871fe78cef12bb29b3e0760dbc8499 100644 --- a/app/code/core/Mage/Oauth/Model/Resource/Token/Collection.php +++ b/app/code/core/Mage/Oauth/Model/Resource/Token/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Oauth - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Oauth/Model/Server.php b/app/code/core/Mage/Oauth/Model/Server.php index 4b4c1d9fc1cbaae328d35772572303dd1eb4d9ae..24bd64b88f5a99a9ad363597d4ca77d31aa55668 100644 --- a/app/code/core/Mage/Oauth/Model/Server.php +++ b/app/code/core/Mage/Oauth/Model/Server.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Oauth - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Oauth/Model/Token.php b/app/code/core/Mage/Oauth/Model/Token.php index f217307d045b6e3098bb351681d340a0450fb737..09e6394a5974a2ef74820ae3cc7f50761dfa396e 100644 --- a/app/code/core/Mage/Oauth/Model/Token.php +++ b/app/code/core/Mage/Oauth/Model/Token.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Oauth - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Oauth/Model/Token/Factory.php b/app/code/core/Mage/Oauth/Model/Token/Factory.php index 606eabeabfdf112cca2a47be475dbe7be35ae1c4..dc3e906bd3036cfec9b43080bda248e49f5e32df 100644 --- a/app/code/core/Mage/Oauth/Model/Token/Factory.php +++ b/app/code/core/Mage/Oauth/Model/Token/Factory.php @@ -2,7 +2,7 @@ /** * Token builder factory. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) */ class Mage_Oauth_Model_Token_Factory { diff --git a/app/code/core/Mage/Oauth/controllers/Adminhtml/Oauth/Admin/TokenController.php b/app/code/core/Mage/Oauth/controllers/Adminhtml/Oauth/Admin/TokenController.php index d3fb51fffaeab40e8c35e951e7e4e3eb31654815..4ed93a7bdbd2a00e197997413894f4aaf073ca75 100644 --- a/app/code/core/Mage/Oauth/controllers/Adminhtml/Oauth/Admin/TokenController.php +++ b/app/code/core/Mage/Oauth/controllers/Adminhtml/Oauth/Admin/TokenController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Downloadable - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Oauth/controllers/Adminhtml/Oauth/AuthorizeController.php b/app/code/core/Mage/Oauth/controllers/Adminhtml/Oauth/AuthorizeController.php index 1cf892b88ca7664421effcdb4a726d14a75f78f2..70a7f90aa31c67a8c038f8a932973455eaa33587 100644 --- a/app/code/core/Mage/Oauth/controllers/Adminhtml/Oauth/AuthorizeController.php +++ b/app/code/core/Mage/Oauth/controllers/Adminhtml/Oauth/AuthorizeController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Downloadable - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Oauth/controllers/Adminhtml/Oauth/AuthorizedTokensController.php b/app/code/core/Mage/Oauth/controllers/Adminhtml/Oauth/AuthorizedTokensController.php index 08e5d01ddc4cc78f3f04ebee53a9b56ca08b2c70..f3969e89c1a5ad4176e840942d93ea97c155aeef 100644 --- a/app/code/core/Mage/Oauth/controllers/Adminhtml/Oauth/AuthorizedTokensController.php +++ b/app/code/core/Mage/Oauth/controllers/Adminhtml/Oauth/AuthorizedTokensController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Downloadable - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Oauth/controllers/Adminhtml/Oauth/ConsumerController.php b/app/code/core/Mage/Oauth/controllers/Adminhtml/Oauth/ConsumerController.php index 8bae290f7b57c24d7ef88518558a35e2d4bb3a28..00dc3bf625efea5c580dc4c4cc6c94d9fd024ce7 100644 --- a/app/code/core/Mage/Oauth/controllers/Adminhtml/Oauth/ConsumerController.php +++ b/app/code/core/Mage/Oauth/controllers/Adminhtml/Oauth/ConsumerController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Oauth/controllers/AuthorizeController.php b/app/code/core/Mage/Oauth/controllers/AuthorizeController.php index 99e4af5d7d9b2c0a4bd42ca69bf78d9b5d1fe65a..198110921e4723c2f5553983152526632ff48d07 100644 --- a/app/code/core/Mage/Oauth/controllers/AuthorizeController.php +++ b/app/code/core/Mage/Oauth/controllers/AuthorizeController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Oauth - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Oauth/controllers/Customer/TokenController.php b/app/code/core/Mage/Oauth/controllers/Customer/TokenController.php index aac729f1333522fd5245cc2d6b706670e4f7a998..03836dec57da41250684364c4ffe5294afd95e18 100644 --- a/app/code/core/Mage/Oauth/controllers/Customer/TokenController.php +++ b/app/code/core/Mage/Oauth/controllers/Customer/TokenController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Oauth - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Oauth/controllers/InitiateController.php b/app/code/core/Mage/Oauth/controllers/InitiateController.php index 61a2e445e60978251b9cc6fa0c5b584614b6c520..00d87397ef9d7f4130c0abed5d97e7f8feff878f 100644 --- a/app/code/core/Mage/Oauth/controllers/InitiateController.php +++ b/app/code/core/Mage/Oauth/controllers/InitiateController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Oauth - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Oauth/controllers/TokenController.php b/app/code/core/Mage/Oauth/controllers/TokenController.php index d1d48c824f6264d822627d39941b1be9a3e705cf..e11eab612faa890ce394c126e2c358ec3d5ef80b 100644 --- a/app/code/core/Mage/Oauth/controllers/TokenController.php +++ b/app/code/core/Mage/Oauth/controllers/TokenController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Oauth - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Oauth/etc/adminhtml/menu.xml b/app/code/core/Mage/Oauth/etc/adminhtml/menu.xml index 380e7b1364a50324086fb11f1d801991fdbed4da..8e21aa0cda05358df83800a7bdddf9eeee47232e 100644 --- a/app/code/core/Mage/Oauth/etc/adminhtml/menu.xml +++ b/app/code/core/Mage/Oauth/etc/adminhtml/menu.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Oauth - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Oauth/etc/adminhtml/system.xml b/app/code/core/Mage/Oauth/etc/adminhtml/system.xml index 580080dc353a09970f418ee477f2db90a9e7d704..d6085dd0b727a6c3f0b5fb34cd4f5652062987bf 100644 --- a/app/code/core/Mage/Oauth/etc/adminhtml/system.xml +++ b/app/code/core/Mage/Oauth/etc/adminhtml/system.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Api - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Oauth/etc/config.xml b/app/code/core/Mage/Oauth/etc/config.xml index aa014f92b63eeea1aa89015b17b67f884455510b..4ff1e61dee9a2cbbd5479d2365e7ca99897fe3a9 100644 --- a/app/code/core/Mage/Oauth/etc/config.xml +++ b/app/code/core/Mage/Oauth/etc/config.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Oauth - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Oauth/sql/oauth_setup/install-1.0.0.0.php b/app/code/core/Mage/Oauth/sql/oauth_setup/install-1.0.0.0.php index 3be86d879eebd50c998aaf7cad5fb1fce66ded69..1fd81d078c59ec7c16ae231d5b4fcb19f86a6b64 100644 --- a/app/code/core/Mage/Oauth/sql/oauth_setup/install-1.0.0.0.php +++ b/app/code/core/Mage/Oauth/sql/oauth_setup/install-1.0.0.0.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Oauth - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ /** diff --git a/app/code/core/Mage/Oauth/view/adminhtml/authorize/button-simple.phtml b/app/code/core/Mage/Oauth/view/adminhtml/authorize/button-simple.phtml index 8e6a7c331a694486c406cbe93296ecd5646c6110..933467646b97a3807a3c76d724ee7688fce470e1 100644 --- a/app/code/core/Mage/Oauth/view/adminhtml/authorize/button-simple.phtml +++ b/app/code/core/Mage/Oauth/view/adminhtml/authorize/button-simple.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Oauth/view/adminhtml/authorize/button.phtml b/app/code/core/Mage/Oauth/view/adminhtml/authorize/button.phtml index c2f07c8984e5ccaad470265c4b7725556c557675..b94d7ac6e78703da5a9322518835260670924e4e 100644 --- a/app/code/core/Mage/Oauth/view/adminhtml/authorize/button.phtml +++ b/app/code/core/Mage/Oauth/view/adminhtml/authorize/button.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Oauth/view/adminhtml/authorize/confirm-simple.phtml b/app/code/core/Mage/Oauth/view/adminhtml/authorize/confirm-simple.phtml index 34bb60beb70e1f37e05d3d3a522d9cd76006d2ef..49525aa43e0ed4d9363aaacec7ebfbc2da7d454f 100644 --- a/app/code/core/Mage/Oauth/view/adminhtml/authorize/confirm-simple.phtml +++ b/app/code/core/Mage/Oauth/view/adminhtml/authorize/confirm-simple.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Oauth/view/adminhtml/authorize/confirm.phtml b/app/code/core/Mage/Oauth/view/adminhtml/authorize/confirm.phtml index 3d8026ff6c904be3a902f3a2f91caa98fec13b67..cf3929253ddfcf615ca47c73fcd3ecc6dc2b4aac 100644 --- a/app/code/core/Mage/Oauth/view/adminhtml/authorize/confirm.phtml +++ b/app/code/core/Mage/Oauth/view/adminhtml/authorize/confirm.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Oauth/view/adminhtml/authorize/form/login-simple.phtml b/app/code/core/Mage/Oauth/view/adminhtml/authorize/form/login-simple.phtml index 0f7229ce581bcab48c888aab37341b82cd8e9306..bd5c08d09175792eeca53ec7d239b387a3fa2719 100644 --- a/app/code/core/Mage/Oauth/view/adminhtml/authorize/form/login-simple.phtml +++ b/app/code/core/Mage/Oauth/view/adminhtml/authorize/form/login-simple.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Oauth/view/adminhtml/authorize/form/login.phtml b/app/code/core/Mage/Oauth/view/adminhtml/authorize/form/login.phtml index 5c07ffd81252a7dc480a64a1eca945bf81167ebd..dc3f4948a9ce62849bb88897fdc3722d2566aba3 100644 --- a/app/code/core/Mage/Oauth/view/adminhtml/authorize/form/login.phtml +++ b/app/code/core/Mage/Oauth/view/adminhtml/authorize/form/login.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Oauth/view/adminhtml/authorize/head-simple.phtml b/app/code/core/Mage/Oauth/view/adminhtml/authorize/head-simple.phtml index 82defcaac6467920a9c940bdc83b721b9ca81762..bb30a0605d50957a9babf18e6ab8c6e1e1497732 100644 --- a/app/code/core/Mage/Oauth/view/adminhtml/authorize/head-simple.phtml +++ b/app/code/core/Mage/Oauth/view/adminhtml/authorize/head-simple.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Oauth/view/adminhtml/authorize/reject-simple.phtml b/app/code/core/Mage/Oauth/view/adminhtml/authorize/reject-simple.phtml index 08a49fd2aa88b346da8d1b8fe5927714eefb2ac8..3ce478dff9cf050b27920827153f372870c18489 100644 --- a/app/code/core/Mage/Oauth/view/adminhtml/authorize/reject-simple.phtml +++ b/app/code/core/Mage/Oauth/view/adminhtml/authorize/reject-simple.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Oauth/view/adminhtml/authorize/reject.phtml b/app/code/core/Mage/Oauth/view/adminhtml/authorize/reject.phtml index 5267f5d7df0a5740cac7410aeed16bd8424b1cea..901d2dc9e9e2c10e759f7fb6c689d48da714fe07 100644 --- a/app/code/core/Mage/Oauth/view/adminhtml/authorize/reject.phtml +++ b/app/code/core/Mage/Oauth/view/adminhtml/authorize/reject.phtml @@ -20,7 +20,7 @@ * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Oauth/view/adminhtml/css/oauth-simple.css b/app/code/core/Mage/Oauth/view/adminhtml/css/oauth-simple.css index 561a54d660003b9f11bd120c31fc3142e9729e8f..b4a61e380d94ce9be423f9b9dd5438785b3b4d45 100644 --- a/app/code/core/Mage/Oauth/view/adminhtml/css/oauth-simple.css +++ b/app/code/core/Mage/Oauth/view/adminhtml/css/oauth-simple.css @@ -19,7 +19,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Oauth/view/adminhtml/empty.phtml b/app/code/core/Mage/Oauth/view/adminhtml/empty.phtml index f63acdbb36f5f0c047d95219b52000c453fe6225..737f2e39252173fa17d9d4a04d8882746f0380ec 100644 --- a/app/code/core/Mage/Oauth/view/adminhtml/empty.phtml +++ b/app/code/core/Mage/Oauth/view/adminhtml/empty.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Oauth/view/adminhtml/layout.xml b/app/code/core/Mage/Oauth/view/adminhtml/layout.xml index b34dd97682273fab4be4ab0210c968912b98915f..dddc4ffa341d52d52d3839e83d5f42e1bdbce881 100644 --- a/app/code/core/Mage/Oauth/view/adminhtml/layout.xml +++ b/app/code/core/Mage/Oauth/view/adminhtml/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Oauth/view/frontend/authorize/button-simple.phtml b/app/code/core/Mage/Oauth/view/frontend/authorize/button-simple.phtml index 3ebc43f4c8567eb0a45a472733e9b26858d15150..10f02625752437c3ee6f591efc3c605e9b442719 100644 --- a/app/code/core/Mage/Oauth/view/frontend/authorize/button-simple.phtml +++ b/app/code/core/Mage/Oauth/view/frontend/authorize/button-simple.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Oauth/view/frontend/authorize/button.phtml b/app/code/core/Mage/Oauth/view/frontend/authorize/button.phtml index f558f10a4b946cb6a604646ed942a721e189810f..667a39534b94567612696ac847c4b92803efc8db 100644 --- a/app/code/core/Mage/Oauth/view/frontend/authorize/button.phtml +++ b/app/code/core/Mage/Oauth/view/frontend/authorize/button.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /** diff --git a/app/code/core/Mage/Oauth/view/frontend/authorize/confirm-simple.phtml b/app/code/core/Mage/Oauth/view/frontend/authorize/confirm-simple.phtml index 71a2e96a79fdea03dc2fbe32d0e61364494bd662..02b4115f1041cf68cd08f2a98e47455b39ba8137 100644 --- a/app/code/core/Mage/Oauth/view/frontend/authorize/confirm-simple.phtml +++ b/app/code/core/Mage/Oauth/view/frontend/authorize/confirm-simple.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Oauth/view/frontend/authorize/confirm.phtml b/app/code/core/Mage/Oauth/view/frontend/authorize/confirm.phtml index 685d9487d19691656ee4bdd4dc554996ba8fc24e..7341b6bec83b123c522ecf158a44a18e2304634d 100644 --- a/app/code/core/Mage/Oauth/view/frontend/authorize/confirm.phtml +++ b/app/code/core/Mage/Oauth/view/frontend/authorize/confirm.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Oauth/view/frontend/authorize/form/login-simple.phtml b/app/code/core/Mage/Oauth/view/frontend/authorize/form/login-simple.phtml index 8c999e9ecd7c348381a84f376ec867a5fbf77995..753257588120b5fc083243f7efdc7c9f99eda029 100644 --- a/app/code/core/Mage/Oauth/view/frontend/authorize/form/login-simple.phtml +++ b/app/code/core/Mage/Oauth/view/frontend/authorize/form/login-simple.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Oauth/view/frontend/authorize/form/login.phtml b/app/code/core/Mage/Oauth/view/frontend/authorize/form/login.phtml index 2c942e37abc39242a5b8e74a35a3a5bf7fa0c95a..f30e1cdd8ce317eefe1b862cce8dc8a29f8ee9a0 100644 --- a/app/code/core/Mage/Oauth/view/frontend/authorize/form/login.phtml +++ b/app/code/core/Mage/Oauth/view/frontend/authorize/form/login.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Oauth/view/frontend/authorize/head-simple.phtml b/app/code/core/Mage/Oauth/view/frontend/authorize/head-simple.phtml index 2439e43c2c27024193463b62e322b7f61ff9cfe1..6aea757f2b9fbc6014e37c5476dd95f85910b038 100644 --- a/app/code/core/Mage/Oauth/view/frontend/authorize/head-simple.phtml +++ b/app/code/core/Mage/Oauth/view/frontend/authorize/head-simple.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Oauth/view/frontend/authorize/reject-simple.phtml b/app/code/core/Mage/Oauth/view/frontend/authorize/reject-simple.phtml index 08a49fd2aa88b346da8d1b8fe5927714eefb2ac8..3ce478dff9cf050b27920827153f372870c18489 100644 --- a/app/code/core/Mage/Oauth/view/frontend/authorize/reject-simple.phtml +++ b/app/code/core/Mage/Oauth/view/frontend/authorize/reject-simple.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Oauth/view/frontend/authorize/reject.phtml b/app/code/core/Mage/Oauth/view/frontend/authorize/reject.phtml index 7f2b79ad19301d6281a798782f9fb69f26565b2c..c708283c6cd446b0a49cdbef1d58218ec9618ade 100644 --- a/app/code/core/Mage/Oauth/view/frontend/authorize/reject.phtml +++ b/app/code/core/Mage/Oauth/view/frontend/authorize/reject.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Oauth/view/frontend/css/oauth-simple.css b/app/code/core/Mage/Oauth/view/frontend/css/oauth-simple.css index 16e0059cc965d6ee58e0c955124c35e529b2bc7c..1f9c5e20f1fc6a7f27a5a83e12eb2f5e4e4670f3 100644 --- a/app/code/core/Mage/Oauth/view/frontend/css/oauth-simple.css +++ b/app/code/core/Mage/Oauth/view/frontend/css/oauth-simple.css @@ -19,7 +19,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Oauth/view/frontend/customer/token/list.phtml b/app/code/core/Mage/Oauth/view/frontend/customer/token/list.phtml index 3e8a53e8dee4b896c71eac0f5f09a5bfef60692c..3ac7eec65bfcf8413bff419a3719a61f44174917 100644 --- a/app/code/core/Mage/Oauth/view/frontend/customer/token/list.phtml +++ b/app/code/core/Mage/Oauth/view/frontend/customer/token/list.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Oauth/view/frontend/layout.xml b/app/code/core/Mage/Oauth/view/frontend/layout.xml index 37febdd8ade1eeaf0a75ac2a18eabed6b6bb95fb..0d209e11a9d35ec881fcdf37facd7dc00660da0d 100644 --- a/app/code/core/Mage/Oauth/view/frontend/layout.xml +++ b/app/code/core/Mage/Oauth/view/frontend/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Ogone/Block/Form.php b/app/code/core/Mage/Ogone/Block/Form.php index fae394bafbc1e55dd92943a6afd61c0fa4c5d653..87b14c6e80b44be61ee918158a8432cc203914d8 100644 --- a/app/code/core/Mage/Ogone/Block/Form.php +++ b/app/code/core/Mage/Ogone/Block/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Ogone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Ogone/Block/Info.php b/app/code/core/Mage/Ogone/Block/Info.php index 6216c0362b929748881a76e2105a4d3989e0747f..7d3bd7c9d37e9e16becbc0ffa50044322b018692 100644 --- a/app/code/core/Mage/Ogone/Block/Info.php +++ b/app/code/core/Mage/Ogone/Block/Info.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Ogone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Ogone/Block/Paypage.php b/app/code/core/Mage/Ogone/Block/Paypage.php index e6ee01a1ce4caf8adffd47f80cf4d1580c66ce06..2ee2f1129664d92fa39b22f0388073be8a87bc2e 100644 --- a/app/code/core/Mage/Ogone/Block/Paypage.php +++ b/app/code/core/Mage/Ogone/Block/Paypage.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Ogone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Ogone/Block/Placeform.php b/app/code/core/Mage/Ogone/Block/Placeform.php index 997c79da818065b38f40af1862af0a1e0c7fad3b..39dbb79b01058ac3915f994b2d644d3f6a790e4c 100644 --- a/app/code/core/Mage/Ogone/Block/Placeform.php +++ b/app/code/core/Mage/Ogone/Block/Placeform.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Ogone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Ogone/Helper/Data.php b/app/code/core/Mage/Ogone/Helper/Data.php index 8ee66dfedbe1fb39c7acf0e8f0383870aea4f0d5..f7766df060fefcb54a0695cdbe841a9559db05e0 100644 --- a/app/code/core/Mage/Ogone/Helper/Data.php +++ b/app/code/core/Mage/Ogone/Helper/Data.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Ogone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Ogone/Model/Api.php b/app/code/core/Mage/Ogone/Model/Api.php index fecf9f994db5593903abfe61664d805336e4bff7..7d82d567927d2426c7cdcd6d34c0b9c1fd95e8b3 100644 --- a/app/code/core/Mage/Ogone/Model/Api.php +++ b/app/code/core/Mage/Ogone/Model/Api.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Ogone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Ogone/Model/Config.php b/app/code/core/Mage/Ogone/Model/Config.php index 0e87727a5bac377a0c74efa161f6379c7c47c682..8bd0bff05f9b0e62422614473cbe79d849156886 100644 --- a/app/code/core/Mage/Ogone/Model/Config.php +++ b/app/code/core/Mage/Ogone/Model/Config.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Ogone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Ogone/Model/Source/PaymentAction.php b/app/code/core/Mage/Ogone/Model/Source/PaymentAction.php index 7f16766023dc41a63ba39c9a0d1db5a4e64fb331..0336ff95a5b37bd087c48e66e03229f9604dd56d 100644 --- a/app/code/core/Mage/Ogone/Model/Source/PaymentAction.php +++ b/app/code/core/Mage/Ogone/Model/Source/PaymentAction.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Ogone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Ogone/Model/Source/Pmlist.php b/app/code/core/Mage/Ogone/Model/Source/Pmlist.php index 0231db729600a38066f7a9973230c8542f346e4a..b3f51187b34b5dd9277aac14b86658ce18b91fe5 100644 --- a/app/code/core/Mage/Ogone/Model/Source/Pmlist.php +++ b/app/code/core/Mage/Ogone/Model/Source/Pmlist.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Ogone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Ogone/Model/Source/Template.php b/app/code/core/Mage/Ogone/Model/Source/Template.php index 7fe1986d9fc3818daac588a313b2ef93f2d29b17..7b12665c904163e659bcf0ff594b96a47e4cb728 100644 --- a/app/code/core/Mage/Ogone/Model/Source/Template.php +++ b/app/code/core/Mage/Ogone/Model/Source/Template.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Ogone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Ogone/controllers/ApiController.php b/app/code/core/Mage/Ogone/controllers/ApiController.php index 49ae20b928f9509775ef8ccbd17d23730e71b611..b19f876de8fed7baeb57ff7fe90a98e1cb388b74 100644 --- a/app/code/core/Mage/Ogone/controllers/ApiController.php +++ b/app/code/core/Mage/Ogone/controllers/ApiController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Ogone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Ogone/etc/adminhtml/system.xml b/app/code/core/Mage/Ogone/etc/adminhtml/system.xml index d8f7bfeed396da27ad565e39ef65d97faff75a58..c1181316add391e58a0c1871c6e77f36f748cde2 100644 --- a/app/code/core/Mage/Ogone/etc/adminhtml/system.xml +++ b/app/code/core/Mage/Ogone/etc/adminhtml/system.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Ogone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Ogone/etc/config.xml b/app/code/core/Mage/Ogone/etc/config.xml index 76dd4211059399542c031c6971e49c5c32999e95..c36aa985337b3adb15bb68fa6a6b591198d9875d 100644 --- a/app/code/core/Mage/Ogone/etc/config.xml +++ b/app/code/core/Mage/Ogone/etc/config.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Ogone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Ogone/sql/ogone_setup/install-1.6.0.0.php b/app/code/core/Mage/Ogone/sql/ogone_setup/install-1.6.0.0.php index a5d2affae9371b5450016c514a2a194617786f4a..d1ea41647872c27facd3b3c6e1e3419c004e725c 100644 --- a/app/code/core/Mage/Ogone/sql/ogone_setup/install-1.6.0.0.php +++ b/app/code/core/Mage/Ogone/sql/ogone_setup/install-1.6.0.0.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Ogone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Ogone/view/adminhtml/info.phtml b/app/code/core/Mage/Ogone/view/adminhtml/info.phtml index f61066315901dde0b1c23fe05fc71d58ef357fa5..5b14ca5619280945ced2d97a28b2ec72937fc455 100644 --- a/app/code/core/Mage/Ogone/view/adminhtml/info.phtml +++ b/app/code/core/Mage/Ogone/view/adminhtml/info.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Ogone/view/frontend/form.phtml b/app/code/core/Mage/Ogone/view/frontend/form.phtml index 8d930373370bbd09a4395d13e2607af5ece37b6b..1bd6604e95314ec18ecdc9fd30815a8f1bfe41e9 100644 --- a/app/code/core/Mage/Ogone/view/frontend/form.phtml +++ b/app/code/core/Mage/Ogone/view/frontend/form.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Ogone/view/frontend/info.phtml b/app/code/core/Mage/Ogone/view/frontend/info.phtml index a41dbe420fc170abe5fa3169bb3f5a389dec663d..4f688f4abdddcc7d2fa00872134428eae0b615db 100644 --- a/app/code/core/Mage/Ogone/view/frontend/info.phtml +++ b/app/code/core/Mage/Ogone/view/frontend/info.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Ogone/view/frontend/layout.xml b/app/code/core/Mage/Ogone/view/frontend/layout.xml index df69796848bb1b8f227d9749c29e2e42d1ede8f3..2f800381a7f89ab3c2032a4ab21c81e55f0acb83 100644 --- a/app/code/core/Mage/Ogone/view/frontend/layout.xml +++ b/app/code/core/Mage/Ogone/view/frontend/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Ogone/view/frontend/paypage.phtml b/app/code/core/Mage/Ogone/view/frontend/paypage.phtml index 588bfc9db4256036084ab8de92d44326778006a0..f84d2b49b3a0cc850e988e6ce3a2b0eb5918b2e5 100644 --- a/app/code/core/Mage/Ogone/view/frontend/paypage.phtml +++ b/app/code/core/Mage/Ogone/view/frontend/paypage.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Ogone/view/frontend/placeform.phtml b/app/code/core/Mage/Ogone/view/frontend/placeform.phtml index cf352c72002a6d8d88b58b77e1db6bf6b8416295..e90c5c4b53f2d1b4cffb377eb4bc157979e35969 100644 --- a/app/code/core/Mage/Ogone/view/frontend/placeform.phtml +++ b/app/code/core/Mage/Ogone/view/frontend/placeform.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Page/Block/Html.php b/app/code/core/Mage/Page/Block/Html.php index ce36a5c185b2f1736aafd65fcce1313dc71ec402..169ab5552bbfcac8e36b42c6c6677fdc3fabf856 100644 --- a/app/code/core/Mage/Page/Block/Html.php +++ b/app/code/core/Mage/Page/Block/Html.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Page - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Page/Block/Html/Breadcrumbs.php b/app/code/core/Mage/Page/Block/Html/Breadcrumbs.php index 21ab4630f0596b49f7420db1c39e8279a0216fa0..bef16fdbe834d292b2501d0d057cef5a6521802f 100644 --- a/app/code/core/Mage/Page/Block/Html/Breadcrumbs.php +++ b/app/code/core/Mage/Page/Block/Html/Breadcrumbs.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Page - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Page/Block/Html/Footer.php b/app/code/core/Mage/Page/Block/Html/Footer.php index 47cd404f96c5cedcc89f4036335b2c69a0cbdca3..44c4360960052c0e8ad8f93ce5f942b61bbc6158 100644 --- a/app/code/core/Mage/Page/Block/Html/Footer.php +++ b/app/code/core/Mage/Page/Block/Html/Footer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Page - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Page/Block/Html/Head.php b/app/code/core/Mage/Page/Block/Html/Head.php index 0301d0592185eb1ff9f3c9805563650ecbcd2f31..1068e502f8ca519a616c5322db2aadf1fda023a7 100644 --- a/app/code/core/Mage/Page/Block/Html/Head.php +++ b/app/code/core/Mage/Page/Block/Html/Head.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Page - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Page/Block/Html/Header.php b/app/code/core/Mage/Page/Block/Html/Header.php index 5c03555887ca51f9277113f283490b6a6e1d310f..ac32788191ecafeb65cf68734e96ca4f93ac0024 100644 --- a/app/code/core/Mage/Page/Block/Html/Header.php +++ b/app/code/core/Mage/Page/Block/Html/Header.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Page - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ @@ -135,7 +135,8 @@ class Mage_Page_Block_Html_Header extends Mage_Core_Block_Template { $folderName = Mage_Backend_Model_Config_Backend_Image_Logo::UPLOAD_DIR; $storeLogoPath = $this->_storeConfig->getConfig('design/header/logo_src'); - $logoUrl = $this->_urlBuilder->getBaseUrl(array('_type' => 'media')) . $folderName . '/' . $storeLogoPath; + $logoUrl = $this->_urlBuilder->getBaseUrl(array('_type' => Mage_Core_Model_Store::URL_TYPE_MEDIA)) + . $folderName . '/' . $storeLogoPath; $absolutePath = $this->_configOptions->getDir('media') . DIRECTORY_SEPARATOR . $folderName . DIRECTORY_SEPARATOR . $storeLogoPath; diff --git a/app/code/core/Mage/Page/Block/Html/Notices.php b/app/code/core/Mage/Page/Block/Html/Notices.php index 7b1fd7e52df2e8864120fd670bc92b9cc90926d7..1373abde2f6b1afcbee9d6777c390b7919bf4df1 100644 --- a/app/code/core/Mage/Page/Block/Html/Notices.php +++ b/app/code/core/Mage/Page/Block/Html/Notices.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Page - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Page/Block/Html/Pager.php b/app/code/core/Mage/Page/Block/Html/Pager.php index de9aea8012c282cb8c18c639cb27fea74076d7d4..6a9ba20ca845b83a03cda9ad1b5b9d68ec9eed58 100644 --- a/app/code/core/Mage/Page/Block/Html/Pager.php +++ b/app/code/core/Mage/Page/Block/Html/Pager.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Page - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Page/Block/Html/Topmenu.php b/app/code/core/Mage/Page/Block/Html/Topmenu.php index b4f40fb879a0d012215935ce4bd506f7331175dc..5b110f7dee4f2cfb023761ff3b8d9c12d719e923 100644 --- a/app/code/core/Mage/Page/Block/Html/Topmenu.php +++ b/app/code/core/Mage/Page/Block/Html/Topmenu.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Page - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Page/Block/Html/Welcome.php b/app/code/core/Mage/Page/Block/Html/Welcome.php index afce376f7eb41e3abf7d34b2a9bd9320ea76dbfb..443f9ac1bb7ff1c409aa8f146fc078f0b3fd7624 100644 --- a/app/code/core/Mage/Page/Block/Html/Welcome.php +++ b/app/code/core/Mage/Page/Block/Html/Welcome.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Page - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Page/Block/Js/Cookie.php b/app/code/core/Mage/Page/Block/Js/Cookie.php index 4dd8da69913c25d7b3bfc7398d589870cbb5621b..e3a0826cba00b674c113922b10ee8580ccb401f7 100644 --- a/app/code/core/Mage/Page/Block/Js/Cookie.php +++ b/app/code/core/Mage/Page/Block/Js/Cookie.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Page - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Page/Block/Js/Translate.php b/app/code/core/Mage/Page/Block/Js/Translate.php index 1666869f585eb596e19338d907e2ad7f7a1387db..f4487ebdb8b9156eabc028cc9fd45a76251572b9 100644 --- a/app/code/core/Mage/Page/Block/Js/Translate.php +++ b/app/code/core/Mage/Page/Block/Js/Translate.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Page - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Page/Block/Redirect.php b/app/code/core/Mage/Page/Block/Redirect.php index 91e294d8d0f3e1a83921667e8186520d481d78cf..fc1b72a9f4c751298e8996a0cd6abebfc9aa6284 100644 --- a/app/code/core/Mage/Page/Block/Redirect.php +++ b/app/code/core/Mage/Page/Block/Redirect.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Page - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Page/Block/Switch.php b/app/code/core/Mage/Page/Block/Switch.php index df1fc400c06afebcdcc6aaae73311bbb49d00ff4..029fd10f154072be338baa948bc1155a8c8edaab 100644 --- a/app/code/core/Mage/Page/Block/Switch.php +++ b/app/code/core/Mage/Page/Block/Switch.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Page - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Page/Block/Template/Container.php b/app/code/core/Mage/Page/Block/Template/Container.php index f888672987f4da00c6da58eed53193c3a9c98bae..1cff2acc665cd4368346e4d245da8b92e6d0acf2 100644 --- a/app/code/core/Mage/Page/Block/Template/Container.php +++ b/app/code/core/Mage/Page/Block/Template/Container.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Page - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Page/Block/Template/Links.php b/app/code/core/Mage/Page/Block/Template/Links.php index 814e7f5e52f0d179f8b369e6ecf3a10d883edefc..04208078a9a1a4a794aed37c673ce0ac62931383 100644 --- a/app/code/core/Mage/Page/Block/Template/Links.php +++ b/app/code/core/Mage/Page/Block/Template/Links.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Page - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Page/Block/Template/Links/Block.php b/app/code/core/Mage/Page/Block/Template/Links/Block.php index 84ec10c64a70913dc18bbcc95455c2ae3387dbfb..e43f766e9aba139836319f5782605a4fe89c1aef 100644 --- a/app/code/core/Mage/Page/Block/Template/Links/Block.php +++ b/app/code/core/Mage/Page/Block/Template/Links/Block.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Page - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Page/Helper/Data.php b/app/code/core/Mage/Page/Helper/Data.php index 271fbc8e0a0c5c5c76f5efae2e28125fd79c34fa..6facad9420979683e0fa997790a5cdb4b0e1dc65 100644 --- a/app/code/core/Mage/Page/Helper/Data.php +++ b/app/code/core/Mage/Page/Helper/Data.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Page - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Page/Helper/Html.php b/app/code/core/Mage/Page/Helper/Html.php index d9c31cc423c5be5173a4eb6b5d914dc7b3440ba3..c63d0cc76e0262f1bbb240835a6e2c6e6f07025f 100644 --- a/app/code/core/Mage/Page/Helper/Html.php +++ b/app/code/core/Mage/Page/Helper/Html.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Page - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Page/Helper/Layout.php b/app/code/core/Mage/Page/Helper/Layout.php index 94829acd8ba110ff1813f60ece915556be094b17..f4555734c92bfc50734dcdb259f0d063f57892de 100644 --- a/app/code/core/Mage/Page/Helper/Layout.php +++ b/app/code/core/Mage/Page/Helper/Layout.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Page - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Page/Helper/Robots.php b/app/code/core/Mage/Page/Helper/Robots.php index e0a771753301e1a8e2dcc37a77fca5f78610d308..220cbcc0025b3c6689de085d6c8dbcc0b4779b87 100644 --- a/app/code/core/Mage/Page/Helper/Robots.php +++ b/app/code/core/Mage/Page/Helper/Robots.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Page - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Page/Model/Config.php b/app/code/core/Mage/Page/Model/Config.php index b25b136b4ac166c6cf9e5c1765bac82b27b9e4c5..7cb14ecb1233350118a603371ce190ead4cb77c9 100644 --- a/app/code/core/Mage/Page/Model/Config.php +++ b/app/code/core/Mage/Page/Model/Config.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Page - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Page/Model/Source/Layout.php b/app/code/core/Mage/Page/Model/Source/Layout.php index e62db726d652566cfa4ec0bbc462833ba34a2bd3..1026b348922fb525a26171cd568d442e0ef313e8 100644 --- a/app/code/core/Mage/Page/Model/Source/Layout.php +++ b/app/code/core/Mage/Page/Model/Source/Layout.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Page - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Page/etc/adminhtml/system.xml b/app/code/core/Mage/Page/etc/adminhtml/system.xml index f62c61a9ee55133d45abd248b89bffe42db24f77..2240ace91562bf2c194eed404262ee8b46ee37c3 100644 --- a/app/code/core/Mage/Page/etc/adminhtml/system.xml +++ b/app/code/core/Mage/Page/etc/adminhtml/system.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Page - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Page/etc/config.xml b/app/code/core/Mage/Page/etc/config.xml index f60e32f7fff3bf921b7f19752b6dd2429d4ea588..93ad69a77358e15dde4da323ebbd98768fa76413 100644 --- a/app/code/core/Mage/Page/etc/config.xml +++ b/app/code/core/Mage/Page/etc/config.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Page - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Page/view/adminhtml/empty.phtml b/app/code/core/Mage/Page/view/adminhtml/empty.phtml index 1af5d597feff818785f297c8eee62154aaff3ab0..44fa6cef52c5506bfdbc5cf57df41239cc39468e 100644 --- a/app/code/core/Mage/Page/view/adminhtml/empty.phtml +++ b/app/code/core/Mage/Page/view/adminhtml/empty.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Page/view/frontend/1column.phtml b/app/code/core/Mage/Page/view/frontend/1column.phtml index ddbdab29fd0f874e0342535c69f8104548253965..09faaff5edb89e978db0f0d3baa2ae841ecce902 100644 --- a/app/code/core/Mage/Page/view/frontend/1column.phtml +++ b/app/code/core/Mage/Page/view/frontend/1column.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Page/view/frontend/2columns-left.phtml b/app/code/core/Mage/Page/view/frontend/2columns-left.phtml index af632c52d2698b9dc3fe30da4f35ac1312457826..f31c17ebd7ff02de0d29f73deeadbe52aa4af9c9 100644 --- a/app/code/core/Mage/Page/view/frontend/2columns-left.phtml +++ b/app/code/core/Mage/Page/view/frontend/2columns-left.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Page/view/frontend/2columns-right.phtml b/app/code/core/Mage/Page/view/frontend/2columns-right.phtml index 0b25146efc5c9b1f65611cd665c231dca88b8cb6..b81cd02ed4bd7814a14d73d86759b2173bed1a02 100644 --- a/app/code/core/Mage/Page/view/frontend/2columns-right.phtml +++ b/app/code/core/Mage/Page/view/frontend/2columns-right.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Page/view/frontend/3columns.phtml b/app/code/core/Mage/Page/view/frontend/3columns.phtml index bdebf132935971fd53054a850894f1264d04519a..9f51edd9841e4c93fd5ce1f11327651e41e7b5b5 100644 --- a/app/code/core/Mage/Page/view/frontend/3columns.phtml +++ b/app/code/core/Mage/Page/view/frontend/3columns.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Page/view/frontend/callouts/left_col.phtml b/app/code/core/Mage/Page/view/frontend/callouts/left_col.phtml index 1c30dbbba9c584c5e1bf2d141726bed2d8d72fa2..49fd94cc864880298e0e7e389dfdb34961a50788 100644 --- a/app/code/core/Mage/Page/view/frontend/callouts/left_col.phtml +++ b/app/code/core/Mage/Page/view/frontend/callouts/left_col.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Page/view/frontend/callouts/right_col.phtml b/app/code/core/Mage/Page/view/frontend/callouts/right_col.phtml index 1c30dbbba9c584c5e1bf2d141726bed2d8d72fa2..49fd94cc864880298e0e7e389dfdb34961a50788 100644 --- a/app/code/core/Mage/Page/view/frontend/callouts/right_col.phtml +++ b/app/code/core/Mage/Page/view/frontend/callouts/right_col.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Page/view/frontend/css/validate.css b/app/code/core/Mage/Page/view/frontend/css/validate.css index cf755f3bc0bc2eceea16c61d479c6eec72b8a666..97f3d0ba6f1c0475fcacf964b8594d78f2b84733 100644 --- a/app/code/core/Mage/Page/view/frontend/css/validate.css +++ b/app/code/core/Mage/Page/view/frontend/css/validate.css @@ -19,7 +19,7 @@ * * @category validator style * @package mage - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ input.mage-error, textarea.mage-error, ul.mage-error, select.mage-error { diff --git a/app/code/core/Mage/Page/view/frontend/empty.phtml b/app/code/core/Mage/Page/view/frontend/empty.phtml index b1a72789b2b3080e3142eeab374cffdd47abcc1f..c7d2ed0288d4226bb9df7c9d7a4393efbf0d0a03 100644 --- a/app/code/core/Mage/Page/view/frontend/empty.phtml +++ b/app/code/core/Mage/Page/view/frontend/empty.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Page/view/frontend/html/breadcrumbs.phtml b/app/code/core/Mage/Page/view/frontend/html/breadcrumbs.phtml index 29b21ee64b312862658081da5725ab0a67ff1bbb..b1e9df03aa7ce7470fb4d50329e18b29f601c759 100644 --- a/app/code/core/Mage/Page/view/frontend/html/breadcrumbs.phtml +++ b/app/code/core/Mage/Page/view/frontend/html/breadcrumbs.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Page/view/frontend/html/footer.phtml b/app/code/core/Mage/Page/view/frontend/html/footer.phtml index ca5b0119d974fa0c5e174357c5aad5b39755add0..47935a7b6783f4dfd9fe684c6d6696e3a56abd47 100644 --- a/app/code/core/Mage/Page/view/frontend/html/footer.phtml +++ b/app/code/core/Mage/Page/view/frontend/html/footer.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Page/view/frontend/html/head.phtml b/app/code/core/Mage/Page/view/frontend/html/head.phtml index 0568e429b4913402b49205442fbeb459330b86eb..36c65f0de27a2ed70be22a1e9400eb9c32b187ab 100644 --- a/app/code/core/Mage/Page/view/frontend/html/head.phtml +++ b/app/code/core/Mage/Page/view/frontend/html/head.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Page/view/frontend/html/header.phtml b/app/code/core/Mage/Page/view/frontend/html/header.phtml index c06ef1d14b8efe0eb655773a507d038391221d0f..eeb3160f220cc6d76cde370648b7119eb29d6f9e 100644 --- a/app/code/core/Mage/Page/view/frontend/html/header.phtml +++ b/app/code/core/Mage/Page/view/frontend/html/header.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /** diff --git a/app/code/core/Mage/Page/view/frontend/html/notices.phtml b/app/code/core/Mage/Page/view/frontend/html/notices.phtml index 93cc7b62dc7d81a84f100228a518c6eacc71fc07..72e5741803312b4e7b791b89f2638454c6c0f4c2 100644 --- a/app/code/core/Mage/Page/view/frontend/html/notices.phtml +++ b/app/code/core/Mage/Page/view/frontend/html/notices.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Page/view/frontend/html/pager.phtml b/app/code/core/Mage/Page/view/frontend/html/pager.phtml index 967de1e0adcd8d01fcb4d120bd6cf1d121db071f..36b11f61b7c80cacbbc7b8e639100339c92a1bfa 100644 --- a/app/code/core/Mage/Page/view/frontend/html/pager.phtml +++ b/app/code/core/Mage/Page/view/frontend/html/pager.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Page/view/frontend/html/topmenu.phtml b/app/code/core/Mage/Page/view/frontend/html/topmenu.phtml index 25244e52af96efb91383a9734d1d3027b9d497be..f7c1885efa1d769f49700f2c035b6fe34faf523f 100644 --- a/app/code/core/Mage/Page/view/frontend/html/topmenu.phtml +++ b/app/code/core/Mage/Page/view/frontend/html/topmenu.phtml @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Page - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Page/view/frontend/js/calendar.phtml b/app/code/core/Mage/Page/view/frontend/js/calendar.phtml index a37eee60da894521de14cbc1b0ba4199365b220b..e77c3c8a91dc93640a76af68514ee19d84ef99af 100644 --- a/app/code/core/Mage/Page/view/frontend/js/calendar.phtml +++ b/app/code/core/Mage/Page/view/frontend/js/calendar.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Page/view/frontend/js/cookie.js b/app/code/core/Mage/Page/view/frontend/js/cookie.js index 4e95152cf3e89f8da6cb17254e8947c9f5305bd6..e69b214bc83bd9179babe6af84820ed3f7e7fd3c 100644 --- a/app/code/core/Mage/Page/view/frontend/js/cookie.js +++ b/app/code/core/Mage/Page/view/frontend/js/cookie.js @@ -19,7 +19,7 @@ * * @category cookie * @package js - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /*jshint browser:true jquery:true*/ diff --git a/app/code/core/Mage/Page/view/frontend/js/cookie.phtml b/app/code/core/Mage/Page/view/frontend/js/cookie.phtml index cc9858b8c9e9691de9e31d0361249f873d9a4574..74f5fda5be475ddb215d1c724ab81f44c2dacdd6 100644 --- a/app/code/core/Mage/Page/view/frontend/js/cookie.phtml +++ b/app/code/core/Mage/Page/view/frontend/js/cookie.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Page/view/frontend/js/cookies.js b/app/code/core/Mage/Page/view/frontend/js/cookies.js index 29fdd66f246f178f60e7f9f36127461b5dce2a95..2e8ebf30639b64781f413d823f292916ef0a42fc 100644 --- a/app/code/core/Mage/Page/view/frontend/js/cookies.js +++ b/app/code/core/Mage/Page/view/frontend/js/cookies.js @@ -19,7 +19,7 @@ * * @category Mage * @package js - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /*jshint eqnull:true browser:true jquery:true*/ diff --git a/app/code/core/Mage/Page/view/frontend/js/menu.js b/app/code/core/Mage/Page/view/frontend/js/menu.js index c2123c39162c84f4f1625e3d20162daf4fd629cf..668aeaf6789b04fd0a37247c822534479d763ab8 100644 --- a/app/code/core/Mage/Page/view/frontend/js/menu.js +++ b/app/code/core/Mage/Page/view/frontend/js/menu.js @@ -19,7 +19,7 @@ * * @category frontend home menu * @package mage - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /*jshint browser:true jquery:true */ diff --git a/app/code/core/Mage/Page/view/frontend/js/notices.js b/app/code/core/Mage/Page/view/frontend/js/notices.js index 6f9a0b9381b56397208c1dfe8ff93d7db5c1479b..1eaf9dd46c60267f86ad3469ab6563a33591a76c 100644 --- a/app/code/core/Mage/Page/view/frontend/js/notices.js +++ b/app/code/core/Mage/Page/view/frontend/js/notices.js @@ -19,7 +19,7 @@ * * @category notices * @package js - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /*jshint browser:true jquery:true*/ diff --git a/app/code/core/Mage/Page/view/frontend/layout.xml b/app/code/core/Mage/Page/view/frontend/layout.xml index 9a509aad3ef828bae54dcd575bedec7d77c26a4b..5973e4736f541054b73a33e027f173f4e6f7b6e6 100644 --- a/app/code/core/Mage/Page/view/frontend/layout.xml +++ b/app/code/core/Mage/Page/view/frontend/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Page/view/frontend/layout_addons.xml b/app/code/core/Mage/Page/view/frontend/layout_addons.xml index 0b9572b4ef15dde2f200d6b830c457617d454db7..15c711e2d5d617df25d379380b5e276e861cd524 100644 --- a/app/code/core/Mage/Page/view/frontend/layout_addons.xml +++ b/app/code/core/Mage/Page/view/frontend/layout_addons.xml @@ -19,7 +19,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> @@ -38,14 +38,14 @@ <action method="addJs"><file>varien/form.js</file></action> <action method="addJs"><file>Mage_Page::menu.js</file></action> <action method="addCss"><file>mage/calendar.css</file><params/></action> - <action method="addJs"><file>jquery/jquery-1.7.1.min.js</file></action> + <action method="addJs"><file>jquery/jquery.min.js</file></action> <action method="addJs"><file>mage/jquery-no-conflict.js</file></action> <action method="addJs"><file>jquery/head.js</file></action> <action method="addJs"><file>mage/mage.js</file></action> <action method="addJs"><file>mage/decorate.js</file></action> <action method="addJs"><file>mage/translate.js</file></action> <action method="addJs"><file>Mage_Page::js/cookies.js</file></action> - <action method="addJs"><file>jquery/ui/jquery-ui.js</file></action> + <action method="addJs"><file>jquery/jquery-ui.min.js</file></action> <action method="addJs"><file>jquery/jquery.tmpl.min.js</file></action> <action method="addJs"><file>mage/loader.js</file></action> </reference> diff --git a/app/code/core/Mage/Page/view/frontend/menu.js b/app/code/core/Mage/Page/view/frontend/menu.js index 71355a485f11aa95c8e9f43fdb9dddec8ddcb8ab..c069bf75a04514defe4c4cfa3f2ed5b8663369ae 100644 --- a/app/code/core/Mage/Page/view/frontend/menu.js +++ b/app/code/core/Mage/Page/view/frontend/menu.js @@ -19,7 +19,7 @@ * * @category Varien * @package js - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Page/view/frontend/page_fragment.phtml b/app/code/core/Mage/Page/view/frontend/page_fragment.phtml index 7fc8c8dfe0ba66e985ac709fc72016d3bef155a1..2a58e8f5cb5a62972dfbf34fc507906c8fa01508 100644 --- a/app/code/core/Mage/Page/view/frontend/page_fragment.phtml +++ b/app/code/core/Mage/Page/view/frontend/page_fragment.phtml @@ -20,7 +20,7 @@ * * @category design * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Page/view/frontend/popup.phtml b/app/code/core/Mage/Page/view/frontend/popup.phtml index 8853897afd2f67655598990517e48e016042c962..4da917d296b2ebb016086a13fef680ef2982c463 100644 --- a/app/code/core/Mage/Page/view/frontend/popup.phtml +++ b/app/code/core/Mage/Page/view/frontend/popup.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Page/view/frontend/print.phtml b/app/code/core/Mage/Page/view/frontend/print.phtml index dee41ce389945fbdd20b314e6bb6faa8d5ffb00a..b1866787a18c343b1f976b4bc3212472b1f5aa58 100644 --- a/app/code/core/Mage/Page/view/frontend/print.phtml +++ b/app/code/core/Mage/Page/view/frontend/print.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Page/view/frontend/redirect.phtml b/app/code/core/Mage/Page/view/frontend/redirect.phtml index 08a29d4f0b595d030b89951c10d6ca741c785990..bc2e14b08e42acdc07fa69ecbb0ce756884b09cc 100644 --- a/app/code/core/Mage/Page/view/frontend/redirect.phtml +++ b/app/code/core/Mage/Page/view/frontend/redirect.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Page/view/frontend/switch/flags.phtml b/app/code/core/Mage/Page/view/frontend/switch/flags.phtml index 880e51afa812a9c11e1565256cfccd72d00d0779..f046ba28574b1acba70d876b23894c9c6fa81be6 100644 --- a/app/code/core/Mage/Page/view/frontend/switch/flags.phtml +++ b/app/code/core/Mage/Page/view/frontend/switch/flags.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Page/view/frontend/switch/languages.phtml b/app/code/core/Mage/Page/view/frontend/switch/languages.phtml index 3dff9a69be84daed9276fff49ebaa474b7aedcc9..45b85c7b668d31725488b78042f14b95bd754d81 100644 --- a/app/code/core/Mage/Page/view/frontend/switch/languages.phtml +++ b/app/code/core/Mage/Page/view/frontend/switch/languages.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Page/view/frontend/switch/stores.phtml b/app/code/core/Mage/Page/view/frontend/switch/stores.phtml index e9e5d4e5d2a6a58cbe4825f91c17d001b574e902..a19b3e60ffdd45d159d87134232170a9135cab27 100644 --- a/app/code/core/Mage/Page/view/frontend/switch/stores.phtml +++ b/app/code/core/Mage/Page/view/frontend/switch/stores.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Page/view/frontend/template/container.phtml b/app/code/core/Mage/Page/view/frontend/template/container.phtml index c499044d4679a7a985eeeef70b31da0475eb008c..bbad5fb7523398e520a85275346371fd0ecad0a9 100644 --- a/app/code/core/Mage/Page/view/frontend/template/container.phtml +++ b/app/code/core/Mage/Page/view/frontend/template/container.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Page/view/frontend/template/links.phtml b/app/code/core/Mage/Page/view/frontend/template/links.phtml index 42aff1bb3ec8bc48d26eff23c779a5f337628b46..f757ba18c750c479243fa2c00eefc22f602759f1 100644 --- a/app/code/core/Mage/Page/view/frontend/template/links.phtml +++ b/app/code/core/Mage/Page/view/frontend/template/links.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Page/view/frontend/template/linksblock.phtml b/app/code/core/Mage/Page/view/frontend/template/linksblock.phtml index e0df5407e68d8568d516d889e9810b0a5fbd9aba..c46773ca361d277491012c064160fec842a7d8e8 100644 --- a/app/code/core/Mage/Page/view/frontend/template/linksblock.phtml +++ b/app/code/core/Mage/Page/view/frontend/template/linksblock.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/PageCache/Block/Adminhtml/Cache/Additional.php b/app/code/core/Mage/PageCache/Block/Adminhtml/Cache/Additional.php index 60bce345751e61f25d00619e2b403cca368afe35..1463ae7eb64207ffdbd5feab8e5d8877afd80df4 100644 --- a/app/code/core/Mage/PageCache/Block/Adminhtml/Cache/Additional.php +++ b/app/code/core/Mage/PageCache/Block/Adminhtml/Cache/Additional.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_PageCache - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/PageCache/Helper/Data.php b/app/code/core/Mage/PageCache/Helper/Data.php index f51cf62070d0c453918560460d6439db96cab9b2..a0c5ba9dc4093804f9c134fe48583e342a73b0e6 100644 --- a/app/code/core/Mage/PageCache/Helper/Data.php +++ b/app/code/core/Mage/PageCache/Helper/Data.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_PageCache - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/PageCache/Model/Control/Interface.php b/app/code/core/Mage/PageCache/Model/Control/Interface.php index 0f0504ad865d42b8a538cb7205d32d9bcdf2313b..ab40b5f59f6a08088262b5c5a3a0d23a87932f7c 100644 --- a/app/code/core/Mage/PageCache/Model/Control/Interface.php +++ b/app/code/core/Mage/PageCache/Model/Control/Interface.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_PageCache - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/PageCache/Model/Control/Zend.php b/app/code/core/Mage/PageCache/Model/Control/Zend.php index 56707cd8b432a975e1cd6ec1dfcfe3513007f57b..91155872741fa5fc8103765edc955336b0014b27 100644 --- a/app/code/core/Mage/PageCache/Model/Control/Zend.php +++ b/app/code/core/Mage/PageCache/Model/Control/Zend.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_PageCache - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/PageCache/Model/Observer.php b/app/code/core/Mage/PageCache/Model/Observer.php index 9bfe434d314c4426cc710df2b9a1d52e079bc3e4..f603ce600975058abb94a1b76b4b08e27bbd2975 100644 --- a/app/code/core/Mage/PageCache/Model/Observer.php +++ b/app/code/core/Mage/PageCache/Model/Observer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_PageCache - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/PageCache/Model/System/Config/Source/Controls.php b/app/code/core/Mage/PageCache/Model/System/Config/Source/Controls.php index 6d5d7c2d2345f3897262d2c1dba7ee0684cae6ae..9f901eb698aa83a31c3af734a95362d2cb70b7c0 100644 --- a/app/code/core/Mage/PageCache/Model/System/Config/Source/Controls.php +++ b/app/code/core/Mage/PageCache/Model/System/Config/Source/Controls.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_PageCache - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/PageCache/controllers/Adminhtml/PageCacheController.php b/app/code/core/Mage/PageCache/controllers/Adminhtml/PageCacheController.php index badccb6bfcc9d4975552509d98de56126180a262..838a4b2009401a1779efa8b1faaa92c163fb3109 100644 --- a/app/code/core/Mage/PageCache/controllers/Adminhtml/PageCacheController.php +++ b/app/code/core/Mage/PageCache/controllers/Adminhtml/PageCacheController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_PageCache - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/PageCache/etc/adminhtml/acl.xml b/app/code/core/Mage/PageCache/etc/adminhtml/acl.xml index 79db77e6d073e43dd30f63564392e67fe2123d51..14e70d7e95dd050299c7d435bb575f69e4b62127 100644 --- a/app/code/core/Mage/PageCache/etc/adminhtml/acl.xml +++ b/app/code/core/Mage/PageCache/etc/adminhtml/acl.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_PageCache - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/PageCache/etc/adminhtml/system.xml b/app/code/core/Mage/PageCache/etc/adminhtml/system.xml index 7c2a74a9dee6f85be704007f695e9f982136005e..940abd2276d10e266c1809dc07bbcd0da84c725a 100644 --- a/app/code/core/Mage/PageCache/etc/adminhtml/system.xml +++ b/app/code/core/Mage/PageCache/etc/adminhtml/system.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_PageCache - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/PageCache/etc/config.xml b/app/code/core/Mage/PageCache/etc/config.xml index 7b178b40a258f1a5a281bfdb95a2ba377489090b..ba29b59a2cf71af2d7dc1e2382b4115c7f66a4b5 100644 --- a/app/code/core/Mage/PageCache/etc/config.xml +++ b/app/code/core/Mage/PageCache/etc/config.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_PageCache - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/PageCache/view/adminhtml/cache/additional.phtml b/app/code/core/Mage/PageCache/view/adminhtml/cache/additional.phtml index 4da82a9d6be84a5a417d98f42e0465c0a999b733..382e3939dfc5c6b54d03672e31a2e9ad422e6161 100644 --- a/app/code/core/Mage/PageCache/view/adminhtml/cache/additional.phtml +++ b/app/code/core/Mage/PageCache/view/adminhtml/cache/additional.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/PageCache/view/adminhtml/layout.xml b/app/code/core/Mage/PageCache/view/adminhtml/layout.xml index abafe35054101b4240fc2f98fabf17a9a9dcded9..35b4c3e3468b03ff53b7c28fa1f537382107caf3 100644 --- a/app/code/core/Mage/PageCache/view/adminhtml/layout.xml +++ b/app/code/core/Mage/PageCache/view/adminhtml/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/PageCache/view/frontend/cookie.phtml b/app/code/core/Mage/PageCache/view/frontend/cookie.phtml index 735299598acecd2014722251e15d1fe2a21952bc..047f574ae5e1522655bbbec1f2046b46f1912df6 100644 --- a/app/code/core/Mage/PageCache/view/frontend/cookie.phtml +++ b/app/code/core/Mage/PageCache/view/frontend/cookie.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/PageCache/view/frontend/js/cookie.js b/app/code/core/Mage/PageCache/view/frontend/js/cookie.js index 8dadf88495464f4d737c37e2cf7aa63b9d315623..e764025caa0d0b88c3c39d101fa1d87e6241cf9e 100644 --- a/app/code/core/Mage/PageCache/view/frontend/js/cookie.js +++ b/app/code/core/Mage/PageCache/view/frontend/js/cookie.js @@ -19,7 +19,7 @@ * * @category PageCache * @package js - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /*jshint browser:true jquery:true*/ diff --git a/app/code/core/Mage/PageCache/view/frontend/layout.xml b/app/code/core/Mage/PageCache/view/frontend/layout.xml index b8b58c30723215b702483b136732e31eea717a24..072a99869d026f495a44dc510e726ad2c0cf15d9 100644 --- a/app/code/core/Mage/PageCache/view/frontend/layout.xml +++ b/app/code/core/Mage/PageCache/view/frontend/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Paygate/Block/Authorizenet/Form/Cc.php b/app/code/core/Mage/Paygate/Block/Authorizenet/Form/Cc.php index 85eea89bd4e8734748f7dac22438391defe00cb6..76e874d88fcd72710e039c689404b0d5fc39495d 100644 --- a/app/code/core/Mage/Paygate/Block/Authorizenet/Form/Cc.php +++ b/app/code/core/Mage/Paygate/Block/Authorizenet/Form/Cc.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paygate - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paygate/Block/Authorizenet/Info/Cc.php b/app/code/core/Mage/Paygate/Block/Authorizenet/Info/Cc.php index 7f8f1a4dc22baf561cf57552700296f213e5020e..662db6d64b138998773aa2a65786d5618dd8b43f 100644 --- a/app/code/core/Mage/Paygate/Block/Authorizenet/Info/Cc.php +++ b/app/code/core/Mage/Paygate/Block/Authorizenet/Info/Cc.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paygate - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paygate/Helper/Data.php b/app/code/core/Mage/Paygate/Helper/Data.php index 792be4ebe59bc1a4607648b746d9064876f624f4..9da52d5701594a2717bc9b96935a55c491558510 100644 --- a/app/code/core/Mage/Paygate/Helper/Data.php +++ b/app/code/core/Mage/Paygate/Helper/Data.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paygate - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paygate/Model/Authorizenet.php b/app/code/core/Mage/Paygate/Model/Authorizenet.php index 6c53bc607318dc98e2693637daa26dfcf799692d..a22db3bc6dbea053431039e1019f7a7b3fd2a0e5 100644 --- a/app/code/core/Mage/Paygate/Model/Authorizenet.php +++ b/app/code/core/Mage/Paygate/Model/Authorizenet.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paygate - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paygate/Model/Authorizenet/Cards.php b/app/code/core/Mage/Paygate/Model/Authorizenet/Cards.php index 54aa8f0b6c2b5e63eab097e47bae71f76ca54ba6..1cb5abe9aa0466bfecab742b98b3565ecc5f0e30 100644 --- a/app/code/core/Mage/Paygate/Model/Authorizenet/Cards.php +++ b/app/code/core/Mage/Paygate/Model/Authorizenet/Cards.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paygate - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paygate/Model/Authorizenet/Debug.php b/app/code/core/Mage/Paygate/Model/Authorizenet/Debug.php index bed2b1139b39d2e6cd5dd3062b4cda2918bb8987..98c80c45983edcb44399caf1477a92929283e402 100644 --- a/app/code/core/Mage/Paygate/Model/Authorizenet/Debug.php +++ b/app/code/core/Mage/Paygate/Model/Authorizenet/Debug.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paygate - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paygate/Model/Authorizenet/Request.php b/app/code/core/Mage/Paygate/Model/Authorizenet/Request.php index a545ac8f14892e96e8082e27f93af95736a11a60..9e23b491621368ff0d0424edea45ab1bb8da83c6 100644 --- a/app/code/core/Mage/Paygate/Model/Authorizenet/Request.php +++ b/app/code/core/Mage/Paygate/Model/Authorizenet/Request.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paygate - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paygate/Model/Authorizenet/Result.php b/app/code/core/Mage/Paygate/Model/Authorizenet/Result.php index db16d2973b3755ea5c2086ef1d057927d30ea3a0..c52090140ac621ef6cadc9ff2ef7cc900fe23cb5 100644 --- a/app/code/core/Mage/Paygate/Model/Authorizenet/Result.php +++ b/app/code/core/Mage/Paygate/Model/Authorizenet/Result.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paygate - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paygate/Model/Authorizenet/Source/Cctype.php b/app/code/core/Mage/Paygate/Model/Authorizenet/Source/Cctype.php index 680eb8b7c5415d2add54b4e26ad7d45297b1eb21..ba3d5cd691e473503bf6dd1cf549aa01d9cfc714 100644 --- a/app/code/core/Mage/Paygate/Model/Authorizenet/Source/Cctype.php +++ b/app/code/core/Mage/Paygate/Model/Authorizenet/Source/Cctype.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paygate - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paygate/Model/Authorizenet/Source/PaymentAction.php b/app/code/core/Mage/Paygate/Model/Authorizenet/Source/PaymentAction.php index 0fd926df185e7d3d4c0c2d1aae44ef940ec80800..dce89822a75b823159c40e1b1e5f27d47d928260 100644 --- a/app/code/core/Mage/Paygate/Model/Authorizenet/Source/PaymentAction.php +++ b/app/code/core/Mage/Paygate/Model/Authorizenet/Source/PaymentAction.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paygate - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paygate/Model/Resource/Authorizenet/Debug.php b/app/code/core/Mage/Paygate/Model/Resource/Authorizenet/Debug.php index cb48aa61ba1df75caa92520f152b9d622cd41606..1f47cc0bad4cd146616dd16cc180c67206aac46e 100755 --- a/app/code/core/Mage/Paygate/Model/Resource/Authorizenet/Debug.php +++ b/app/code/core/Mage/Paygate/Model/Resource/Authorizenet/Debug.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paygate - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paygate/Model/Resource/Authorizenet/Debug/Collection.php b/app/code/core/Mage/Paygate/Model/Resource/Authorizenet/Debug/Collection.php index fffc4f5c74001c1308f196a8bf33f80078aebb7d..e20a47b9f1f9d7b854f4716b9c9d5fc86e203472 100755 --- a/app/code/core/Mage/Paygate/Model/Resource/Authorizenet/Debug/Collection.php +++ b/app/code/core/Mage/Paygate/Model/Resource/Authorizenet/Debug/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paygate - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paygate/controllers/Adminhtml/Paygate/Authorizenet/PaymentController.php b/app/code/core/Mage/Paygate/controllers/Adminhtml/Paygate/Authorizenet/PaymentController.php index 8aff4727353809bed2c055926669753e2b7ed2f7..76163d77ec30c8804eeeac43a998c53f2416edb9 100644 --- a/app/code/core/Mage/Paygate/controllers/Adminhtml/Paygate/Authorizenet/PaymentController.php +++ b/app/code/core/Mage/Paygate/controllers/Adminhtml/Paygate/Authorizenet/PaymentController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paygate - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paygate/controllers/Authorizenet/PaymentController.php b/app/code/core/Mage/Paygate/controllers/Authorizenet/PaymentController.php index c14a122bcf49e69f2a0a0c3cb7030c3e0646ca9e..5754b8cbe6072ef3e5e7ca23493d3bea9d2e0657 100644 --- a/app/code/core/Mage/Paygate/controllers/Authorizenet/PaymentController.php +++ b/app/code/core/Mage/Paygate/controllers/Authorizenet/PaymentController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paygate - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paygate/etc/adminhtml/system.xml b/app/code/core/Mage/Paygate/etc/adminhtml/system.xml index 60dc3a4267a90193998a5ca0b8a68ecc9c6fff2e..d3c81928c39d089a50a736b4f1129cab2ad5f831 100644 --- a/app/code/core/Mage/Paygate/etc/adminhtml/system.xml +++ b/app/code/core/Mage/Paygate/etc/adminhtml/system.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Paygate - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Paygate/etc/config.xml b/app/code/core/Mage/Paygate/etc/config.xml index d400f5ab769537f66d1b293e23ea70a2287b557d..2575d59e6023f13b3b408316ee5d2a8685df6573 100644 --- a/app/code/core/Mage/Paygate/etc/config.xml +++ b/app/code/core/Mage/Paygate/etc/config.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Paygate - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Paygate/sql/paygate_setup/install-1.6.0.0.php b/app/code/core/Mage/Paygate/sql/paygate_setup/install-1.6.0.0.php index eecfd6698b23f6dfa40e68a73795907872e35fc4..1c8f04598cbdfb86e7bf0687d74449cb7a3eeaec 100644 --- a/app/code/core/Mage/Paygate/sql/paygate_setup/install-1.6.0.0.php +++ b/app/code/core/Mage/Paygate/sql/paygate_setup/install-1.6.0.0.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paygate - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paygate/view/adminhtml/form/cc.phtml b/app/code/core/Mage/Paygate/view/adminhtml/form/cc.phtml index d9011fc4b4209f3ac9057ff385d00a2b1fd7afca..6b2b1b28f77aff012b64ab87dd6a485a4b033972 100644 --- a/app/code/core/Mage/Paygate/view/adminhtml/form/cc.phtml +++ b/app/code/core/Mage/Paygate/view/adminhtml/form/cc.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Paygate/view/adminhtml/info/cc.phtml b/app/code/core/Mage/Paygate/view/adminhtml/info/cc.phtml index 3152eb58eb213b660e3e07b8071ebf7e2f023d31..f6aa9014700f594cdafc5ac1cd3dc7c98ff8765d 100644 --- a/app/code/core/Mage/Paygate/view/adminhtml/info/cc.phtml +++ b/app/code/core/Mage/Paygate/view/adminhtml/info/cc.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Paygate/view/adminhtml/info/pdf.phtml b/app/code/core/Mage/Paygate/view/adminhtml/info/pdf.phtml index 86fa9f24615ae4b12cbadec9439f33de9204463f..c3b34c3a9e3e590cc6177fecc77e0db8bf264ee0 100644 --- a/app/code/core/Mage/Paygate/view/adminhtml/info/pdf.phtml +++ b/app/code/core/Mage/Paygate/view/adminhtml/info/pdf.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Paygate/view/frontend/form/cc.phtml b/app/code/core/Mage/Paygate/view/frontend/form/cc.phtml index 0313b2559deb6593a57e735bb8ced178980204f3..e50f2d0a218ae6f6d3f2ce2d1a66593dadf9013c 100644 --- a/app/code/core/Mage/Paygate/view/frontend/form/cc.phtml +++ b/app/code/core/Mage/Paygate/view/frontend/form/cc.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Paygate/view/frontend/info/cc.phtml b/app/code/core/Mage/Paygate/view/frontend/info/cc.phtml index b903e6b15a2865cef7af59ba37c5354f27091665..2f26341dc7eb7e07c4b67ca85c828bec9efe9b06 100644 --- a/app/code/core/Mage/Paygate/view/frontend/info/cc.phtml +++ b/app/code/core/Mage/Paygate/view/frontend/info/cc.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Payment/Block/Catalog/Product/View/Profile.php b/app/code/core/Mage/Payment/Block/Catalog/Product/View/Profile.php index 2cbcf6ab8d7cb4fa87db8c63919619029744ae8f..a0f10a8b6b30314f2b9cd56d8293be69cb5cc5a3 100644 --- a/app/code/core/Mage/Payment/Block/Catalog/Product/View/Profile.php +++ b/app/code/core/Mage/Payment/Block/Catalog/Product/View/Profile.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Payment - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Payment/Block/Form.php b/app/code/core/Mage/Payment/Block/Form.php index bb0aad77fef6afec15d4eb793a976ee32052ff66..bb82d38e26248f11881957aa4e4c5e71020d9a78 100644 --- a/app/code/core/Mage/Payment/Block/Form.php +++ b/app/code/core/Mage/Payment/Block/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Payment - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Payment/Block/Form/Banktransfer.php b/app/code/core/Mage/Payment/Block/Form/Banktransfer.php index 06681d605989fb562761d407d78db1c10ae9b1de..7656b6eba0bbb7ceaba9be79bfac119f8ce0330b 100644 --- a/app/code/core/Mage/Payment/Block/Form/Banktransfer.php +++ b/app/code/core/Mage/Payment/Block/Form/Banktransfer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Payment - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Payment/Block/Form/Cashondelivery.php b/app/code/core/Mage/Payment/Block/Form/Cashondelivery.php index 606731df9bde6c38fdd8f44f31f37f24818ec687..8ae3123aef172cd4ef131d6329b14ec775e631a5 100644 --- a/app/code/core/Mage/Payment/Block/Form/Cashondelivery.php +++ b/app/code/core/Mage/Payment/Block/Form/Cashondelivery.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Payment - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Payment/Block/Form/Cc.php b/app/code/core/Mage/Payment/Block/Form/Cc.php index cde1a18ebdc787d47ce34257c509b256664796bd..6b1227b1b82cdd8f4038598b68131b117f6aabdc 100644 --- a/app/code/core/Mage/Payment/Block/Form/Cc.php +++ b/app/code/core/Mage/Payment/Block/Form/Cc.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Payment - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Payment/Block/Form/Ccsave.php b/app/code/core/Mage/Payment/Block/Form/Ccsave.php index f77f20324eb40dfc0ce5760e80456c871770171f..454401b9284f2f9b156c0073df113522005888f9 100644 --- a/app/code/core/Mage/Payment/Block/Form/Ccsave.php +++ b/app/code/core/Mage/Payment/Block/Form/Ccsave.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Payment - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Payment/Block/Form/Checkmo.php b/app/code/core/Mage/Payment/Block/Form/Checkmo.php index 24f978021b744c5f3402bf63653766b54399bf4b..423abbd943939d46151c3ac53ca06acbf007c3e5 100644 --- a/app/code/core/Mage/Payment/Block/Form/Checkmo.php +++ b/app/code/core/Mage/Payment/Block/Form/Checkmo.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Payment - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Payment/Block/Form/Container.php b/app/code/core/Mage/Payment/Block/Form/Container.php index 7025e1e731b8ba49e5179db24a497e0656533fc2..b9de3d3914e5fdbc3ba5b269e9ffeae420b8696a 100644 --- a/app/code/core/Mage/Payment/Block/Form/Container.php +++ b/app/code/core/Mage/Payment/Block/Form/Container.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Payment - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Payment/Block/Form/Purchaseorder.php b/app/code/core/Mage/Payment/Block/Form/Purchaseorder.php index 3c798a398323f60ffa0b1b2d20d8e2ff99a24c96..a7a44b589b76702311a8d57c353199c4a9f7ee07 100644 --- a/app/code/core/Mage/Payment/Block/Form/Purchaseorder.php +++ b/app/code/core/Mage/Payment/Block/Form/Purchaseorder.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Payment - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Payment/Block/Info.php b/app/code/core/Mage/Payment/Block/Info.php index 632fabf2f5300b31007c1925a43715e04b3dba3d..eaca8e70fffbc414cb4b1c4514456e3ae0d0120e 100644 --- a/app/code/core/Mage/Payment/Block/Info.php +++ b/app/code/core/Mage/Payment/Block/Info.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Payment - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Payment/Block/Info/Cc.php b/app/code/core/Mage/Payment/Block/Info/Cc.php index 9a4f1a5cde340580955a09d5c3b219898a53523f..29763b6c7bf0a598dbe1e96c892a6803661ef17e 100644 --- a/app/code/core/Mage/Payment/Block/Info/Cc.php +++ b/app/code/core/Mage/Payment/Block/Info/Cc.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Payment - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Payment/Block/Info/Ccsave.php b/app/code/core/Mage/Payment/Block/Info/Ccsave.php index 97ae33b5b92f0b7847772f1b6310301766c30a4f..9138828a60edbc835061227ebb3c536752efd84b 100644 --- a/app/code/core/Mage/Payment/Block/Info/Ccsave.php +++ b/app/code/core/Mage/Payment/Block/Info/Ccsave.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Payment - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Payment/Block/Info/Checkmo.php b/app/code/core/Mage/Payment/Block/Info/Checkmo.php index 541ec68af0da12ee1b00369495a74264568d62f6..8373e45436c99943bb30cd4516725045794f28ad 100644 --- a/app/code/core/Mage/Payment/Block/Info/Checkmo.php +++ b/app/code/core/Mage/Payment/Block/Info/Checkmo.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Payment - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Payment/Block/Info/ContainerAbstract.php b/app/code/core/Mage/Payment/Block/Info/ContainerAbstract.php index 475da40a9c09fb6e0ce28e061eda5a997966b29b..d6edadf4277013caca8a61062a784e6525f23947 100644 --- a/app/code/core/Mage/Payment/Block/Info/ContainerAbstract.php +++ b/app/code/core/Mage/Payment/Block/Info/ContainerAbstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Payment - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Payment/Block/Info/Instructions.php b/app/code/core/Mage/Payment/Block/Info/Instructions.php index f1eb8d4a6926be9d7a4bb2d0911b7747af08bc1e..181c4afc90f6122a02365809553b9e6014ec0b21 100644 --- a/app/code/core/Mage/Payment/Block/Info/Instructions.php +++ b/app/code/core/Mage/Payment/Block/Info/Instructions.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Payment - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Payment/Block/Info/Purchaseorder.php b/app/code/core/Mage/Payment/Block/Info/Purchaseorder.php index a1d999ac59eed7667180313b82352a60cf02ab57..016af10c4d709fa7e364e8245f2ddb9ccd0d0d59 100644 --- a/app/code/core/Mage/Payment/Block/Info/Purchaseorder.php +++ b/app/code/core/Mage/Payment/Block/Info/Purchaseorder.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Payment - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Payment/Exception.php b/app/code/core/Mage/Payment/Exception.php index a770340ab5c84b2fdb0627ef2d379387e12c3475..479bde69ffaaf8a574f74bd00bc47a07e46e2674 100644 --- a/app/code/core/Mage/Payment/Exception.php +++ b/app/code/core/Mage/Payment/Exception.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Payment - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Payment/Helper/Data.php b/app/code/core/Mage/Payment/Helper/Data.php index c6608a0bb6da8f48da9b5bd1be4557fd7fef4de5..5076d4bad603dc25eb08de868c54513a4b933a6d 100644 --- a/app/code/core/Mage/Payment/Helper/Data.php +++ b/app/code/core/Mage/Payment/Helper/Data.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Payment - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Payment/Model/Billing/Agreement/MethodInterface.php b/app/code/core/Mage/Payment/Model/Billing/Agreement/MethodInterface.php index ac185c333dd7df80dc65d196f61fb84a98d307c7..0015f0335761f0c91e43d96ec5c18ab192abd172 100644 --- a/app/code/core/Mage/Payment/Model/Billing/Agreement/MethodInterface.php +++ b/app/code/core/Mage/Payment/Model/Billing/Agreement/MethodInterface.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Payment - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Payment/Model/Billing/AgreementAbstract.php b/app/code/core/Mage/Payment/Model/Billing/AgreementAbstract.php index 3bc77adc2599552134de8d8bf407e719d8204801..77ffbb23ed30984f9a25ac87128b4f7afe499a8d 100644 --- a/app/code/core/Mage/Payment/Model/Billing/AgreementAbstract.php +++ b/app/code/core/Mage/Payment/Model/Billing/AgreementAbstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Payment - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Payment/Model/Config.php b/app/code/core/Mage/Payment/Model/Config.php index 28a90dc975402051f5fc15187fa589be458d6aed..c461584a814e13f318c3a7fdaa0b394ec18abf0a 100644 --- a/app/code/core/Mage/Payment/Model/Config.php +++ b/app/code/core/Mage/Payment/Model/Config.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Payment - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Payment/Model/Config/Source/Allmethods.php b/app/code/core/Mage/Payment/Model/Config/Source/Allmethods.php index 51b194bcf6c98e14e8141c76c02b0ee2538bb501..abc46cba759f7d08875af0e0d68ba1a410b9944e 100644 --- a/app/code/core/Mage/Payment/Model/Config/Source/Allmethods.php +++ b/app/code/core/Mage/Payment/Model/Config/Source/Allmethods.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Payment - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Payment/Model/Config/Source/Allowedmethods.php b/app/code/core/Mage/Payment/Model/Config/Source/Allowedmethods.php index bd0dc95a36f3148ed3285ef163684fbfba8c7c4b..6a36ee77a4cf52b56c114955d1ce0dc819f7c5f9 100644 --- a/app/code/core/Mage/Payment/Model/Config/Source/Allowedmethods.php +++ b/app/code/core/Mage/Payment/Model/Config/Source/Allowedmethods.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Payment - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Payment/Model/Config/Source/Allspecificcountries.php b/app/code/core/Mage/Payment/Model/Config/Source/Allspecificcountries.php index 16883f2f3e1e68f52b28ac5a848c13993ca9c93e..46e0a46ab93c73661a19fcf3c6cb9b9573e92ab3 100644 --- a/app/code/core/Mage/Payment/Model/Config/Source/Allspecificcountries.php +++ b/app/code/core/Mage/Payment/Model/Config/Source/Allspecificcountries.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Payment - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Payment/Model/Config/Source/Cctype.php b/app/code/core/Mage/Payment/Model/Config/Source/Cctype.php index 48392e7105ce2c724d5af89666778b44c82c706b..6ebbee9984238eeabcf2d78e6a343ced115330d8 100644 --- a/app/code/core/Mage/Payment/Model/Config/Source/Cctype.php +++ b/app/code/core/Mage/Payment/Model/Config/Source/Cctype.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Payment - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Payment/Model/Info.php b/app/code/core/Mage/Payment/Model/Info.php index 78e707d05fc408a734a87462e044bf005ab4c3b3..ff6384f94309b254ab3c2c05465f845ecbdadca9 100644 --- a/app/code/core/Mage/Payment/Model/Info.php +++ b/app/code/core/Mage/Payment/Model/Info.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Payment - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Payment/Model/Info/Exception.php b/app/code/core/Mage/Payment/Model/Info/Exception.php index cd9e57df42803b92bcb8e1c08220c165cc5c2cd9..8a8eeecdaa900bcab4aac133f9f60f4834823271 100644 --- a/app/code/core/Mage/Payment/Model/Info/Exception.php +++ b/app/code/core/Mage/Payment/Model/Info/Exception.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Payment - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Payment/Model/Method/Abstract.php b/app/code/core/Mage/Payment/Model/Method/Abstract.php index 50ce6086ed235b4427e9044474dc632516dc2f54..e656b59ca57f9485b55ca8d753219bf09c40afbe 100644 --- a/app/code/core/Mage/Payment/Model/Method/Abstract.php +++ b/app/code/core/Mage/Payment/Model/Method/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Payment - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Payment/Model/Method/Banktransfer.php b/app/code/core/Mage/Payment/Model/Method/Banktransfer.php index 92f01677d9719069488f377dec68507c8cc57b45..2d614066263032c2552dcea464c008554327e5bf 100644 --- a/app/code/core/Mage/Payment/Model/Method/Banktransfer.php +++ b/app/code/core/Mage/Payment/Model/Method/Banktransfer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Payment - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Payment/Model/Method/Cashondelivery.php b/app/code/core/Mage/Payment/Model/Method/Cashondelivery.php index 62f1b689f67621ef93ea8b44d063b17ac09d84de..dcff2096c7b40624c49929a7d31e5f031829dc77 100644 --- a/app/code/core/Mage/Payment/Model/Method/Cashondelivery.php +++ b/app/code/core/Mage/Payment/Model/Method/Cashondelivery.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Payment - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Payment/Model/Method/Cc.php b/app/code/core/Mage/Payment/Model/Method/Cc.php index dff339cc6baa9bc7f54dba19b837db228b612b23..bccb62c4006909ff4266315498ceae5ec8c6e195 100644 --- a/app/code/core/Mage/Payment/Model/Method/Cc.php +++ b/app/code/core/Mage/Payment/Model/Method/Cc.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Payment - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Payment/Model/Method/Ccsave.php b/app/code/core/Mage/Payment/Model/Method/Ccsave.php index ddfff8f2800da6f36e638261674b794b119a6340..a348ab9d033450c1159f128cfeceb655d0740658 100644 --- a/app/code/core/Mage/Payment/Model/Method/Ccsave.php +++ b/app/code/core/Mage/Payment/Model/Method/Ccsave.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Payment - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Payment/Model/Method/Checkmo.php b/app/code/core/Mage/Payment/Model/Method/Checkmo.php index b70345483f4bc28b3bca260e74ad45a0c43472be..4f315b75793967c638ef1a61963e661723df79fb 100644 --- a/app/code/core/Mage/Payment/Model/Method/Checkmo.php +++ b/app/code/core/Mage/Payment/Model/Method/Checkmo.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Payment - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Payment/Model/Method/Free.php b/app/code/core/Mage/Payment/Model/Method/Free.php index c2c3814077ee4d8cceab2d175596210e5de2a0c4..b817d5db62a87943d7635304740b07bd8811c81d 100644 --- a/app/code/core/Mage/Payment/Model/Method/Free.php +++ b/app/code/core/Mage/Payment/Model/Method/Free.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Payment - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Payment/Model/Method/Purchaseorder.php b/app/code/core/Mage/Payment/Model/Method/Purchaseorder.php index f3bd09dc92efbf0f2237373b175f88e86310de8c..375b4881242a61cbeed7865a20fd1e9c28e4eca2 100644 --- a/app/code/core/Mage/Payment/Model/Method/Purchaseorder.php +++ b/app/code/core/Mage/Payment/Model/Method/Purchaseorder.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Payment - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Payment/Model/Observer.php b/app/code/core/Mage/Payment/Model/Observer.php index dcac984f1b3f70bedee5b20876d76355b0b19d58..cd44f8e66f254d36fec358fa4d3c1ed5678e2a2d 100644 --- a/app/code/core/Mage/Payment/Model/Observer.php +++ b/app/code/core/Mage/Payment/Model/Observer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Payment - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Payment/Model/Paygate/Result.php b/app/code/core/Mage/Payment/Model/Paygate/Result.php index 309b48fd498445a22b5f05be7c5a58d253e21ed3..1d9a66e232b615e410978c31f99534cc493cd104 100644 --- a/app/code/core/Mage/Payment/Model/Paygate/Result.php +++ b/app/code/core/Mage/Payment/Model/Paygate/Result.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Payment - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Payment/Model/Recurring/Profile.php b/app/code/core/Mage/Payment/Model/Recurring/Profile.php index bbdcc1d3f1da5d3d531ee9c2b03b3975a8d67d68..90f32bbe2c78e1d4e1feaf770eaa288363badf27 100644 --- a/app/code/core/Mage/Payment/Model/Recurring/Profile.php +++ b/app/code/core/Mage/Payment/Model/Recurring/Profile.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Payment - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Payment/Model/Recurring/Profile/MethodInterface.php b/app/code/core/Mage/Payment/Model/Recurring/Profile/MethodInterface.php index 79d4b6cf021d498ffea508f79e51f3ede251e3a6..6c46d0b9362d321b61f0bed54e39cb7394231edb 100644 --- a/app/code/core/Mage/Payment/Model/Recurring/Profile/MethodInterface.php +++ b/app/code/core/Mage/Payment/Model/Recurring/Profile/MethodInterface.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Payment - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Payment/Model/Source/Cctype.php b/app/code/core/Mage/Payment/Model/Source/Cctype.php index beedd03721a200ff4cce32b049c7933f0c083009..b7579c04459c9e9e3c62da0a468f5ebfe24c2aab 100644 --- a/app/code/core/Mage/Payment/Model/Source/Cctype.php +++ b/app/code/core/Mage/Payment/Model/Source/Cctype.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Payment - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Payment/Model/Source/Invoice.php b/app/code/core/Mage/Payment/Model/Source/Invoice.php index 1685614951dc89d950bd302640453d72da36a7e8..a6c0a01cebbd85b8affa32f949aefaeaa171e248 100644 --- a/app/code/core/Mage/Payment/Model/Source/Invoice.php +++ b/app/code/core/Mage/Payment/Model/Source/Invoice.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Payment - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Payment/etc/adminhtml/acl.xml b/app/code/core/Mage/Payment/etc/adminhtml/acl.xml index b5c1182329712679e6ba6c64e634144cd53cb468..4a59706eed75d1fbca223d3b1d29e33c7461ab87 100644 --- a/app/code/core/Mage/Payment/etc/adminhtml/acl.xml +++ b/app/code/core/Mage/Payment/etc/adminhtml/acl.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Payment - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Payment/etc/adminhtml/system.xml b/app/code/core/Mage/Payment/etc/adminhtml/system.xml index 96bd7fb66629372c4061e4ecb92b6c4fd1f5d1f3..5d8e8150846d2f563a02a8adac59fa5fec15a7c3 100644 --- a/app/code/core/Mage/Payment/etc/adminhtml/system.xml +++ b/app/code/core/Mage/Payment/etc/adminhtml/system.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Payment - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Payment/etc/config.xml b/app/code/core/Mage/Payment/etc/config.xml index 08127082be3e52e1de326de981d4043a8b3394d2..38b460c8a88913f726bcaaea80938fb80a148f62 100644 --- a/app/code/core/Mage/Payment/etc/config.xml +++ b/app/code/core/Mage/Payment/etc/config.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Payment - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Payment/view/adminhtml/form/banktransfer.phtml b/app/code/core/Mage/Payment/view/adminhtml/form/banktransfer.phtml index 9e8b0855de42462c91759274e76baa3e0dce0044..e9b780c23f084bf24f4664045fe138a9b5a729c9 100644 --- a/app/code/core/Mage/Payment/view/adminhtml/form/banktransfer.phtml +++ b/app/code/core/Mage/Payment/view/adminhtml/form/banktransfer.phtml @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Payment - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Payment/view/adminhtml/form/cashondelivery.phtml b/app/code/core/Mage/Payment/view/adminhtml/form/cashondelivery.phtml index dc4f2b69d50c7824260600bf0d809e366477cc7d..99a288e85480ebe622a1e4d4f4f97480c4363062 100644 --- a/app/code/core/Mage/Payment/view/adminhtml/form/cashondelivery.phtml +++ b/app/code/core/Mage/Payment/view/adminhtml/form/cashondelivery.phtml @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Payment - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Payment/view/adminhtml/form/cc.phtml b/app/code/core/Mage/Payment/view/adminhtml/form/cc.phtml index 8c097629d371e1f501ef39e6175a1eac6e4f9f81..7e0c13fb664532a91eb79a65e4d3c0571a3b3f54 100644 --- a/app/code/core/Mage/Payment/view/adminhtml/form/cc.phtml +++ b/app/code/core/Mage/Payment/view/adminhtml/form/cc.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Payment/view/adminhtml/form/ccsave.phtml b/app/code/core/Mage/Payment/view/adminhtml/form/ccsave.phtml index 1bde17748a2d16f92fa7742d8b78c5a580678f58..58442695d931a667a9935bbc11ffa6838389015a 100644 --- a/app/code/core/Mage/Payment/view/adminhtml/form/ccsave.phtml +++ b/app/code/core/Mage/Payment/view/adminhtml/form/ccsave.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Payment/view/adminhtml/form/checkmo.phtml b/app/code/core/Mage/Payment/view/adminhtml/form/checkmo.phtml index 86cad0572a022fcef097c432877733449515aace..204b3a9157c1f26bef88518266439ffa94dfe475 100644 --- a/app/code/core/Mage/Payment/view/adminhtml/form/checkmo.phtml +++ b/app/code/core/Mage/Payment/view/adminhtml/form/checkmo.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Payment/view/adminhtml/form/purchaseorder.phtml b/app/code/core/Mage/Payment/view/adminhtml/form/purchaseorder.phtml index 011e3806dfc771fe6edac238c5572926e39ba846..b35d1dbde7c59019f3becefd96c49727f52523c5 100644 --- a/app/code/core/Mage/Payment/view/adminhtml/form/purchaseorder.phtml +++ b/app/code/core/Mage/Payment/view/adminhtml/form/purchaseorder.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Payment/view/adminhtml/info/checkmo.phtml b/app/code/core/Mage/Payment/view/adminhtml/info/checkmo.phtml index 9955b269bfc5582f5190b1c052c20e348aadbde8..0c2964cecfcc99e3adc738944070427916280cd3 100644 --- a/app/code/core/Mage/Payment/view/adminhtml/info/checkmo.phtml +++ b/app/code/core/Mage/Payment/view/adminhtml/info/checkmo.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Payment/view/adminhtml/info/default.phtml b/app/code/core/Mage/Payment/view/adminhtml/info/default.phtml index 3c9e6a4eaf43fe250a5e459d5ca0af0e80ed483f..ff4cebb2e659038fa61b3e14c81db5a15724aa03 100644 --- a/app/code/core/Mage/Payment/view/adminhtml/info/default.phtml +++ b/app/code/core/Mage/Payment/view/adminhtml/info/default.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Payment/view/adminhtml/info/instructions.phtml b/app/code/core/Mage/Payment/view/adminhtml/info/instructions.phtml index c90be384d12c19a47fbbf7821a769ea12ef7029e..54fdd23d879eda6e7b7579e0c739412c1cb863ef 100644 --- a/app/code/core/Mage/Payment/view/adminhtml/info/instructions.phtml +++ b/app/code/core/Mage/Payment/view/adminhtml/info/instructions.phtml @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Payment - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Payment/view/adminhtml/info/pdf/checkmo.phtml b/app/code/core/Mage/Payment/view/adminhtml/info/pdf/checkmo.phtml index fb224e172ae8f2397a6d0f3f1e9dc32648179e86..b96c26d3a58f19fae73e060461c6a84e8614ac39 100644 --- a/app/code/core/Mage/Payment/view/adminhtml/info/pdf/checkmo.phtml +++ b/app/code/core/Mage/Payment/view/adminhtml/info/pdf/checkmo.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Payment/view/adminhtml/info/pdf/default.phtml b/app/code/core/Mage/Payment/view/adminhtml/info/pdf/default.phtml index b88115fde7e02497a63a9f62f05ccc0ee1072d1a..88db986763b88befb780aa50ce12dd834b298fc6 100644 --- a/app/code/core/Mage/Payment/view/adminhtml/info/pdf/default.phtml +++ b/app/code/core/Mage/Payment/view/adminhtml/info/pdf/default.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Payment/view/adminhtml/info/pdf/purchaseorder.phtml b/app/code/core/Mage/Payment/view/adminhtml/info/pdf/purchaseorder.phtml index 1f1806e6aab04ffc70898598b0bc561886b4c401..05260c268ee848552b556afa5e1f9e3716bce233 100644 --- a/app/code/core/Mage/Payment/view/adminhtml/info/pdf/purchaseorder.phtml +++ b/app/code/core/Mage/Payment/view/adminhtml/info/pdf/purchaseorder.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Payment/view/adminhtml/info/purchaseorder.phtml b/app/code/core/Mage/Payment/view/adminhtml/info/purchaseorder.phtml index b8c7a80c6bde31377bc44f2dea45b2b0fd98d223..a2925ff7279a6a8a76663a2a7f428985db87eaf6 100644 --- a/app/code/core/Mage/Payment/view/adminhtml/info/purchaseorder.phtml +++ b/app/code/core/Mage/Payment/view/adminhtml/info/purchaseorder.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Payment/view/frontend/catalog/product/view/profile/options.phtml b/app/code/core/Mage/Payment/view/frontend/catalog/product/view/profile/options.phtml index 6f60a2d065555091bad39bf56769cf626ec130cf..8ce4612971c03e414c05f7034442b7e13b8395b8 100644 --- a/app/code/core/Mage/Payment/view/frontend/catalog/product/view/profile/options.phtml +++ b/app/code/core/Mage/Payment/view/frontend/catalog/product/view/profile/options.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Payment/view/frontend/catalog/product/view/profile/schedule.phtml b/app/code/core/Mage/Payment/view/frontend/catalog/product/view/profile/schedule.phtml index a07503b0ef33d28e0bd18f57cb3354202dbce4ed..fad279b9f8b19c6e98161af9ede8380907a8193a 100644 --- a/app/code/core/Mage/Payment/view/frontend/catalog/product/view/profile/schedule.phtml +++ b/app/code/core/Mage/Payment/view/frontend/catalog/product/view/profile/schedule.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Payment/view/frontend/form/banktransfer.phtml b/app/code/core/Mage/Payment/view/frontend/form/banktransfer.phtml index 9e8b0855de42462c91759274e76baa3e0dce0044..e9b780c23f084bf24f4664045fe138a9b5a729c9 100644 --- a/app/code/core/Mage/Payment/view/frontend/form/banktransfer.phtml +++ b/app/code/core/Mage/Payment/view/frontend/form/banktransfer.phtml @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Payment - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Payment/view/frontend/form/cashondelivery.phtml b/app/code/core/Mage/Payment/view/frontend/form/cashondelivery.phtml index dc4f2b69d50c7824260600bf0d809e366477cc7d..99a288e85480ebe622a1e4d4f4f97480c4363062 100644 --- a/app/code/core/Mage/Payment/view/frontend/form/cashondelivery.phtml +++ b/app/code/core/Mage/Payment/view/frontend/form/cashondelivery.phtml @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Payment - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Payment/view/frontend/form/cc.phtml b/app/code/core/Mage/Payment/view/frontend/form/cc.phtml index ff777164a61e1e324061fa8a527a49cb58e1832d..27ced2a8d783d387910eeb2897b2b6d553852ed8 100644 --- a/app/code/core/Mage/Payment/view/frontend/form/cc.phtml +++ b/app/code/core/Mage/Payment/view/frontend/form/cc.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Payment/view/frontend/form/ccsave.phtml b/app/code/core/Mage/Payment/view/frontend/form/ccsave.phtml index 8bb0dcd51ef6a1bf74e8ea6954a231a0d7d9bde9..98581c9d9a2d9fbdd7e519969521ce4f08dd7878 100644 --- a/app/code/core/Mage/Payment/view/frontend/form/ccsave.phtml +++ b/app/code/core/Mage/Payment/view/frontend/form/ccsave.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Payment/view/frontend/form/checkmo.phtml b/app/code/core/Mage/Payment/view/frontend/form/checkmo.phtml index 8ab82a4e34e40be4e2f76703060ff9436c2c8f80..8a0b232ac3a44946d43c11e057aa9929251bb2a9 100644 --- a/app/code/core/Mage/Payment/view/frontend/form/checkmo.phtml +++ b/app/code/core/Mage/Payment/view/frontend/form/checkmo.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Payment/view/frontend/form/purchaseorder.phtml b/app/code/core/Mage/Payment/view/frontend/form/purchaseorder.phtml index 083d0b12c00fd4b242f53a298354fd05897c8c35..1e01a52988dd8fe7bd58db8b67ca8cb501cfd44f 100644 --- a/app/code/core/Mage/Payment/view/frontend/form/purchaseorder.phtml +++ b/app/code/core/Mage/Payment/view/frontend/form/purchaseorder.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Payment/view/frontend/info/checkmo.phtml b/app/code/core/Mage/Payment/view/frontend/info/checkmo.phtml index 1ae44aa13d55492ca7d3e57e7910955cded8ec7c..2616201c20c7f75d1e5adc7901459676fbdbf451 100644 --- a/app/code/core/Mage/Payment/view/frontend/info/checkmo.phtml +++ b/app/code/core/Mage/Payment/view/frontend/info/checkmo.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Payment/view/frontend/info/default.phtml b/app/code/core/Mage/Payment/view/frontend/info/default.phtml index 58df9f87ce5501f859a75510e3a583543f931336..0346a216c0908f9e8900670f7147ddc13dd8d1aa 100644 --- a/app/code/core/Mage/Payment/view/frontend/info/default.phtml +++ b/app/code/core/Mage/Payment/view/frontend/info/default.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Payment/view/frontend/info/instructions.phtml b/app/code/core/Mage/Payment/view/frontend/info/instructions.phtml index c90be384d12c19a47fbbf7821a769ea12ef7029e..54fdd23d879eda6e7b7579e0c739412c1cb863ef 100644 --- a/app/code/core/Mage/Payment/view/frontend/info/instructions.phtml +++ b/app/code/core/Mage/Payment/view/frontend/info/instructions.phtml @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Payment - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Payment/view/frontend/info/purchaseorder.phtml b/app/code/core/Mage/Payment/view/frontend/info/purchaseorder.phtml index 09d298218964ed722b2f54929537fde49a684895..6be76855067570712674b2dbe1ed72f0c1acbf06 100644 --- a/app/code/core/Mage/Payment/view/frontend/info/purchaseorder.phtml +++ b/app/code/core/Mage/Payment/view/frontend/info/purchaseorder.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Payment/view/frontend/layout.xml b/app/code/core/Mage/Payment/view/frontend/layout.xml index feb7aea4f0f7006f4dc57abecebd5196438cbcaa..2648805241dfe79caccba41c7ebdbab24e8cba48 100644 --- a/app/code/core/Mage/Payment/view/frontend/layout.xml +++ b/app/code/core/Mage/Payment/view/frontend/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Paypal/Block/Adminhtml/Settlement/Details.php b/app/code/core/Mage/Paypal/Block/Adminhtml/Settlement/Details.php index 87c3d44fa9b42833692f1e38845933890854cc84..7150ec21ca20e4d5c76996b7a773bbbc10a6d483 100644 --- a/app/code/core/Mage/Paypal/Block/Adminhtml/Settlement/Details.php +++ b/app/code/core/Mage/Paypal/Block/Adminhtml/Settlement/Details.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/Block/Adminhtml/Settlement/Details/Form.php b/app/code/core/Mage/Paypal/Block/Adminhtml/Settlement/Details/Form.php index 71699828fe1e67ae584cf970eb1d7e4c42162540..f9bac6a189d431d3f27d70d0fb35a787a737cb07 100644 --- a/app/code/core/Mage/Paypal/Block/Adminhtml/Settlement/Details/Form.php +++ b/app/code/core/Mage/Paypal/Block/Adminhtml/Settlement/Details/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/Block/Adminhtml/Settlement/Report.php b/app/code/core/Mage/Paypal/Block/Adminhtml/Settlement/Report.php index 564508e813bac56c0d7d900b317b2f1c41a531ca..9b768be891b95347b7382791ff2b4f3270e25eda 100644 --- a/app/code/core/Mage/Paypal/Block/Adminhtml/Settlement/Report.php +++ b/app/code/core/Mage/Paypal/Block/Adminhtml/Settlement/Report.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/Block/Adminhtml/Settlement/Report/Grid.php b/app/code/core/Mage/Paypal/Block/Adminhtml/Settlement/Report/Grid.php index f9967690db70f28c4def794bf7edbbc3b4a63314..d975e2b0a4638b9987c854c888b18faacb7efd6a 100644 --- a/app/code/core/Mage/Paypal/Block/Adminhtml/Settlement/Report/Grid.php +++ b/app/code/core/Mage/Paypal/Block/Adminhtml/Settlement/Report/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/Block/Adminhtml/System/Config/ApiWizard.php b/app/code/core/Mage/Paypal/Block/Adminhtml/System/Config/ApiWizard.php index b0f9a09f42ddfd284ff5324633e35ae6a2a30d15..c6aa83effa4cf33eb00079c1f6c68866b258a8e3 100644 --- a/app/code/core/Mage/Paypal/Block/Adminhtml/System/Config/ApiWizard.php +++ b/app/code/core/Mage/Paypal/Block/Adminhtml/System/Config/ApiWizard.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/Block/Adminhtml/System/Config/Fieldset/Global.php b/app/code/core/Mage/Paypal/Block/Adminhtml/System/Config/Fieldset/Global.php index a236f97abe64c0cfb1f3b775756e6ed9dcf381b7..3e7bab145dd346a6610a9c00dcc120ed3381e615 100644 --- a/app/code/core/Mage/Paypal/Block/Adminhtml/System/Config/Fieldset/Global.php +++ b/app/code/core/Mage/Paypal/Block/Adminhtml/System/Config/Fieldset/Global.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/Block/Adminhtml/System/Config/Fieldset/Hint.php b/app/code/core/Mage/Paypal/Block/Adminhtml/System/Config/Fieldset/Hint.php index e300785909754326f9a1d603783a6c445602b6a1..d028b185ce0ad931a8d2dc42c92256c564adf9c0 100644 --- a/app/code/core/Mage/Paypal/Block/Adminhtml/System/Config/Fieldset/Hint.php +++ b/app/code/core/Mage/Paypal/Block/Adminhtml/System/Config/Fieldset/Hint.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/Block/Adminhtml/System/Config/Fieldset/Store.php b/app/code/core/Mage/Paypal/Block/Adminhtml/System/Config/Fieldset/Store.php index b7abb46b304be8031120bff8c23e3c74cc09fdd5..78d86906d7e61bb977041dfdf4351d2f101567c7 100644 --- a/app/code/core/Mage/Paypal/Block/Adminhtml/System/Config/Fieldset/Store.php +++ b/app/code/core/Mage/Paypal/Block/Adminhtml/System/Config/Fieldset/Store.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/Block/Adminhtml/System/Config/Payflowlink/Advanced.php b/app/code/core/Mage/Paypal/Block/Adminhtml/System/Config/Payflowlink/Advanced.php index 9b817952b96d8609662533390bfaf19d9b0c8cd4..d7f6ad2409841d61c67f87b42165c28162f1e706 100644 --- a/app/code/core/Mage/Paypal/Block/Adminhtml/System/Config/Payflowlink/Advanced.php +++ b/app/code/core/Mage/Paypal/Block/Adminhtml/System/Config/Payflowlink/Advanced.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/Block/Adminhtml/System/Config/Payflowlink/Info.php b/app/code/core/Mage/Paypal/Block/Adminhtml/System/Config/Payflowlink/Info.php index 8265f8b7fcd0a0974b00d2ba5cde3f72ea533ad0..9655fcfe5dc78a0c6b6637cacfcabf5a296cf9f1 100644 --- a/app/code/core/Mage/Paypal/Block/Adminhtml/System/Config/Payflowlink/Info.php +++ b/app/code/core/Mage/Paypal/Block/Adminhtml/System/Config/Payflowlink/Info.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/Block/Express/Form.php b/app/code/core/Mage/Paypal/Block/Express/Form.php index 4ed00c757b91f78367fddaa99ba2918fd5223517..486b96ccc969f918d83a6dec305fa418ae98fdab 100644 --- a/app/code/core/Mage/Paypal/Block/Express/Form.php +++ b/app/code/core/Mage/Paypal/Block/Express/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/Block/Express/Review.php b/app/code/core/Mage/Paypal/Block/Express/Review.php index aa799474e48e24387a5ef1d3ab4c47dca6be4cc2..e96226da8f08627cf3e6fb7e17995662ec1dca47 100644 --- a/app/code/core/Mage/Paypal/Block/Express/Review.php +++ b/app/code/core/Mage/Paypal/Block/Express/Review.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/Block/Express/Review/Billing.php b/app/code/core/Mage/Paypal/Block/Express/Review/Billing.php index 4b934625c3f400deb8d2af8f80e0519571291cfc..ea4d9f05b8b67661888fb3f5e15484e6dd0c2449 100644 --- a/app/code/core/Mage/Paypal/Block/Express/Review/Billing.php +++ b/app/code/core/Mage/Paypal/Block/Express/Review/Billing.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/Block/Express/Review/Details.php b/app/code/core/Mage/Paypal/Block/Express/Review/Details.php index a835f37f3eb296bc108edc2add8d26268d8f5c6e..ee74b6e866827be95fd30da20e9db61c5eda3dea 100644 --- a/app/code/core/Mage/Paypal/Block/Express/Review/Details.php +++ b/app/code/core/Mage/Paypal/Block/Express/Review/Details.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/Block/Express/Review/Shipping.php b/app/code/core/Mage/Paypal/Block/Express/Review/Shipping.php index a2c6bea2220d6c78dbc50d95db991f99966d0c6b..0789c784c0af21f06377e716a77cee026c6fd2c6 100644 --- a/app/code/core/Mage/Paypal/Block/Express/Review/Shipping.php +++ b/app/code/core/Mage/Paypal/Block/Express/Review/Shipping.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/Block/Express/Shortcut.php b/app/code/core/Mage/Paypal/Block/Express/Shortcut.php index 53bcad41bac4a26d3b758ca322d4cb4b0638a1d7..41c1dc709acfc9d75642c99e918dbeb09babb84e 100644 --- a/app/code/core/Mage/Paypal/Block/Express/Shortcut.php +++ b/app/code/core/Mage/Paypal/Block/Express/Shortcut.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/Block/Hosted/Pro/Form.php b/app/code/core/Mage/Paypal/Block/Hosted/Pro/Form.php index 786dc12a329572568532daa3a52b08fe9b9b83a8..7d9e9c5d5f452617dcc1b21daf886a277676198c 100644 --- a/app/code/core/Mage/Paypal/Block/Hosted/Pro/Form.php +++ b/app/code/core/Mage/Paypal/Block/Hosted/Pro/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/Block/Hosted/Pro/Iframe.php b/app/code/core/Mage/Paypal/Block/Hosted/Pro/Iframe.php index d56def672d53616b82f65911d5afed33cf1e503a..e709711137e63e32628afce52dd2f507aece5bc7 100644 --- a/app/code/core/Mage/Paypal/Block/Hosted/Pro/Iframe.php +++ b/app/code/core/Mage/Paypal/Block/Hosted/Pro/Iframe.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/Block/Hosted/Pro/Info.php b/app/code/core/Mage/Paypal/Block/Hosted/Pro/Info.php index 62a7d982fefbcd581914b29f433e7c68700c7574..ed3ac4e938794f876dc48a7b01f200c4434d8361 100644 --- a/app/code/core/Mage/Paypal/Block/Hosted/Pro/Info.php +++ b/app/code/core/Mage/Paypal/Block/Hosted/Pro/Info.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/Block/Iframe.php b/app/code/core/Mage/Paypal/Block/Iframe.php index 9beb688136bb322b85a55de98c24253e391864d4..db4812da74ba21de6344969d98a9ef7a41273105 100644 --- a/app/code/core/Mage/Paypal/Block/Iframe.php +++ b/app/code/core/Mage/Paypal/Block/Iframe.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/Block/Logo.php b/app/code/core/Mage/Paypal/Block/Logo.php index 39ccfcb1eb6e87cfe29d8711c52b75bd287b5201..86499f5979b5184fef1891872ea4d2d629a6b8d6 100644 --- a/app/code/core/Mage/Paypal/Block/Logo.php +++ b/app/code/core/Mage/Paypal/Block/Logo.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/Block/Payflow/Advanced/Form.php b/app/code/core/Mage/Paypal/Block/Payflow/Advanced/Form.php index 334ebe4570ebcf23181545c758488a62204426da..d777cf4e4a91daa71a18dbdc1290ae1804d56b22 100644 --- a/app/code/core/Mage/Paypal/Block/Payflow/Advanced/Form.php +++ b/app/code/core/Mage/Paypal/Block/Payflow/Advanced/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/Block/Payflow/Advanced/Iframe.php b/app/code/core/Mage/Paypal/Block/Payflow/Advanced/Iframe.php index 2abbce6aa0da6061fa7baaaea47ce2cc916a1c7e..eeb11d57e8bf779d63bf11989b10c88d8f4d8d98 100644 --- a/app/code/core/Mage/Paypal/Block/Payflow/Advanced/Iframe.php +++ b/app/code/core/Mage/Paypal/Block/Payflow/Advanced/Iframe.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/Block/Payflow/Advanced/Info.php b/app/code/core/Mage/Paypal/Block/Payflow/Advanced/Info.php index 19f8c6a8fe90d27b71da2a9a436d2d4ef0958b15..754c2e7c4d3b0a3c220ba1f65ed21a367114e95c 100644 --- a/app/code/core/Mage/Paypal/Block/Payflow/Advanced/Info.php +++ b/app/code/core/Mage/Paypal/Block/Payflow/Advanced/Info.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/Block/Payflow/Advanced/Review.php b/app/code/core/Mage/Paypal/Block/Payflow/Advanced/Review.php index 113bc26e81a76c4d2cd5df84e7155fde9928098b..c42d75cdd5ea825cb6dbea467a7f1edefede4f1b 100644 --- a/app/code/core/Mage/Paypal/Block/Payflow/Advanced/Review.php +++ b/app/code/core/Mage/Paypal/Block/Payflow/Advanced/Review.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/Block/Payflow/Link/Form.php b/app/code/core/Mage/Paypal/Block/Payflow/Link/Form.php index 5f1591df9dec577c2fae2835f1e7dcd33f984a27..3a6fef3ab3ca4274991aa7a16590d61f29deacbc 100644 --- a/app/code/core/Mage/Paypal/Block/Payflow/Link/Form.php +++ b/app/code/core/Mage/Paypal/Block/Payflow/Link/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/Block/Payflow/Link/Iframe.php b/app/code/core/Mage/Paypal/Block/Payflow/Link/Iframe.php index 2ce6f965566506433791515e2d1195fd67e7c750..741eacd2725ac417caafe04901170fd42c6f9c3b 100644 --- a/app/code/core/Mage/Paypal/Block/Payflow/Link/Iframe.php +++ b/app/code/core/Mage/Paypal/Block/Payflow/Link/Iframe.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/Block/Payflow/Link/Info.php b/app/code/core/Mage/Paypal/Block/Payflow/Link/Info.php index 8d553769f8a98637c6a96f64dee7440b87f1e530..2b40c5c98e79a62b7b9aa2d09a8b914e71874ff6 100644 --- a/app/code/core/Mage/Paypal/Block/Payflow/Link/Info.php +++ b/app/code/core/Mage/Paypal/Block/Payflow/Link/Info.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/Block/Payflow/Link/Review.php b/app/code/core/Mage/Paypal/Block/Payflow/Link/Review.php index 2f13c45abdda6d307a535c42a44b017bed3cf2f1..63d1f204fab730edb0be147d15301427edc1cd76 100644 --- a/app/code/core/Mage/Paypal/Block/Payflow/Link/Review.php +++ b/app/code/core/Mage/Paypal/Block/Payflow/Link/Review.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/Block/Payment/Info.php b/app/code/core/Mage/Paypal/Block/Payment/Info.php index aacd399e8d6610447e67c1e6db5bdb0c92ae1295..9e9c1ccf64be003131aca8f67a438abc4078017a 100644 --- a/app/code/core/Mage/Paypal/Block/Payment/Info.php +++ b/app/code/core/Mage/Paypal/Block/Payment/Info.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/Block/Standard/Form.php b/app/code/core/Mage/Paypal/Block/Standard/Form.php index ea1047bf0c4409946337b2333a070d223f4ea6ea..42be2a5f278cccf7d0db085bac60cdaf40eadcc6 100644 --- a/app/code/core/Mage/Paypal/Block/Standard/Form.php +++ b/app/code/core/Mage/Paypal/Block/Standard/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/Block/Standard/Redirect.php b/app/code/core/Mage/Paypal/Block/Standard/Redirect.php index b3804ef14bf9ac2443a9ba9367dfa58e1cf3ab2d..e02a202fe789f1aecf488ec4e37347ec5cb15e55 100644 --- a/app/code/core/Mage/Paypal/Block/Standard/Redirect.php +++ b/app/code/core/Mage/Paypal/Block/Standard/Redirect.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Paypal_Block_Standard_Redirect extends Mage_Core_Block_Abstract diff --git a/app/code/core/Mage/Paypal/Controller/Express/Abstract.php b/app/code/core/Mage/Paypal/Controller/Express/Abstract.php index 139724cea93fe171cfdf5900a5de11a968305f4b..f8d744b86eb6c197546e1cc7fe13dfb24bcb162d 100644 --- a/app/code/core/Mage/Paypal/Controller/Express/Abstract.php +++ b/app/code/core/Mage/Paypal/Controller/Express/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/Exception.php b/app/code/core/Mage/Paypal/Exception.php index 68227683ce532b4b107b1bab78ae71c9ad9f6d51..d80144b975a6e2c8d702df44f852d02b12817da0 100644 --- a/app/code/core/Mage/Paypal/Exception.php +++ b/app/code/core/Mage/Paypal/Exception.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/Helper/Data.php b/app/code/core/Mage/Paypal/Helper/Data.php index bf20ddbe838e1627ceee49e29edff7a7c37791ad..120fbf759cede653181114ce059e12aaa2b10a36 100644 --- a/app/code/core/Mage/Paypal/Helper/Data.php +++ b/app/code/core/Mage/Paypal/Helper/Data.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/Helper/Hss.php b/app/code/core/Mage/Paypal/Helper/Hss.php index 29030c7ca8a85b001dffc1129ded037950e55d14..f5d3dcde72989cfb648cd6c6d6d6067f5a7198da 100644 --- a/app/code/core/Mage/Paypal/Helper/Hss.php +++ b/app/code/core/Mage/Paypal/Helper/Hss.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/Model/Api/Abstract.php b/app/code/core/Mage/Paypal/Model/Api/Abstract.php index fe91c5b83fc1773580a65d1f0c19af21c397263b..b125f3ad2c0bd43dd44cf0a0dc36b54d1d35ac2e 100644 --- a/app/code/core/Mage/Paypal/Model/Api/Abstract.php +++ b/app/code/core/Mage/Paypal/Model/Api/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/Model/Api/Nvp.php b/app/code/core/Mage/Paypal/Model/Api/Nvp.php index b85386eaeb73cd965cc23d8c123e7e121ceb0cc8..08bcedf6480d2ac97c9f981145f6adefbcc27832 100644 --- a/app/code/core/Mage/Paypal/Model/Api/Nvp.php +++ b/app/code/core/Mage/Paypal/Model/Api/Nvp.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/Model/Api/Standard.php b/app/code/core/Mage/Paypal/Model/Api/Standard.php index bd88e16d5da28e5e982d5bc4f865cecfd3e45d13..de4898a345a03c7e55bd170bb8e32fc98dcabfa2 100644 --- a/app/code/core/Mage/Paypal/Model/Api/Standard.php +++ b/app/code/core/Mage/Paypal/Model/Api/Standard.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/Model/Cart.php b/app/code/core/Mage/Paypal/Model/Cart.php index e78082e063f86799c0bdbd9a31baa8bd613a4a71..1b5edb7f39fbb858684f6b624add328a7efe1f98 100644 --- a/app/code/core/Mage/Paypal/Model/Cart.php +++ b/app/code/core/Mage/Paypal/Model/Cart.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/Model/Cert.php b/app/code/core/Mage/Paypal/Model/Cert.php index aba17fc38698f321647f4ec8e48a85279f906e6f..1e003b7ee2cd493fe9c06716429c541c24bf1934 100644 --- a/app/code/core/Mage/Paypal/Model/Cert.php +++ b/app/code/core/Mage/Paypal/Model/Cert.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/Model/Config.php b/app/code/core/Mage/Paypal/Model/Config.php index d0a05cf7d58ea20c78e6a8bafaf6bd0906f1ec4a..06f450a2d2f83b9c965d0f62a3239ba4393a5153 100644 --- a/app/code/core/Mage/Paypal/Model/Config.php +++ b/app/code/core/Mage/Paypal/Model/Config.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/Model/Direct.php b/app/code/core/Mage/Paypal/Model/Direct.php index 47f37f34617d2b9a0853b0d265e09b7519213fed..39aa05be5219fe38de779ee2c23dc4d8a53a7290 100644 --- a/app/code/core/Mage/Paypal/Model/Direct.php +++ b/app/code/core/Mage/Paypal/Model/Direct.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/Model/Express.php b/app/code/core/Mage/Paypal/Model/Express.php index 234192c092be0b2c2cd8d8e3b54f42ecc919da86..c47e6bcb14e0de41a038baaaa6a8510658e5a3fc 100644 --- a/app/code/core/Mage/Paypal/Model/Express.php +++ b/app/code/core/Mage/Paypal/Model/Express.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/Model/Express/Checkout.php b/app/code/core/Mage/Paypal/Model/Express/Checkout.php index 3c0b8e9ae1474ccde55f6213bf493fd8e2ef582f..58ec500fb19b2fe6494abdb9df944bdc5aa0e543 100644 --- a/app/code/core/Mage/Paypal/Model/Express/Checkout.php +++ b/app/code/core/Mage/Paypal/Model/Express/Checkout.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/Model/Hostedpro.php b/app/code/core/Mage/Paypal/Model/Hostedpro.php index 173828b2cee7a1d82e1ecb49896bc9909e91eb87..7b81a2a344d06346b2a024176e23125680869d29 100644 --- a/app/code/core/Mage/Paypal/Model/Hostedpro.php +++ b/app/code/core/Mage/Paypal/Model/Hostedpro.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/Model/Hostedpro/Request.php b/app/code/core/Mage/Paypal/Model/Hostedpro/Request.php index b09e63bb35b4d8a664258de6bf808e9a7ba66e01..6a8886fc2b31c87e3122b5146f0bd036676c784a 100644 --- a/app/code/core/Mage/Paypal/Model/Hostedpro/Request.php +++ b/app/code/core/Mage/Paypal/Model/Hostedpro/Request.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/Model/Info.php b/app/code/core/Mage/Paypal/Model/Info.php index bd26e2c124060b6679ded06e61ebfdf53af82303..019b61ee7e30ebb5cec32c3ef6bf3cbd64089193 100644 --- a/app/code/core/Mage/Paypal/Model/Info.php +++ b/app/code/core/Mage/Paypal/Model/Info.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/Model/Ipn.php b/app/code/core/Mage/Paypal/Model/Ipn.php index e054f11686df7e5b07680fc42c076583198e684d..bb23dd663aef62ff09edf73732d11adbc204b288 100644 --- a/app/code/core/Mage/Paypal/Model/Ipn.php +++ b/app/code/core/Mage/Paypal/Model/Ipn.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/Model/Method/Agreement.php b/app/code/core/Mage/Paypal/Model/Method/Agreement.php index 9d544ec5030232f5121d9c941677b483f0932a23..c3fa7c473f5e629272ec44569aba72714753b272 100644 --- a/app/code/core/Mage/Paypal/Model/Method/Agreement.php +++ b/app/code/core/Mage/Paypal/Model/Method/Agreement.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/Model/Observer.php b/app/code/core/Mage/Paypal/Model/Observer.php index fa6881de1e6008146ea26a359a8ce29ced59581c..f0dff830307b7456473affbee29ac6bf0c896217 100644 --- a/app/code/core/Mage/Paypal/Model/Observer.php +++ b/app/code/core/Mage/Paypal/Model/Observer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/Model/Payflow/Request.php b/app/code/core/Mage/Paypal/Model/Payflow/Request.php index b5bc77f6f72d16ca93079398dd4f9dd586fb51c8..7fcf624f2ebd59edd7cc5a5bdd8497c8b8f63af9 100644 --- a/app/code/core/Mage/Paypal/Model/Payflow/Request.php +++ b/app/code/core/Mage/Paypal/Model/Payflow/Request.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/Model/Payflowadvanced.php b/app/code/core/Mage/Paypal/Model/Payflowadvanced.php index 9da26dc8c5c276b93410a3555387d7accdbd4f1a..ad1aacf457c6e917f3e90f5f15a3cd4c6fe95330 100644 --- a/app/code/core/Mage/Paypal/Model/Payflowadvanced.php +++ b/app/code/core/Mage/Paypal/Model/Payflowadvanced.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/Model/Payflowlink.php b/app/code/core/Mage/Paypal/Model/Payflowlink.php index d5f9a65f8e25443d871138cc3da394df0acfc8ca..c1b0c9eed6cff0346ce094cce1bff8fb35b45c27 100644 --- a/app/code/core/Mage/Paypal/Model/Payflowlink.php +++ b/app/code/core/Mage/Paypal/Model/Payflowlink.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/Model/Payflowpro.php b/app/code/core/Mage/Paypal/Model/Payflowpro.php index 6fdc3c29149be48b73000ab82e0adafa80ca6a8e..174763b3001ca0f5be7070bd83e60de0c1eeb1eb 100644 --- a/app/code/core/Mage/Paypal/Model/Payflowpro.php +++ b/app/code/core/Mage/Paypal/Model/Payflowpro.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/Model/Payment/Transaction.php b/app/code/core/Mage/Paypal/Model/Payment/Transaction.php index 46a2a1fe952220e2aee360aa98a8bcb6411f6f2e..57f0cae79069ba5598ef5e474cd44f4067ebc997 100644 --- a/app/code/core/Mage/Paypal/Model/Payment/Transaction.php +++ b/app/code/core/Mage/Paypal/Model/Payment/Transaction.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/Model/Pro.php b/app/code/core/Mage/Paypal/Model/Pro.php index da33f8ba438f075e65f6dbdb70d2b43e4ae0f227..5e9ee4f611078705d6f40288816c5779afdaba4a 100644 --- a/app/code/core/Mage/Paypal/Model/Pro.php +++ b/app/code/core/Mage/Paypal/Model/Pro.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/Model/Report/Settlement.php b/app/code/core/Mage/Paypal/Model/Report/Settlement.php index 09fdbb173b65105bed233bf95f5b6dd4576ab03f..4a4fba8c49931502521561477009b4192e6a75d6 100644 --- a/app/code/core/Mage/Paypal/Model/Report/Settlement.php +++ b/app/code/core/Mage/Paypal/Model/Report/Settlement.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/Model/Report/Settlement/Row.php b/app/code/core/Mage/Paypal/Model/Report/Settlement/Row.php index bf3c73dcdfd97a952e2a85dd65e5ce672b01c7ae..80a37b9172c163a93664fda4a979f1810535be9c 100644 --- a/app/code/core/Mage/Paypal/Model/Report/Settlement/Row.php +++ b/app/code/core/Mage/Paypal/Model/Report/Settlement/Row.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/Model/Resource/Cert.php b/app/code/core/Mage/Paypal/Model/Resource/Cert.php index 5f2b94754a32fb837c8e672c577cfad6d6f550b5..bed85363242f87423ebd603d22431ed554bb51a8 100644 --- a/app/code/core/Mage/Paypal/Model/Resource/Cert.php +++ b/app/code/core/Mage/Paypal/Model/Resource/Cert.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/Model/Resource/Payment/Transaction.php b/app/code/core/Mage/Paypal/Model/Resource/Payment/Transaction.php index eb7e59cb4b2679e7c9fecdba069566975aec8428..69433a5a68463e632cdd5eb69584bd7318abef45 100644 --- a/app/code/core/Mage/Paypal/Model/Resource/Payment/Transaction.php +++ b/app/code/core/Mage/Paypal/Model/Resource/Payment/Transaction.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/Model/Resource/Payment/Transaction/Collection.php b/app/code/core/Mage/Paypal/Model/Resource/Payment/Transaction/Collection.php index cb51ac0c2134e961c6eb8ed66d2a939cae959f85..bf3a8a3292ed4854ac18bcd9bb4194366901fe73 100644 --- a/app/code/core/Mage/Paypal/Model/Resource/Payment/Transaction/Collection.php +++ b/app/code/core/Mage/Paypal/Model/Resource/Payment/Transaction/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/Model/Resource/Report/Settlement.php b/app/code/core/Mage/Paypal/Model/Resource/Report/Settlement.php index 7227878d29efbbfb538b1501d84dd57260da82da..887669ab5cb79ee02427649425e9e9cecc975c89 100755 --- a/app/code/core/Mage/Paypal/Model/Resource/Report/Settlement.php +++ b/app/code/core/Mage/Paypal/Model/Resource/Report/Settlement.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/Model/Resource/Report/Settlement/Row.php b/app/code/core/Mage/Paypal/Model/Resource/Report/Settlement/Row.php index 22edda53364feac71ab7ff802348db51fdf53359..7283deae01378ecd43772a485d54f2c4063a8161 100755 --- a/app/code/core/Mage/Paypal/Model/Resource/Report/Settlement/Row.php +++ b/app/code/core/Mage/Paypal/Model/Resource/Report/Settlement/Row.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/Model/Resource/Report/Settlement/Row/Collection.php b/app/code/core/Mage/Paypal/Model/Resource/Report/Settlement/Row/Collection.php index 5d54fde0b6498dcb4ae5f1badb820d9076128674..ccf838b7d46cff335930dd74793c5abfc3864e30 100755 --- a/app/code/core/Mage/Paypal/Model/Resource/Report/Settlement/Row/Collection.php +++ b/app/code/core/Mage/Paypal/Model/Resource/Report/Settlement/Row/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/Model/Resource/Setup.php b/app/code/core/Mage/Paypal/Model/Resource/Setup.php index 7991b39e33fa8b78a87f4b3c483e7ce7599d6f98..525bd8ee02640a1c6a4ead26f917449b4fb23b58 100755 --- a/app/code/core/Mage/Paypal/Model/Resource/Setup.php +++ b/app/code/core/Mage/Paypal/Model/Resource/Setup.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/Model/Session.php b/app/code/core/Mage/Paypal/Model/Session.php index f6e7de3531cd0cd409e2d0a9edf97eca8aafe868..6ea319496f3151ebb3d0fed203c179ff5c373b17 100644 --- a/app/code/core/Mage/Paypal/Model/Session.php +++ b/app/code/core/Mage/Paypal/Model/Session.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/Model/Standard.php b/app/code/core/Mage/Paypal/Model/Standard.php index d28029deb9154241e6650c8d43e057085a177ea0..15a02766a09344cfd8f09516c34c5ec771133b3f 100644 --- a/app/code/core/Mage/Paypal/Model/Standard.php +++ b/app/code/core/Mage/Paypal/Model/Standard.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/Model/System/Config/Backend/Cert.php b/app/code/core/Mage/Paypal/Model/System/Config/Backend/Cert.php index 2f04a2355f36f217d94f578c90180baff33a653f..01c09e4203941d41023d87eec4168084d45086df 100644 --- a/app/code/core/Mage/Paypal/Model/System/Config/Backend/Cert.php +++ b/app/code/core/Mage/Paypal/Model/System/Config/Backend/Cert.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/Model/System/Config/Backend/Cron.php b/app/code/core/Mage/Paypal/Model/System/Config/Backend/Cron.php index 1100d29a52160a15c639a36599d6d1a0c29762fa..dcea24d88c99882fdf8ca75cbaff664e1874e73c 100644 --- a/app/code/core/Mage/Paypal/Model/System/Config/Backend/Cron.php +++ b/app/code/core/Mage/Paypal/Model/System/Config/Backend/Cron.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/Model/System/Config/Backend/MerchantCountry.php b/app/code/core/Mage/Paypal/Model/System/Config/Backend/MerchantCountry.php index 6cdd92a6c951e6f83008d24c03d69cc61752e3c2..c11ad53eb1d4d398cad365f02e8c0fa8ada5c90e 100644 --- a/app/code/core/Mage/Paypal/Model/System/Config/Backend/MerchantCountry.php +++ b/app/code/core/Mage/Paypal/Model/System/Config/Backend/MerchantCountry.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/Model/System/Config/Source/AuthorizationAmounts.php b/app/code/core/Mage/Paypal/Model/System/Config/Source/AuthorizationAmounts.php index 04a0212e5749fd1bf6ec74d82dde411b414cb6ca..a8610d654c9d71910fa817823aca2fa162735876 100644 --- a/app/code/core/Mage/Paypal/Model/System/Config/Source/AuthorizationAmounts.php +++ b/app/code/core/Mage/Paypal/Model/System/Config/Source/AuthorizationAmounts.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/Model/System/Config/Source/BuyerCountry.php b/app/code/core/Mage/Paypal/Model/System/Config/Source/BuyerCountry.php index fd8200b7b66bdce15f7f410c44ebf48cd15487ba..a84dc17443c9a1d3ea0c37b9a308e29e9a4d658a 100644 --- a/app/code/core/Mage/Paypal/Model/System/Config/Source/BuyerCountry.php +++ b/app/code/core/Mage/Paypal/Model/System/Config/Source/BuyerCountry.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/Model/System/Config/Source/FetchingSchedule.php b/app/code/core/Mage/Paypal/Model/System/Config/Source/FetchingSchedule.php index ca887bfa64c5d6c5a11ab8eca7d2f45c29c711ad..5e99cfd125626d14b4a71646c64ceb89ba94361d 100644 --- a/app/code/core/Mage/Paypal/Model/System/Config/Source/FetchingSchedule.php +++ b/app/code/core/Mage/Paypal/Model/System/Config/Source/FetchingSchedule.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/Model/System/Config/Source/Logo.php b/app/code/core/Mage/Paypal/Model/System/Config/Source/Logo.php index f4452694bd871d4ef1527e3679f43ffdd9f2b756..fafa663c979a8e651a5f699023087d603d5874d1 100644 --- a/app/code/core/Mage/Paypal/Model/System/Config/Source/Logo.php +++ b/app/code/core/Mage/Paypal/Model/System/Config/Source/Logo.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/Model/System/Config/Source/MerchantCountry.php b/app/code/core/Mage/Paypal/Model/System/Config/Source/MerchantCountry.php index 58d785677a9b7677c9e3e94c5b2d67241778b76f..877670e0467b2d235d9f23fd981a8cfc66b3d58b 100644 --- a/app/code/core/Mage/Paypal/Model/System/Config/Source/MerchantCountry.php +++ b/app/code/core/Mage/Paypal/Model/System/Config/Source/MerchantCountry.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/Model/System/Config/Source/PaymentActions.php b/app/code/core/Mage/Paypal/Model/System/Config/Source/PaymentActions.php index 6f992ac1c6b50a504248cdbf18e5a4f45742040a..27494f858167e0abb71f605c736a7061d1de7115 100644 --- a/app/code/core/Mage/Paypal/Model/System/Config/Source/PaymentActions.php +++ b/app/code/core/Mage/Paypal/Model/System/Config/Source/PaymentActions.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/Model/System/Config/Source/PaymentActions/Express.php b/app/code/core/Mage/Paypal/Model/System/Config/Source/PaymentActions/Express.php index 72f4fdcb90fd409698a4ce7130fbb6ad16c0b49e..1d711b832c8e6d7a9834754780db176d2711cca7 100644 --- a/app/code/core/Mage/Paypal/Model/System/Config/Source/PaymentActions/Express.php +++ b/app/code/core/Mage/Paypal/Model/System/Config/Source/PaymentActions/Express.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/Model/System/Config/Source/RequireBillingAddress.php b/app/code/core/Mage/Paypal/Model/System/Config/Source/RequireBillingAddress.php index 1e0e6dc6a65b24f493f18b416188a3c120f60377..78d745b8980847535ec70129c7be2749df831207 100644 --- a/app/code/core/Mage/Paypal/Model/System/Config/Source/RequireBillingAddress.php +++ b/app/code/core/Mage/Paypal/Model/System/Config/Source/RequireBillingAddress.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/controllers/Adminhtml/Paypal/ReportsController.php b/app/code/core/Mage/Paypal/controllers/Adminhtml/Paypal/ReportsController.php index 34e494bb9f454c9d321541203747111d5a1c7e67..781eb5449555ccd8d1fc2735ed0a2c4af9647ff6 100644 --- a/app/code/core/Mage/Paypal/controllers/Adminhtml/Paypal/ReportsController.php +++ b/app/code/core/Mage/Paypal/controllers/Adminhtml/Paypal/ReportsController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/controllers/ExpressController.php b/app/code/core/Mage/Paypal/controllers/ExpressController.php index e7a2e99adc97c4553cb31f503ae6cf420dfd2b96..9670059d7048f37ce06ff5053943fe233359d89b 100644 --- a/app/code/core/Mage/Paypal/controllers/ExpressController.php +++ b/app/code/core/Mage/Paypal/controllers/ExpressController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/controllers/HostedproController.php b/app/code/core/Mage/Paypal/controllers/HostedproController.php index da4e63ee79de299463d19e4042b5213b07230a62..d8c7d0251d5d184d76ec0051149623a4bf0cc2d6 100644 --- a/app/code/core/Mage/Paypal/controllers/HostedproController.php +++ b/app/code/core/Mage/Paypal/controllers/HostedproController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/controllers/IpnController.php b/app/code/core/Mage/Paypal/controllers/IpnController.php index 1d00e0a43a1a300bab3d5ca62b6151d39505f83d..0bac5a1ed15aed1ac62ca3e647c5c2b40f974c71 100644 --- a/app/code/core/Mage/Paypal/controllers/IpnController.php +++ b/app/code/core/Mage/Paypal/controllers/IpnController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/controllers/PayflowController.php b/app/code/core/Mage/Paypal/controllers/PayflowController.php index b2ef62f5c8025b91273577cacab5964f5e65bef3..817380c641df6437de5d3b11cdc73843d132d30f 100644 --- a/app/code/core/Mage/Paypal/controllers/PayflowController.php +++ b/app/code/core/Mage/Paypal/controllers/PayflowController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/controllers/PayflowadvancedController.php b/app/code/core/Mage/Paypal/controllers/PayflowadvancedController.php index 1ad0d02ae803e538575e17d64e72626c28622150..47fea6203acffaced21e0b35fbda0d666c2dc048 100644 --- a/app/code/core/Mage/Paypal/controllers/PayflowadvancedController.php +++ b/app/code/core/Mage/Paypal/controllers/PayflowadvancedController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/controllers/StandardController.php b/app/code/core/Mage/Paypal/controllers/StandardController.php index 22ec992d7a79f80cb013ba038bbb44a504431f9f..fbe26db6bf32ebafd9d5ed6aed8a12edd4eb266f 100644 --- a/app/code/core/Mage/Paypal/controllers/StandardController.php +++ b/app/code/core/Mage/Paypal/controllers/StandardController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/etc/adminhtml/acl.xml b/app/code/core/Mage/Paypal/etc/adminhtml/acl.xml index 2aaee4dc8df264c07455a52633a97dab27d311b2..805ef1ab1f2284c5a0968157de157cd87a0a532d 100644 --- a/app/code/core/Mage/Paypal/etc/adminhtml/acl.xml +++ b/app/code/core/Mage/Paypal/etc/adminhtml/acl.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Paypal/etc/adminhtml/menu.xml b/app/code/core/Mage/Paypal/etc/adminhtml/menu.xml index 075ca34b5df76b5e7706506d53694d2f1db194ab..35ca92550ace0ad3adae2ef5e7448b30bedee298 100644 --- a/app/code/core/Mage/Paypal/etc/adminhtml/menu.xml +++ b/app/code/core/Mage/Paypal/etc/adminhtml/menu.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Paypal/etc/adminhtml/system.xml b/app/code/core/Mage/Paypal/etc/adminhtml/system.xml index 4514c9ea9abdf6a073399192a342134bec38be6e..e5fbed56485661206100fbcdefad457748d5c4e6 100644 --- a/app/code/core/Mage/Paypal/etc/adminhtml/system.xml +++ b/app/code/core/Mage/Paypal/etc/adminhtml/system.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Paypal/etc/config.xml b/app/code/core/Mage/Paypal/etc/config.xml index 8f9bfff43eb9d4c9e5c8237d307a75a67c0ca819..23e9711886695b83191f175c5a62296d521b4513 100644 --- a/app/code/core/Mage/Paypal/etc/config.xml +++ b/app/code/core/Mage/Paypal/etc/config.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Paypal/sql/paypal_setup/install-1.6.0.0.php b/app/code/core/Mage/Paypal/sql/paypal_setup/install-1.6.0.0.php index 181ef1dcf0bb822d349f0836f7ffb584851c7d4a..6c2f8ecb2180ee3593b8605c89ae32335861c3ee 100644 --- a/app/code/core/Mage/Paypal/sql/paypal_setup/install-1.6.0.0.php +++ b/app/code/core/Mage/Paypal/sql/paypal_setup/install-1.6.0.0.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/sql/paypal_setup/upgrade-1.6.0.0-1.6.0.1.php b/app/code/core/Mage/Paypal/sql/paypal_setup/upgrade-1.6.0.0-1.6.0.1.php index 4cdb42daf2f01b8b5b0597bd78d38efbd130bbf2..25423e79fa77aedb072dcae54d4f205efc521cf3 100644 --- a/app/code/core/Mage/Paypal/sql/paypal_setup/upgrade-1.6.0.0-1.6.0.1.php +++ b/app/code/core/Mage/Paypal/sql/paypal_setup/upgrade-1.6.0.0-1.6.0.1.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/sql/paypal_setup/upgrade-1.6.0.1-1.6.0.2.php b/app/code/core/Mage/Paypal/sql/paypal_setup/upgrade-1.6.0.1-1.6.0.2.php index fb796bda79b5483fee55f0e77c60726e8d9df111..a04fd6142a4a99fe29402b76a35bef88a4b9c9a9 100644 --- a/app/code/core/Mage/Paypal/sql/paypal_setup/upgrade-1.6.0.1-1.6.0.2.php +++ b/app/code/core/Mage/Paypal/sql/paypal_setup/upgrade-1.6.0.1-1.6.0.2.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Paypal/view/adminhtml/boxes.css b/app/code/core/Mage/Paypal/view/adminhtml/boxes.css index 5171cf48deda4a4c50b6905d3729b4a1a56c99a1..295c6ab81464a2eab729a696925de0a3b0740706 100644 --- a/app/code/core/Mage/Paypal/view/adminhtml/boxes.css +++ b/app/code/core/Mage/Paypal/view/adminhtml/boxes.css @@ -19,7 +19,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ .paypal-payment-notice { background:url(logo.gif) no-repeat 5px center #eaf0ee; border:1px solid #ccc; margin-bottom:10px; padding:10px 5px 5px 115px; } diff --git a/app/code/core/Mage/Paypal/view/adminhtml/layout.xml b/app/code/core/Mage/Paypal/view/adminhtml/layout.xml index 6f2f43e94e80657b607bcd46d1ca4a8f1c5c175a..cdb4f1269ab20f93c34ce318e713578b6466bb1c 100644 --- a/app/code/core/Mage/Paypal/view/adminhtml/layout.xml +++ b/app/code/core/Mage/Paypal/view/adminhtml/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Paypal/view/adminhtml/system/config/api_wizard.phtml b/app/code/core/Mage/Paypal/view/adminhtml/system/config/api_wizard.phtml index ba9efcd4faf389e76d344df1234a258650c239f1..822311f26c3db195f842aa300a915b68444e72a2 100644 --- a/app/code/core/Mage/Paypal/view/adminhtml/system/config/api_wizard.phtml +++ b/app/code/core/Mage/Paypal/view/adminhtml/system/config/api_wizard.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Paypal/view/adminhtml/system/config/fieldset/global.phtml b/app/code/core/Mage/Paypal/view/adminhtml/system/config/fieldset/global.phtml index c17828d3f4266428463cf3c9d475b882e64b8503..25547beb03e902286ed0072e7064f94a8794a7c9 100644 --- a/app/code/core/Mage/Paypal/view/adminhtml/system/config/fieldset/global.phtml +++ b/app/code/core/Mage/Paypal/view/adminhtml/system/config/fieldset/global.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Paypal/view/adminhtml/system/config/fieldset/hint.phtml b/app/code/core/Mage/Paypal/view/adminhtml/system/config/fieldset/hint.phtml index b157f4a69788f21bb06a069815b81f846bb2b1e8..f5e06e569c16ae21caadcc34b840e116b8302ac3 100644 --- a/app/code/core/Mage/Paypal/view/adminhtml/system/config/fieldset/hint.phtml +++ b/app/code/core/Mage/Paypal/view/adminhtml/system/config/fieldset/hint.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Paypal/view/adminhtml/system/config/fieldset/store.phtml b/app/code/core/Mage/Paypal/view/adminhtml/system/config/fieldset/store.phtml index 062f3e4a0b392789f84172b2b8f6c178029a65cc..4265d3379f2229015bc6493863a6a120b14933bd 100644 --- a/app/code/core/Mage/Paypal/view/adminhtml/system/config/fieldset/store.phtml +++ b/app/code/core/Mage/Paypal/view/adminhtml/system/config/fieldset/store.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Paypal/view/adminhtml/system/config/payflowlink/advanced.phtml b/app/code/core/Mage/Paypal/view/adminhtml/system/config/payflowlink/advanced.phtml index 57a28c3268b204188f2d9dff287badfea76ab715..f8012a69ce750e69c3bd96d0fb5148e24ed15c35 100644 --- a/app/code/core/Mage/Paypal/view/adminhtml/system/config/payflowlink/advanced.phtml +++ b/app/code/core/Mage/Paypal/view/adminhtml/system/config/payflowlink/advanced.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Paypal/view/adminhtml/system/config/payflowlink/info.phtml b/app/code/core/Mage/Paypal/view/adminhtml/system/config/payflowlink/info.phtml index 265757597b72309d432fe44eef344d1b0f784d26..4a7f4438f38dafc451d7bd560bc02ebf63e2b7df 100644 --- a/app/code/core/Mage/Paypal/view/adminhtml/system/config/payflowlink/info.phtml +++ b/app/code/core/Mage/Paypal/view/adminhtml/system/config/payflowlink/info.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Paypal/view/frontend/express/review.phtml b/app/code/core/Mage/Paypal/view/frontend/express/review.phtml index 4532b4d7eb099a54a6fedf077430a9d384bf929b..32dedbb917697c9c61a7d7cac51685804a8d0535 100644 --- a/app/code/core/Mage/Paypal/view/frontend/express/review.phtml +++ b/app/code/core/Mage/Paypal/view/frontend/express/review.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /** @var $this Mage_Paypal_Block_Express_Review */ diff --git a/app/code/core/Mage/Paypal/view/frontend/express/review/address.phtml b/app/code/core/Mage/Paypal/view/frontend/express/review/address.phtml index bfa2c47398db21bca1cb08ed15b8785e4408e715..90f722d013888f9954ea56fdb5e889ae42daa759 100644 --- a/app/code/core/Mage/Paypal/view/frontend/express/review/address.phtml +++ b/app/code/core/Mage/Paypal/view/frontend/express/review/address.phtml @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Paypal - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Paypal/view/frontend/express/review/details.phtml b/app/code/core/Mage/Paypal/view/frontend/express/review/details.phtml index 948f96a473bfab1b204bd176d3d35705f064f2f4..0976f71305c72007de0187f08a6aef8effd3143e 100644 --- a/app/code/core/Mage/Paypal/view/frontend/express/review/details.phtml +++ b/app/code/core/Mage/Paypal/view/frontend/express/review/details.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Paypal/view/frontend/express/review/shipping/method.phtml b/app/code/core/Mage/Paypal/view/frontend/express/review/shipping/method.phtml index ba8d873ef5f682501e716f6d0d5567a4d264488b..111d2d40b1fc2b854fac2f58a5749d9836c2d103 100644 --- a/app/code/core/Mage/Paypal/view/frontend/express/review/shipping/method.phtml +++ b/app/code/core/Mage/Paypal/view/frontend/express/review/shipping/method.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /** @var $this Mage_Paypal_Block_Express_Review */ diff --git a/app/code/core/Mage/Paypal/view/frontend/express/shortcut.phtml b/app/code/core/Mage/Paypal/view/frontend/express/shortcut.phtml index 25f11700acddb396d550d8631adcf9aa8874f84c..5c14dcf5e099149583b3e9f1cf5d070da82f61b0 100644 --- a/app/code/core/Mage/Paypal/view/frontend/express/shortcut.phtml +++ b/app/code/core/Mage/Paypal/view/frontend/express/shortcut.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Paypal/view/frontend/hss/form.phtml b/app/code/core/Mage/Paypal/view/frontend/hss/form.phtml index 486c81173f4610d37ef15cd195537d815084cc81..6a189d953c403f1e56b9890702dd89d6344fbd4c 100644 --- a/app/code/core/Mage/Paypal/view/frontend/hss/form.phtml +++ b/app/code/core/Mage/Paypal/view/frontend/hss/form.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Paypal/view/frontend/hss/iframe.phtml b/app/code/core/Mage/Paypal/view/frontend/hss/iframe.phtml index ae070d745c8c073d9ab0cfa2abe8c1f0b7a75ca2..f850d96b35e490fe2e85082b8fb3d6876dfce30b 100644 --- a/app/code/core/Mage/Paypal/view/frontend/hss/iframe.phtml +++ b/app/code/core/Mage/Paypal/view/frontend/hss/iframe.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Paypal/view/frontend/hss/info.phtml b/app/code/core/Mage/Paypal/view/frontend/hss/info.phtml index 2793a60ddcb14c6d51af528ae91e817910f13573..acbe16ac54f8030d348e52e0c7f732f62d344fa6 100644 --- a/app/code/core/Mage/Paypal/view/frontend/hss/info.phtml +++ b/app/code/core/Mage/Paypal/view/frontend/hss/info.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Paypal/view/frontend/hss/js.phtml b/app/code/core/Mage/Paypal/view/frontend/hss/js.phtml index 31fbf2a196ab4891832118b28c53c2dfc86029e1..f8a21c7eae3765fc69ca2260dde9e01c20937cb0 100644 --- a/app/code/core/Mage/Paypal/view/frontend/hss/js.phtml +++ b/app/code/core/Mage/Paypal/view/frontend/hss/js.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Paypal/view/frontend/hss/redirect.phtml b/app/code/core/Mage/Paypal/view/frontend/hss/redirect.phtml index 6109be15dde3719173b9ba7a981027ade5d68a08..03a2bf9cc5399d839db5e4641dd0375b98e332b8 100644 --- a/app/code/core/Mage/Paypal/view/frontend/hss/redirect.phtml +++ b/app/code/core/Mage/Paypal/view/frontend/hss/redirect.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Paypal/view/frontend/hss/review/button.phtml b/app/code/core/Mage/Paypal/view/frontend/hss/review/button.phtml index 36cc56e5584e4a7012001a19e5f2609a935e066a..a8fdb59acf29fa706b7424dfef20729669a5f9d1 100644 --- a/app/code/core/Mage/Paypal/view/frontend/hss/review/button.phtml +++ b/app/code/core/Mage/Paypal/view/frontend/hss/review/button.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Paypal/view/frontend/layout.xml b/app/code/core/Mage/Paypal/view/frontend/layout.xml index c5571d293426df1efcb95a139ff6249a86e07586..03d3325b691f06f8a4c5f17607e469b3ceca97b8 100644 --- a/app/code/core/Mage/Paypal/view/frontend/layout.xml +++ b/app/code/core/Mage/Paypal/view/frontend/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Paypal/view/frontend/partner/logo.phtml b/app/code/core/Mage/Paypal/view/frontend/partner/logo.phtml index 72b4fb077f3f4ccf32f7b9e45bf40652ec0354b6..81b2ce5643a2aa9fa4543d6be53fbe7920ce99c6 100644 --- a/app/code/core/Mage/Paypal/view/frontend/partner/logo.phtml +++ b/app/code/core/Mage/Paypal/view/frontend/partner/logo.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Paypal/view/frontend/payflowadvanced/form.phtml b/app/code/core/Mage/Paypal/view/frontend/payflowadvanced/form.phtml index b1c49ea24ab14b755eb52049a98204947e2aefce..15ec1db299a0b272f412b2d407a4f83c5e015bbc 100644 --- a/app/code/core/Mage/Paypal/view/frontend/payflowadvanced/form.phtml +++ b/app/code/core/Mage/Paypal/view/frontend/payflowadvanced/form.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Paypal/view/frontend/payflowadvanced/iframe.phtml b/app/code/core/Mage/Paypal/view/frontend/payflowadvanced/iframe.phtml index e142ec7b22f3a9ae84fb60f55f726f78aa4a0c99..5e7f8babb09644ee67870d0ce32d7ffa431e1478 100644 --- a/app/code/core/Mage/Paypal/view/frontend/payflowadvanced/iframe.phtml +++ b/app/code/core/Mage/Paypal/view/frontend/payflowadvanced/iframe.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /** @var $this Mage_Paypal_Block_Payflow_Advanced_Form */ diff --git a/app/code/core/Mage/Paypal/view/frontend/payflowadvanced/info.phtml b/app/code/core/Mage/Paypal/view/frontend/payflowadvanced/info.phtml index 4f4a038657d9c61c62a75623b70c7dbde65eeaee..c6795fc482866c8cb5855262a8ce5ab66579b0dc 100644 --- a/app/code/core/Mage/Paypal/view/frontend/payflowadvanced/info.phtml +++ b/app/code/core/Mage/Paypal/view/frontend/payflowadvanced/info.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Paypal/view/frontend/payflowadvanced/redirect.phtml b/app/code/core/Mage/Paypal/view/frontend/payflowadvanced/redirect.phtml index 6a43e66a82670185a6a5a925da35f66a9555be2c..505e9bc0073e12fa3d6bb41145db2f596d3fbf21 100644 --- a/app/code/core/Mage/Paypal/view/frontend/payflowadvanced/redirect.phtml +++ b/app/code/core/Mage/Paypal/view/frontend/payflowadvanced/redirect.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Paypal/view/frontend/payflowlink/form.phtml b/app/code/core/Mage/Paypal/view/frontend/payflowlink/form.phtml index 486c81173f4610d37ef15cd195537d815084cc81..6a189d953c403f1e56b9890702dd89d6344fbd4c 100644 --- a/app/code/core/Mage/Paypal/view/frontend/payflowlink/form.phtml +++ b/app/code/core/Mage/Paypal/view/frontend/payflowlink/form.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Paypal/view/frontend/payflowlink/iframe.phtml b/app/code/core/Mage/Paypal/view/frontend/payflowlink/iframe.phtml index 6bb2047f97c2535caac8fb3e5105516d46116c58..668c6e41598699182718905e6e72dd615ba7e62e 100644 --- a/app/code/core/Mage/Paypal/view/frontend/payflowlink/iframe.phtml +++ b/app/code/core/Mage/Paypal/view/frontend/payflowlink/iframe.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /** @var $this Mage_Paypal_Block_Payflow_Link_Form */ diff --git a/app/code/core/Mage/Paypal/view/frontend/payflowlink/info.phtml b/app/code/core/Mage/Paypal/view/frontend/payflowlink/info.phtml index 4f550126e48f6b366f9ec700723e8f10ac7f420f..53958dc594393b0413c52b0b13da14405a89e7ca 100644 --- a/app/code/core/Mage/Paypal/view/frontend/payflowlink/info.phtml +++ b/app/code/core/Mage/Paypal/view/frontend/payflowlink/info.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Paypal/view/frontend/payflowlink/redirect.phtml b/app/code/core/Mage/Paypal/view/frontend/payflowlink/redirect.phtml index c1928741373fca4c08dea452804d3988919425cd..e0d278f6c76cb5a06dd6a27e3c0b2dd28b1e305b 100644 --- a/app/code/core/Mage/Paypal/view/frontend/payflowlink/redirect.phtml +++ b/app/code/core/Mage/Paypal/view/frontend/payflowlink/redirect.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Paypal/view/frontend/payment/mark.phtml b/app/code/core/Mage/Paypal/view/frontend/payment/mark.phtml index e6118aa517d39537cab41a6b51d4218f01926d86..d80c05388fdffba14fc61fb56817bd9e7daa8e08 100644 --- a/app/code/core/Mage/Paypal/view/frontend/payment/mark.phtml +++ b/app/code/core/Mage/Paypal/view/frontend/payment/mark.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Paypal/view/frontend/payment/redirect.phtml b/app/code/core/Mage/Paypal/view/frontend/payment/redirect.phtml index 3bb2ce1b4c7452902273c7610b9e00fa7d0b3253..628c78f5d32eed3d0f32e6b2e2a3b5f6368e2b6c 100644 --- a/app/code/core/Mage/Paypal/view/frontend/payment/redirect.phtml +++ b/app/code/core/Mage/Paypal/view/frontend/payment/redirect.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Paypal/view/frontend/review.js b/app/code/core/Mage/Paypal/view/frontend/review.js index 47e7b8de2aff31b659cb5aa7b8ae5ed62534b5e7..3e8152bcb8f7b34b9309a9f275eeba7b0e81ec8b 100644 --- a/app/code/core/Mage/Paypal/view/frontend/review.js +++ b/app/code/core/Mage/Paypal/view/frontend/review.js @@ -19,7 +19,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/PaypalUk/Block/Express/Form.php b/app/code/core/Mage/PaypalUk/Block/Express/Form.php index bcd104813586b6de702b6388fd7862c068115935..51e2c8bbb69d8822d8c6be3b10c82fff770ba4ab 100644 --- a/app/code/core/Mage/PaypalUk/Block/Express/Form.php +++ b/app/code/core/Mage/PaypalUk/Block/Express/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_PaypalUk - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/PaypalUk/Block/Express/Shortcut.php b/app/code/core/Mage/PaypalUk/Block/Express/Shortcut.php index 9a512c6bc8097550c9a3423cd97d9e1de82f4b9c..94b6e44db0c50eb45fa83162264f30d52aca395d 100644 --- a/app/code/core/Mage/PaypalUk/Block/Express/Shortcut.php +++ b/app/code/core/Mage/PaypalUk/Block/Express/Shortcut.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_PaypalUk - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/PaypalUk/Helper/Data.php b/app/code/core/Mage/PaypalUk/Helper/Data.php index 59291008ec091f4265d07d2947192bb2d84c736f..eaeca4469b4f06e92314c51f850a0e625b85d1f1 100644 --- a/app/code/core/Mage/PaypalUk/Helper/Data.php +++ b/app/code/core/Mage/PaypalUk/Helper/Data.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_PaypalUk - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/PaypalUk/Model/Api/Nvp.php b/app/code/core/Mage/PaypalUk/Model/Api/Nvp.php index 561e0c4e186e23e36ee2f92e1caea43ae67beaad..7ccf588576601a58310df3362553bcd2f26ca5bb 100644 --- a/app/code/core/Mage/PaypalUk/Model/Api/Nvp.php +++ b/app/code/core/Mage/PaypalUk/Model/Api/Nvp.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_PaypalUk - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/PaypalUk/Model/Direct.php b/app/code/core/Mage/PaypalUk/Model/Direct.php index 2128b413535728da795528183d1fc66eada5557a..0dd64fa5edc8b90b484254fdd15be6b7a70104d3 100644 --- a/app/code/core/Mage/PaypalUk/Model/Direct.php +++ b/app/code/core/Mage/PaypalUk/Model/Direct.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_PaypalUk - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/PaypalUk/Model/Express.php b/app/code/core/Mage/PaypalUk/Model/Express.php index 30d2e3cc8c1718d3f323b805adec4d84796b6826..0bdfa9832703d494644582c018938e296c4f2598 100644 --- a/app/code/core/Mage/PaypalUk/Model/Express.php +++ b/app/code/core/Mage/PaypalUk/Model/Express.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_PaypalUk - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/PaypalUk/Model/Express/Checkout.php b/app/code/core/Mage/PaypalUk/Model/Express/Checkout.php index 2005fb01a45878dbb2f8816cb39f1042661a908f..464bf86c559a4b0fbcf928fc720c1a8a71dff0ea 100644 --- a/app/code/core/Mage/PaypalUk/Model/Express/Checkout.php +++ b/app/code/core/Mage/PaypalUk/Model/Express/Checkout.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_PaypalUk - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/PaypalUk/Model/Pro.php b/app/code/core/Mage/PaypalUk/Model/Pro.php index 938ab9f4e07612b47e160229b400f7f87fe54c1f..fc3ca850c6435855b5db71e18b7be8e9c4698548 100644 --- a/app/code/core/Mage/PaypalUk/Model/Pro.php +++ b/app/code/core/Mage/PaypalUk/Model/Pro.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_PaypalUk - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/PaypalUk/Model/Session.php b/app/code/core/Mage/PaypalUk/Model/Session.php index 147540ab3ae7a0ab23a9d279f7eb679a6e89b5de..2f6cc9b0a4103a7402341810fddb41e00d0669ef 100644 --- a/app/code/core/Mage/PaypalUk/Model/Session.php +++ b/app/code/core/Mage/PaypalUk/Model/Session.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_PaypalUk - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/PaypalUk/controllers/ExpressController.php b/app/code/core/Mage/PaypalUk/controllers/ExpressController.php index be851b12992d90f8751304708cfc600b044ff4ec..9a373f113532b93bd8b7403fdfa48d4ae66028e6 100644 --- a/app/code/core/Mage/PaypalUk/controllers/ExpressController.php +++ b/app/code/core/Mage/PaypalUk/controllers/ExpressController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_PaypalUk - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/PaypalUk/etc/config.xml b/app/code/core/Mage/PaypalUk/etc/config.xml index 093f935f5f2c40896a2930759da394c3bdd2e7ad..07f5242190213776435b759499438691888ee8df 100644 --- a/app/code/core/Mage/PaypalUk/etc/config.xml +++ b/app/code/core/Mage/PaypalUk/etc/config.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_PaypalUk - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/PaypalUk/sql/paypaluk_setup/install-1.6.0.0.php b/app/code/core/Mage/PaypalUk/sql/paypaluk_setup/install-1.6.0.0.php index 0863852a7570f3838efec4d3fea2429bb7ee8d25..3a64af3d29519fcddf00e62d3e8b00aaddbdee99 100644 --- a/app/code/core/Mage/PaypalUk/sql/paypaluk_setup/install-1.6.0.0.php +++ b/app/code/core/Mage/PaypalUk/sql/paypaluk_setup/install-1.6.0.0.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_PaypalUk - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/PaypalUk/view/frontend/express/review.phtml b/app/code/core/Mage/PaypalUk/view/frontend/express/review.phtml index 4d43086a72cb36bcb70e1e2e216102394b8870d7..0cd72e9ce9081fa14cf898a8e82500ef02aa57be 100644 --- a/app/code/core/Mage/PaypalUk/view/frontend/express/review.phtml +++ b/app/code/core/Mage/PaypalUk/view/frontend/express/review.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /** @var $this Mage_Paypal_Block_Express_Review */ diff --git a/app/code/core/Mage/PaypalUk/view/frontend/layout.xml b/app/code/core/Mage/PaypalUk/view/frontend/layout.xml index 1382210877e8c757276d36093dd99d64815ad89c..5f6f5973a84a4c1c9f1ca53ebee8d0077d451c13 100644 --- a/app/code/core/Mage/PaypalUk/view/frontend/layout.xml +++ b/app/code/core/Mage/PaypalUk/view/frontend/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Persistent/Block/Form/Remember.php b/app/code/core/Mage/Persistent/Block/Form/Remember.php index 5d2d9f660a55f3c8e9496626a96a937a21d1cd86..ab39cb4729a407c2a69000a10716b0c468922c69 100644 --- a/app/code/core/Mage/Persistent/Block/Form/Remember.php +++ b/app/code/core/Mage/Persistent/Block/Form/Remember.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Persistent - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Persistent/Block/Header/Additional.php b/app/code/core/Mage/Persistent/Block/Header/Additional.php index 3717ae86826bb5ea15111b396a47a569a9b06386..a2b9e2a0018665ce08d0cd815f3bf09abde1c1a5 100644 --- a/app/code/core/Mage/Persistent/Block/Header/Additional.php +++ b/app/code/core/Mage/Persistent/Block/Header/Additional.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Persistent - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Persistent/Helper/Data.php b/app/code/core/Mage/Persistent/Helper/Data.php index 27bf052a4c50c8fb6bb6bb5977d4271f4ad062ad..98c2cb2b457d0f985ac3631d928dddd99bc44aa2 100644 --- a/app/code/core/Mage/Persistent/Helper/Data.php +++ b/app/code/core/Mage/Persistent/Helper/Data.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Persistent - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Persistent/Helper/Session.php b/app/code/core/Mage/Persistent/Helper/Session.php index 7a871d2b03123e81c3c4a8a5870ef4c84057313c..f03107354dcf341e2f73be0ecc4d91daee052576 100644 --- a/app/code/core/Mage/Persistent/Helper/Session.php +++ b/app/code/core/Mage/Persistent/Helper/Session.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Persistent - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Persistent/Model/Observer.php b/app/code/core/Mage/Persistent/Model/Observer.php index 24980b443ed3598278026b5dfdb210088c44595d..8c8e4b6548cc9a7055ac9a05289fb396b60d088b 100644 --- a/app/code/core/Mage/Persistent/Model/Observer.php +++ b/app/code/core/Mage/Persistent/Model/Observer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Persistent - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Persistent/Model/Observer/Session.php b/app/code/core/Mage/Persistent/Model/Observer/Session.php index ccd658100733d7aac094969eca181dc81508f385..9f4c1c09a1d1ac049b02aa6af1f5209093a2c7d5 100644 --- a/app/code/core/Mage/Persistent/Model/Observer/Session.php +++ b/app/code/core/Mage/Persistent/Model/Observer/Session.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Persistent - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Persistent/Model/Persistent/Config.php b/app/code/core/Mage/Persistent/Model/Persistent/Config.php index c20517be48600c05a53bba0c5975140a74b2e395..c8ec52f4809c03dfcb50f81b77ec03b1553e605a 100644 --- a/app/code/core/Mage/Persistent/Model/Persistent/Config.php +++ b/app/code/core/Mage/Persistent/Model/Persistent/Config.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Persistent - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Persistent/Model/Resource/Session.php b/app/code/core/Mage/Persistent/Model/Resource/Session.php index d3cbcf7659eda0e557e5d226fddac1c10d355d71..37cafe40c8297290235cc970cd602f01d2bf06be 100644 --- a/app/code/core/Mage/Persistent/Model/Resource/Session.php +++ b/app/code/core/Mage/Persistent/Model/Resource/Session.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Persistent - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Persistent/Model/Session.php b/app/code/core/Mage/Persistent/Model/Session.php index b18813eea75f28122b813d695ce0711739a9e464..b6a1a03e003eac7ef95881e6dcdcca7b1fd696a9 100644 --- a/app/code/core/Mage/Persistent/Model/Session.php +++ b/app/code/core/Mage/Persistent/Model/Session.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Persistent - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Persistent/controllers/IndexController.php b/app/code/core/Mage/Persistent/controllers/IndexController.php index 4fda3c827b5eb7a667b691d5232c6c4d5ec7a955..56ec3418230bd00216895fea49973060cf30dd56 100644 --- a/app/code/core/Mage/Persistent/controllers/IndexController.php +++ b/app/code/core/Mage/Persistent/controllers/IndexController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Persistent - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Persistent/etc/adminhtml/acl.xml b/app/code/core/Mage/Persistent/etc/adminhtml/acl.xml index 6cbb806bc45732c5b659f138d75c9342d5aae18e..367ca4c34abc8371ef71688b414558757193fecc 100644 --- a/app/code/core/Mage/Persistent/etc/adminhtml/acl.xml +++ b/app/code/core/Mage/Persistent/etc/adminhtml/acl.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Persistent - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Persistent/etc/adminhtml/system.xml b/app/code/core/Mage/Persistent/etc/adminhtml/system.xml index 1bf8ebbc6234fcb611bf70b4c9d89af59a9a91cc..821f2d4d111371d7527ad3cfc534c87ab7d4cbfd 100644 --- a/app/code/core/Mage/Persistent/etc/adminhtml/system.xml +++ b/app/code/core/Mage/Persistent/etc/adminhtml/system.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Persistent - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Persistent/etc/config.xml b/app/code/core/Mage/Persistent/etc/config.xml index 182fb91c5838184088c666a232b2a6e9c20b0608..4b9eee2632179f798aa575e5b6019e360c242c54 100644 --- a/app/code/core/Mage/Persistent/etc/config.xml +++ b/app/code/core/Mage/Persistent/etc/config.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Persistent - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Persistent/etc/persistent.xml b/app/code/core/Mage/Persistent/etc/persistent.xml index 166a583fa8f72d1af681c674905100e3c5e73fac..d1512ef88c3a9d7f6fbe6f354775a92d8fdf41ee 100644 --- a/app/code/core/Mage/Persistent/etc/persistent.xml +++ b/app/code/core/Mage/Persistent/etc/persistent.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Persistent - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Persistent/sql/persistent_setup/install-1.0.0.0.php b/app/code/core/Mage/Persistent/sql/persistent_setup/install-1.0.0.0.php index 5f31017ccbeafe163a5f064046163e62e3680b1f..dc138f337742462387176298c2ab775aa42da508 100644 --- a/app/code/core/Mage/Persistent/sql/persistent_setup/install-1.0.0.0.php +++ b/app/code/core/Mage/Persistent/sql/persistent_setup/install-1.0.0.0.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Persistent - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Persistent/view/frontend/checkout/onepage/billing.phtml b/app/code/core/Mage/Persistent/view/frontend/checkout/onepage/billing.phtml index d29abf9c95705c02ff0c2f990d5cfcd5086951a8..dd90f7aef6f46289ac6d489be950b2572d16db47 100644 --- a/app/code/core/Mage/Persistent/view/frontend/checkout/onepage/billing.phtml +++ b/app/code/core/Mage/Persistent/view/frontend/checkout/onepage/billing.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /** @var Mage_Checkout_Block_Onepage_Billing $this */ diff --git a/app/code/core/Mage/Persistent/view/frontend/checkout/onepage/login.phtml b/app/code/core/Mage/Persistent/view/frontend/checkout/onepage/login.phtml index acdcba0c462f2e315dc8f875fc6896fa29237ba9..18efcac5ce55179c15a22f2a9dda2cf12d760cf2 100644 --- a/app/code/core/Mage/Persistent/view/frontend/checkout/onepage/login.phtml +++ b/app/code/core/Mage/Persistent/view/frontend/checkout/onepage/login.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Persistent/view/frontend/customer/form/login.phtml b/app/code/core/Mage/Persistent/view/frontend/customer/form/login.phtml index 063f642fd4ec7d0ea9ae2129ca77bd646ddb3361..13ba3dd925c71fe3f176cd3c430114a05549cd21 100644 --- a/app/code/core/Mage/Persistent/view/frontend/customer/form/login.phtml +++ b/app/code/core/Mage/Persistent/view/frontend/customer/form/login.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Persistent/view/frontend/customer/form/register.phtml b/app/code/core/Mage/Persistent/view/frontend/customer/form/register.phtml index 8c84acf503d1e44eebb160b648773e09ed38d415..aed59f6694cccc32a4daee70248d662029ddbc1a 100644 --- a/app/code/core/Mage/Persistent/view/frontend/customer/form/register.phtml +++ b/app/code/core/Mage/Persistent/view/frontend/customer/form/register.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Persistent/view/frontend/layout.xml b/app/code/core/Mage/Persistent/view/frontend/layout.xml index 82dc661a3b412e6aa509b9547566dea20d76e503..72f1a1949617c3dc18955684b5cb20da79aee1d5 100644 --- a/app/code/core/Mage/Persistent/view/frontend/layout.xml +++ b/app/code/core/Mage/Persistent/view/frontend/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Persistent/view/frontend/remember_me.phtml b/app/code/core/Mage/Persistent/view/frontend/remember_me.phtml index 791434da7b9371820f62c7e420888c751128fefd..23ef169d532fb0362bf179db89cc76223d8efe63 100644 --- a/app/code/core/Mage/Persistent/view/frontend/remember_me.phtml +++ b/app/code/core/Mage/Persistent/view/frontend/remember_me.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Persistent/view/frontend/remember_me_tooltip.phtml b/app/code/core/Mage/Persistent/view/frontend/remember_me_tooltip.phtml index 7cbacff7faeff6a63fe1cd5b7683fb8bbab37a51..7aa4d27ddb46c8c99914348aaecd08d17fc76287 100644 --- a/app/code/core/Mage/Persistent/view/frontend/remember_me_tooltip.phtml +++ b/app/code/core/Mage/Persistent/view/frontend/remember_me_tooltip.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Poll/Block/ActivePoll.php b/app/code/core/Mage/Poll/Block/ActivePoll.php index c6801c52effebe7b2bdae1e0b934cd30a1331c43..03dbc6b1c913b495f9a3611b6d88a0bbf2888cf8 100755 --- a/app/code/core/Mage/Poll/Block/ActivePoll.php +++ b/app/code/core/Mage/Poll/Block/ActivePoll.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Poll - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Poll/Helper/Data.php b/app/code/core/Mage/Poll/Helper/Data.php index fe0d859f6350424e5e1601298e4c7a3486a5e360..7f8a29ea66e20ee22ef9a0895f6d99fe5da3f720 100644 --- a/app/code/core/Mage/Poll/Helper/Data.php +++ b/app/code/core/Mage/Poll/Helper/Data.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Poll - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Poll/Model/Poll.php b/app/code/core/Mage/Poll/Model/Poll.php index d55c0914c4af6706fd0d6294f85dcade451486e4..74404bfdde5f5c18d230bd0741f02641000f2bbf 100644 --- a/app/code/core/Mage/Poll/Model/Poll.php +++ b/app/code/core/Mage/Poll/Model/Poll.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Poll - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Poll/Model/Poll/Answer.php b/app/code/core/Mage/Poll/Model/Poll/Answer.php index 3cacb1f0630499a955bfeb737478b513c84246e4..29adbebbce0d25ab01f1bf1de023a6fb1a58d751 100644 --- a/app/code/core/Mage/Poll/Model/Poll/Answer.php +++ b/app/code/core/Mage/Poll/Model/Poll/Answer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Poll - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Poll/Model/Poll/Vote.php b/app/code/core/Mage/Poll/Model/Poll/Vote.php index 855793fddd5e12cc9a7f119df874f782752ce981..14bf087cf95549de0c5ea4206f5aeff81684357a 100644 --- a/app/code/core/Mage/Poll/Model/Poll/Vote.php +++ b/app/code/core/Mage/Poll/Model/Poll/Vote.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Poll - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Poll/Model/Resource/Poll.php b/app/code/core/Mage/Poll/Model/Resource/Poll.php index 873afb5b2d8244713ca278448b969f2dc9be7ca9..55c78797c037f88832b526d6b2d29839a54ae1a7 100755 --- a/app/code/core/Mage/Poll/Model/Resource/Poll.php +++ b/app/code/core/Mage/Poll/Model/Resource/Poll.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Poll - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Poll/Model/Resource/Poll/Answer.php b/app/code/core/Mage/Poll/Model/Resource/Poll/Answer.php index 6052d6c28a371c86c4ed77a3697f280d67821358..aeee9b2c960ecf497c3518d9cd34136d9f6aad82 100755 --- a/app/code/core/Mage/Poll/Model/Resource/Poll/Answer.php +++ b/app/code/core/Mage/Poll/Model/Resource/Poll/Answer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Poll - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Poll/Model/Resource/Poll/Answer/Collection.php b/app/code/core/Mage/Poll/Model/Resource/Poll/Answer/Collection.php index 421d3e8ce63c9be3ab540a88bfc33fa225797ea8..ea242d5f150a4c17ef258dfbdd91e24079130b4c 100755 --- a/app/code/core/Mage/Poll/Model/Resource/Poll/Answer/Collection.php +++ b/app/code/core/Mage/Poll/Model/Resource/Poll/Answer/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Poll - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Poll/Model/Resource/Poll/Collection.php b/app/code/core/Mage/Poll/Model/Resource/Poll/Collection.php index bdf43aa70c7924be05c183cb52ace66afd5ac0b8..60cbca808c0192e4477ee1ae167cdd12b34cbead 100755 --- a/app/code/core/Mage/Poll/Model/Resource/Poll/Collection.php +++ b/app/code/core/Mage/Poll/Model/Resource/Poll/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Poll - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Poll/Model/Resource/Poll/Vote.php b/app/code/core/Mage/Poll/Model/Resource/Poll/Vote.php index 4e54b1377227e3cd40bcc3ffbc45eeeba4247ca4..489eefc5b594a2819f0eb00699fd76907c695365 100755 --- a/app/code/core/Mage/Poll/Model/Resource/Poll/Vote.php +++ b/app/code/core/Mage/Poll/Model/Resource/Poll/Vote.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Poll - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Poll/controllers/VoteController.php b/app/code/core/Mage/Poll/controllers/VoteController.php index 7aab01e7998a3412b78327f212c88275eac023b3..3715a7e53a8fa59014bb5e80f1d4e87b3629df06 100644 --- a/app/code/core/Mage/Poll/controllers/VoteController.php +++ b/app/code/core/Mage/Poll/controllers/VoteController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Poll - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Poll/data/poll_setup/data-install-1.6.0.0.php b/app/code/core/Mage/Poll/data/poll_setup/data-install-1.6.0.0.php index fa77a26e3bf693a1a9b08182b621198c3a48c16b..eaf5e757589c79bff301d84a29e09c3fdf78a0d4 100644 --- a/app/code/core/Mage/Poll/data/poll_setup/data-install-1.6.0.0.php +++ b/app/code/core/Mage/Poll/data/poll_setup/data-install-1.6.0.0.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Poll - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Poll/etc/adminhtml/acl.xml b/app/code/core/Mage/Poll/etc/adminhtml/acl.xml index 6b6f2e5d8a17af8bfcdac37742c30a586ee428ac..d9654e818fe56b1fe704f63b49b352f14bb24de4 100644 --- a/app/code/core/Mage/Poll/etc/adminhtml/acl.xml +++ b/app/code/core/Mage/Poll/etc/adminhtml/acl.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Poll - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Poll/etc/adminhtml/menu.xml b/app/code/core/Mage/Poll/etc/adminhtml/menu.xml index 294d1dd3b7382c056cd433373992437dd47018bf..00166060b76dd3114fa7edec024fa95ab9eca823 100644 --- a/app/code/core/Mage/Poll/etc/adminhtml/menu.xml +++ b/app/code/core/Mage/Poll/etc/adminhtml/menu.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Poll - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Poll/etc/adminhtml/system.xml b/app/code/core/Mage/Poll/etc/adminhtml/system.xml index 2445fe4fd1e34591da3803b063581b652b628839..2609b8a47c5850233ea039a2277eba43fa2487e4 100644 --- a/app/code/core/Mage/Poll/etc/adminhtml/system.xml +++ b/app/code/core/Mage/Poll/etc/adminhtml/system.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Poll - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Poll/etc/config.xml b/app/code/core/Mage/Poll/etc/config.xml index 341ae240df0cb54fecc38c9209a6bce3158f976d..f7d2e421a67cbd13c751161cf180b593305bf5b9 100644 --- a/app/code/core/Mage/Poll/etc/config.xml +++ b/app/code/core/Mage/Poll/etc/config.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Poll - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Poll/sql/poll_setup/install-1.6.0.0.php b/app/code/core/Mage/Poll/sql/poll_setup/install-1.6.0.0.php index d9267853efc01c5b4bd11ae4fd18ce1119deb018..3f47da2bd919c51a118a1a5fa77d56d5dc5c45db 100644 --- a/app/code/core/Mage/Poll/sql/poll_setup/install-1.6.0.0.php +++ b/app/code/core/Mage/Poll/sql/poll_setup/install-1.6.0.0.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Poll - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Poll/view/frontend/active.phtml b/app/code/core/Mage/Poll/view/frontend/active.phtml index 7c7f25acd0aedbd95f15a2437f9d0fa0baab6f3a..87e1b3247921d7d7f13805314dbda01aab751956 100644 --- a/app/code/core/Mage/Poll/view/frontend/active.phtml +++ b/app/code/core/Mage/Poll/view/frontend/active.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Poll/view/frontend/layout.xml b/app/code/core/Mage/Poll/view/frontend/layout.xml index 10bb70714127352bbbb830179beceea9eb1cd087..79352b5fc40e0e2621a71cc2d41cc43db53788ec 100644 --- a/app/code/core/Mage/Poll/view/frontend/layout.xml +++ b/app/code/core/Mage/Poll/view/frontend/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Poll/view/frontend/poll.js b/app/code/core/Mage/Poll/view/frontend/poll.js index a8660f55568058acad14265cfe11123e543dbb42..eb4422effe2f661c3eb81e00e91cccc9493bf0e5 100644 --- a/app/code/core/Mage/Poll/view/frontend/poll.js +++ b/app/code/core/Mage/Poll/view/frontend/poll.js @@ -19,7 +19,7 @@ * * @category frontend poll * @package mage - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /*jshint browser:true jquery:true*/ diff --git a/app/code/core/Mage/Poll/view/frontend/result.phtml b/app/code/core/Mage/Poll/view/frontend/result.phtml index b8c4b65c199a47f24aeaf927efae0164f93b4cb3..703764806b8bda770a85a42cf16a9e838802b913 100644 --- a/app/code/core/Mage/Poll/view/frontend/result.phtml +++ b/app/code/core/Mage/Poll/view/frontend/result.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/ProductAlert/Block/Email/Abstract.php b/app/code/core/Mage/ProductAlert/Block/Email/Abstract.php index 18ca8ca21bb0c4f36fdb820080fb26d6943f5ef6..b213daa2a2e15a958ecfd0130d154bd694b24015 100644 --- a/app/code/core/Mage/ProductAlert/Block/Email/Abstract.php +++ b/app/code/core/Mage/ProductAlert/Block/Email/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ProductAlert - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ProductAlert/Block/Email/Price.php b/app/code/core/Mage/ProductAlert/Block/Email/Price.php index f8b3f447d7c6db6d0242f8e9ec7b0f6c8d0c7f7c..31b83e207fdf7e2aa071acafab57e104c19033b4 100644 --- a/app/code/core/Mage/ProductAlert/Block/Email/Price.php +++ b/app/code/core/Mage/ProductAlert/Block/Email/Price.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ProductAlert - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ProductAlert/Block/Email/Stock.php b/app/code/core/Mage/ProductAlert/Block/Email/Stock.php index 0ceb0eb8254c3d62ca442e2b8813098b3d0be7b0..31f38116d77ae6b8227c618b5cc86db2b39114da 100644 --- a/app/code/core/Mage/ProductAlert/Block/Email/Stock.php +++ b/app/code/core/Mage/ProductAlert/Block/Email/Stock.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ProductAlert - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ProductAlert/Block/Product/View.php b/app/code/core/Mage/ProductAlert/Block/Product/View.php index c95e2b3998f39667ba03c9339564c5448fba8341..d28d6882cbf4464916991000cc6e06067e6a2c24 100644 --- a/app/code/core/Mage/ProductAlert/Block/Product/View.php +++ b/app/code/core/Mage/ProductAlert/Block/Product/View.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ProductAlert - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ProductAlert/Helper/Data.php b/app/code/core/Mage/ProductAlert/Helper/Data.php index 4d70ff91ded8ca32275ac78f36cb8b3bf4262f72..ea8d13965199137be6e7bfa8a8f1bceccea66d07 100644 --- a/app/code/core/Mage/ProductAlert/Helper/Data.php +++ b/app/code/core/Mage/ProductAlert/Helper/Data.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ProductAlert - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ProductAlert/Model/Email.php b/app/code/core/Mage/ProductAlert/Model/Email.php index f3159b58694ecdae09cc17222776bcbb74be784e..f7e1524346bc8f802bc053e08ec0cdbaa3c3d478 100644 --- a/app/code/core/Mage/ProductAlert/Model/Email.php +++ b/app/code/core/Mage/ProductAlert/Model/Email.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ProductAlert - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ProductAlert/Model/Observer.php b/app/code/core/Mage/ProductAlert/Model/Observer.php index 766b484e95d5d8beed4fcf9cf1a1c7fa48df7cc8..5f101851a7fbf8ff418a5e4670b3b6c2e6ed59c4 100644 --- a/app/code/core/Mage/ProductAlert/Model/Observer.php +++ b/app/code/core/Mage/ProductAlert/Model/Observer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ProductAlert - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ProductAlert/Model/Price.php b/app/code/core/Mage/ProductAlert/Model/Price.php index 30db02acb32cff81f288b93cfb97711120b50142..59b4cd6445f3e9e004c4e200266744855d228d62 100644 --- a/app/code/core/Mage/ProductAlert/Model/Price.php +++ b/app/code/core/Mage/ProductAlert/Model/Price.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ProductAlert - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ProductAlert/Model/Resource/Abstract.php b/app/code/core/Mage/ProductAlert/Model/Resource/Abstract.php index a41d2602ed25f09f7d8079e7f2cc7051c5892cea..c5598c2e55a65eeec52f5e26709ddd7aa9004b57 100644 --- a/app/code/core/Mage/ProductAlert/Model/Resource/Abstract.php +++ b/app/code/core/Mage/ProductAlert/Model/Resource/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ProductAlert - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ProductAlert/Model/Resource/Price.php b/app/code/core/Mage/ProductAlert/Model/Resource/Price.php index 3d5b3eda0dc1a3a26f3343ddeab9e6c95ae649ee..0df33d9bfd133f0871d3f9e286ea41d1b170a52d 100755 --- a/app/code/core/Mage/ProductAlert/Model/Resource/Price.php +++ b/app/code/core/Mage/ProductAlert/Model/Resource/Price.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ProductAlert - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ProductAlert/Model/Resource/Price/Collection.php b/app/code/core/Mage/ProductAlert/Model/Resource/Price/Collection.php index d4cced595e853b8153ce9fa1fa46229c28f97598..1d7ea05b3ce5d35679a1b2d87f445ee0bb1df060 100755 --- a/app/code/core/Mage/ProductAlert/Model/Resource/Price/Collection.php +++ b/app/code/core/Mage/ProductAlert/Model/Resource/Price/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ProductAlert - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ProductAlert/Model/Resource/Price/Customer/Collection.php b/app/code/core/Mage/ProductAlert/Model/Resource/Price/Customer/Collection.php index 5b538a1c322fa9bb72a80dffa362c4fb3d848cdf..9278bfb1cea77441a77bfbbec554be68db8e0aeb 100755 --- a/app/code/core/Mage/ProductAlert/Model/Resource/Price/Customer/Collection.php +++ b/app/code/core/Mage/ProductAlert/Model/Resource/Price/Customer/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ProductAlert - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ProductAlert/Model/Resource/Stock.php b/app/code/core/Mage/ProductAlert/Model/Resource/Stock.php index 2ef14d633caf43c1de6044c1f5dfed6324b4dd40..25fc9bb83c6c9bbd37cea45f3f203e18d5f4d1e5 100755 --- a/app/code/core/Mage/ProductAlert/Model/Resource/Stock.php +++ b/app/code/core/Mage/ProductAlert/Model/Resource/Stock.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ProductAlert - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ProductAlert/Model/Resource/Stock/Collection.php b/app/code/core/Mage/ProductAlert/Model/Resource/Stock/Collection.php index a6bc9bfa1bc0ea5e173d9e56f0480cddedea2207..53ecf937a828c3ddacec568f3cd070b83ffd5c17 100755 --- a/app/code/core/Mage/ProductAlert/Model/Resource/Stock/Collection.php +++ b/app/code/core/Mage/ProductAlert/Model/Resource/Stock/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ProductAlert - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ProductAlert/Model/Resource/Stock/Customer/Collection.php b/app/code/core/Mage/ProductAlert/Model/Resource/Stock/Customer/Collection.php index e4242468910635990f4c4b200d62edea222e26dd..d5b7771775bd7d04109886e7d4a218ffcf58de6d 100755 --- a/app/code/core/Mage/ProductAlert/Model/Resource/Stock/Customer/Collection.php +++ b/app/code/core/Mage/ProductAlert/Model/Resource/Stock/Customer/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ProductAlert - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ProductAlert/Model/Stock.php b/app/code/core/Mage/ProductAlert/Model/Stock.php index 71a296d29be417d86a3d4da96482d18d9431a49e..81ac77f174557add6a213792c388c1006b5e56ff 100644 --- a/app/code/core/Mage/ProductAlert/Model/Stock.php +++ b/app/code/core/Mage/ProductAlert/Model/Stock.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ProductAlert - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ProductAlert/controllers/AddController.php b/app/code/core/Mage/ProductAlert/controllers/AddController.php index 52f90ae87fcd7208d745816bb2649d2c27fd851f..1a9345e740ece2ed9729cfd2985ed0823c8a0646 100644 --- a/app/code/core/Mage/ProductAlert/controllers/AddController.php +++ b/app/code/core/Mage/ProductAlert/controllers/AddController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ProductAlert - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ProductAlert/controllers/UnsubscribeController.php b/app/code/core/Mage/ProductAlert/controllers/UnsubscribeController.php index a6e90560096147dff43e02f2246254ac3245aed0..356149b005365ae598bf4766b8dfd2d7e5784aa8 100644 --- a/app/code/core/Mage/ProductAlert/controllers/UnsubscribeController.php +++ b/app/code/core/Mage/ProductAlert/controllers/UnsubscribeController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ProductAlert - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ProductAlert/etc/adminhtml/system.xml b/app/code/core/Mage/ProductAlert/etc/adminhtml/system.xml index dc7ceb3e01bd99032cf29493203e51c2cb469718..4cb9adde4e17c0ec54b36a394f685f7db90b310f 100644 --- a/app/code/core/Mage/ProductAlert/etc/adminhtml/system.xml +++ b/app/code/core/Mage/ProductAlert/etc/adminhtml/system.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_ProductAlert - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/ProductAlert/etc/config.xml b/app/code/core/Mage/ProductAlert/etc/config.xml index 9639f6b2dfa168f757c7e00e9659af9e415de5b9..fc536e02b86f76068b0e886e8da8507d6a70b032 100644 --- a/app/code/core/Mage/ProductAlert/etc/config.xml +++ b/app/code/core/Mage/ProductAlert/etc/config.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_ProductAlert - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/ProductAlert/sql/productalert_setup/install-1.6.0.0.php b/app/code/core/Mage/ProductAlert/sql/productalert_setup/install-1.6.0.0.php index 3fc6300943781a81df2a0549fbbe34a3e778b41f..d2a5de24528f7e37c05e9fc1d75ceac4d64c21fa 100644 --- a/app/code/core/Mage/ProductAlert/sql/productalert_setup/install-1.6.0.0.php +++ b/app/code/core/Mage/ProductAlert/sql/productalert_setup/install-1.6.0.0.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ProductAlert - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/ProductAlert/view/frontend/email/price.phtml b/app/code/core/Mage/ProductAlert/view/frontend/email/price.phtml index a07b65ec9a0e8362343688d927e096b2e306d310..bb63ed0979d36574d9330e1fda05dfaafb23d197 100644 --- a/app/code/core/Mage/ProductAlert/view/frontend/email/price.phtml +++ b/app/code/core/Mage/ProductAlert/view/frontend/email/price.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/ProductAlert/view/frontend/email/stock.phtml b/app/code/core/Mage/ProductAlert/view/frontend/email/stock.phtml index a95b9f45c15e4638b73177db25a59019727ea210..a946c1149c44efa449953e68d87c50408998f51b 100644 --- a/app/code/core/Mage/ProductAlert/view/frontend/email/stock.phtml +++ b/app/code/core/Mage/ProductAlert/view/frontend/email/stock.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/ProductAlert/view/frontend/layout.xml b/app/code/core/Mage/ProductAlert/view/frontend/layout.xml index d6b7e0d15c4c5239e1032a8673f9995972a4c4ec..354b1b921de039308253c0678862020d57c16bc0 100644 --- a/app/code/core/Mage/ProductAlert/view/frontend/layout.xml +++ b/app/code/core/Mage/ProductAlert/view/frontend/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/ProductAlert/view/frontend/product/view.phtml b/app/code/core/Mage/ProductAlert/view/frontend/product/view.phtml index 7932a6d62caf1192b9cf374d6c004bc7dfa47a8c..1184f1f7ec2d19f92bb20b4e046988b955a8b81c 100644 --- a/app/code/core/Mage/ProductAlert/view/frontend/product/view.phtml +++ b/app/code/core/Mage/ProductAlert/view/frontend/product/view.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Rating/Block/Entity/Detailed.php b/app/code/core/Mage/Rating/Block/Entity/Detailed.php index 6ee7df11a67c0d515e496806b0e0410c772d4da8..c25e618a297ade5f9f3e860ebf6f4bfa28e15e7d 100644 --- a/app/code/core/Mage/Rating/Block/Entity/Detailed.php +++ b/app/code/core/Mage/Rating/Block/Entity/Detailed.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Rating - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Rating/Helper/Data.php b/app/code/core/Mage/Rating/Helper/Data.php index 85f9d37f6e2771d2d2700d7548830cbdde565dbe..b9c17b7f7cf3df5799913a6651917b289ce3f322 100644 --- a/app/code/core/Mage/Rating/Helper/Data.php +++ b/app/code/core/Mage/Rating/Helper/Data.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Rating - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Rating/Model/Observer.php b/app/code/core/Mage/Rating/Model/Observer.php index 6857294322d472b388e6dc26885b7474f7af7de1..0b4f08b4fc67afe09b94349dff3f37364ec670bf 100644 --- a/app/code/core/Mage/Rating/Model/Observer.php +++ b/app/code/core/Mage/Rating/Model/Observer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Rating - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Rating/Model/Rating.php b/app/code/core/Mage/Rating/Model/Rating.php index 0e85c9c66216f28357ba676f6b0b288fbe6b53e0..622e7e3b40628f6d99ab452a0cd2b52484e6a857 100644 --- a/app/code/core/Mage/Rating/Model/Rating.php +++ b/app/code/core/Mage/Rating/Model/Rating.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Rating - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Rating/Model/Rating/Entity.php b/app/code/core/Mage/Rating/Model/Rating/Entity.php index 92dad994a740d51be2020cd2658bdd26e73e3bb0..826619a3df41ee896914cd1e2e34a0a6730a8ff2 100644 --- a/app/code/core/Mage/Rating/Model/Rating/Entity.php +++ b/app/code/core/Mage/Rating/Model/Rating/Entity.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Rating - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Rating/Model/Rating/Option.php b/app/code/core/Mage/Rating/Model/Rating/Option.php index 2df9dfe12b2d2c9cecb91ea8b60a805ee04a6d59..0d4551b7dcded375cf40b732ac4005689bb768f0 100644 --- a/app/code/core/Mage/Rating/Model/Rating/Option.php +++ b/app/code/core/Mage/Rating/Model/Rating/Option.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Rating - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Rating/Model/Rating/Option/Vote.php b/app/code/core/Mage/Rating/Model/Rating/Option/Vote.php index 91ead73cd14a52537b07216928638f21e66024db..4020286c32b267229c3a660aee29c08366ce4380 100644 --- a/app/code/core/Mage/Rating/Model/Rating/Option/Vote.php +++ b/app/code/core/Mage/Rating/Model/Rating/Option/Vote.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Rating - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Rating/Model/Resource/Rating.php b/app/code/core/Mage/Rating/Model/Resource/Rating.php index 482cd14061d1b378a998913c6326137a108b0956..475b298be497d5c640bc3d086774237d8865ad3f 100755 --- a/app/code/core/Mage/Rating/Model/Resource/Rating.php +++ b/app/code/core/Mage/Rating/Model/Resource/Rating.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Rating - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Rating/Model/Resource/Rating/Collection.php b/app/code/core/Mage/Rating/Model/Resource/Rating/Collection.php index cf66006792bcbf8a7716c7fdbcc9c82c3ed337bf..b74293c6c46d89c68503233f5aed6680eeeed493 100755 --- a/app/code/core/Mage/Rating/Model/Resource/Rating/Collection.php +++ b/app/code/core/Mage/Rating/Model/Resource/Rating/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Rating - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Rating/Model/Resource/Rating/Entity.php b/app/code/core/Mage/Rating/Model/Resource/Rating/Entity.php index 85fa79aa45f2c3d41d5956e3160b21fddfe7bf46..e4db56d8bd13164daeac6d1eae78c5c527399bbd 100755 --- a/app/code/core/Mage/Rating/Model/Resource/Rating/Entity.php +++ b/app/code/core/Mage/Rating/Model/Resource/Rating/Entity.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Rating - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Rating/Model/Resource/Rating/Option.php b/app/code/core/Mage/Rating/Model/Resource/Rating/Option.php index 9b91d2d4a4b4c512df23e78c59e75d5ff40c12ca..b0a7643f8af9564b56e0711c045d5b823a1d1d56 100755 --- a/app/code/core/Mage/Rating/Model/Resource/Rating/Option.php +++ b/app/code/core/Mage/Rating/Model/Resource/Rating/Option.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Rating - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Rating/Model/Resource/Rating/Option/Collection.php b/app/code/core/Mage/Rating/Model/Resource/Rating/Option/Collection.php index e901a24888110a443df29ed69d946d5f4d63e3c1..3a9d4e0dbd56d89a70e04383dbd59cb47e365b27 100755 --- a/app/code/core/Mage/Rating/Model/Resource/Rating/Option/Collection.php +++ b/app/code/core/Mage/Rating/Model/Resource/Rating/Option/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Rating - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Rating/Model/Resource/Rating/Option/Vote.php b/app/code/core/Mage/Rating/Model/Resource/Rating/Option/Vote.php index a3f16d949c3286d15f934c8118e6040a8de7a946..756180d17ae4c4aac20e878de9574eed1fede32d 100755 --- a/app/code/core/Mage/Rating/Model/Resource/Rating/Option/Vote.php +++ b/app/code/core/Mage/Rating/Model/Resource/Rating/Option/Vote.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Rating - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Rating/Model/Resource/Rating/Option/Vote/Collection.php b/app/code/core/Mage/Rating/Model/Resource/Rating/Option/Vote/Collection.php index f4320370c0c3ba35dd3cb5bdcc362d03552782c4..daa39069978af50220706f5d78b08d44da82927d 100755 --- a/app/code/core/Mage/Rating/Model/Resource/Rating/Option/Vote/Collection.php +++ b/app/code/core/Mage/Rating/Model/Resource/Rating/Option/Vote/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Rating - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Rating/data/rating_setup/data-install-1.6.0.0.php b/app/code/core/Mage/Rating/data/rating_setup/data-install-1.6.0.0.php index e59737e6f82ad0741a92e7205c43db334074d38b..8d889fb7cab20271e0addfaedf8bbb7e0695092e 100644 --- a/app/code/core/Mage/Rating/data/rating_setup/data-install-1.6.0.0.php +++ b/app/code/core/Mage/Rating/data/rating_setup/data-install-1.6.0.0.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Rating - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Rating/etc/adminhtml/acl.xml b/app/code/core/Mage/Rating/etc/adminhtml/acl.xml index ffe61ac8112dbe853214e060dabed1d1a7a950b7..feceedd12039acec8822de98d9f355a1b35af779 100644 --- a/app/code/core/Mage/Rating/etc/adminhtml/acl.xml +++ b/app/code/core/Mage/Rating/etc/adminhtml/acl.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Rating - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Rating/etc/config.xml b/app/code/core/Mage/Rating/etc/config.xml index 428c1c91e7a176352a6d565ad846e38ee504f15d..4b1cb0c1fc8f5c37dbb0860889d765a13f5d0942 100644 --- a/app/code/core/Mage/Rating/etc/config.xml +++ b/app/code/core/Mage/Rating/etc/config.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Rating - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Rating/sql/rating_setup/install-1.6.0.0.php b/app/code/core/Mage/Rating/sql/rating_setup/install-1.6.0.0.php index b8ac49d1660be67063da70f667fb8d81559269e4..3a842de9950b1349d5aca55acd7cfdc68bd2b3c4 100644 --- a/app/code/core/Mage/Rating/sql/rating_setup/install-1.6.0.0.php +++ b/app/code/core/Mage/Rating/sql/rating_setup/install-1.6.0.0.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Rating - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Rating/sql/rating_setup/upgrade-1.6.0.0-1.6.0.1.php b/app/code/core/Mage/Rating/sql/rating_setup/upgrade-1.6.0.0-1.6.0.1.php index fef3dba43211e06e8ffc9ce6d1e3257fa4256edd..df378b1d8c695694e50e2207d206f98211600d94 100644 --- a/app/code/core/Mage/Rating/sql/rating_setup/upgrade-1.6.0.0-1.6.0.1.php +++ b/app/code/core/Mage/Rating/sql/rating_setup/upgrade-1.6.0.0-1.6.0.1.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Rating - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Rating/view/frontend/detailed.phtml b/app/code/core/Mage/Rating/view/frontend/detailed.phtml index cbaa5abb4297fb61304559f4a4a772b8483242c6..827df219b8d8eadea58677ec8dfd0c9d87c6c1a0 100644 --- a/app/code/core/Mage/Rating/view/frontend/detailed.phtml +++ b/app/code/core/Mage/Rating/view/frontend/detailed.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Rating/view/frontend/empty.phtml b/app/code/core/Mage/Rating/view/frontend/empty.phtml index c9605fd480b91ba39723072fa5a7f907c85f11d1..94cafe5253d7ddc4e76dc24b278af83c4d5f7f75 100644 --- a/app/code/core/Mage/Rating/view/frontend/empty.phtml +++ b/app/code/core/Mage/Rating/view/frontend/empty.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Reports/Block/Adminhtml/Customer/Accounts.php b/app/code/core/Mage/Reports/Block/Adminhtml/Customer/Accounts.php index ef2536654f53e4922ef909392eaa424f4c5170db..9d46cad05c44e1d0b35f23329c125ddb869b6cef 100644 --- a/app/code/core/Mage/Reports/Block/Adminhtml/Customer/Accounts.php +++ b/app/code/core/Mage/Reports/Block/Adminhtml/Customer/Accounts.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Reports - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Reports/Block/Adminhtml/Customer/Orders.php b/app/code/core/Mage/Reports/Block/Adminhtml/Customer/Orders.php index 3f2ecb063d9c652f4a8446e9fb7e85698830ddbd..0960eaf5610494809b05c85c043753b0d35954ab 100644 --- a/app/code/core/Mage/Reports/Block/Adminhtml/Customer/Orders.php +++ b/app/code/core/Mage/Reports/Block/Adminhtml/Customer/Orders.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Reports - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Reports/Block/Adminhtml/Customer/Totals.php b/app/code/core/Mage/Reports/Block/Adminhtml/Customer/Totals.php index 92ab51a4351dc527c158ef9b5f2f6990b1dda986..55df197120c8ebc16a46140464fcc05f404f609a 100644 --- a/app/code/core/Mage/Reports/Block/Adminhtml/Customer/Totals.php +++ b/app/code/core/Mage/Reports/Block/Adminhtml/Customer/Totals.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Reports - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Reports/Block/Adminhtml/Grid.php b/app/code/core/Mage/Reports/Block/Adminhtml/Grid.php index c3a49a6dfebc3023fe75b5f16272c8025afffde9..2fe83ce869438d23474f0719833d284154a69bea 100644 --- a/app/code/core/Mage/Reports/Block/Adminhtml/Grid.php +++ b/app/code/core/Mage/Reports/Block/Adminhtml/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Reports - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Reports/Block/Adminhtml/Product/Sold.php b/app/code/core/Mage/Reports/Block/Adminhtml/Product/Sold.php index fd887fad95b8e073ab88577e461c518341455541..d9b6a1dcc2ce57c6b6f4aafccee8a7ccaff0b857 100644 --- a/app/code/core/Mage/Reports/Block/Adminhtml/Product/Sold.php +++ b/app/code/core/Mage/Reports/Block/Adminhtml/Product/Sold.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Reports - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Reports/Block/Product/Abstract.php b/app/code/core/Mage/Reports/Block/Product/Abstract.php index a0f66b50761feb80b3d782307f547f4ab0c5b2b4..03a0378cdf23221bd829351f625f3ecfc301d19d 100644 --- a/app/code/core/Mage/Reports/Block/Product/Abstract.php +++ b/app/code/core/Mage/Reports/Block/Product/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Reports - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Reports/Block/Product/Compared.php b/app/code/core/Mage/Reports/Block/Product/Compared.php index 5a176a0b4bef34a01f8da4e93c0eec4e18b02ba4..e16e129288458ac954c09f2e90d53d70da411545 100644 --- a/app/code/core/Mage/Reports/Block/Product/Compared.php +++ b/app/code/core/Mage/Reports/Block/Product/Compared.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Reports - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Reports/Block/Product/Viewed.php b/app/code/core/Mage/Reports/Block/Product/Viewed.php index b9fb7931844ac7a0168412eeb3ebebb92bc1d989..7e4d9207f75ce3fe76803ef488358f138cae0d83 100644 --- a/app/code/core/Mage/Reports/Block/Product/Viewed.php +++ b/app/code/core/Mage/Reports/Block/Product/Viewed.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Reports - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Reports/Block/Product/Widget/Compared.php b/app/code/core/Mage/Reports/Block/Product/Widget/Compared.php index 2377ea0281cfb44998e360a46a932b04dee8822b..171fad1c8ebb7296893e971b0d5a13f677f8f41a 100644 --- a/app/code/core/Mage/Reports/Block/Product/Widget/Compared.php +++ b/app/code/core/Mage/Reports/Block/Product/Widget/Compared.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Reports - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Reports/Block/Product/Widget/Viewed.php b/app/code/core/Mage/Reports/Block/Product/Widget/Viewed.php index a356d1df332e51ae22c911ca03dbba922cb38816..da10b31ae06e6c97a717fb29dc0856a455fda06d 100644 --- a/app/code/core/Mage/Reports/Block/Product/Widget/Viewed.php +++ b/app/code/core/Mage/Reports/Block/Product/Widget/Viewed.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Reports - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Reports/Exception.php b/app/code/core/Mage/Reports/Exception.php index 310989e67449f76caafade4436cea2f874caffcf..dc85ff6f716246dc125dc09b1113a3b6fe38b82d 100644 --- a/app/code/core/Mage/Reports/Exception.php +++ b/app/code/core/Mage/Reports/Exception.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Reports - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Reports/Helper/Data.php b/app/code/core/Mage/Reports/Helper/Data.php index c39fea6196ab68e9fa11f704e398a17597041489..cdc2ad6c9a2852e08d79429795af0bb11cba254e 100644 --- a/app/code/core/Mage/Reports/Helper/Data.php +++ b/app/code/core/Mage/Reports/Helper/Data.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Reports - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Reports/Model/Config.php b/app/code/core/Mage/Reports/Model/Config.php index 7b97db0423b79fbbcb9d25d12359f698f8b61efb..7b7db724f1ff7e277d88d92fe8f10cbf12830a18 100644 --- a/app/code/core/Mage/Reports/Model/Config.php +++ b/app/code/core/Mage/Reports/Model/Config.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Reports - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Reports/Model/Event.php b/app/code/core/Mage/Reports/Model/Event.php index 5eb2270c37777dcdc1ea2429962642fe65d37116..f48b9e951d333650bd39402747b05573e0a58caa 100644 --- a/app/code/core/Mage/Reports/Model/Event.php +++ b/app/code/core/Mage/Reports/Model/Event.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Reports - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Reports/Model/Event/Observer.php b/app/code/core/Mage/Reports/Model/Event/Observer.php index 8501331d0976e4b2dbae2b99c1a7f1f94752625c..90f4b7ae923f4cf35bc1fb503fbd39c8ebfc80fc 100644 --- a/app/code/core/Mage/Reports/Model/Event/Observer.php +++ b/app/code/core/Mage/Reports/Model/Event/Observer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Reports - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Reports/Model/Event/Type.php b/app/code/core/Mage/Reports/Model/Event/Type.php index be6d07a577267dff45ed5a170b211a4c88552fcc..4452c7e400eeb91a430bc7d8eca3e5d2125a5586 100644 --- a/app/code/core/Mage/Reports/Model/Event/Type.php +++ b/app/code/core/Mage/Reports/Model/Event/Type.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Reports - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Reports/Model/Flag.php b/app/code/core/Mage/Reports/Model/Flag.php index 9e958f18176c62624ecf065d42a94cf685ce716b..441d8a45ac6a91bb97d93e37a9da1db6fdc8a09b 100644 --- a/app/code/core/Mage/Reports/Model/Flag.php +++ b/app/code/core/Mage/Reports/Model/Flag.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Reports - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Reports/Model/Grouped/Collection.php b/app/code/core/Mage/Reports/Model/Grouped/Collection.php index 3d43bed4484be84902dc32e814cb8e7a712e74d7..d8533ee2fbff946c3e0cae913a04a2601d706085 100644 --- a/app/code/core/Mage/Reports/Model/Grouped/Collection.php +++ b/app/code/core/Mage/Reports/Model/Grouped/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Reports - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Reports_Model_Grouped_Collection diff --git a/app/code/core/Mage/Reports/Model/Product/Index/Abstract.php b/app/code/core/Mage/Reports/Model/Product/Index/Abstract.php index 7ad861e12dab2bf13ea9d6297cf1f216be108ed0..5f18a430132ae54d35b05240aa67de91cc542dc7 100644 --- a/app/code/core/Mage/Reports/Model/Product/Index/Abstract.php +++ b/app/code/core/Mage/Reports/Model/Product/Index/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Reports - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Reports/Model/Product/Index/Compared.php b/app/code/core/Mage/Reports/Model/Product/Index/Compared.php index 44ae8700854775d730e7ac8776d1363518730ae5..d90e060e6b9c2e0c782e4567aa4e97948d6fde85 100644 --- a/app/code/core/Mage/Reports/Model/Product/Index/Compared.php +++ b/app/code/core/Mage/Reports/Model/Product/Index/Compared.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Reports - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Reports/Model/Product/Index/Viewed.php b/app/code/core/Mage/Reports/Model/Product/Index/Viewed.php index c3f2b0ea2cd4125052a4eae4887412eb47bc4263..3cbc535e968fb0410c00e50f6abdd9b6b3704b22 100644 --- a/app/code/core/Mage/Reports/Model/Product/Index/Viewed.php +++ b/app/code/core/Mage/Reports/Model/Product/Index/Viewed.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Reports - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Reports/Model/Report.php b/app/code/core/Mage/Reports/Model/Report.php index 05c430f2fea49e5c14385c3a2d8b2e2dfaeab19b..5728075d31319c6a9539ba9cd55c4e5d93451b19 100644 --- a/app/code/core/Mage/Reports/Model/Report.php +++ b/app/code/core/Mage/Reports/Model/Report.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Reports - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Reports/Model/Resource/Accounts/Collection.php b/app/code/core/Mage/Reports/Model/Resource/Accounts/Collection.php index bbccd2de045a8f5a6fc98940d7a1fd1eab4be314..2ce26eb00462bc24de4716561184d70a9007bee2 100755 --- a/app/code/core/Mage/Reports/Model/Resource/Accounts/Collection.php +++ b/app/code/core/Mage/Reports/Model/Resource/Accounts/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Reports - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Reports/Model/Resource/Accounts/Collection/Initial.php b/app/code/core/Mage/Reports/Model/Resource/Accounts/Collection/Initial.php index 58a7cded25f00bf8d1daf7bca0556138a8622638..362d9be701d531906866de5223f809ee807e112c 100644 --- a/app/code/core/Mage/Reports/Model/Resource/Accounts/Collection/Initial.php +++ b/app/code/core/Mage/Reports/Model/Resource/Accounts/Collection/Initial.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Reports - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Reports/Model/Resource/Customer/Collection.php b/app/code/core/Mage/Reports/Model/Resource/Customer/Collection.php index 694512490bb41d999694e06ffbdefc85af747293..e507b2b93dfb13e56bcd29176aa891d527fda07b 100755 --- a/app/code/core/Mage/Reports/Model/Resource/Customer/Collection.php +++ b/app/code/core/Mage/Reports/Model/Resource/Customer/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Reports - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Reports/Model/Resource/Customer/Orders/Collection.php b/app/code/core/Mage/Reports/Model/Resource/Customer/Orders/Collection.php index fdeb505efdfd7ab546c193f3dafd0d16103cc930..6cf649863c00d5c3146c5b27a39648369a37d444 100755 --- a/app/code/core/Mage/Reports/Model/Resource/Customer/Orders/Collection.php +++ b/app/code/core/Mage/Reports/Model/Resource/Customer/Orders/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Reports - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Reports/Model/Resource/Customer/Orders/Collection/Initial.php b/app/code/core/Mage/Reports/Model/Resource/Customer/Orders/Collection/Initial.php index fb999235a24085adff2f6de3577af2cd08854d7e..4bb7a7aa07bd30cfaa0958c666f3dab35e20bff8 100644 --- a/app/code/core/Mage/Reports/Model/Resource/Customer/Orders/Collection/Initial.php +++ b/app/code/core/Mage/Reports/Model/Resource/Customer/Orders/Collection/Initial.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Reports - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Reports/Model/Resource/Customer/Totals/Collection.php b/app/code/core/Mage/Reports/Model/Resource/Customer/Totals/Collection.php index 1a887fc9fb3534eaa3ef1bfdcb36f684be83a204..c21c52d11b510ae2f2af4d6f857830cb08909b83 100755 --- a/app/code/core/Mage/Reports/Model/Resource/Customer/Totals/Collection.php +++ b/app/code/core/Mage/Reports/Model/Resource/Customer/Totals/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Reports - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Reports/Model/Resource/Customer/Totals/Collection/Initial.php b/app/code/core/Mage/Reports/Model/Resource/Customer/Totals/Collection/Initial.php index d8878189d1da7010d74060ca1f417ffcbb2a60f6..69835468a24df97c936dea057471dfd198ace75a 100644 --- a/app/code/core/Mage/Reports/Model/Resource/Customer/Totals/Collection/Initial.php +++ b/app/code/core/Mage/Reports/Model/Resource/Customer/Totals/Collection/Initial.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Reports - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Reports/Model/Resource/Entity/Summary/Collection/Abstract.php b/app/code/core/Mage/Reports/Model/Resource/Entity/Summary/Collection/Abstract.php index b830a6081091b5b1d3368dcb8cf6bb0955046be1..e57a6746461ebae8f3402685155a8c3f699cc554 100755 --- a/app/code/core/Mage/Reports/Model/Resource/Entity/Summary/Collection/Abstract.php +++ b/app/code/core/Mage/Reports/Model/Resource/Entity/Summary/Collection/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Reports - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Reports/Model/Resource/Event.php b/app/code/core/Mage/Reports/Model/Resource/Event.php index 54e14d548a2b11fc8f5a49c9a58a45e829e49187..c88f0f2a5b23b6ce4d5764f9ebaee2b5f80b4a9a 100755 --- a/app/code/core/Mage/Reports/Model/Resource/Event.php +++ b/app/code/core/Mage/Reports/Model/Resource/Event.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Reports - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Reports/Model/Resource/Event/Collection.php b/app/code/core/Mage/Reports/Model/Resource/Event/Collection.php index 83b328ea885962323b51d54ed20976ce86f933a0..89943e1cd4f1b8efbc5bcac1cbe810be3e89d6b7 100755 --- a/app/code/core/Mage/Reports/Model/Resource/Event/Collection.php +++ b/app/code/core/Mage/Reports/Model/Resource/Event/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Reports - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Reports/Model/Resource/Event/Type.php b/app/code/core/Mage/Reports/Model/Resource/Event/Type.php index 8d4c2e0d717396da9ae248afc88099279f6e18c7..e9353d098618b307a3c555610e0f569a13231570 100755 --- a/app/code/core/Mage/Reports/Model/Resource/Event/Type.php +++ b/app/code/core/Mage/Reports/Model/Resource/Event/Type.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Reports - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Reports/Model/Resource/Event/Type/Collection.php b/app/code/core/Mage/Reports/Model/Resource/Event/Type/Collection.php index 86623461c538138ea19c69e6ac7ba4cbb9b8250c..7aa0b67ad1be8c451c61e5388cf7e4fb12aeeb05 100755 --- a/app/code/core/Mage/Reports/Model/Resource/Event/Type/Collection.php +++ b/app/code/core/Mage/Reports/Model/Resource/Event/Type/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Reports - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Reports/Model/Resource/Helper/Interface.php b/app/code/core/Mage/Reports/Model/Resource/Helper/Interface.php index dfdc29de359885bfaef497378730204c949c7948..a94df932804c42207d8fb3ac0c1b1257f3d0ea76 100644 --- a/app/code/core/Mage/Reports/Model/Resource/Helper/Interface.php +++ b/app/code/core/Mage/Reports/Model/Resource/Helper/Interface.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Reports - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Reports/Model/Resource/Helper/Mysql4.php b/app/code/core/Mage/Reports/Model/Resource/Helper/Mysql4.php index b206223c97b26c48af34336b53f7591a8c34e600..0234e7fc471257f9a2101bbd82faa57a1edccbe4 100644 --- a/app/code/core/Mage/Reports/Model/Resource/Helper/Mysql4.php +++ b/app/code/core/Mage/Reports/Model/Resource/Helper/Mysql4.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Reports/Model/Resource/Order/Collection.php b/app/code/core/Mage/Reports/Model/Resource/Order/Collection.php index d0c9173e264b1267b4204d86d568587c94e03c26..3c0901ccb2d8162fc566ee1ed53e0ea104b55598 100755 --- a/app/code/core/Mage/Reports/Model/Resource/Order/Collection.php +++ b/app/code/core/Mage/Reports/Model/Resource/Order/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Reports - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Reports/Model/Resource/Product/Collection.php b/app/code/core/Mage/Reports/Model/Resource/Product/Collection.php index b6280c491614ea6c9b3982b4581ab904af8d58e9..9ac30acd76dc67a00e3f5469bb463554d032910b 100755 --- a/app/code/core/Mage/Reports/Model/Resource/Product/Collection.php +++ b/app/code/core/Mage/Reports/Model/Resource/Product/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Reports - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Reports/Model/Resource/Product/Downloads/Collection.php b/app/code/core/Mage/Reports/Model/Resource/Product/Downloads/Collection.php index 21a4a59421af1788eb0f490964b64c1e3b80cf3f..5227104fdefba66485c94f4023a4b8eed2e94f25 100755 --- a/app/code/core/Mage/Reports/Model/Resource/Product/Downloads/Collection.php +++ b/app/code/core/Mage/Reports/Model/Resource/Product/Downloads/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Reports - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Reports/Model/Resource/Product/Index/Abstract.php b/app/code/core/Mage/Reports/Model/Resource/Product/Index/Abstract.php index d5cc62f55be4a059c1030f1120e3850efe4e874d..16b50a8eea16aa701dfdd2a2ce9e14d103a2c4ef 100755 --- a/app/code/core/Mage/Reports/Model/Resource/Product/Index/Abstract.php +++ b/app/code/core/Mage/Reports/Model/Resource/Product/Index/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Reports - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Reports/Model/Resource/Product/Index/Collection/Abstract.php b/app/code/core/Mage/Reports/Model/Resource/Product/Index/Collection/Abstract.php index 009931b733fa2d28bfba47b41fd67a246a25f054..8a055382c8a379668ec10fc1386ee13b5ce377a2 100755 --- a/app/code/core/Mage/Reports/Model/Resource/Product/Index/Collection/Abstract.php +++ b/app/code/core/Mage/Reports/Model/Resource/Product/Index/Collection/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Reports - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Reports/Model/Resource/Product/Index/Compared.php b/app/code/core/Mage/Reports/Model/Resource/Product/Index/Compared.php index 8e5026421eda4841ae94decd02dd6c3b4c0304d9..db1502545e8b19bcf22b511ea45d0337d7fdf23d 100755 --- a/app/code/core/Mage/Reports/Model/Resource/Product/Index/Compared.php +++ b/app/code/core/Mage/Reports/Model/Resource/Product/Index/Compared.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Reports - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Reports/Model/Resource/Product/Index/Compared/Collection.php b/app/code/core/Mage/Reports/Model/Resource/Product/Index/Compared/Collection.php index cedad75620b8acb493ac03819108422f79cb10ed..524e0070b712b52efb5b7394b3748e097c03437e 100755 --- a/app/code/core/Mage/Reports/Model/Resource/Product/Index/Compared/Collection.php +++ b/app/code/core/Mage/Reports/Model/Resource/Product/Index/Compared/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Reports - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Reports/Model/Resource/Product/Index/Viewed.php b/app/code/core/Mage/Reports/Model/Resource/Product/Index/Viewed.php index 4cc80ee3b2eb6dc89b29fbd2082504f401a54b9b..dbf4ef0f3458812af5377112471a458075b3d2b3 100755 --- a/app/code/core/Mage/Reports/Model/Resource/Product/Index/Viewed.php +++ b/app/code/core/Mage/Reports/Model/Resource/Product/Index/Viewed.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Reports - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Reports/Model/Resource/Product/Index/Viewed/Collection.php b/app/code/core/Mage/Reports/Model/Resource/Product/Index/Viewed/Collection.php index d727142b1cdda70adbfc62331d97a43f0095abfd..b224726d5408a110d9747ee36f2bbeae354c8318 100755 --- a/app/code/core/Mage/Reports/Model/Resource/Product/Index/Viewed/Collection.php +++ b/app/code/core/Mage/Reports/Model/Resource/Product/Index/Viewed/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Reports - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Reports/Model/Resource/Product/Lowstock/Collection.php b/app/code/core/Mage/Reports/Model/Resource/Product/Lowstock/Collection.php index 701622ab6706b1359f38eb0c338dd2762b4dbff3..e40e8af902cb21fbc73d0fd18e9b08c9873dc155 100755 --- a/app/code/core/Mage/Reports/Model/Resource/Product/Lowstock/Collection.php +++ b/app/code/core/Mage/Reports/Model/Resource/Product/Lowstock/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Reports - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Reports/Model/Resource/Product/Sold/Collection.php b/app/code/core/Mage/Reports/Model/Resource/Product/Sold/Collection.php index 197da8019970d21cf1354f0b4206b54efbb295a4..ef378361d65bf3a5850447d28dcd8a8e79111f97 100755 --- a/app/code/core/Mage/Reports/Model/Resource/Product/Sold/Collection.php +++ b/app/code/core/Mage/Reports/Model/Resource/Product/Sold/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Reports - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Reports/Model/Resource/Product/Sold/Collection/Initial.php b/app/code/core/Mage/Reports/Model/Resource/Product/Sold/Collection/Initial.php index 49c8d40e93fa92fb1d46d3a521ba226532de3d3b..6659c54f0afa78cf0cb1c63ea8ac2abdd318b13c 100644 --- a/app/code/core/Mage/Reports/Model/Resource/Product/Sold/Collection/Initial.php +++ b/app/code/core/Mage/Reports/Model/Resource/Product/Sold/Collection/Initial.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Reports - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Reports/Model/Resource/Quote/Collection.php b/app/code/core/Mage/Reports/Model/Resource/Quote/Collection.php index e949bc4fcd01d1868d492406b38e509aea17faae..e3e0bc34247763129d72ecd8efcbfcae6503a3a5 100755 --- a/app/code/core/Mage/Reports/Model/Resource/Quote/Collection.php +++ b/app/code/core/Mage/Reports/Model/Resource/Quote/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Reports - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Reports/Model/Resource/Report/Abstract.php b/app/code/core/Mage/Reports/Model/Resource/Report/Abstract.php index 9cd9cefb15adfbb7c42d44a3599658aeba2ba5ab..619f5657c33d8cf6f36eed0c478e35b2c5232df9 100755 --- a/app/code/core/Mage/Reports/Model/Resource/Report/Abstract.php +++ b/app/code/core/Mage/Reports/Model/Resource/Report/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Reports - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Reports/Model/Resource/Report/Collection.php b/app/code/core/Mage/Reports/Model/Resource/Report/Collection.php index cea760512d22d29d1ca4f574ac8e2e314817b9ef..246c558f6d660bed709ba2cf6e6da3437b5f3c97 100755 --- a/app/code/core/Mage/Reports/Model/Resource/Report/Collection.php +++ b/app/code/core/Mage/Reports/Model/Resource/Report/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Reports - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Reports/Model/Resource/Report/Collection/Abstract.php b/app/code/core/Mage/Reports/Model/Resource/Report/Collection/Abstract.php index 05f2cc48363b29e81c116d3ad381385c950ffca9..0dce1f57c274f4655c07af2d1355f0002fc153c3 100644 --- a/app/code/core/Mage/Reports/Model/Resource/Report/Collection/Abstract.php +++ b/app/code/core/Mage/Reports/Model/Resource/Report/Collection/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Reports - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Reports/Model/Resource/Report/Product/Viewed.php b/app/code/core/Mage/Reports/Model/Resource/Report/Product/Viewed.php index d8499848cfed8dd56161fce67420dd71baddcf85..cc0ad551057e18914a5b313cfac75c1ea1cb64d8 100644 --- a/app/code/core/Mage/Reports/Model/Resource/Report/Product/Viewed.php +++ b/app/code/core/Mage/Reports/Model/Resource/Report/Product/Viewed.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Reports - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Reports/Model/Resource/Report/Product/Viewed/Collection.php b/app/code/core/Mage/Reports/Model/Resource/Report/Product/Viewed/Collection.php index 5cec1a57d4b8383f4cae9231d20c373896e1814c..7241b8b29145b2d1bb96465689e37a7fa2bc9f16 100644 --- a/app/code/core/Mage/Reports/Model/Resource/Report/Product/Viewed/Collection.php +++ b/app/code/core/Mage/Reports/Model/Resource/Report/Product/Viewed/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Reports - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Reports/Model/Resource/Review/Collection.php b/app/code/core/Mage/Reports/Model/Resource/Review/Collection.php index c325eac2ba1f2210c895a777eca1a675397ce9c1..a17d9dcac1d5760c5137eb2b4f91da4071442f59 100755 --- a/app/code/core/Mage/Reports/Model/Resource/Review/Collection.php +++ b/app/code/core/Mage/Reports/Model/Resource/Review/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Reports - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Reports/Model/Resource/Review/Customer/Collection.php b/app/code/core/Mage/Reports/Model/Resource/Review/Customer/Collection.php index 243d19e9d86e569a6c3c419a8ec4b91841255e6d..ab9033664d07daba30e7e58bf73ddb36bf8daace 100755 --- a/app/code/core/Mage/Reports/Model/Resource/Review/Customer/Collection.php +++ b/app/code/core/Mage/Reports/Model/Resource/Review/Customer/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Reports - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Reports/Model/Resource/Review/Product/Collection.php b/app/code/core/Mage/Reports/Model/Resource/Review/Product/Collection.php index ed183c6d58c28cb4fd69d0fae1400013d840fdce..b343475e3fe0b3cefb8acf67406aa14bf611a75c 100755 --- a/app/code/core/Mage/Reports/Model/Resource/Review/Product/Collection.php +++ b/app/code/core/Mage/Reports/Model/Resource/Review/Product/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Reports - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Reports/Model/Resource/Shopcart/Product/Collection.php b/app/code/core/Mage/Reports/Model/Resource/Shopcart/Product/Collection.php index 4e1fd311d34a90847f90904ecc7881dbc98cb5fa..9ff1484cbdc706fb0b01bf9a6daafac8f806499a 100755 --- a/app/code/core/Mage/Reports/Model/Resource/Shopcart/Product/Collection.php +++ b/app/code/core/Mage/Reports/Model/Resource/Shopcart/Product/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Reports - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Reports/Model/Resource/Wishlist/Collection.php b/app/code/core/Mage/Reports/Model/Resource/Wishlist/Collection.php index e98b499d8590d41cf688cf43a5e557d0abb6a7a6..58a2c5d36b16dffdb88ef01dc423789d40074c0d 100755 --- a/app/code/core/Mage/Reports/Model/Resource/Wishlist/Collection.php +++ b/app/code/core/Mage/Reports/Model/Resource/Wishlist/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Reports - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Reports/Model/Resource/Wishlist/Product/Collection.php b/app/code/core/Mage/Reports/Model/Resource/Wishlist/Product/Collection.php index bdb27779eba020e37a85f34ea4b66a8fdbd9e890..037dd222d49edb0bdb707878d6aa81b3f0f34d76 100755 --- a/app/code/core/Mage/Reports/Model/Resource/Wishlist/Product/Collection.php +++ b/app/code/core/Mage/Reports/Model/Resource/Wishlist/Product/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Reports - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Reports/Model/Session.php b/app/code/core/Mage/Reports/Model/Session.php index 565f6a09e0a929028c8d82349e1634599a036e98..3791e1ceeb889b179323130b8acf4accefd5b600 100644 --- a/app/code/core/Mage/Reports/Model/Session.php +++ b/app/code/core/Mage/Reports/Model/Session.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Reports - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Reports/Model/Test.php b/app/code/core/Mage/Reports/Model/Test.php index fdca7c89084c92fdc9663eaea703e4bc9658d6d1..070088849e508b4b7c8ea10fa5d59f919422fb58 100644 --- a/app/code/core/Mage/Reports/Model/Test.php +++ b/app/code/core/Mage/Reports/Model/Test.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Reports - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Reports/Model/Totals.php b/app/code/core/Mage/Reports/Model/Totals.php index 1cc711245b44a87200cc567e41052999049b2b47..adc04c3cfbb3a03a6f0ed3c7172307195bcc93b7 100644 --- a/app/code/core/Mage/Reports/Model/Totals.php +++ b/app/code/core/Mage/Reports/Model/Totals.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Reports - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Reports/data/reports_setup/data-install-1.6.0.0.php b/app/code/core/Mage/Reports/data/reports_setup/data-install-1.6.0.0.php index 92bde7403a400af3c7117b8995c0fdfbda23f031..962100ffa765f4db36b76e1346c87160854e936f 100644 --- a/app/code/core/Mage/Reports/data/reports_setup/data-install-1.6.0.0.php +++ b/app/code/core/Mage/Reports/data/reports_setup/data-install-1.6.0.0.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_ - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Reports/etc/adminhtml/acl.xml b/app/code/core/Mage/Reports/etc/adminhtml/acl.xml index 2ea66a51a0f5cb005be72ba8b74b7dc51861dc68..c6ad442048997eac0cbbb1592c3474a75afa99e4 100644 --- a/app/code/core/Mage/Reports/etc/adminhtml/acl.xml +++ b/app/code/core/Mage/Reports/etc/adminhtml/acl.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Reports - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Reports/etc/adminhtml/menu.xml b/app/code/core/Mage/Reports/etc/adminhtml/menu.xml index aebc5671ba8588c0693622ecf55284dce69d1c45..7214464e3d59218dc29030feaadbe77484c85e09 100644 --- a/app/code/core/Mage/Reports/etc/adminhtml/menu.xml +++ b/app/code/core/Mage/Reports/etc/adminhtml/menu.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Reports - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Reports/etc/adminhtml/system.xml b/app/code/core/Mage/Reports/etc/adminhtml/system.xml index 98a4016aa9272e99de0bd6fc2ef01838238d7289..93cab56b8f494b0d738653a1e93df95262768d91 100644 --- a/app/code/core/Mage/Reports/etc/adminhtml/system.xml +++ b/app/code/core/Mage/Reports/etc/adminhtml/system.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Reports - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Reports/etc/config.xml b/app/code/core/Mage/Reports/etc/config.xml index c11397102b5d315bda24069af70187ac0fb51ecf..84be33d2f5d7150485e7eb3a6046cc32cfbfe6fa 100644 --- a/app/code/core/Mage/Reports/etc/config.xml +++ b/app/code/core/Mage/Reports/etc/config.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Reports - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Reports/etc/widget.xml b/app/code/core/Mage/Reports/etc/widget.xml index ae983df3fd8c9f666c6936677078f9338d82a955..6f12167886d255c45800e635f00a263b6853b610 100644 --- a/app/code/core/Mage/Reports/etc/widget.xml +++ b/app/code/core/Mage/Reports/etc/widget.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Reports - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Reports/sql/reports_setup/install-1.6.0.0.php b/app/code/core/Mage/Reports/sql/reports_setup/install-1.6.0.0.php index b79f9210a70ef0d9888f3f14842b98dfb7bf24d5..41a3adb9234ffed0dffc9f59701f1a20561bef8a 100644 --- a/app/code/core/Mage/Reports/sql/reports_setup/install-1.6.0.0.php +++ b/app/code/core/Mage/Reports/sql/reports_setup/install-1.6.0.0.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Reports - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Reports/sql/reports_setup/mysql4-install-1.6.0.0.php b/app/code/core/Mage/Reports/sql/reports_setup/mysql4-install-1.6.0.0.php index fbebb8e64dd545478023325aabeeed72acb56fde..c3bec5f855f458882f475168f328a06f27448a1a 100644 --- a/app/code/core/Mage/Reports/sql/reports_setup/mysql4-install-1.6.0.0.php +++ b/app/code/core/Mage/Reports/sql/reports_setup/mysql4-install-1.6.0.0.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Reports - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Reports/sql/reports_setup/upgrade-1.6.0.0-1.6.0.0.1.php b/app/code/core/Mage/Reports/sql/reports_setup/upgrade-1.6.0.0-1.6.0.0.1.php index b49ce97ceb97fe06cdaeaa879d6661f6dcecf691..0523929a90fe09087ba615f77b48c29b468a9584 100644 --- a/app/code/core/Mage/Reports/sql/reports_setup/upgrade-1.6.0.0-1.6.0.0.1.php +++ b/app/code/core/Mage/Reports/sql/reports_setup/upgrade-1.6.0.0-1.6.0.0.1.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Reports - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Reports/sql/reports_setup/upgrade-1.6.0.0.1-1.6.0.0.2.php b/app/code/core/Mage/Reports/sql/reports_setup/upgrade-1.6.0.0.1-1.6.0.0.2.php index ef87c3fff38750b23dc8c74cc29627a7dca32518..236c7e0ac7c2eec5f9d91bc062469993237fdc8d 100644 --- a/app/code/core/Mage/Reports/sql/reports_setup/upgrade-1.6.0.0.1-1.6.0.0.2.php +++ b/app/code/core/Mage/Reports/sql/reports_setup/upgrade-1.6.0.0.1-1.6.0.0.2.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Reports - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Reports/view/adminhtml/grid.phtml b/app/code/core/Mage/Reports/view/adminhtml/grid.phtml index 234264930a875855300c53408aa6c3d456301a4c..351ca41150fc39f38077677a37f1c591b986e159 100644 --- a/app/code/core/Mage/Reports/view/adminhtml/grid.phtml +++ b/app/code/core/Mage/Reports/view/adminhtml/grid.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Reports/view/adminhtml/layout.xml b/app/code/core/Mage/Reports/view/adminhtml/layout.xml index 03e9042813b1e857edd03006eea25a024fcd117a..66fc2e9238790d446dc2f75685d078b19c9995fb 100644 --- a/app/code/core/Mage/Reports/view/adminhtml/layout.xml +++ b/app/code/core/Mage/Reports/view/adminhtml/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Reports/view/adminhtml/store/switcher.phtml b/app/code/core/Mage/Reports/view/adminhtml/store/switcher.phtml index ba624de31fd2fcc1e4bab074a102023d06da44e7..34123f223c7b2545da27ed13f6d78a219268b697 100644 --- a/app/code/core/Mage/Reports/view/adminhtml/store/switcher.phtml +++ b/app/code/core/Mage/Reports/view/adminhtml/store/switcher.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Reports/view/adminhtml/store/switcher/enhanced.phtml b/app/code/core/Mage/Reports/view/adminhtml/store/switcher/enhanced.phtml index 7d96f3246ab0a7ef24f8bef552def957fefa77d9..b18169cb4efa01c90896a071a0ee02796537198e 100644 --- a/app/code/core/Mage/Reports/view/adminhtml/store/switcher/enhanced.phtml +++ b/app/code/core/Mage/Reports/view/adminhtml/store/switcher/enhanced.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Reports/view/frontend/home_product_compared.phtml b/app/code/core/Mage/Reports/view/frontend/home_product_compared.phtml index 2f77b723178b813881ff3daebd70ab3f9e843c60..058df9808a5558238ea9d9a8d3096a224c109345 100644 --- a/app/code/core/Mage/Reports/view/frontend/home_product_compared.phtml +++ b/app/code/core/Mage/Reports/view/frontend/home_product_compared.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /* @var $this Mage_Reports_Block_Product_Compared */ diff --git a/app/code/core/Mage/Reports/view/frontend/home_product_viewed.phtml b/app/code/core/Mage/Reports/view/frontend/home_product_viewed.phtml index 2539518c0dbceecd32c0211b8099dd3ddd503998..ef63d301e9e84ed64010228e4676d2bb900c6e12 100644 --- a/app/code/core/Mage/Reports/view/frontend/home_product_viewed.phtml +++ b/app/code/core/Mage/Reports/view/frontend/home_product_viewed.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /* @var $this Mage_Reports_Block_Product_Viewed */ diff --git a/app/code/core/Mage/Reports/view/frontend/layout.xml b/app/code/core/Mage/Reports/view/frontend/layout.xml index 2c1f2efea87600f75be6f69f78e4093638d50321..e5059bc06048403902de4894ccfd3a689b19a626 100644 --- a/app/code/core/Mage/Reports/view/frontend/layout.xml +++ b/app/code/core/Mage/Reports/view/frontend/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Reports/view/frontend/product_compared.phtml b/app/code/core/Mage/Reports/view/frontend/product_compared.phtml index 322ff38db38fb6661b35369e35d28eab93de4a22..b71c819b77610e240d5982de2dba3d16f13ee5b8 100644 --- a/app/code/core/Mage/Reports/view/frontend/product_compared.phtml +++ b/app/code/core/Mage/Reports/view/frontend/product_compared.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /* @var $this Mage_Reports_Block_Product_Compared */ diff --git a/app/code/core/Mage/Reports/view/frontend/product_viewed.phtml b/app/code/core/Mage/Reports/view/frontend/product_viewed.phtml index 444f12097471b2e4d9bee1351fd1b8b2d005a2da..d5e3e0ee3474c3984ecab57ab3337e7c9515dce1 100644 --- a/app/code/core/Mage/Reports/view/frontend/product_viewed.phtml +++ b/app/code/core/Mage/Reports/view/frontend/product_viewed.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /* @var $this Mage_Reports_Block_Product_Viewed */ diff --git a/app/code/core/Mage/Reports/view/frontend/widget/compared/column/compared_default_list.phtml b/app/code/core/Mage/Reports/view/frontend/widget/compared/column/compared_default_list.phtml index 3ebefea18493b492b740d156e1827cf38b5ceb53..58a8a70e4b179a5674a3f6929730f02a225a76a6 100644 --- a/app/code/core/Mage/Reports/view/frontend/widget/compared/column/compared_default_list.phtml +++ b/app/code/core/Mage/Reports/view/frontend/widget/compared/column/compared_default_list.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Reports/view/frontend/widget/compared/column/compared_images_list.phtml b/app/code/core/Mage/Reports/view/frontend/widget/compared/column/compared_images_list.phtml index 3d76cb15619abfe8545043d6504bea4007b9d7ed..9a76f0dab1d1d591df4cfab66f1c3b9e811332a4 100644 --- a/app/code/core/Mage/Reports/view/frontend/widget/compared/column/compared_images_list.phtml +++ b/app/code/core/Mage/Reports/view/frontend/widget/compared/column/compared_images_list.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Reports/view/frontend/widget/compared/column/compared_names_list.phtml b/app/code/core/Mage/Reports/view/frontend/widget/compared/column/compared_names_list.phtml index 9695264778d9d6ad93a2abd9ccceb244fb90f8aa..464cd3539546038b854c370298aaab10081550ba 100644 --- a/app/code/core/Mage/Reports/view/frontend/widget/compared/column/compared_names_list.phtml +++ b/app/code/core/Mage/Reports/view/frontend/widget/compared/column/compared_names_list.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Reports/view/frontend/widget/compared/content/compared_grid.phtml b/app/code/core/Mage/Reports/view/frontend/widget/compared/content/compared_grid.phtml index e587540fa1717a1b88597a4156b4e5b0af42ba8d..9897c71bf892fb4f068a2cf2cf5bb0959eeda5d5 100644 --- a/app/code/core/Mage/Reports/view/frontend/widget/compared/content/compared_grid.phtml +++ b/app/code/core/Mage/Reports/view/frontend/widget/compared/content/compared_grid.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Reports/view/frontend/widget/compared/content/compared_list.phtml b/app/code/core/Mage/Reports/view/frontend/widget/compared/content/compared_list.phtml index ad7d18b957038d458b4d79b5da5a184bea46d123..719b8b3a66e9169f1591d7bc47bef3edd87a59bb 100644 --- a/app/code/core/Mage/Reports/view/frontend/widget/compared/content/compared_list.phtml +++ b/app/code/core/Mage/Reports/view/frontend/widget/compared/content/compared_list.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Reports/view/frontend/widget/viewed/column/viewed_default_list.phtml b/app/code/core/Mage/Reports/view/frontend/widget/viewed/column/viewed_default_list.phtml index 7859970c22c93604e4bcd2aceecb0799fca44860..22b41365b93a2f28f0acfb6309f043bb4b4990d8 100644 --- a/app/code/core/Mage/Reports/view/frontend/widget/viewed/column/viewed_default_list.phtml +++ b/app/code/core/Mage/Reports/view/frontend/widget/viewed/column/viewed_default_list.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Reports/view/frontend/widget/viewed/column/viewed_images_list.phtml b/app/code/core/Mage/Reports/view/frontend/widget/viewed/column/viewed_images_list.phtml index c837fa68f1c075e358ca3fb2f535c32340490307..aefb64399e52edba441c6d079475b678d949f90b 100644 --- a/app/code/core/Mage/Reports/view/frontend/widget/viewed/column/viewed_images_list.phtml +++ b/app/code/core/Mage/Reports/view/frontend/widget/viewed/column/viewed_images_list.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Reports/view/frontend/widget/viewed/column/viewed_names_list.phtml b/app/code/core/Mage/Reports/view/frontend/widget/viewed/column/viewed_names_list.phtml index 642ef983544204dad745d9f1f5baaca0092cc19a..376b2499eb0aaa842fac4a1810590791b3076b88 100644 --- a/app/code/core/Mage/Reports/view/frontend/widget/viewed/column/viewed_names_list.phtml +++ b/app/code/core/Mage/Reports/view/frontend/widget/viewed/column/viewed_names_list.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Reports/view/frontend/widget/viewed/content/viewed_grid.phtml b/app/code/core/Mage/Reports/view/frontend/widget/viewed/content/viewed_grid.phtml index 1d6cdd5c27b56497499f2e10215d04f0cb3f22a0..20867a873b4778ae5f5f404a73c0fb72a29f63b9 100644 --- a/app/code/core/Mage/Reports/view/frontend/widget/viewed/content/viewed_grid.phtml +++ b/app/code/core/Mage/Reports/view/frontend/widget/viewed/content/viewed_grid.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Reports/view/frontend/widget/viewed/content/viewed_list.phtml b/app/code/core/Mage/Reports/view/frontend/widget/viewed/content/viewed_list.phtml index d3f9cd10d4adbb5118e93f476e8033f93427917a..7731fddb6682db248f5cfa715f92ffed91cf532d 100644 --- a/app/code/core/Mage/Reports/view/frontend/widget/viewed/content/viewed_list.phtml +++ b/app/code/core/Mage/Reports/view/frontend/widget/viewed/content/viewed_list.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Reports/view/frontend/widgets.css b/app/code/core/Mage/Reports/view/frontend/widgets.css index 89ba4f72cd52f7128c1f215bde7144a3fb6cd0d6..7c34dc0549a0b0f47383c8b7efb246358ab89abd 100644 --- a/app/code/core/Mage/Reports/view/frontend/widgets.css +++ b/app/code/core/Mage/Reports/view/frontend/widgets.css @@ -19,7 +19,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Review/Block/Customer/List.php b/app/code/core/Mage/Review/Block/Customer/List.php index dd96e5710cd8f7bdc15ccf4ca47c31aacb6fc5ae..a40010f2558268bf76d37dd576badf44719a983e 100644 --- a/app/code/core/Mage/Review/Block/Customer/List.php +++ b/app/code/core/Mage/Review/Block/Customer/List.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Review - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Review/Block/Customer/Recent.php b/app/code/core/Mage/Review/Block/Customer/Recent.php index 1b479045d50910e911aa096484c9728d7dd225b1..4b5cba6e8f4ac6694ceadb6a29ad7d02e56f03f1 100644 --- a/app/code/core/Mage/Review/Block/Customer/Recent.php +++ b/app/code/core/Mage/Review/Block/Customer/Recent.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Review - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Review/Block/Customer/View.php b/app/code/core/Mage/Review/Block/Customer/View.php index cff19eb2035344072bb01e556e3efc7783d903cc..65e945412b27bd3e63181cb40725d6d7910feef6 100644 --- a/app/code/core/Mage/Review/Block/Customer/View.php +++ b/app/code/core/Mage/Review/Block/Customer/View.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Review - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Review/Block/Form.php b/app/code/core/Mage/Review/Block/Form.php index 70681598d6a91baa1f95557a1bde6f0aba1fa454..c0f7e5b5c85704e67783ae7f100f95f18b035f38 100644 --- a/app/code/core/Mage/Review/Block/Form.php +++ b/app/code/core/Mage/Review/Block/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Review - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Review/Block/Helper.php b/app/code/core/Mage/Review/Block/Helper.php index 519d0919320eeb9a46f064e4edf65878acedb0d8..720d679b74528733314a7c6c954778f784282275 100644 --- a/app/code/core/Mage/Review/Block/Helper.php +++ b/app/code/core/Mage/Review/Block/Helper.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Review - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Review/Block/Product/View.php b/app/code/core/Mage/Review/Block/Product/View.php index afa00aee274c21c29b75c8ad4a6dcebb2f3230d0..32a2fb7bca577d55648ad9363514d93860301d9b 100644 --- a/app/code/core/Mage/Review/Block/Product/View.php +++ b/app/code/core/Mage/Review/Block/Product/View.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Review - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Review/Block/Product/View/List.php b/app/code/core/Mage/Review/Block/Product/View/List.php index 5dd245eb3ef2e3e6938aa09630144737a96471f3..09ab003805b201d3e3480c395c49335ae5ef8946 100644 --- a/app/code/core/Mage/Review/Block/Product/View/List.php +++ b/app/code/core/Mage/Review/Block/Product/View/List.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Review - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Review/Block/View.php b/app/code/core/Mage/Review/Block/View.php index c56c6e61e6d05ef74222a27206d2ec2bb4a2179d..e8337d147e4ffdf4b379f6e3218b226246e39fc1 100644 --- a/app/code/core/Mage/Review/Block/View.php +++ b/app/code/core/Mage/Review/Block/View.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Review - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Review/Helper/Action/Pager.php b/app/code/core/Mage/Review/Helper/Action/Pager.php index 2e1dbe6c33b831031d6646c20fc8908483887377..1df3f128fb86573b41594e2c0552fc893ba38606 100644 --- a/app/code/core/Mage/Review/Helper/Action/Pager.php +++ b/app/code/core/Mage/Review/Helper/Action/Pager.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Review - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Review/Helper/Data.php b/app/code/core/Mage/Review/Helper/Data.php index d83a60903d13d1465e43a48b643486caf263b7a5..d5af275908125a057bfc67072ca962f9303e2b4e 100644 --- a/app/code/core/Mage/Review/Helper/Data.php +++ b/app/code/core/Mage/Review/Helper/Data.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Review - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Review/Model/Observer.php b/app/code/core/Mage/Review/Model/Observer.php index 744e801719e26b6c2ecec55196defb6b70491f24..8765eb148ac629cc8eb987d9ac68f6ed2eb6003b 100644 --- a/app/code/core/Mage/Review/Model/Observer.php +++ b/app/code/core/Mage/Review/Model/Observer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Review - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Review/Model/Resource/Review.php b/app/code/core/Mage/Review/Model/Resource/Review.php index 5abcc12758fd250ebb5c1f70bd7655e2c7c77901..1e02b02672d8800571f6b28c528e1b03b001cf06 100755 --- a/app/code/core/Mage/Review/Model/Resource/Review.php +++ b/app/code/core/Mage/Review/Model/Resource/Review.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Review - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Review/Model/Resource/Review/Collection.php b/app/code/core/Mage/Review/Model/Resource/Review/Collection.php index 0db6b699dc314abd7ad33d06f5b1998e0858a3dd..aacd52377d2466868bf07312c43ba7b0b5ef8f31 100755 --- a/app/code/core/Mage/Review/Model/Resource/Review/Collection.php +++ b/app/code/core/Mage/Review/Model/Resource/Review/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Review - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Review/Model/Resource/Review/Product/Collection.php b/app/code/core/Mage/Review/Model/Resource/Review/Product/Collection.php index 3d0d771abab34fc0ffad04244557a356b5795ab2..f70c58ffc5c655937856749b2dd05ce5d218762e 100755 --- a/app/code/core/Mage/Review/Model/Resource/Review/Product/Collection.php +++ b/app/code/core/Mage/Review/Model/Resource/Review/Product/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Review - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Review/Model/Resource/Review/Status.php b/app/code/core/Mage/Review/Model/Resource/Review/Status.php index 871cdde626649fe9147918dcf9828b65306b7dfa..0184390f46bbd2cd91a9384e0d8e0f1b70fe12b1 100644 --- a/app/code/core/Mage/Review/Model/Resource/Review/Status.php +++ b/app/code/core/Mage/Review/Model/Resource/Review/Status.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Review - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Review/Model/Resource/Review/Status/Collection.php b/app/code/core/Mage/Review/Model/Resource/Review/Status/Collection.php index ad70e621a36af3bb1bff30e048391c261cc3ed4e..97983778344cd1292c46bf262360b55530e432fe 100755 --- a/app/code/core/Mage/Review/Model/Resource/Review/Status/Collection.php +++ b/app/code/core/Mage/Review/Model/Resource/Review/Status/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Review - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Review/Model/Resource/Review/Summary.php b/app/code/core/Mage/Review/Model/Resource/Review/Summary.php index fa17b400b82d29e703f93aeb47b2d754e1775381..779718f1b188780d51e1ed544d867947ace0c33c 100755 --- a/app/code/core/Mage/Review/Model/Resource/Review/Summary.php +++ b/app/code/core/Mage/Review/Model/Resource/Review/Summary.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Review - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Review/Model/Resource/Review/Summary/Collection.php b/app/code/core/Mage/Review/Model/Resource/Review/Summary/Collection.php index be085318b0774076e40485129b51c705bce7747a..57d973800277581323abf5e80cf5181d302ff848 100755 --- a/app/code/core/Mage/Review/Model/Resource/Review/Summary/Collection.php +++ b/app/code/core/Mage/Review/Model/Resource/Review/Summary/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Review - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Review/Model/Review.php b/app/code/core/Mage/Review/Model/Review.php index c6ba2f03d66910c7f789d0a8a6d13c9c6a141962..c83908fc0247ab1a56ea0b86a360bc99fde426f9 100644 --- a/app/code/core/Mage/Review/Model/Review.php +++ b/app/code/core/Mage/Review/Model/Review.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Review - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Review/Model/Review/Status.php b/app/code/core/Mage/Review/Model/Review/Status.php index 05b3785aceaec1ee5d939795b6269241fd915e39..8261a1f5568f26905c17a764bef31028f6cdabcf 100644 --- a/app/code/core/Mage/Review/Model/Review/Status.php +++ b/app/code/core/Mage/Review/Model/Review/Status.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Review - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Review/Model/Review/Summary.php b/app/code/core/Mage/Review/Model/Review/Summary.php index 8433c90e76eb2293aeb21ba85e0cf783c186887c..79705a7ce756f0fa0c13f8025a0e50f9377d90f4 100644 --- a/app/code/core/Mage/Review/Model/Review/Summary.php +++ b/app/code/core/Mage/Review/Model/Review/Summary.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Review - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Review/Model/Session.php b/app/code/core/Mage/Review/Model/Session.php index f2f5b3c70b7371fe926c1bb6d07c087fbf1d5032..851788226d5d5579d3662279ed077a02fb22b263 100644 --- a/app/code/core/Mage/Review/Model/Session.php +++ b/app/code/core/Mage/Review/Model/Session.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Review - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Review/controllers/CustomerController.php b/app/code/core/Mage/Review/controllers/CustomerController.php index 28b0398c03b99ac1633c82174346301403d4d69d..5648f13927e51bd8ec3a42b24f69fe0e1c75fa35 100644 --- a/app/code/core/Mage/Review/controllers/CustomerController.php +++ b/app/code/core/Mage/Review/controllers/CustomerController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Review - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Review/controllers/ProductController.php b/app/code/core/Mage/Review/controllers/ProductController.php index eef33d840d23cdb3bf3c95a52c068e76d863a601..30fffd9b26de7b065cb1c80a9ee2689e936939fb 100644 --- a/app/code/core/Mage/Review/controllers/ProductController.php +++ b/app/code/core/Mage/Review/controllers/ProductController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Review - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Review/data/review_setup/data-install-1.6.0.0.php b/app/code/core/Mage/Review/data/review_setup/data-install-1.6.0.0.php index 2b689e90db059d7655ba2da44ecfcf2ce413b78d..0bafe9dbc349a9cc50e08918d2b373f2a979b104 100644 --- a/app/code/core/Mage/Review/data/review_setup/data-install-1.6.0.0.php +++ b/app/code/core/Mage/Review/data/review_setup/data-install-1.6.0.0.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Review - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Review/etc/adminhtml/acl.xml b/app/code/core/Mage/Review/etc/adminhtml/acl.xml index 1d5769799ad1792e426e8b2d1b2b2a07a2152661..25b6297f78170683b1f5c5b7835610edd8c94cc6 100644 --- a/app/code/core/Mage/Review/etc/adminhtml/acl.xml +++ b/app/code/core/Mage/Review/etc/adminhtml/acl.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Review - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Review/etc/adminhtml/menu.xml b/app/code/core/Mage/Review/etc/adminhtml/menu.xml index 851d582901cb546730a2c6bae3917fd34923d58d..d3fc17a608b47c70662e1007cebf9ac542940caf 100644 --- a/app/code/core/Mage/Review/etc/adminhtml/menu.xml +++ b/app/code/core/Mage/Review/etc/adminhtml/menu.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Review - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Review/etc/adminhtml/system.xml b/app/code/core/Mage/Review/etc/adminhtml/system.xml index bdf8b35d9fc19a0a1e8b96823e26982dd83ef57c..e4ee90c0b46e165f8ee1c83f32d72bd412fe09fd 100644 --- a/app/code/core/Mage/Review/etc/adminhtml/system.xml +++ b/app/code/core/Mage/Review/etc/adminhtml/system.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Review - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Review/etc/config.xml b/app/code/core/Mage/Review/etc/config.xml index 029016ac66d09329b0e807860cd3dd22f2782dfc..c60a6b301f8ac77937da57e458f76a6524fe3ddc 100644 --- a/app/code/core/Mage/Review/etc/config.xml +++ b/app/code/core/Mage/Review/etc/config.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Review - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Review/sql/review_setup/install-1.6.0.0.php b/app/code/core/Mage/Review/sql/review_setup/install-1.6.0.0.php index 0fa7ee5ea45e0e13864ac09edea9153bbd0cdb2d..a3e71cb65c4a8bcf8605595fb087df25ee6c6353 100644 --- a/app/code/core/Mage/Review/sql/review_setup/install-1.6.0.0.php +++ b/app/code/core/Mage/Review/sql/review_setup/install-1.6.0.0.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Review - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Review/view/frontend/customer/list.phtml b/app/code/core/Mage/Review/view/frontend/customer/list.phtml index fb255433e4e3363bbcdf9def4862612e113a63e0..d51d1f93d15649212226c9bfcedc17239d02bae4 100644 --- a/app/code/core/Mage/Review/view/frontend/customer/list.phtml +++ b/app/code/core/Mage/Review/view/frontend/customer/list.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Review/view/frontend/customer/recent.phtml b/app/code/core/Mage/Review/view/frontend/customer/recent.phtml index 39e3055fb88b38baba1139f4fd21fb8798906636..6299af49de08cb2050fc98348f9bd5ffd1a4ff2f 100644 --- a/app/code/core/Mage/Review/view/frontend/customer/recent.phtml +++ b/app/code/core/Mage/Review/view/frontend/customer/recent.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Review/view/frontend/customer/view.phtml b/app/code/core/Mage/Review/view/frontend/customer/view.phtml index 0a0c80f2b58b1800ca00c18986d93475147af568..c54f41fe2cda8f3f1f5965f8e3799c005d698874 100644 --- a/app/code/core/Mage/Review/view/frontend/customer/view.phtml +++ b/app/code/core/Mage/Review/view/frontend/customer/view.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Review/view/frontend/form.phtml b/app/code/core/Mage/Review/view/frontend/form.phtml index 51a0a5f7ec2cfcb601fecec340825bd481732c80..f3f1d14c77afb150bc00df08f9235f0922655968 100644 --- a/app/code/core/Mage/Review/view/frontend/form.phtml +++ b/app/code/core/Mage/Review/view/frontend/form.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Review/view/frontend/helper/summary.phtml b/app/code/core/Mage/Review/view/frontend/helper/summary.phtml index 8c00f4734d10bea5c3f160106f123f9ff1030cf2..a7a4329e3eecbb3ad70a59d72142563d25230996 100644 --- a/app/code/core/Mage/Review/view/frontend/helper/summary.phtml +++ b/app/code/core/Mage/Review/view/frontend/helper/summary.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Review/view/frontend/helper/summary_short.phtml b/app/code/core/Mage/Review/view/frontend/helper/summary_short.phtml index 85dfa8dd500135c169280c3033cbbdaf3994ba9d..950fd85927b260344c412ef6d5a36e9e5aff8985 100644 --- a/app/code/core/Mage/Review/view/frontend/helper/summary_short.phtml +++ b/app/code/core/Mage/Review/view/frontend/helper/summary_short.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Review/view/frontend/layout.xml b/app/code/core/Mage/Review/view/frontend/layout.xml index 146a502b4a0aa9df283c7ee2b27ad5f761df9cee..d73fb3aff3cbb343249ba5feec4d633fede66fbd 100644 --- a/app/code/core/Mage/Review/view/frontend/layout.xml +++ b/app/code/core/Mage/Review/view/frontend/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Review/view/frontend/product/view/count.phtml b/app/code/core/Mage/Review/view/frontend/product/view/count.phtml index 2bf6943f3c84d07f35e3784ba6baea28e9353e9d..6c5279c3f1abb64b334852c9738d80d6d48666a7 100644 --- a/app/code/core/Mage/Review/view/frontend/product/view/count.phtml +++ b/app/code/core/Mage/Review/view/frontend/product/view/count.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Review/view/frontend/product/view/list.phtml b/app/code/core/Mage/Review/view/frontend/product/view/list.phtml index e78afbee9307be0ebebc595e98469720eda0be2f..c0031f9f78eae7feca22b50dad2279521fee91a1 100644 --- a/app/code/core/Mage/Review/view/frontend/product/view/list.phtml +++ b/app/code/core/Mage/Review/view/frontend/product/view/list.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Review/view/frontend/product/view/other.phtml b/app/code/core/Mage/Review/view/frontend/product/view/other.phtml index 396dd44564cf5c1a38f5ed878d4e2549fed2006d..a4894d933e8ec555a169eed6c46655b44d1c6d08 100644 --- a/app/code/core/Mage/Review/view/frontend/product/view/other.phtml +++ b/app/code/core/Mage/Review/view/frontend/product/view/other.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Review/view/frontend/view.phtml b/app/code/core/Mage/Review/view/frontend/view.phtml index aa871f2a8bb3a2c814e60adbd1eea5231703de5c..7766da10e3e2725be82bf0645a3903db62317077 100644 --- a/app/code/core/Mage/Review/view/frontend/view.phtml +++ b/app/code/core/Mage/Review/view/frontend/view.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Rss/Block/Abstract.php b/app/code/core/Mage/Rss/Block/Abstract.php index 642ac0b916d1f9170426de0405b0e41f91aebcbc..ec0a5eb96cfea9b723c164070dbee1739b268cb9 100644 --- a/app/code/core/Mage/Rss/Block/Abstract.php +++ b/app/code/core/Mage/Rss/Block/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Rss - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Rss_Block_Abstract extends Mage_Core_Block_Template diff --git a/app/code/core/Mage/Rss/Block/Catalog/Abstract.php b/app/code/core/Mage/Rss/Block/Catalog/Abstract.php index eae3394f2fe0cd33ea67e56f39133ec9a2e4a185..7b9ed70655b4474a44e10c974dafee654a72233c 100644 --- a/app/code/core/Mage/Rss/Block/Catalog/Abstract.php +++ b/app/code/core/Mage/Rss/Block/Catalog/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Rss - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Rss_Block_Catalog_Abstract extends Mage_Rss_Block_Abstract diff --git a/app/code/core/Mage/Rss/Block/Catalog/Category.php b/app/code/core/Mage/Rss/Block/Catalog/Category.php index 9cf41528dbbc34dfdaed6f5e70254960a6d86dd3..8d47f97d8dad3923e9f72489f7f6caf281d0b448 100644 --- a/app/code/core/Mage/Rss/Block/Catalog/Category.php +++ b/app/code/core/Mage/Rss/Block/Catalog/Category.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Rss - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Rss/Block/Catalog/New.php b/app/code/core/Mage/Rss/Block/Catalog/New.php index 51eac32633ffda17fa44e4c9b96209eb55a8f3fe..0ffae3206855a2c6791ad997fae65be6ecf13ade 100644 --- a/app/code/core/Mage/Rss/Block/Catalog/New.php +++ b/app/code/core/Mage/Rss/Block/Catalog/New.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Rss - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Rss/Block/Catalog/NotifyStock.php b/app/code/core/Mage/Rss/Block/Catalog/NotifyStock.php index a8a0501828a9c00e10a634e3163c8ece2d63d8a0..468344748982e879c18db808f0a90e6d20ec15b7 100644 --- a/app/code/core/Mage/Rss/Block/Catalog/NotifyStock.php +++ b/app/code/core/Mage/Rss/Block/Catalog/NotifyStock.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Rss - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Rss/Block/Catalog/Review.php b/app/code/core/Mage/Rss/Block/Catalog/Review.php index a27b67afad3356f60d9c38a1142760ca6846c325..7c74878023d3b133358845a352bc64033eb1972a 100644 --- a/app/code/core/Mage/Rss/Block/Catalog/Review.php +++ b/app/code/core/Mage/Rss/Block/Catalog/Review.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Rss - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Rss/Block/Catalog/Salesrule.php b/app/code/core/Mage/Rss/Block/Catalog/Salesrule.php index ed81619b94ebe68f28447771ab6c42c6abb3ba0b..3b53430b880cc498a9fc06fded13f9a92ff5bf18 100644 --- a/app/code/core/Mage/Rss/Block/Catalog/Salesrule.php +++ b/app/code/core/Mage/Rss/Block/Catalog/Salesrule.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Rss - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Rss/Block/Catalog/Special.php b/app/code/core/Mage/Rss/Block/Catalog/Special.php index be84e1e7139198d7ba62e5e64b2a85e9c38435f3..5a5d576c157b4a6d04f6a05b4067e7a896bf9648 100644 --- a/app/code/core/Mage/Rss/Block/Catalog/Special.php +++ b/app/code/core/Mage/Rss/Block/Catalog/Special.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Rss - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Rss/Block/List.php b/app/code/core/Mage/Rss/Block/List.php index ce833a7f20f782ab2dcfc23036d0914e9bc704bb..3df0ee46c05c4a2ea2b32beb10cc04fa59f4befc 100644 --- a/app/code/core/Mage/Rss/Block/List.php +++ b/app/code/core/Mage/Rss/Block/List.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Rss - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Rss/Block/Order/Details.php b/app/code/core/Mage/Rss/Block/Order/Details.php index 81999cf68034e607c381a84dc5e386ace9f86989..606775ef4cf64fac058f4689de052d9e03645bf5 100644 --- a/app/code/core/Mage/Rss/Block/Order/Details.php +++ b/app/code/core/Mage/Rss/Block/Order/Details.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Rss - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Rss_Block_Order_Details extends Mage_Core_Block_Template diff --git a/app/code/core/Mage/Rss/Block/Order/New.php b/app/code/core/Mage/Rss/Block/Order/New.php index 3bdc87df64d99c45092d8b362c8c25d753b3709f..b7b2ae0982bbfbd1505f4acc42034f32ef65cc3a 100644 --- a/app/code/core/Mage/Rss/Block/Order/New.php +++ b/app/code/core/Mage/Rss/Block/Order/New.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Rss - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Rss/Block/Order/Status.php b/app/code/core/Mage/Rss/Block/Order/Status.php index 03a607c1febf445213ad28a7cde7d8dceb20ce58..2d11ceeb23ea25c89122236ee7359bb0bfd2d631 100644 --- a/app/code/core/Mage/Rss/Block/Order/Status.php +++ b/app/code/core/Mage/Rss/Block/Order/Status.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Rss - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Rss/Block/Wishlist.php b/app/code/core/Mage/Rss/Block/Wishlist.php index bd0a7cc95f23ff28430d01d96def135037dea582..665caaaf40caf183fc6de7fd1a812fef67e39dd1 100644 --- a/app/code/core/Mage/Rss/Block/Wishlist.php +++ b/app/code/core/Mage/Rss/Block/Wishlist.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Rss - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Rss/Helper/Data.php b/app/code/core/Mage/Rss/Helper/Data.php index bd6e7ea86b53d35b5a0e7ee04c6cb25fefe9a8b0..b89aee9c6167c09dad2af46fca335192cb9aafb0 100644 --- a/app/code/core/Mage/Rss/Helper/Data.php +++ b/app/code/core/Mage/Rss/Helper/Data.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Rss - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Rss/Helper/Order.php b/app/code/core/Mage/Rss/Helper/Order.php index 4237545d6275396cd4754d26a5726d2f7c767c28..ada13102512e72929e73682e7b0dfa3b4441306d 100644 --- a/app/code/core/Mage/Rss/Helper/Order.php +++ b/app/code/core/Mage/Rss/Helper/Order.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Rss - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Rss/Model/Resource/Order.php b/app/code/core/Mage/Rss/Model/Resource/Order.php index 2909d9377d66f88cf854da254d894e7ef6b2d9e7..10ffd303fc17443f28507ce99542b64e605a2999 100755 --- a/app/code/core/Mage/Rss/Model/Resource/Order.php +++ b/app/code/core/Mage/Rss/Model/Resource/Order.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Rss - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Rss/Model/Rss.php b/app/code/core/Mage/Rss/Model/Rss.php index 04c485e861ec7bbb163d30af3b391a859323e80b..8e4e2239c97b54731f7efa0ef0b63ce3456e4ad6 100644 --- a/app/code/core/Mage/Rss/Model/Rss.php +++ b/app/code/core/Mage/Rss/Model/Rss.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Rss - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Rss/Model/System/Config/Backend/Links.php b/app/code/core/Mage/Rss/Model/System/Config/Backend/Links.php index b8be1de58ec4ffff9c6f09d90db68a0cc90ccab8..dc8d8c47f92d9daf4639814d72a4a830253ee376 100644 --- a/app/code/core/Mage/Rss/Model/System/Config/Backend/Links.php +++ b/app/code/core/Mage/Rss/Model/System/Config/Backend/Links.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Rss - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Rss/controllers/CatalogController.php b/app/code/core/Mage/Rss/controllers/CatalogController.php index 7cc8da280275227356224086368ced02c18ace0f..3ebddb0536db32df15655c2dae4095dbeea599a1 100644 --- a/app/code/core/Mage/Rss/controllers/CatalogController.php +++ b/app/code/core/Mage/Rss/controllers/CatalogController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Rss - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Rss/controllers/IndexController.php b/app/code/core/Mage/Rss/controllers/IndexController.php index df697bb7218077e99e772c396f60ff79f9424af5..7b9bcf5410afa5215959c9de32c5d2f84e11144d 100644 --- a/app/code/core/Mage/Rss/controllers/IndexController.php +++ b/app/code/core/Mage/Rss/controllers/IndexController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Rss - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Rss/controllers/OrderController.php b/app/code/core/Mage/Rss/controllers/OrderController.php index d2e394a49b90efff55ccc4c10175597b18579b15..0442e9ab99fd1bc789b73c26d8ab267f6e0cf4ad 100644 --- a/app/code/core/Mage/Rss/controllers/OrderController.php +++ b/app/code/core/Mage/Rss/controllers/OrderController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Rss - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Rss/etc/adminhtml/acl.xml b/app/code/core/Mage/Rss/etc/adminhtml/acl.xml index 132ccf895a6362ae96dd4b97393ae573bab64c17..a3c6639d1549cc97c6e55e31400bdd95180e2fb5 100644 --- a/app/code/core/Mage/Rss/etc/adminhtml/acl.xml +++ b/app/code/core/Mage/Rss/etc/adminhtml/acl.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Rss - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Rss/etc/adminhtml/system.xml b/app/code/core/Mage/Rss/etc/adminhtml/system.xml index 288b6ba532dd9ee9a9c383ff72feffada2aab86d..accf3292152e4c2398dbd4a60f451ea37c55f72b 100644 --- a/app/code/core/Mage/Rss/etc/adminhtml/system.xml +++ b/app/code/core/Mage/Rss/etc/adminhtml/system.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Rss - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Rss/etc/config.xml b/app/code/core/Mage/Rss/etc/config.xml index bcc7f2e6626e1f838eadbcfe2349c6ffe3dd6aa1..c61f4a0caf12833b0183bfa04bf6afa2090dea23 100644 --- a/app/code/core/Mage/Rss/etc/config.xml +++ b/app/code/core/Mage/Rss/etc/config.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Rss - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Rss/view/adminhtml/layout.xml b/app/code/core/Mage/Rss/view/adminhtml/layout.xml index 6363e0b0f947afc4fbe1dfbd71d2a97ac1b0c351..b2de5f622e358494e64ef95f0424d0e67eb27729 100644 --- a/app/code/core/Mage/Rss/view/adminhtml/layout.xml +++ b/app/code/core/Mage/Rss/view/adminhtml/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Rss/view/frontend/layout.xml b/app/code/core/Mage/Rss/view/frontend/layout.xml index 9478b8caeecbc2102478a1c1ef09be067619c805..3dc7b610d66bc60d3468cd1826a751328ae20bb9 100644 --- a/app/code/core/Mage/Rss/view/frontend/layout.xml +++ b/app/code/core/Mage/Rss/view/frontend/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Rss/view/frontend/list.phtml b/app/code/core/Mage/Rss/view/frontend/list.phtml index ee4fcb24fc7044a8fa21c45ca0827f99366ce460..d46b01ba6bbf52c5e85839ca8f938d39a53f0717 100644 --- a/app/code/core/Mage/Rss/view/frontend/list.phtml +++ b/app/code/core/Mage/Rss/view/frontend/list.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Rss/view/frontend/order/details.phtml b/app/code/core/Mage/Rss/view/frontend/order/details.phtml index 5f56685478d470782e4cabbc66759dfca80b2937..a4155c58ca50447d6dc6f4e719882aa4aaab6ef0 100644 --- a/app/code/core/Mage/Rss/view/frontend/order/details.phtml +++ b/app/code/core/Mage/Rss/view/frontend/order/details.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /* diff --git a/app/code/core/Mage/Rule/Block/Actions.php b/app/code/core/Mage/Rule/Block/Actions.php index f1a716dd7692d03f47861f225069e4bf458a606e..8a3025d540dd84005287ca6d6edb87cb23ef8b6d 100644 --- a/app/code/core/Mage/Rule/Block/Actions.php +++ b/app/code/core/Mage/Rule/Block/Actions.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Rule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Rule/Block/Conditions.php b/app/code/core/Mage/Rule/Block/Conditions.php index 821d1099a308bd1f0272d7db503136545a14c453..3aee7ef74b3932c5b9ff720c31daaf19bf0f488f 100644 --- a/app/code/core/Mage/Rule/Block/Conditions.php +++ b/app/code/core/Mage/Rule/Block/Conditions.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Rule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Rule/Block/Editable.php b/app/code/core/Mage/Rule/Block/Editable.php index c30ae65bec3b454d23d67ed0069a20f7d27dfa4d..98d1493b7e024392067b92c0c7688cfb7d942e04 100644 --- a/app/code/core/Mage/Rule/Block/Editable.php +++ b/app/code/core/Mage/Rule/Block/Editable.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Rule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Rule/Block/Newchild.php b/app/code/core/Mage/Rule/Block/Newchild.php index 6047bab351a00c0a11f24be51a8d7d6c6d940a6d..878aaaf1716f60c4268e2eb014884e858a0b85ce 100644 --- a/app/code/core/Mage/Rule/Block/Newchild.php +++ b/app/code/core/Mage/Rule/Block/Newchild.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Rule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Rule/Block/Rule.php b/app/code/core/Mage/Rule/Block/Rule.php index e528501f1a30c4ecb679e609ad8a26489aa983c1..ae8a1aab8800533027b552cfca15f880e9baed6d 100644 --- a/app/code/core/Mage/Rule/Block/Rule.php +++ b/app/code/core/Mage/Rule/Block/Rule.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Rule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Rule/Helper/Data.php b/app/code/core/Mage/Rule/Helper/Data.php index fac6f2e171e60c08ed988b594238aa6517b9bd6b..9a4fbff5527044c96f16cbf7634346a72d18fbf6 100644 --- a/app/code/core/Mage/Rule/Helper/Data.php +++ b/app/code/core/Mage/Rule/Helper/Data.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Rule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Rule/Model/Abstract.php b/app/code/core/Mage/Rule/Model/Abstract.php index 33d85d8398f0a016d7e3a0acf460e8f372504575..62c9e3bacdd7183932255c1aba778d1eb57c57fa 100644 --- a/app/code/core/Mage/Rule/Model/Abstract.php +++ b/app/code/core/Mage/Rule/Model/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Rule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Rule/Model/Action/Abstract.php b/app/code/core/Mage/Rule/Model/Action/Abstract.php index cbe3d9260c4265b78265fa140770d023ec7713de..482cc75c5fa68994159fc7dd29e10eb045b0464f 100644 --- a/app/code/core/Mage/Rule/Model/Action/Abstract.php +++ b/app/code/core/Mage/Rule/Model/Action/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Rule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Rule/Model/Action/Collection.php b/app/code/core/Mage/Rule/Model/Action/Collection.php index 7b14976b10087eca53dd4862f9dfdc229d104869..5bceb9deeaf69e0d347624fe45eaadcec28cedfc 100644 --- a/app/code/core/Mage/Rule/Model/Action/Collection.php +++ b/app/code/core/Mage/Rule/Model/Action/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Rule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Rule/Model/Action/Interface.php b/app/code/core/Mage/Rule/Model/Action/Interface.php index 1497c51f7949827db0270476b0471c5e2e288cda..53480bdeca91694fb21501f4648e6fe9693342d0 100644 --- a/app/code/core/Mage/Rule/Model/Action/Interface.php +++ b/app/code/core/Mage/Rule/Model/Action/Interface.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Rule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Rule/Model/Condition/Abstract.php b/app/code/core/Mage/Rule/Model/Condition/Abstract.php index da00defd97347b78fc2e16f0f261a1dd90cd02f5..b5b07cd163bdb8c3a46e925ee510551e65fa7b1d 100644 --- a/app/code/core/Mage/Rule/Model/Condition/Abstract.php +++ b/app/code/core/Mage/Rule/Model/Condition/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Rule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Rule/Model/Condition/Combine.php b/app/code/core/Mage/Rule/Model/Condition/Combine.php index 2bdcb40127544147a02f1460459f8dfbcf281fee..f454c8e2080c8d02609db00ebd349f25b82abcf5 100644 --- a/app/code/core/Mage/Rule/Model/Condition/Combine.php +++ b/app/code/core/Mage/Rule/Model/Condition/Combine.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Rule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Rule/Model/Condition/Interface.php b/app/code/core/Mage/Rule/Model/Condition/Interface.php index 244a5f171f616f247285e2634b830027404070e4..66b1b5b0b78969a569b899dcd936c71ba5b84ee7 100644 --- a/app/code/core/Mage/Rule/Model/Condition/Interface.php +++ b/app/code/core/Mage/Rule/Model/Condition/Interface.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Rule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Rule/Model/Condition/Product/Abstract.php b/app/code/core/Mage/Rule/Model/Condition/Product/Abstract.php index b03ffb3989d97f4976f7e39bd1a5542cd82f9783..0c9a56ee9b3922a7c8692b6f72d3017f5afbd59f 100644 --- a/app/code/core/Mage/Rule/Model/Condition/Product/Abstract.php +++ b/app/code/core/Mage/Rule/Model/Condition/Product/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Rule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Rule/Model/Renderer/Actions.php b/app/code/core/Mage/Rule/Model/Renderer/Actions.php index 9caaaaa9ce75042c22091b3ef9968a2907940ed2..081d1ec26e42c6031a681bfae4db8993b204a638 100644 --- a/app/code/core/Mage/Rule/Model/Renderer/Actions.php +++ b/app/code/core/Mage/Rule/Model/Renderer/Actions.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Rule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Rule/Model/Renderer/Conditions.php b/app/code/core/Mage/Rule/Model/Renderer/Conditions.php index 31c44613bfd6693a84736e6ae4c086747a255910..4263c68e63708b90623065213f652c9cfe7c3e45 100644 --- a/app/code/core/Mage/Rule/Model/Renderer/Conditions.php +++ b/app/code/core/Mage/Rule/Model/Renderer/Conditions.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Rule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Rule/Model/Resource/Abstract.php b/app/code/core/Mage/Rule/Model/Resource/Abstract.php index 6d552dc8d55f75568aaf31d70a0db4dd442646a8..0bdfdd181db2899d16e9df08ef848ada046cea44 100644 --- a/app/code/core/Mage/Rule/Model/Resource/Abstract.php +++ b/app/code/core/Mage/Rule/Model/Resource/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Rule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Rule/Model/Resource/Rule/Collection/Abstract.php b/app/code/core/Mage/Rule/Model/Resource/Rule/Collection/Abstract.php index ac8c541d046a678253f641190644f74ae0c83de9..2967eb5b7b62d36cb1d3512854d40619db198809 100644 --- a/app/code/core/Mage/Rule/Model/Resource/Rule/Collection/Abstract.php +++ b/app/code/core/Mage/Rule/Model/Resource/Rule/Collection/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Rule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Rule/Model/Rule.php b/app/code/core/Mage/Rule/Model/Rule.php index a3d3d8f25aaaa816c93798a57c2bc283967ccf90..ffb32489907599406534fe7603e1db2218e9f35e 100644 --- a/app/code/core/Mage/Rule/Model/Rule.php +++ b/app/code/core/Mage/Rule/Model/Rule.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Rule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Rule/etc/config.xml b/app/code/core/Mage/Rule/etc/config.xml index b28ecd115c45ec3a082012761c3573459f5b3fb9..c2a4346de5ece6a99f5ac9ac5f003fca759f5ab0 100644 --- a/app/code/core/Mage/Rule/etc/config.xml +++ b/app/code/core/Mage/Rule/etc/config.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Rule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Sales/Block/Adminhtml/Billing/Agreement.php b/app/code/core/Mage/Sales/Block/Adminhtml/Billing/Agreement.php index 99ee59f1a13ee7fcf38b2b936b93841901673369..d5c01b4f30dda43c14fcf95d72e4fb7a3f8f25ca 100644 --- a/app/code/core/Mage/Sales/Block/Adminhtml/Billing/Agreement.php +++ b/app/code/core/Mage/Sales/Block/Adminhtml/Billing/Agreement.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Block/Adminhtml/Billing/Agreement/Grid.php b/app/code/core/Mage/Sales/Block/Adminhtml/Billing/Agreement/Grid.php index b16608f02f9d2fb271c7b123915465046c097dca..baa08ce4806aadbac26b58e25d04f20a2a2df488 100644 --- a/app/code/core/Mage/Sales/Block/Adminhtml/Billing/Agreement/Grid.php +++ b/app/code/core/Mage/Sales/Block/Adminhtml/Billing/Agreement/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Block/Adminhtml/Billing/Agreement/View.php b/app/code/core/Mage/Sales/Block/Adminhtml/Billing/Agreement/View.php index 37a10bbe2e838432f9ef2ce711d0428172e747b7..5fff8ae4c663adbfb452352e0d7c020ff8e2d0fb 100644 --- a/app/code/core/Mage/Sales/Block/Adminhtml/Billing/Agreement/View.php +++ b/app/code/core/Mage/Sales/Block/Adminhtml/Billing/Agreement/View.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Block/Adminhtml/Billing/Agreement/View/Form.php b/app/code/core/Mage/Sales/Block/Adminhtml/Billing/Agreement/View/Form.php index 14dc3a221c0c93368b5125d8f10527a8326a0eed..eaf50cbcab21b4b0508ff476aa87fa276256a065 100644 --- a/app/code/core/Mage/Sales/Block/Adminhtml/Billing/Agreement/View/Form.php +++ b/app/code/core/Mage/Sales/Block/Adminhtml/Billing/Agreement/View/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Block/Adminhtml/Billing/Agreement/View/Tab/Info.php b/app/code/core/Mage/Sales/Block/Adminhtml/Billing/Agreement/View/Tab/Info.php index 4b834ef315d40569ca2a2912c47ed2aaaa5975a5..3088de94da134b347d0cc89b7c17b921f38377a1 100644 --- a/app/code/core/Mage/Sales/Block/Adminhtml/Billing/Agreement/View/Tab/Info.php +++ b/app/code/core/Mage/Sales/Block/Adminhtml/Billing/Agreement/View/Tab/Info.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Block/Adminhtml/Billing/Agreement/View/Tab/Orders.php b/app/code/core/Mage/Sales/Block/Adminhtml/Billing/Agreement/View/Tab/Orders.php index 80852949a8c61c9fb0a3156af17ef4af9db85eb7..53f8b0b05becfee5473b8fa27614e3b0faf6b95b 100644 --- a/app/code/core/Mage/Sales/Block/Adminhtml/Billing/Agreement/View/Tab/Orders.php +++ b/app/code/core/Mage/Sales/Block/Adminhtml/Billing/Agreement/View/Tab/Orders.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Block/Adminhtml/Billing/Agreement/View/Tabs.php b/app/code/core/Mage/Sales/Block/Adminhtml/Billing/Agreement/View/Tabs.php index 71c0004d603a045f4c76d4a7f9c4f58886e39379..601ca9300b44cf0105610496012a159c9ee073a5 100644 --- a/app/code/core/Mage/Sales/Block/Adminhtml/Billing/Agreement/View/Tabs.php +++ b/app/code/core/Mage/Sales/Block/Adminhtml/Billing/Agreement/View/Tabs.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Block/Adminhtml/Customer/Edit/Tab/Agreement.php b/app/code/core/Mage/Sales/Block/Adminhtml/Customer/Edit/Tab/Agreement.php index 6244d046e965f8f8c9419051ec57b562b652e38c..57ebba144ae106e88e8d4697db3fede64fc6a40d 100644 --- a/app/code/core/Mage/Sales/Block/Adminhtml/Customer/Edit/Tab/Agreement.php +++ b/app/code/core/Mage/Sales/Block/Adminhtml/Customer/Edit/Tab/Agreement.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Block/Adminhtml/Customer/Edit/Tab/Recurring/Profile.php b/app/code/core/Mage/Sales/Block/Adminhtml/Customer/Edit/Tab/Recurring/Profile.php index 99e05d6b9c9d8857431a2981baf6b2da541153e4..fd67097b7c5913ced4d42ee9630aaba0382951b0 100644 --- a/app/code/core/Mage/Sales/Block/Adminhtml/Customer/Edit/Tab/Recurring/Profile.php +++ b/app/code/core/Mage/Sales/Block/Adminhtml/Customer/Edit/Tab/Recurring/Profile.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Block/Adminhtml/Recurring/Profile.php b/app/code/core/Mage/Sales/Block/Adminhtml/Recurring/Profile.php index f416fa76d8146e04e86af366c879d5ad89bbafa0..70cc493bc27277c3b1ce79bd442223a2c56dc254 100644 --- a/app/code/core/Mage/Sales/Block/Adminhtml/Recurring/Profile.php +++ b/app/code/core/Mage/Sales/Block/Adminhtml/Recurring/Profile.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Block/Adminhtml/Recurring/Profile/Edit/Form.php b/app/code/core/Mage/Sales/Block/Adminhtml/Recurring/Profile/Edit/Form.php index ee28cd1a5b8f998e095fcf48cccc8d01428d7e4a..5c6bda09b2952076b862b6bf57a84b3df5f64a61 100644 --- a/app/code/core/Mage/Sales/Block/Adminhtml/Recurring/Profile/Edit/Form.php +++ b/app/code/core/Mage/Sales/Block/Adminhtml/Recurring/Profile/Edit/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Block/Adminhtml/Recurring/Profile/Grid.php b/app/code/core/Mage/Sales/Block/Adminhtml/Recurring/Profile/Grid.php index 880472711330f54e6697a2fb02e6101c56ac2d2e..9d1765148d1824022d25f8aa61a89d55d36db734 100644 --- a/app/code/core/Mage/Sales/Block/Adminhtml/Recurring/Profile/Grid.php +++ b/app/code/core/Mage/Sales/Block/Adminhtml/Recurring/Profile/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Block/Adminhtml/Recurring/Profile/View.php b/app/code/core/Mage/Sales/Block/Adminhtml/Recurring/Profile/View.php index 8949bf6ea968928ab520e18fad1ba5fa1ec3c93d..899e46edfac0ced0fe9c927efff94dbe769a6052 100644 --- a/app/code/core/Mage/Sales/Block/Adminhtml/Recurring/Profile/View.php +++ b/app/code/core/Mage/Sales/Block/Adminhtml/Recurring/Profile/View.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Block/Adminhtml/Recurring/Profile/View/Getawayinfo.php b/app/code/core/Mage/Sales/Block/Adminhtml/Recurring/Profile/View/Getawayinfo.php index b9d3aef8f10bccb186b2b0a552547932ff9b6b46..91b5ad44574162f6ead063fc525b426bc4ff6ac1 100644 --- a/app/code/core/Mage/Sales/Block/Adminhtml/Recurring/Profile/View/Getawayinfo.php +++ b/app/code/core/Mage/Sales/Block/Adminhtml/Recurring/Profile/View/Getawayinfo.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Block/Adminhtml/Recurring/Profile/View/Info.php b/app/code/core/Mage/Sales/Block/Adminhtml/Recurring/Profile/View/Info.php index 502d7d6e2271b1653b63cbb43c28a6225e336b9d..b4fc31aeb731aca3d4bb1b886224d085871128d6 100644 --- a/app/code/core/Mage/Sales/Block/Adminhtml/Recurring/Profile/View/Info.php +++ b/app/code/core/Mage/Sales/Block/Adminhtml/Recurring/Profile/View/Info.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Block/Adminhtml/Recurring/Profile/View/Items.php b/app/code/core/Mage/Sales/Block/Adminhtml/Recurring/Profile/View/Items.php index 3039dbf0ed770581c491e3ef760d1dde3e6739da..24e4e58622e8133b9dcad6b62026e08b4acf9bc3 100644 --- a/app/code/core/Mage/Sales/Block/Adminhtml/Recurring/Profile/View/Items.php +++ b/app/code/core/Mage/Sales/Block/Adminhtml/Recurring/Profile/View/Items.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Block/Adminhtml/Recurring/Profile/View/Tab/Info.php b/app/code/core/Mage/Sales/Block/Adminhtml/Recurring/Profile/View/Tab/Info.php index be039b4da8d5b7a274a3c4a3d898fd5fe602c432..cf7fc40e28bc11af9ab77f26871c301ecc7f200c 100644 --- a/app/code/core/Mage/Sales/Block/Adminhtml/Recurring/Profile/View/Tab/Info.php +++ b/app/code/core/Mage/Sales/Block/Adminhtml/Recurring/Profile/View/Tab/Info.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Block/Adminhtml/Recurring/Profile/View/Tab/Orders.php b/app/code/core/Mage/Sales/Block/Adminhtml/Recurring/Profile/View/Tab/Orders.php index 1beef4f94b9009f0a567a52a921d4535dd6302b5..63e9657bc24f53deb4a86d77b2e2cddd954e48be 100644 --- a/app/code/core/Mage/Sales/Block/Adminhtml/Recurring/Profile/View/Tab/Orders.php +++ b/app/code/core/Mage/Sales/Block/Adminhtml/Recurring/Profile/View/Tab/Orders.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Block/Adminhtml/Report/Filter/Form.php b/app/code/core/Mage/Sales/Block/Adminhtml/Report/Filter/Form.php index da2e574b3347ba640f75c6eb2fccee70e70cfd39..af621c9b30e37c4fc34cd997e205f2a14e8cc0d9 100644 --- a/app/code/core/Mage/Sales/Block/Adminhtml/Report/Filter/Form.php +++ b/app/code/core/Mage/Sales/Block/Adminhtml/Report/Filter/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Block/Adminhtml/Report/Filter/Form/Coupon.php b/app/code/core/Mage/Sales/Block/Adminhtml/Report/Filter/Form/Coupon.php index 2e2c7e36af2eb8f5f58c4c84c47fe10c3f95d4eb..72519c345f150b49429f141ea630c620389448bf 100644 --- a/app/code/core/Mage/Sales/Block/Adminhtml/Report/Filter/Form/Coupon.php +++ b/app/code/core/Mage/Sales/Block/Adminhtml/Report/Filter/Form/Coupon.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Block/Adminhtml/Report/Filter/Form/Order.php b/app/code/core/Mage/Sales/Block/Adminhtml/Report/Filter/Form/Order.php index e313f9b19fca18f11ae01ee2feabb03ecc0e2081..cf6e1212fc81f365e2b9008e8b24712317a08e4d 100644 --- a/app/code/core/Mage/Sales/Block/Adminhtml/Report/Filter/Form/Order.php +++ b/app/code/core/Mage/Sales/Block/Adminhtml/Report/Filter/Form/Order.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Block/Adminhtml/System/Config/Form/Fieldset/Order/Statuses.php b/app/code/core/Mage/Sales/Block/Adminhtml/System/Config/Form/Fieldset/Order/Statuses.php index 558b1e83f0a0d9c9988e682de6d011ecc0fc38e7..d4b1bf5f06f1118eda07013ee3d250d741ac54a0 100644 --- a/app/code/core/Mage/Sales/Block/Adminhtml/System/Config/Form/Fieldset/Order/Statuses.php +++ b/app/code/core/Mage/Sales/Block/Adminhtml/System/Config/Form/Fieldset/Order/Statuses.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Block/Billing/Agreement/View.php b/app/code/core/Mage/Sales/Block/Billing/Agreement/View.php index 6297958cf401be8b0550493a134af13310186dbe..e6d6f48106bd8e7148cd9d90113f73708eeabcf6 100644 --- a/app/code/core/Mage/Sales/Block/Billing/Agreement/View.php +++ b/app/code/core/Mage/Sales/Block/Billing/Agreement/View.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Block/Billing/Agreements.php b/app/code/core/Mage/Sales/Block/Billing/Agreements.php index 97a62a5ec77991ae258fe9f21b7ef90514491b2b..63f65a0c226da964ec5730c1549148b4acf1e3c4 100644 --- a/app/code/core/Mage/Sales/Block/Billing/Agreements.php +++ b/app/code/core/Mage/Sales/Block/Billing/Agreements.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Block/Guest/Links.php b/app/code/core/Mage/Sales/Block/Guest/Links.php index 8add58c9fa2a13d3aba1f05bd9defac0c9a5b6d5..01cf7b57335d222c76a23569254f4afdf7fdfd46 100644 --- a/app/code/core/Mage/Sales/Block/Guest/Links.php +++ b/app/code/core/Mage/Sales/Block/Guest/Links.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Block/Items/Abstract.php b/app/code/core/Mage/Sales/Block/Items/Abstract.php index a22b5a2530d14bf10622a6493688551013c27ff2..a8158612ad343541ec75bb5d714ffb108d2b493c 100644 --- a/app/code/core/Mage/Sales/Block/Items/Abstract.php +++ b/app/code/core/Mage/Sales/Block/Items/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Block/Order/Comments.php b/app/code/core/Mage/Sales/Block/Order/Comments.php index 8a178ca8adc894a50a73ba41ceb31362f06757bc..2641a424f97ce80a8819bb2d99e59ae76f9b9958 100644 --- a/app/code/core/Mage/Sales/Block/Order/Comments.php +++ b/app/code/core/Mage/Sales/Block/Order/Comments.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Sales_Block_Order_Comments extends Mage_Core_Block_Template diff --git a/app/code/core/Mage/Sales/Block/Order/Creditmemo.php b/app/code/core/Mage/Sales/Block/Order/Creditmemo.php index d475553b81a211209defb8ca8d2dc9b0f825214e..91125b455a0545800135ee4800de05e5e965b87c 100644 --- a/app/code/core/Mage/Sales/Block/Order/Creditmemo.php +++ b/app/code/core/Mage/Sales/Block/Order/Creditmemo.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Block/Order/Creditmemo/Items.php b/app/code/core/Mage/Sales/Block/Order/Creditmemo/Items.php index e38650b06587fe1e6306eb204f36698b833e7b92..66e56902b0966915458e4ce663a329928fef8b72 100644 --- a/app/code/core/Mage/Sales/Block/Order/Creditmemo/Items.php +++ b/app/code/core/Mage/Sales/Block/Order/Creditmemo/Items.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Block/Order/Creditmemo/Totals.php b/app/code/core/Mage/Sales/Block/Order/Creditmemo/Totals.php index 4a7677133a8054bf078fccb78e25d18bd352d461..b5f4c3b6b3e154f5384373d6c82fcce7713b44b3 100644 --- a/app/code/core/Mage/Sales/Block/Order/Creditmemo/Totals.php +++ b/app/code/core/Mage/Sales/Block/Order/Creditmemo/Totals.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Sales_Block_Order_Creditmemo_Totals extends Mage_Sales_Block_Order_Totals diff --git a/app/code/core/Mage/Sales/Block/Order/Email/Creditmemo/Items.php b/app/code/core/Mage/Sales/Block/Order/Email/Creditmemo/Items.php index 76c2238f24a5d92e27e8f149aa75978f93249c8c..6af9aeea8bb47b4029d42b4a4c0b105587f27383 100644 --- a/app/code/core/Mage/Sales/Block/Order/Email/Creditmemo/Items.php +++ b/app/code/core/Mage/Sales/Block/Order/Email/Creditmemo/Items.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Block/Order/Email/Invoice/Items.php b/app/code/core/Mage/Sales/Block/Order/Email/Invoice/Items.php index aa8e816a892681cc7ceb1a0bd8493c1c4df98b9e..6655820bcb8ce2585268b212c0666000dcdc13d9 100644 --- a/app/code/core/Mage/Sales/Block/Order/Email/Invoice/Items.php +++ b/app/code/core/Mage/Sales/Block/Order/Email/Invoice/Items.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Block/Order/Email/Items.php b/app/code/core/Mage/Sales/Block/Order/Email/Items.php index 64b1fc7c3f466519c435fb3059f1786e53d7fe38..39f09d4aeb08280500a470b0c0f5f7c62c6307c9 100644 --- a/app/code/core/Mage/Sales/Block/Order/Email/Items.php +++ b/app/code/core/Mage/Sales/Block/Order/Email/Items.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Block/Order/Email/Items/Default.php b/app/code/core/Mage/Sales/Block/Order/Email/Items/Default.php index fc1f791448e39d9264fbc1a62780acd1fa5ac578..347a479dc62a40def5800ed5ab624dfbf895410f 100644 --- a/app/code/core/Mage/Sales/Block/Order/Email/Items/Default.php +++ b/app/code/core/Mage/Sales/Block/Order/Email/Items/Default.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Block/Order/Email/Items/Order/Default.php b/app/code/core/Mage/Sales/Block/Order/Email/Items/Order/Default.php index b13ef454bb986edb0cc4199c0f5f658aef87f306..bac97f2e6cea386ce30f8340da85cb32ec7b87d1 100644 --- a/app/code/core/Mage/Sales/Block/Order/Email/Items/Order/Default.php +++ b/app/code/core/Mage/Sales/Block/Order/Email/Items/Order/Default.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Block/Order/Email/Items/Order/Grouped.php b/app/code/core/Mage/Sales/Block/Order/Email/Items/Order/Grouped.php index 0d6f88c8d0a3ab8fd427c03428bb537b541898ef..c3ce4c7dc4ed296f0ff428579be6ae21b2343438 100644 --- a/app/code/core/Mage/Sales/Block/Order/Email/Items/Order/Grouped.php +++ b/app/code/core/Mage/Sales/Block/Order/Email/Items/Order/Grouped.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Block/Order/Email/Shipment/Items.php b/app/code/core/Mage/Sales/Block/Order/Email/Shipment/Items.php index 146284bc2dee9d76c924e3a31a4a7fefe8b18600..efd337f27b75b56bf30a4cf61218f4a951401cf6 100644 --- a/app/code/core/Mage/Sales/Block/Order/Email/Shipment/Items.php +++ b/app/code/core/Mage/Sales/Block/Order/Email/Shipment/Items.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Block/Order/History.php b/app/code/core/Mage/Sales/Block/Order/History.php index 9e2cdef300097fcff4f75ca20ab49f5da3ed3d62..34057a7858be7e6f8827b583a0dc1be997ebbbba 100644 --- a/app/code/core/Mage/Sales/Block/Order/History.php +++ b/app/code/core/Mage/Sales/Block/Order/History.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Block/Order/Info.php b/app/code/core/Mage/Sales/Block/Order/Info.php index 986cf20d91676ebefba868523a4fbc4e00e298bf..8c97232632ebc3659c12d94a9a72c2eb525bae01 100644 --- a/app/code/core/Mage/Sales/Block/Order/Info.php +++ b/app/code/core/Mage/Sales/Block/Order/Info.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Block/Order/Info/Buttons.php b/app/code/core/Mage/Sales/Block/Order/Info/Buttons.php index 4b333a911d1130f0253a4ba35f07c85a99ab82a1..cf8de4b9720a49d2aac2ca9ff95e3c9b4fdb1da7 100644 --- a/app/code/core/Mage/Sales/Block/Order/Info/Buttons.php +++ b/app/code/core/Mage/Sales/Block/Order/Info/Buttons.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Block/Order/Invoice.php b/app/code/core/Mage/Sales/Block/Order/Invoice.php index f1e5436ee9a0691d95b0c5a37285d5b140ffd782..c7cbfe20ce9fd7cb831ff926f79cefd19677be63 100644 --- a/app/code/core/Mage/Sales/Block/Order/Invoice.php +++ b/app/code/core/Mage/Sales/Block/Order/Invoice.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Block/Order/Invoice/Items.php b/app/code/core/Mage/Sales/Block/Order/Invoice/Items.php index c480852b62fc2de35d4f19dc0a2aef901d21fc9d..afd6dedf8f2bef9ab59443fa8750377051a1677b 100644 --- a/app/code/core/Mage/Sales/Block/Order/Invoice/Items.php +++ b/app/code/core/Mage/Sales/Block/Order/Invoice/Items.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Block/Order/Invoice/Totals.php b/app/code/core/Mage/Sales/Block/Order/Invoice/Totals.php index 379d4d55e954a29d0848536cbc675e41d0573d6a..c54124d589f8ccd4ef9266bc0e536760b79420d2 100644 --- a/app/code/core/Mage/Sales/Block/Order/Invoice/Totals.php +++ b/app/code/core/Mage/Sales/Block/Order/Invoice/Totals.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Sales_Block_Order_Invoice_Totals extends Mage_Sales_Block_Order_Totals diff --git a/app/code/core/Mage/Sales/Block/Order/Item/Renderer/Default.php b/app/code/core/Mage/Sales/Block/Order/Item/Renderer/Default.php index 6470a634e82372d893da8b95c79f8fdc884ad43c..78f8a4da9aacaf98d940bc57ea11d80d00cee1ae 100644 --- a/app/code/core/Mage/Sales/Block/Order/Item/Renderer/Default.php +++ b/app/code/core/Mage/Sales/Block/Order/Item/Renderer/Default.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Block/Order/Item/Renderer/Grouped.php b/app/code/core/Mage/Sales/Block/Order/Item/Renderer/Grouped.php index 9470f7c93a19681603c8a75eddf265ef8c679d94..212dc42bf0f6ea678daeb27f12e7924a5a64634e 100644 --- a/app/code/core/Mage/Sales/Block/Order/Item/Renderer/Grouped.php +++ b/app/code/core/Mage/Sales/Block/Order/Item/Renderer/Grouped.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Block/Order/Items.php b/app/code/core/Mage/Sales/Block/Order/Items.php index 7cde3ece86bdc984d03ac4847e90f53e3f39fa61..9bdbfa1d90d220db8bf528ec6cfb8349cd025756 100644 --- a/app/code/core/Mage/Sales/Block/Order/Items.php +++ b/app/code/core/Mage/Sales/Block/Order/Items.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Block/Order/Print.php b/app/code/core/Mage/Sales/Block/Order/Print.php index 5a93cb213a86138af477b3a6d82947dda526b1b2..2e7ea12e18883a555ad8ba485e66fce28b48ba79 100644 --- a/app/code/core/Mage/Sales/Block/Order/Print.php +++ b/app/code/core/Mage/Sales/Block/Order/Print.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Block/Order/Print/Creditmemo.php b/app/code/core/Mage/Sales/Block/Order/Print/Creditmemo.php index ace2d7c13df037af119d37b307194906f08af2bb..2b16c18bc718e096e491b3de24966c5ebb3c5554 100644 --- a/app/code/core/Mage/Sales/Block/Order/Print/Creditmemo.php +++ b/app/code/core/Mage/Sales/Block/Order/Print/Creditmemo.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Block/Order/Print/Invoice.php b/app/code/core/Mage/Sales/Block/Order/Print/Invoice.php index a99e25ff6c7663a42dfa04256a5898b6c5c5806b..0b3a5466b87053ff75bc0b4852143cac62b63ced 100644 --- a/app/code/core/Mage/Sales/Block/Order/Print/Invoice.php +++ b/app/code/core/Mage/Sales/Block/Order/Print/Invoice.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Block/Order/Print/Shipment.php b/app/code/core/Mage/Sales/Block/Order/Print/Shipment.php index 78928f2bc9d24ab7cc9d2918180d21f95ad98d01..32cffabb57b5e9ee5744a8a8d82a88a82e087948 100644 --- a/app/code/core/Mage/Sales/Block/Order/Print/Shipment.php +++ b/app/code/core/Mage/Sales/Block/Order/Print/Shipment.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Block/Order/Recent.php b/app/code/core/Mage/Sales/Block/Order/Recent.php index 38545bf083b0942195aa7b5be7d02b06e117f712..80495c245c8b8bb2f7303db791a5f8ee7d65f351 100644 --- a/app/code/core/Mage/Sales/Block/Order/Recent.php +++ b/app/code/core/Mage/Sales/Block/Order/Recent.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Block/Order/Shipment.php b/app/code/core/Mage/Sales/Block/Order/Shipment.php index 944cbd79e0f56675ca7eb69cf1f6bba8ab02da90..dca9a3d44e666eb16db64c3513de9fd752664636 100644 --- a/app/code/core/Mage/Sales/Block/Order/Shipment.php +++ b/app/code/core/Mage/Sales/Block/Order/Shipment.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Block/Order/Shipment/Items.php b/app/code/core/Mage/Sales/Block/Order/Shipment/Items.php index 1113e1b8e06434acb31087f709337ae1f5d47699..29625e4d99142e13f9319ed0d4bbf2225bcda917 100644 --- a/app/code/core/Mage/Sales/Block/Order/Shipment/Items.php +++ b/app/code/core/Mage/Sales/Block/Order/Shipment/Items.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Block/Order/Totals.php b/app/code/core/Mage/Sales/Block/Order/Totals.php index 07c0e57fad823d0790c2fe42cf7fec81a2453bc0..14579b1870ef339f8a3ea6e7a25a989c0a69c252 100644 --- a/app/code/core/Mage/Sales/Block/Order/Totals.php +++ b/app/code/core/Mage/Sales/Block/Order/Totals.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Sales_Block_Order_Totals extends Mage_Core_Block_Template diff --git a/app/code/core/Mage/Sales/Block/Order/View.php b/app/code/core/Mage/Sales/Block/Order/View.php index 1a1a3629b036069153702ef118246c7955177146..c3dbf867790beb264260e2828110bae999de8383 100644 --- a/app/code/core/Mage/Sales/Block/Order/View.php +++ b/app/code/core/Mage/Sales/Block/Order/View.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Block/Payment/Form/Billing/Agreement.php b/app/code/core/Mage/Sales/Block/Payment/Form/Billing/Agreement.php index b4bfdc8f525fefe6f68bdc04074579f1799c6816..a99aab16da8545ec67541f0e287ce6189e3d7a21 100644 --- a/app/code/core/Mage/Sales/Block/Payment/Form/Billing/Agreement.php +++ b/app/code/core/Mage/Sales/Block/Payment/Form/Billing/Agreement.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Block/Payment/Info/Billing/Agreement.php b/app/code/core/Mage/Sales/Block/Payment/Info/Billing/Agreement.php index 211333c234aa67641c33003c3bebe6d9dc8f6fe6..1f21372d8dee2ac5cf867a1a3b40feaa938d93a6 100644 --- a/app/code/core/Mage/Sales/Block/Payment/Info/Billing/Agreement.php +++ b/app/code/core/Mage/Sales/Block/Payment/Info/Billing/Agreement.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Block/Recurring/Profile/View.php b/app/code/core/Mage/Sales/Block/Recurring/Profile/View.php index 76ae437f2376b33142fac60c2c65c2defacb3e5e..91e9431410469b47519ec38281a3add0a2792db9 100644 --- a/app/code/core/Mage/Sales/Block/Recurring/Profile/View.php +++ b/app/code/core/Mage/Sales/Block/Recurring/Profile/View.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Block/Recurring/Profiles.php b/app/code/core/Mage/Sales/Block/Recurring/Profiles.php index 69edde4a173f30027db128a9caadafeebe17e6f5..102173bea32e29e040e69c8b52e9dfb56fa7c0df 100644 --- a/app/code/core/Mage/Sales/Block/Recurring/Profiles.php +++ b/app/code/core/Mage/Sales/Block/Recurring/Profiles.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Block/Reorder/Sidebar.php b/app/code/core/Mage/Sales/Block/Reorder/Sidebar.php index 8cf1d8631c97e403db435c099bde9acb5231ee6c..5ab2b9e2a4c5cdc2be95c4c05b599d197bacb1b5 100644 --- a/app/code/core/Mage/Sales/Block/Reorder/Sidebar.php +++ b/app/code/core/Mage/Sales/Block/Reorder/Sidebar.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Block/Widget/Guest/Form.php b/app/code/core/Mage/Sales/Block/Widget/Guest/Form.php index 276b595ca377911565581de3068ed114c432ea3c..1bb7319ce2eedf71c5ea4c38193a19b606178b4b 100644 --- a/app/code/core/Mage/Sales/Block/Widget/Guest/Form.php +++ b/app/code/core/Mage/Sales/Block/Widget/Guest/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Controller/Abstract.php b/app/code/core/Mage/Sales/Controller/Abstract.php index 2ed9b3aaac08725a7398d96c7b15dbf94ee92873..d8e5364632f870ae15b6f5443d3499926a48d15c 100644 --- a/app/code/core/Mage/Sales/Controller/Abstract.php +++ b/app/code/core/Mage/Sales/Controller/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Cms - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Exception.php b/app/code/core/Mage/Sales/Exception.php index 8abc6d2be9969a2258a052a421c4fd5856d09ebe..9e3de9a58980e544902deb5470ec4f536a1aa653 100644 --- a/app/code/core/Mage/Sales/Exception.php +++ b/app/code/core/Mage/Sales/Exception.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Helper/Data.php b/app/code/core/Mage/Sales/Helper/Data.php index f3aa6c25e0513959eb608c431654775bef334646..3f72f64c4986b9b8b6e180f6fe4336f5dc0d13b0 100644 --- a/app/code/core/Mage/Sales/Helper/Data.php +++ b/app/code/core/Mage/Sales/Helper/Data.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Helper/Guest.php b/app/code/core/Mage/Sales/Helper/Guest.php index 2534f3c91d42263e848333c0287d4de087160fb6..f21ae1ef78bba6debd11dd60bd04b005b8828008 100644 --- a/app/code/core/Mage/Sales/Helper/Guest.php +++ b/app/code/core/Mage/Sales/Helper/Guest.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Helper/Reorder.php b/app/code/core/Mage/Sales/Helper/Reorder.php index abfbc8ad35465dc32f557337089176cab20a1118..673cbb3d44f21b134444e0f209d311bb946d3460 100644 --- a/app/code/core/Mage/Sales/Helper/Reorder.php +++ b/app/code/core/Mage/Sales/Helper/Reorder.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Abstract.php b/app/code/core/Mage/Sales/Model/Abstract.php index 278c8fad425869bd23ea4cba3cfcab1a4e30786c..152c670f37096ac57b5331170b6612a583b1e4be 100644 --- a/app/code/core/Mage/Sales/Model/Abstract.php +++ b/app/code/core/Mage/Sales/Model/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Billing/Agreement.php b/app/code/core/Mage/Sales/Model/Billing/Agreement.php index 6e12bb11d70c145fb23a7fe7197ee19d7df53247..f10e2bea8ddeec888370f8c5d37567c9b1f576d2 100644 --- a/app/code/core/Mage/Sales/Model/Billing/Agreement.php +++ b/app/code/core/Mage/Sales/Model/Billing/Agreement.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Billing/Agreement/OrdersUpdater.php b/app/code/core/Mage/Sales/Model/Billing/Agreement/OrdersUpdater.php index c8c913e1014e529c640905576ae7d26d4ddc0bf9..e53085cfc7880bcde802c5dfa1c0e1d53df55849 100644 --- a/app/code/core/Mage/Sales/Model/Billing/Agreement/OrdersUpdater.php +++ b/app/code/core/Mage/Sales/Model/Billing/Agreement/OrdersUpdater.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Config.php b/app/code/core/Mage/Sales/Model/Config.php index 450871a77085cf6eca21cee593fd8c305e40514e..66d1b4ff3ed544b8e7932531e8aa85716dde90ca 100644 --- a/app/code/core/Mage/Sales/Model/Config.php +++ b/app/code/core/Mage/Sales/Model/Config.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Config/Ordered.php b/app/code/core/Mage/Sales/Model/Config/Ordered.php index 32b43d9c298fd496953066ee033e6be6437889b9..4513f6c4ee3dab76309ea867fbfd2a334e5c16fc 100644 --- a/app/code/core/Mage/Sales/Model/Config/Ordered.php +++ b/app/code/core/Mage/Sales/Model/Config/Ordered.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Config/Source/Order/Status.php b/app/code/core/Mage/Sales/Model/Config/Source/Order/Status.php index a0e92c72830012f3f21d0bac0bc9f518d8265d44..e7f01a97ce916582a87d1387f3ad4a0c04763ead 100644 --- a/app/code/core/Mage/Sales/Model/Config/Source/Order/Status.php +++ b/app/code/core/Mage/Sales/Model/Config/Source/Order/Status.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Config/Source/Order/Status/New.php b/app/code/core/Mage/Sales/Model/Config/Source/Order/Status/New.php index 59503311013baca6a645aa0e2e228199385a5d2c..42c9470717efc8bf8eb6892e480b7bda9c7f15b2 100644 --- a/app/code/core/Mage/Sales/Model/Config/Source/Order/Status/New.php +++ b/app/code/core/Mage/Sales/Model/Config/Source/Order/Status/New.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Config/Source/Order/Status/Newprocessing.php b/app/code/core/Mage/Sales/Model/Config/Source/Order/Status/Newprocessing.php index b08207f2a03c85cf6f00090e1f1c7d31ee10ffc2..deddcce5b0210b3643d91c0579c18adfb56b8c6e 100644 --- a/app/code/core/Mage/Sales/Model/Config/Source/Order/Status/Newprocessing.php +++ b/app/code/core/Mage/Sales/Model/Config/Source/Order/Status/Newprocessing.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Config/Source/Order/Status/Processing.php b/app/code/core/Mage/Sales/Model/Config/Source/Order/Status/Processing.php index 809ffa69ce79b87f94c76e6ed482b128ce615e99..d204c4891adc10c5c9201a218a8ca60eab133805 100644 --- a/app/code/core/Mage/Sales/Model/Config/Source/Order/Status/Processing.php +++ b/app/code/core/Mage/Sales/Model/Config/Source/Order/Status/Processing.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Convert/Order.php b/app/code/core/Mage/Sales/Model/Convert/Order.php index c42142e6754f532e091f4bd564282c96d90b49e9..2c5273586dfed571d8e9c735778ce826675bd10f 100644 --- a/app/code/core/Mage/Sales/Model/Convert/Order.php +++ b/app/code/core/Mage/Sales/Model/Convert/Order.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Convert/Quote.php b/app/code/core/Mage/Sales/Model/Convert/Quote.php index 4afccec1f80cdd810bf42c1e5576d00d476fb751..77a70fe02dfbdbbdf7fdd09aaf193191d41cfc60 100644 --- a/app/code/core/Mage/Sales/Model/Convert/Quote.php +++ b/app/code/core/Mage/Sales/Model/Convert/Quote.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/ConverterInterface.php b/app/code/core/Mage/Sales/Model/ConverterInterface.php index c8802926e90cf4d15f3b75a56d909eef7bb61763..ae2492522a578959aecd0c6487fee403671fc871 100644 --- a/app/code/core/Mage/Sales/Model/ConverterInterface.php +++ b/app/code/core/Mage/Sales/Model/ConverterInterface.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Email/Template.php b/app/code/core/Mage/Sales/Model/Email/Template.php index df9c603239d7ec9466f950174cd651c2d37404b6..9c98b1d8d086e35740348b5c28e871f8618b097a 100644 --- a/app/code/core/Mage/Sales/Model/Email/Template.php +++ b/app/code/core/Mage/Sales/Model/Email/Template.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Observer.php b/app/code/core/Mage/Sales/Model/Observer.php index facdbdb0432bf7a9d03176ccb94af9b1de80f3e9..b633cc33a5adfceeccf01d33f8745634716cb05a 100644 --- a/app/code/core/Mage/Sales/Model/Observer.php +++ b/app/code/core/Mage/Sales/Model/Observer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Order.php b/app/code/core/Mage/Sales/Model/Order.php index 1755bf9ef48bdf0504ced828733a2680f3109ab4..6867c42c4c5619fce5f7e64cf985a85b517a3c18 100644 --- a/app/code/core/Mage/Sales/Model/Order.php +++ b/app/code/core/Mage/Sales/Model/Order.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Order/Address.php b/app/code/core/Mage/Sales/Model/Order/Address.php index fa363f34e2cf50107c98a93abefc6809eaad4f23..c3f646814e8fb97b04db589ae32514b6088fead3 100644 --- a/app/code/core/Mage/Sales/Model/Order/Address.php +++ b/app/code/core/Mage/Sales/Model/Order/Address.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Order/Config.php b/app/code/core/Mage/Sales/Model/Order/Config.php index bc2fb44c038423ca923d2550963d9a51bd13722c..94a769c88f744bf5e7a1f793491bb74d27a43071 100644 --- a/app/code/core/Mage/Sales/Model/Order/Config.php +++ b/app/code/core/Mage/Sales/Model/Order/Config.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Order/Creditmemo.php b/app/code/core/Mage/Sales/Model/Order/Creditmemo.php index 889c43d05db3d23001b4d0d975389199e86a44ca..d4d96435535bc0df35ca7f4f264bc91fb479d9e0 100644 --- a/app/code/core/Mage/Sales/Model/Order/Creditmemo.php +++ b/app/code/core/Mage/Sales/Model/Order/Creditmemo.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Order/Creditmemo/Comment.php b/app/code/core/Mage/Sales/Model/Order/Creditmemo/Comment.php index ac8f4977f57418bc08bc6fb602954c7f383772bc..8985c90e36f95a46728803f57ede2ae2e733792e 100644 --- a/app/code/core/Mage/Sales/Model/Order/Creditmemo/Comment.php +++ b/app/code/core/Mage/Sales/Model/Order/Creditmemo/Comment.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Order/Creditmemo/Config.php b/app/code/core/Mage/Sales/Model/Order/Creditmemo/Config.php index 34f012be5a5b0c07ae1b3de9b90e6dffa560762f..485399f8146e9a99d26a2d04833bd49e93ba4888 100644 --- a/app/code/core/Mage/Sales/Model/Order/Creditmemo/Config.php +++ b/app/code/core/Mage/Sales/Model/Order/Creditmemo/Config.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Order/Creditmemo/Item.php b/app/code/core/Mage/Sales/Model/Order/Creditmemo/Item.php index 5420933f2fec0f1e545a3c978a4a461166a46113..c871d04b0bde143bf6aeb87a6e452178df52c2dc 100644 --- a/app/code/core/Mage/Sales/Model/Order/Creditmemo/Item.php +++ b/app/code/core/Mage/Sales/Model/Order/Creditmemo/Item.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Order/Creditmemo/Total/Abstract.php b/app/code/core/Mage/Sales/Model/Order/Creditmemo/Total/Abstract.php index ba74e2650ecd86fbe69c19842a638bb43535e965..27a5cf6914d69294ec6130ae1a06581b1181c54e 100644 --- a/app/code/core/Mage/Sales/Model/Order/Creditmemo/Total/Abstract.php +++ b/app/code/core/Mage/Sales/Model/Order/Creditmemo/Total/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Order/Creditmemo/Total/Cost.php b/app/code/core/Mage/Sales/Model/Order/Creditmemo/Total/Cost.php index 50a3505d38fddd2851090485a8b6087ab432546b..7f73a42e31c5882189d52af54f85aaed928fe091 100644 --- a/app/code/core/Mage/Sales/Model/Order/Creditmemo/Total/Cost.php +++ b/app/code/core/Mage/Sales/Model/Order/Creditmemo/Total/Cost.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Order/Creditmemo/Total/Discount.php b/app/code/core/Mage/Sales/Model/Order/Creditmemo/Total/Discount.php index 8e5f4b3e7f43c039cff25cae48264bb68985b391..fc6ba7796c178acfa403f7d984a5b4ce1aaf7ba3 100644 --- a/app/code/core/Mage/Sales/Model/Order/Creditmemo/Total/Discount.php +++ b/app/code/core/Mage/Sales/Model/Order/Creditmemo/Total/Discount.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Order/Creditmemo/Total/Grand.php b/app/code/core/Mage/Sales/Model/Order/Creditmemo/Total/Grand.php index f873f9331121a1ae664a163609845c135682a7fb..95f88f4ac3be26d512490660584deaad2cc89897 100644 --- a/app/code/core/Mage/Sales/Model/Order/Creditmemo/Total/Grand.php +++ b/app/code/core/Mage/Sales/Model/Order/Creditmemo/Total/Grand.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Order/Creditmemo/Total/Shipping.php b/app/code/core/Mage/Sales/Model/Order/Creditmemo/Total/Shipping.php index 7e049c0be4bc8455b11a449307780bee1a920682..189acad8298bf24adb4fd9eec24cfa9fc95059dc 100644 --- a/app/code/core/Mage/Sales/Model/Order/Creditmemo/Total/Shipping.php +++ b/app/code/core/Mage/Sales/Model/Order/Creditmemo/Total/Shipping.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Order/Creditmemo/Total/Subtotal.php b/app/code/core/Mage/Sales/Model/Order/Creditmemo/Total/Subtotal.php index 2164140c7091461808c5955acb0f76bcfecb4b1b..931be75108dc8461be544cd195a1ee438d537e0f 100644 --- a/app/code/core/Mage/Sales/Model/Order/Creditmemo/Total/Subtotal.php +++ b/app/code/core/Mage/Sales/Model/Order/Creditmemo/Total/Subtotal.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Order/Creditmemo/Total/Tax.php b/app/code/core/Mage/Sales/Model/Order/Creditmemo/Total/Tax.php index 441db0157ab3873c2454e96ef51bd6963b40e3e6..8b0925c73cb13853edff4f08447a4bf29dbf4cdb 100644 --- a/app/code/core/Mage/Sales/Model/Order/Creditmemo/Total/Tax.php +++ b/app/code/core/Mage/Sales/Model/Order/Creditmemo/Total/Tax.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Order/Grid/Massaction/ItemsUpdater.php b/app/code/core/Mage/Sales/Model/Order/Grid/Massaction/ItemsUpdater.php index 252035ddbbae52b667b1560e444b8f1c4cf199b6..4e875bbac15edddc1d358447195a1fe52f19de2a 100644 --- a/app/code/core/Mage/Sales/Model/Order/Grid/Massaction/ItemsUpdater.php +++ b/app/code/core/Mage/Sales/Model/Order/Grid/Massaction/ItemsUpdater.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Order/Grid/Row/UrlGenerator.php b/app/code/core/Mage/Sales/Model/Order/Grid/Row/UrlGenerator.php index 79bed802cd6ea7055fe86951ff31bb23cc2df3fa..bfb5d01e8fe327fe807042597009b089ef68f066 100644 --- a/app/code/core/Mage/Sales/Model/Order/Grid/Row/UrlGenerator.php +++ b/app/code/core/Mage/Sales/Model/Order/Grid/Row/UrlGenerator.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Order/Invoice.php b/app/code/core/Mage/Sales/Model/Order/Invoice.php index 7048959010ef39447e5b98fbdda271a035d6abf9..d0365f81f36d58155cfcadc25dcab2c735f691da 100644 --- a/app/code/core/Mage/Sales/Model/Order/Invoice.php +++ b/app/code/core/Mage/Sales/Model/Order/Invoice.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Order/Invoice/Comment.php b/app/code/core/Mage/Sales/Model/Order/Invoice/Comment.php index 890207b24579b1f014bbc25515ce2bdf17236495..4ea38f87370456ffb87ae0e766ba42e964e272ff 100644 --- a/app/code/core/Mage/Sales/Model/Order/Invoice/Comment.php +++ b/app/code/core/Mage/Sales/Model/Order/Invoice/Comment.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Order/Invoice/Config.php b/app/code/core/Mage/Sales/Model/Order/Invoice/Config.php index 0adea6aba702400b174fa325583c2f8518e23ff5..b5858875c641a38f9fe77cf29ac3ff856bedcd37 100644 --- a/app/code/core/Mage/Sales/Model/Order/Invoice/Config.php +++ b/app/code/core/Mage/Sales/Model/Order/Invoice/Config.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Order/Invoice/Item.php b/app/code/core/Mage/Sales/Model/Order/Invoice/Item.php index 32616e24cea0e2ce8ec659da1257598e795edc99..9b6692a87100d2d7168e6f0b80f39867d93e5d97 100644 --- a/app/code/core/Mage/Sales/Model/Order/Invoice/Item.php +++ b/app/code/core/Mage/Sales/Model/Order/Invoice/Item.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Order/Invoice/Total/Abstract.php b/app/code/core/Mage/Sales/Model/Order/Invoice/Total/Abstract.php index fc01bdb48c1e6b79febcff47df218c945dfb7706..ca58ce277aed159e2b35bc183c06ca66e787929d 100644 --- a/app/code/core/Mage/Sales/Model/Order/Invoice/Total/Abstract.php +++ b/app/code/core/Mage/Sales/Model/Order/Invoice/Total/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Order/Invoice/Total/Cost.php b/app/code/core/Mage/Sales/Model/Order/Invoice/Total/Cost.php index ba55349a4cb427e4970463035ee241cc692d4772..ecd89974e7de9f59df4358464d55bf7b25a1af01 100644 --- a/app/code/core/Mage/Sales/Model/Order/Invoice/Total/Cost.php +++ b/app/code/core/Mage/Sales/Model/Order/Invoice/Total/Cost.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Order/Invoice/Total/Discount.php b/app/code/core/Mage/Sales/Model/Order/Invoice/Total/Discount.php index 35181cad0cdcce5aee9dc4e582c0063dd9f050d3..8c5c37d1307090f5f60342a124678ce49d8e06ff 100644 --- a/app/code/core/Mage/Sales/Model/Order/Invoice/Total/Discount.php +++ b/app/code/core/Mage/Sales/Model/Order/Invoice/Total/Discount.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Order/Invoice/Total/Grand.php b/app/code/core/Mage/Sales/Model/Order/Invoice/Total/Grand.php index 40f1e399d9c5ba19b412dd64bca83693b4370b05..29a17edbeebe39ebb96daeb4dfcb0c7f0ca56a59 100644 --- a/app/code/core/Mage/Sales/Model/Order/Invoice/Total/Grand.php +++ b/app/code/core/Mage/Sales/Model/Order/Invoice/Total/Grand.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Order/Invoice/Total/Shipping.php b/app/code/core/Mage/Sales/Model/Order/Invoice/Total/Shipping.php index fc599b546d043bb0e86b345e71b1abc21e0bf2d4..a9ede338f5fe5095540447d35caa594df81e01ce 100644 --- a/app/code/core/Mage/Sales/Model/Order/Invoice/Total/Shipping.php +++ b/app/code/core/Mage/Sales/Model/Order/Invoice/Total/Shipping.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Order/Invoice/Total/Subtotal.php b/app/code/core/Mage/Sales/Model/Order/Invoice/Total/Subtotal.php index 0535ad54193122fd4295269a37327d05b1c8875c..8f7919c32627f4c70dd10c99ae8888d8ca28cfd7 100644 --- a/app/code/core/Mage/Sales/Model/Order/Invoice/Total/Subtotal.php +++ b/app/code/core/Mage/Sales/Model/Order/Invoice/Total/Subtotal.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Order/Invoice/Total/Tax.php b/app/code/core/Mage/Sales/Model/Order/Invoice/Total/Tax.php index 449071d09c79654635d5a63af268737dd4651a6f..f742ff4b5eaaf8e9d8d3c993188f9a5ba98125f7 100644 --- a/app/code/core/Mage/Sales/Model/Order/Invoice/Total/Tax.php +++ b/app/code/core/Mage/Sales/Model/Order/Invoice/Total/Tax.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Order/Item.php b/app/code/core/Mage/Sales/Model/Order/Item.php index 5b2ec4f202444c355a2b9be3dd4459553428acd8..df3afe0acbf2423aa54ee7be81f6081a5c770527 100644 --- a/app/code/core/Mage/Sales/Model/Order/Item.php +++ b/app/code/core/Mage/Sales/Model/Order/Item.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Order/Payment.php b/app/code/core/Mage/Sales/Model/Order/Payment.php index 5cb14008978c97a6fc264aae16fd58962ae661cd..85c7bbe5160cfa1cc09e1961bda2e3af451be138 100644 --- a/app/code/core/Mage/Sales/Model/Order/Payment.php +++ b/app/code/core/Mage/Sales/Model/Order/Payment.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Order/Payment/Transaction.php b/app/code/core/Mage/Sales/Model/Order/Payment/Transaction.php index 0c3233b4bcb0eb1ad8e591e877e7755057c1689a..e23003378c1d26e8441c815df98711d1b3934efc 100644 --- a/app/code/core/Mage/Sales/Model/Order/Payment/Transaction.php +++ b/app/code/core/Mage/Sales/Model/Order/Payment/Transaction.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Order/Pdf/Abstract.php b/app/code/core/Mage/Sales/Model/Order/Pdf/Abstract.php index cabc38dbeff5105ef4c9eaf57a947958f85e50be..aabdc660dbf9e5bb1ee9b887bdbab25729839adf 100644 --- a/app/code/core/Mage/Sales/Model/Order/Pdf/Abstract.php +++ b/app/code/core/Mage/Sales/Model/Order/Pdf/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Order/Pdf/Creditmemo.php b/app/code/core/Mage/Sales/Model/Order/Pdf/Creditmemo.php index 9611fe5ae0d3aa60b5e7db22599a8d3efbba191c..d7b25204c87f2e625f3cd2bcc473a30d25a9a680 100644 --- a/app/code/core/Mage/Sales/Model/Order/Pdf/Creditmemo.php +++ b/app/code/core/Mage/Sales/Model/Order/Pdf/Creditmemo.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Order/Pdf/Invoice.php b/app/code/core/Mage/Sales/Model/Order/Pdf/Invoice.php index 86a3e58529da3d62d97eb96fa163ee1bd88172b9..d4add3d59225bbd2ecc43fa949404ae7db215c79 100644 --- a/app/code/core/Mage/Sales/Model/Order/Pdf/Invoice.php +++ b/app/code/core/Mage/Sales/Model/Order/Pdf/Invoice.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Order/Pdf/Items/Abstract.php b/app/code/core/Mage/Sales/Model/Order/Pdf/Items/Abstract.php index 7faa71fda10086e891a955aee9b137eb3513819d..75fbb9234197bf945f172831203edf14b8fa3d7c 100644 --- a/app/code/core/Mage/Sales/Model/Order/Pdf/Items/Abstract.php +++ b/app/code/core/Mage/Sales/Model/Order/Pdf/Items/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Order/Pdf/Items/Creditmemo/Default.php b/app/code/core/Mage/Sales/Model/Order/Pdf/Items/Creditmemo/Default.php index b9ce95050f50a0553ab66c266f2f0b90f0dc7844..521dd289375d53df8603b158bb9e36c4ef5d263b 100644 --- a/app/code/core/Mage/Sales/Model/Order/Pdf/Items/Creditmemo/Default.php +++ b/app/code/core/Mage/Sales/Model/Order/Pdf/Items/Creditmemo/Default.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Order/Pdf/Items/Creditmemo/Grouped.php b/app/code/core/Mage/Sales/Model/Order/Pdf/Items/Creditmemo/Grouped.php index 78a93a937c26f44b1713ea5de10ed6ca1694f6a0..35c7eda43548952a5d5f6f8c6dc774a786a40211 100644 --- a/app/code/core/Mage/Sales/Model/Order/Pdf/Items/Creditmemo/Grouped.php +++ b/app/code/core/Mage/Sales/Model/Order/Pdf/Items/Creditmemo/Grouped.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Order/Pdf/Items/Invoice/Default.php b/app/code/core/Mage/Sales/Model/Order/Pdf/Items/Invoice/Default.php index 494378ef7d0ee06497f8ae7a2b1e3e2712051875..937d187d5930186d16c9c224c6fbb60680d38cf3 100644 --- a/app/code/core/Mage/Sales/Model/Order/Pdf/Items/Invoice/Default.php +++ b/app/code/core/Mage/Sales/Model/Order/Pdf/Items/Invoice/Default.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Order/Pdf/Items/Invoice/Grouped.php b/app/code/core/Mage/Sales/Model/Order/Pdf/Items/Invoice/Grouped.php index c7caca7dd75789d5630c164df26b23d8f19da897..8d2e8a2f6421dff8668b5d55ee8012c862fb537a 100644 --- a/app/code/core/Mage/Sales/Model/Order/Pdf/Items/Invoice/Grouped.php +++ b/app/code/core/Mage/Sales/Model/Order/Pdf/Items/Invoice/Grouped.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Order/Pdf/Items/Shipment/Default.php b/app/code/core/Mage/Sales/Model/Order/Pdf/Items/Shipment/Default.php index 8156586f12e1493388d373367f0163ec7a8d65a1..3448c9da2c5bd9b288c87db274866cb0b2dc683a 100644 --- a/app/code/core/Mage/Sales/Model/Order/Pdf/Items/Shipment/Default.php +++ b/app/code/core/Mage/Sales/Model/Order/Pdf/Items/Shipment/Default.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Order/Pdf/Shipment.php b/app/code/core/Mage/Sales/Model/Order/Pdf/Shipment.php index eb7d9e512dd897d33abad2a2950e38fa3511f219..e26412210a561a3a321c42b0321ee1d81ae77ac2 100644 --- a/app/code/core/Mage/Sales/Model/Order/Pdf/Shipment.php +++ b/app/code/core/Mage/Sales/Model/Order/Pdf/Shipment.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Order/Pdf/Shipment/Packaging.php b/app/code/core/Mage/Sales/Model/Order/Pdf/Shipment/Packaging.php index 31cf6ee6e8b0959b00d4fde3d58fb8daf4bb9008..fba2d0dd7baa6d6a2d4cc8087a9388529974b828 100644 --- a/app/code/core/Mage/Sales/Model/Order/Pdf/Shipment/Packaging.php +++ b/app/code/core/Mage/Sales/Model/Order/Pdf/Shipment/Packaging.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Order/Pdf/Total/Default.php b/app/code/core/Mage/Sales/Model/Order/Pdf/Total/Default.php index 2e479563a753ced4474cd807d3e854ac46e28a1c..e44d437af9cecf74ad5066011aba08fea5535e4e 100644 --- a/app/code/core/Mage/Sales/Model/Order/Pdf/Total/Default.php +++ b/app/code/core/Mage/Sales/Model/Order/Pdf/Total/Default.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Order/Shipment.php b/app/code/core/Mage/Sales/Model/Order/Shipment.php index e44876e3d81a5b79bd527bd223b3cdd1d091ad2d..a7a0aaa8d104fee19a52a399aafdbdb255ef4c53 100644 --- a/app/code/core/Mage/Sales/Model/Order/Shipment.php +++ b/app/code/core/Mage/Sales/Model/Order/Shipment.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Order/Shipment/Comment.php b/app/code/core/Mage/Sales/Model/Order/Shipment/Comment.php index 83d1d52bfb742af7fc5102e49d9203ed26647608..936e592d3441378a80809496a3f7ce812553ddd5 100644 --- a/app/code/core/Mage/Sales/Model/Order/Shipment/Comment.php +++ b/app/code/core/Mage/Sales/Model/Order/Shipment/Comment.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Order/Shipment/Item.php b/app/code/core/Mage/Sales/Model/Order/Shipment/Item.php index 422939d2df58bd9325a2730e47eaca9ab5c114b7..21515221520013f657473debec085d65870ee776 100644 --- a/app/code/core/Mage/Sales/Model/Order/Shipment/Item.php +++ b/app/code/core/Mage/Sales/Model/Order/Shipment/Item.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Order/Shipment/Track.php b/app/code/core/Mage/Sales/Model/Order/Shipment/Track.php index 669cbb43cf5a8fd5737159c69f74fd0861696212..2e0e97ca137a893891d11d75768a7d7905b9c4ad 100644 --- a/app/code/core/Mage/Sales/Model/Order/Shipment/Track.php +++ b/app/code/core/Mage/Sales/Model/Order/Shipment/Track.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Order/Status.php b/app/code/core/Mage/Sales/Model/Order/Status.php index 03fbf993fdd5f8965b0a32fe9b816e0597a57a90..ce412c9fad926f612b1ee2abd2b5d84dbad03e73 100644 --- a/app/code/core/Mage/Sales/Model/Order/Status.php +++ b/app/code/core/Mage/Sales/Model/Order/Status.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Order/Status/History.php b/app/code/core/Mage/Sales/Model/Order/Status/History.php index c70cfb51dd7c99bdd67d1d272b429ea7efb8c9cc..486fcbab2f821d284d2d7ea39b18350f92ecdc1b 100644 --- a/app/code/core/Mage/Sales/Model/Order/Status/History.php +++ b/app/code/core/Mage/Sales/Model/Order/Status/History.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Order/Tax.php b/app/code/core/Mage/Sales/Model/Order/Tax.php index 31dc5ce2b4b3bc0b11ed07f3ff038a7b92caa9dc..8d33d285002cb65c9d63fff8680aca7d4533c6fa 100644 --- a/app/code/core/Mage/Sales/Model/Order/Tax.php +++ b/app/code/core/Mage/Sales/Model/Order/Tax.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Order/Total.php b/app/code/core/Mage/Sales/Model/Order/Total.php index ae48ea6f1a4ff73e4c286b9b3b750e25748dc73d..b1481caccf27a3f6d15d13266aeedb5f74fcb38b 100644 --- a/app/code/core/Mage/Sales/Model/Order/Total.php +++ b/app/code/core/Mage/Sales/Model/Order/Total.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Order/Total/Abstract.php b/app/code/core/Mage/Sales/Model/Order/Total/Abstract.php index 2d3061d8fc254406a70e0691a47bbd3bfe553685..61a000e76a9ab00026a46d3a777f978e52fb1449 100644 --- a/app/code/core/Mage/Sales/Model/Order/Total/Abstract.php +++ b/app/code/core/Mage/Sales/Model/Order/Total/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Order/Total/Config/Base.php b/app/code/core/Mage/Sales/Model/Order/Total/Config/Base.php index c65bdae165d02e6115036f776cedbf711a77d27c..657aa9c970c1a5eaceb26844568ced52b6bf1d5a 100644 --- a/app/code/core/Mage/Sales/Model/Order/Total/Config/Base.php +++ b/app/code/core/Mage/Sales/Model/Order/Total/Config/Base.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Payment/Method/Billing/AgreementAbstract.php b/app/code/core/Mage/Sales/Model/Payment/Method/Billing/AgreementAbstract.php index 996152d8a8894758011c5afbb765587facb53a6f..cb22023824072a81975216b0e938a3c86d4af1e3 100644 --- a/app/code/core/Mage/Sales/Model/Payment/Method/Billing/AgreementAbstract.php +++ b/app/code/core/Mage/Sales/Model/Payment/Method/Billing/AgreementAbstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Payment/Method/Converter.php b/app/code/core/Mage/Sales/Model/Payment/Method/Converter.php index 16b048f45baed620d3bf19b42b41be96096eb33b..308309c3795f47258c3cdb6ec68e8f38c6722551 100644 --- a/app/code/core/Mage/Sales/Model/Payment/Method/Converter.php +++ b/app/code/core/Mage/Sales/Model/Payment/Method/Converter.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Quote.php b/app/code/core/Mage/Sales/Model/Quote.php index 7554abed7612a470ae9785472838b6a7d849c9dc..ae3c29c90952625519d4a61f1fcdb943608d6fd0 100644 --- a/app/code/core/Mage/Sales/Model/Quote.php +++ b/app/code/core/Mage/Sales/Model/Quote.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Quote/Address.php b/app/code/core/Mage/Sales/Model/Quote/Address.php index 39106e0d7970c34777d16082c4865de4dfaa6096..935efaad3a0298122689e1570bb04ea25eb3c97f 100644 --- a/app/code/core/Mage/Sales/Model/Quote/Address.php +++ b/app/code/core/Mage/Sales/Model/Quote/Address.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Quote/Address/Item.php b/app/code/core/Mage/Sales/Model/Quote/Address/Item.php index e2d77246a730907859187f59886f1fe8c1732498..6db6413aa0f162bdcc52f6ea7f8ba6b0b84a1389 100644 --- a/app/code/core/Mage/Sales/Model/Quote/Address/Item.php +++ b/app/code/core/Mage/Sales/Model/Quote/Address/Item.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Quote/Address/Rate.php b/app/code/core/Mage/Sales/Model/Quote/Address/Rate.php index a6233d294326edc140cdf887e51d23c090b8bb42..76b37cea34340c58f88fbee0a51f994abcc0cb67 100644 --- a/app/code/core/Mage/Sales/Model/Quote/Address/Rate.php +++ b/app/code/core/Mage/Sales/Model/Quote/Address/Rate.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Quote/Address/Total.php b/app/code/core/Mage/Sales/Model/Quote/Address/Total.php index f8b17433d03cea76b20e2bd5aede19b7940fc706..cc1e7cf6b10e707ca341b298247bc2dc52288dae 100644 --- a/app/code/core/Mage/Sales/Model/Quote/Address/Total.php +++ b/app/code/core/Mage/Sales/Model/Quote/Address/Total.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Quote/Address/Total/Abstract.php b/app/code/core/Mage/Sales/Model/Quote/Address/Total/Abstract.php index 241c5603247afc117033dff1525f2a7008777fd3..12984062cbe8af2d6fe34570b7c58436e0ca9992 100644 --- a/app/code/core/Mage/Sales/Model/Quote/Address/Total/Abstract.php +++ b/app/code/core/Mage/Sales/Model/Quote/Address/Total/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Quote/Address/Total/Collector.php b/app/code/core/Mage/Sales/Model/Quote/Address/Total/Collector.php index 22d1bf92c74185a784466576f0b550c5373e4859..8c17a08c040dfaba25f852078657895abdf35688 100644 --- a/app/code/core/Mage/Sales/Model/Quote/Address/Total/Collector.php +++ b/app/code/core/Mage/Sales/Model/Quote/Address/Total/Collector.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Quote/Address/Total/Custbalance.php b/app/code/core/Mage/Sales/Model/Quote/Address/Total/Custbalance.php index 26dc53175ed20576b8319937132e5066801a9387..774cf9de690ee8c2e2a1484291969c17cc1c4e63 100644 --- a/app/code/core/Mage/Sales/Model/Quote/Address/Total/Custbalance.php +++ b/app/code/core/Mage/Sales/Model/Quote/Address/Total/Custbalance.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Quote/Address/Total/Discount.php b/app/code/core/Mage/Sales/Model/Quote/Address/Total/Discount.php index b00853e7498fa54272fb0ad17c5f2f1b5b9d8d1d..b5695ef8008d22b24bfc4226a532b01d7a95b53e 100644 --- a/app/code/core/Mage/Sales/Model/Quote/Address/Total/Discount.php +++ b/app/code/core/Mage/Sales/Model/Quote/Address/Total/Discount.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Quote/Address/Total/Grand.php b/app/code/core/Mage/Sales/Model/Quote/Address/Total/Grand.php index 4c12b1a91cf6964b0c4956549b215dd660526302..ad1c087886fea3f6fc981fa72c8b13a8a3d7f17e 100644 --- a/app/code/core/Mage/Sales/Model/Quote/Address/Total/Grand.php +++ b/app/code/core/Mage/Sales/Model/Quote/Address/Total/Grand.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Quote/Address/Total/Msrp.php b/app/code/core/Mage/Sales/Model/Quote/Address/Total/Msrp.php index 3cc2a1b61715bcd7d69f20b26c6d7122981bdcc8..8c5eefaf9fb04f4117f5ce3694c23be21e8f2001 100644 --- a/app/code/core/Mage/Sales/Model/Quote/Address/Total/Msrp.php +++ b/app/code/core/Mage/Sales/Model/Quote/Address/Total/Msrp.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Quote/Address/Total/Nominal.php b/app/code/core/Mage/Sales/Model/Quote/Address/Total/Nominal.php index d7b6dc45d2caa762d2a207eb8f737c34cd0ca233..96eca9a44e1cba6b99e75b82e7dac9729b900386 100644 --- a/app/code/core/Mage/Sales/Model/Quote/Address/Total/Nominal.php +++ b/app/code/core/Mage/Sales/Model/Quote/Address/Total/Nominal.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Quote/Address/Total/Nominal/Collector.php b/app/code/core/Mage/Sales/Model/Quote/Address/Total/Nominal/Collector.php index 079c47e310abd0d41bda274de7da013fe05e52f9..b20d3d0526c9c0493e43fb0fa21bb5518060d269 100644 --- a/app/code/core/Mage/Sales/Model/Quote/Address/Total/Nominal/Collector.php +++ b/app/code/core/Mage/Sales/Model/Quote/Address/Total/Nominal/Collector.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Quote/Address/Total/Nominal/Recurring/Initial.php b/app/code/core/Mage/Sales/Model/Quote/Address/Total/Nominal/Recurring/Initial.php index 3c0e2f4b418ecab5f17fc6bdfe435cec2d4538c8..eca40bfd47a051a32e6f1324b4e4c89049c4bb1c 100644 --- a/app/code/core/Mage/Sales/Model/Quote/Address/Total/Nominal/Recurring/Initial.php +++ b/app/code/core/Mage/Sales/Model/Quote/Address/Total/Nominal/Recurring/Initial.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Quote/Address/Total/Nominal/Recurring/Trial.php b/app/code/core/Mage/Sales/Model/Quote/Address/Total/Nominal/Recurring/Trial.php index 2a8910d519a4889a420e6a5e0a49c9b92738bf22..e5bea008e9ad4d12fc1f83c002a4a2c610c6b7b9 100644 --- a/app/code/core/Mage/Sales/Model/Quote/Address/Total/Nominal/Recurring/Trial.php +++ b/app/code/core/Mage/Sales/Model/Quote/Address/Total/Nominal/Recurring/Trial.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Quote/Address/Total/Nominal/RecurringAbstract.php b/app/code/core/Mage/Sales/Model/Quote/Address/Total/Nominal/RecurringAbstract.php index 16e627112e1af2654d5353f52baf6a58e1015bd9..6dec556e321cee550e46f34a8d73ffa348608ed5 100644 --- a/app/code/core/Mage/Sales/Model/Quote/Address/Total/Nominal/RecurringAbstract.php +++ b/app/code/core/Mage/Sales/Model/Quote/Address/Total/Nominal/RecurringAbstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Quote/Address/Total/Nominal/Shipping.php b/app/code/core/Mage/Sales/Model/Quote/Address/Total/Nominal/Shipping.php index 1c1b7d413c28cad1c0f5238d655c4189ffff65e3..a0de750b9003ff0219caf7ac59cf31ef01539625 100644 --- a/app/code/core/Mage/Sales/Model/Quote/Address/Total/Nominal/Shipping.php +++ b/app/code/core/Mage/Sales/Model/Quote/Address/Total/Nominal/Shipping.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Quote/Address/Total/Nominal/Subtotal.php b/app/code/core/Mage/Sales/Model/Quote/Address/Total/Nominal/Subtotal.php index 55d579da3b0969448c881626b84bc264055745e2..2969af03c0d54e3f8a31647c88e668387a6b72ae 100644 --- a/app/code/core/Mage/Sales/Model/Quote/Address/Total/Nominal/Subtotal.php +++ b/app/code/core/Mage/Sales/Model/Quote/Address/Total/Nominal/Subtotal.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Quote/Address/Total/Shipping.php b/app/code/core/Mage/Sales/Model/Quote/Address/Total/Shipping.php index 2ef986068d42444723aa9efa07747eadc1ebc0fe..a2293b6aa854d3574ef0d3ae83551709f6ada7db 100644 --- a/app/code/core/Mage/Sales/Model/Quote/Address/Total/Shipping.php +++ b/app/code/core/Mage/Sales/Model/Quote/Address/Total/Shipping.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Quote/Address/Total/Subtotal.php b/app/code/core/Mage/Sales/Model/Quote/Address/Total/Subtotal.php index 5c92e58b281aede60038b7c8c4934cf6e1e2b3db..a1f2c4a86a1f819801b27549e0821552d11fc84c 100644 --- a/app/code/core/Mage/Sales/Model/Quote/Address/Total/Subtotal.php +++ b/app/code/core/Mage/Sales/Model/Quote/Address/Total/Subtotal.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Quote/Address/Total/Tax.php b/app/code/core/Mage/Sales/Model/Quote/Address/Total/Tax.php index c54e75dbb1db11f7c78e20d890a3d557e5e99b6c..dbb845dd157603029107069e6d20ff3b49bf5643 100644 --- a/app/code/core/Mage/Sales/Model/Quote/Address/Total/Tax.php +++ b/app/code/core/Mage/Sales/Model/Quote/Address/Total/Tax.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Quote/Config.php b/app/code/core/Mage/Sales/Model/Quote/Config.php index d02eee3a31f8cb215a64f98907e762cec31ee5d1..4dbb2f5b1fc873a362d96ef5c00fa640bc2c0736 100644 --- a/app/code/core/Mage/Sales/Model/Quote/Config.php +++ b/app/code/core/Mage/Sales/Model/Quote/Config.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Quote/Item.php b/app/code/core/Mage/Sales/Model/Quote/Item.php index d0ba784cd1884d997bcb06a95e952540f0c67559..98734c3f4ee405e949e01db0943d6b6d21ae98f3 100644 --- a/app/code/core/Mage/Sales/Model/Quote/Item.php +++ b/app/code/core/Mage/Sales/Model/Quote/Item.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Quote/Item/Abstract.php b/app/code/core/Mage/Sales/Model/Quote/Item/Abstract.php index 6e87c6e2587c840dba040676762fda700c6a1bdb..f11b4a9f9a03412e4dbfad43d5fefc903a8a33f3 100644 --- a/app/code/core/Mage/Sales/Model/Quote/Item/Abstract.php +++ b/app/code/core/Mage/Sales/Model/Quote/Item/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Quote/Item/Option.php b/app/code/core/Mage/Sales/Model/Quote/Item/Option.php index f79ed62ff0a711a4076acbe1da1db65a49049704..cdb8a3fbf3832eb8264e841df57e555f99462b94 100644 --- a/app/code/core/Mage/Sales/Model/Quote/Item/Option.php +++ b/app/code/core/Mage/Sales/Model/Quote/Item/Option.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Quote/Payment.php b/app/code/core/Mage/Sales/Model/Quote/Payment.php index 9b6edc16b4c74c6310a06589affd1f5ca93f7374..7736b70089a8ada1ffee9153d1ab8df13f14b6a9 100644 --- a/app/code/core/Mage/Sales/Model/Quote/Payment.php +++ b/app/code/core/Mage/Sales/Model/Quote/Payment.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Recurring/Profile.php b/app/code/core/Mage/Sales/Model/Recurring/Profile.php index a973d4856298b8549a1ae2a76c4e4dcef37f5aee..979656836a75a6ee5d7c5898b2f908aa78c3b9aa 100644 --- a/app/code/core/Mage/Sales/Model/Recurring/Profile.php +++ b/app/code/core/Mage/Sales/Model/Recurring/Profile.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Abstract.php b/app/code/core/Mage/Sales/Model/Resource/Abstract.php index 882add1f2ad4a994363c524b454716199fd208ed..9256ebf993252b22847b8a7fd2115acb82acfdf2 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Abstract.php +++ b/app/code/core/Mage/Sales/Model/Resource/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Billing/Agreement.php b/app/code/core/Mage/Sales/Model/Resource/Billing/Agreement.php index 358f2e45da35a3bfec182d917daf2f2e8c9466e7..446b8db063190024cd41ceb7274e80adf1473b41 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Billing/Agreement.php +++ b/app/code/core/Mage/Sales/Model/Resource/Billing/Agreement.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Billing/Agreement/Collection.php b/app/code/core/Mage/Sales/Model/Resource/Billing/Agreement/Collection.php index 03618f6b8607d8c613ae61f16a1ff427347be6fd..25027ca984ac3e8a001e56e06d1d68c394042502 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Billing/Agreement/Collection.php +++ b/app/code/core/Mage/Sales/Model/Resource/Billing/Agreement/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Collection/Abstract.php b/app/code/core/Mage/Sales/Model/Resource/Collection/Abstract.php index 40febf8fed3a350645ecf1ae165435712635db95..b7601ee3767f346e967418ccc382ced0b88f8278 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Collection/Abstract.php +++ b/app/code/core/Mage/Sales/Model/Resource/Collection/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Helper/Interface.php b/app/code/core/Mage/Sales/Model/Resource/Helper/Interface.php index ebe4e47ebc2c04811853d0b7cd6ae84d7783d209..5de05f94649d393f7f7dafcb21548e32fd9a7e0d 100644 --- a/app/code/core/Mage/Sales/Model/Resource/Helper/Interface.php +++ b/app/code/core/Mage/Sales/Model/Resource/Helper/Interface.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Helper/Mysql4.php b/app/code/core/Mage/Sales/Model/Resource/Helper/Mysql4.php index 0af0abac6c06378bbc2977cce88b21c8436ebb23..009704c9ffcb35c00de7493732d7e8b6805a7e36 100644 --- a/app/code/core/Mage/Sales/Model/Resource/Helper/Mysql4.php +++ b/app/code/core/Mage/Sales/Model/Resource/Helper/Mysql4.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Order.php b/app/code/core/Mage/Sales/Model/Resource/Order.php index 700fe6a91a379a6157e89e77584d4c5ee8affcbf..bfda00ce51f0a699c435b1be93ede90f22edaf83 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Order.php +++ b/app/code/core/Mage/Sales/Model/Resource/Order.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Order/Abstract.php b/app/code/core/Mage/Sales/Model/Resource/Order/Abstract.php index 43194961db41c48f6217093a321be8910b47bd35..6a26606e1726c1eabfec98b32630f5275f5d70eb 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Order/Abstract.php +++ b/app/code/core/Mage/Sales/Model/Resource/Order/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Order/Address.php b/app/code/core/Mage/Sales/Model/Resource/Order/Address.php index 4638bfaae74f497838911ad44bb56753f67db4a9..f71c2a4bdbde36b35f0ec4160db3bf48d009b5e4 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Order/Address.php +++ b/app/code/core/Mage/Sales/Model/Resource/Order/Address.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Order/Address/Collection.php b/app/code/core/Mage/Sales/Model/Resource/Order/Address/Collection.php index 63c9f27596e5ca4a4e0ae352f811c2e19a002466..6c1cab34e17f47742076c997b23ab5aaef4f2e09 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Order/Address/Collection.php +++ b/app/code/core/Mage/Sales/Model/Resource/Order/Address/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Order/Attribute/Backend/Billing.php b/app/code/core/Mage/Sales/Model/Resource/Order/Attribute/Backend/Billing.php index 8d0d93fc2938e2b637e80896a18ad47bb8b8d2c5..9fa31961a588c629991fbc259d6ae35ee69e2dee 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Order/Attribute/Backend/Billing.php +++ b/app/code/core/Mage/Sales/Model/Resource/Order/Attribute/Backend/Billing.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Order/Attribute/Backend/Child.php b/app/code/core/Mage/Sales/Model/Resource/Order/Attribute/Backend/Child.php index dd9720d5b493463e4c2f2ee3a2ef394927ba4241..1420ac40e7ae53a0141dc578107ce62611821fe9 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Order/Attribute/Backend/Child.php +++ b/app/code/core/Mage/Sales/Model/Resource/Order/Attribute/Backend/Child.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Order/Attribute/Backend/Parent.php b/app/code/core/Mage/Sales/Model/Resource/Order/Attribute/Backend/Parent.php index 9c30b435c09f7719299247521d3fa4af02b2a472..f862084f5571abeacf2e785711021642eaeda000 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Order/Attribute/Backend/Parent.php +++ b/app/code/core/Mage/Sales/Model/Resource/Order/Attribute/Backend/Parent.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Order/Attribute/Backend/Shipping.php b/app/code/core/Mage/Sales/Model/Resource/Order/Attribute/Backend/Shipping.php index 9d65c53319f9a0286ab586b2c707dae48717edf4..d9d6817cc376884f0a459d03b210c2d8bc5dfc4a 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Order/Attribute/Backend/Shipping.php +++ b/app/code/core/Mage/Sales/Model/Resource/Order/Attribute/Backend/Shipping.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Order/Collection.php b/app/code/core/Mage/Sales/Model/Resource/Order/Collection.php index c8f784cbba2efad4b75a7fdaa13915f0202fe0ca..0affd38ed90e76ded46b30295d0c31ae2f56ed61 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Order/Collection.php +++ b/app/code/core/Mage/Sales/Model/Resource/Order/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Order/Collection/Abstract.php b/app/code/core/Mage/Sales/Model/Resource/Order/Collection/Abstract.php index d3cd9e842249655f19ed97bf85e4fe70e9b5cf14..8970c217d469811effd04723a80652eb37316953 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Order/Collection/Abstract.php +++ b/app/code/core/Mage/Sales/Model/Resource/Order/Collection/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Order/Comment/Collection/Abstract.php b/app/code/core/Mage/Sales/Model/Resource/Order/Comment/Collection/Abstract.php index f5545b5f6ba2e743f5c73e984d064103f83e0aca..e9599d31cf429866a0339dbc8cbbb23f00b61e6b 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Order/Comment/Collection/Abstract.php +++ b/app/code/core/Mage/Sales/Model/Resource/Order/Comment/Collection/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Order/Creditmemo.php b/app/code/core/Mage/Sales/Model/Resource/Order/Creditmemo.php index 5b5e1d64a43a69b56f4ee597902b7e9b7af92938..17e795475c0106331c1f53a51d0c266a30b085eb 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Order/Creditmemo.php +++ b/app/code/core/Mage/Sales/Model/Resource/Order/Creditmemo.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Order/Creditmemo/Attribute/Backend/Child.php b/app/code/core/Mage/Sales/Model/Resource/Order/Creditmemo/Attribute/Backend/Child.php index 6dc2f197e85be2e67f713af0b808ff46f1e0008c..f5448983db351112ebb16bc86b9288f1e1b964a3 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Order/Creditmemo/Attribute/Backend/Child.php +++ b/app/code/core/Mage/Sales/Model/Resource/Order/Creditmemo/Attribute/Backend/Child.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Order/Creditmemo/Attribute/Backend/Parent.php b/app/code/core/Mage/Sales/Model/Resource/Order/Creditmemo/Attribute/Backend/Parent.php index 15d97e697aa1218752f8c79ce55c8c8e8c597968..3909acd5c8f3000cb87e99322e68e65e23561463 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Order/Creditmemo/Attribute/Backend/Parent.php +++ b/app/code/core/Mage/Sales/Model/Resource/Order/Creditmemo/Attribute/Backend/Parent.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Order/Creditmemo/Collection.php b/app/code/core/Mage/Sales/Model/Resource/Order/Creditmemo/Collection.php index 1e71c2e7196215c060ae7d13497a8e4732e199f8..bf36270f44e6ab10495930fa1af17ce6178889d9 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Order/Creditmemo/Collection.php +++ b/app/code/core/Mage/Sales/Model/Resource/Order/Creditmemo/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Order/Creditmemo/Comment.php b/app/code/core/Mage/Sales/Model/Resource/Order/Creditmemo/Comment.php index e6b69e3361b6575c6b22f76f436e63868a780cc8..2bc73492f6af652ddd1009b06bb130dcbec61460 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Order/Creditmemo/Comment.php +++ b/app/code/core/Mage/Sales/Model/Resource/Order/Creditmemo/Comment.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Order/Creditmemo/Comment/Collection.php b/app/code/core/Mage/Sales/Model/Resource/Order/Creditmemo/Comment/Collection.php index ae5d434593cce889aa5c6b34e0da0691f57d595a..48b2ed9a26d267f96c20aff20db7e833121b7531 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Order/Creditmemo/Comment/Collection.php +++ b/app/code/core/Mage/Sales/Model/Resource/Order/Creditmemo/Comment/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Order/Creditmemo/Grid/Collection.php b/app/code/core/Mage/Sales/Model/Resource/Order/Creditmemo/Grid/Collection.php index 8b452c2e5d5f98f36405f816084e2c0e51dc1fe4..ce2734401347d7267b739ff2150d563c51dfa83b 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Order/Creditmemo/Grid/Collection.php +++ b/app/code/core/Mage/Sales/Model/Resource/Order/Creditmemo/Grid/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Order/Creditmemo/Item.php b/app/code/core/Mage/Sales/Model/Resource/Order/Creditmemo/Item.php index 8027b5dd769f3975d32d5646baa99280787b3239..79c6b2513637b874b1c6b772dcf0d500010f0c10 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Order/Creditmemo/Item.php +++ b/app/code/core/Mage/Sales/Model/Resource/Order/Creditmemo/Item.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Order/Creditmemo/Item/Collection.php b/app/code/core/Mage/Sales/Model/Resource/Order/Creditmemo/Item/Collection.php index dd87703ab3866c09153c6d1c9bd920fd8946d04b..9336e03bf0393b4b32fb1bc2d550df34c30c9f0e 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Order/Creditmemo/Item/Collection.php +++ b/app/code/core/Mage/Sales/Model/Resource/Order/Creditmemo/Item/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Order/Grid/Collection.php b/app/code/core/Mage/Sales/Model/Resource/Order/Grid/Collection.php index 562aeb9f24ef09824be8168164cd5874c53886cb..25235ab8c87b271a474e615fcf0b9247902b7b0d 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Order/Grid/Collection.php +++ b/app/code/core/Mage/Sales/Model/Resource/Order/Grid/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Order/Grid/StatusesArray.php b/app/code/core/Mage/Sales/Model/Resource/Order/Grid/StatusesArray.php index f773dc0ceb9fa01c82d2b97175a1ddd6c41bcf1b..3c85e0e98737b8974a2df8968e6deb8c76de084e 100644 --- a/app/code/core/Mage/Sales/Model/Resource/Order/Grid/StatusesArray.php +++ b/app/code/core/Mage/Sales/Model/Resource/Order/Grid/StatusesArray.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Order/Invoice.php b/app/code/core/Mage/Sales/Model/Resource/Order/Invoice.php index 06d011a7d0e4504a4784ff0311868da51d6d7c0c..13856fa49904d6e3c2fc2bd531a9182c013e70d1 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Order/Invoice.php +++ b/app/code/core/Mage/Sales/Model/Resource/Order/Invoice.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Order/Invoice/Attribute/Backend/Child.php b/app/code/core/Mage/Sales/Model/Resource/Order/Invoice/Attribute/Backend/Child.php index 25f32ef22067174a7dd14127e5a38bab088c7bff..9129dea7fe64ffc1b450c9f59bb292276453c3f8 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Order/Invoice/Attribute/Backend/Child.php +++ b/app/code/core/Mage/Sales/Model/Resource/Order/Invoice/Attribute/Backend/Child.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Order/Invoice/Attribute/Backend/Item.php b/app/code/core/Mage/Sales/Model/Resource/Order/Invoice/Attribute/Backend/Item.php index cfd2900b3dafb7d5968c5f0eca7bd71314fb1878..e978649947d7ff4551aabd7d3243d365ff403511 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Order/Invoice/Attribute/Backend/Item.php +++ b/app/code/core/Mage/Sales/Model/Resource/Order/Invoice/Attribute/Backend/Item.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Order/Invoice/Attribute/Backend/Order.php b/app/code/core/Mage/Sales/Model/Resource/Order/Invoice/Attribute/Backend/Order.php index 408c71356cbcc325c76599777ab1b33b8c4e0729..cc7348aed31972795829fcdea52a0e6969d8d14a 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Order/Invoice/Attribute/Backend/Order.php +++ b/app/code/core/Mage/Sales/Model/Resource/Order/Invoice/Attribute/Backend/Order.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Order/Invoice/Attribute/Backend/Parent.php b/app/code/core/Mage/Sales/Model/Resource/Order/Invoice/Attribute/Backend/Parent.php index cdce9c9591d2318347cdd22bdd4a05aa73a82dad..90c9367886ee98ff1beb0f4eb948d5bcd546bb54 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Order/Invoice/Attribute/Backend/Parent.php +++ b/app/code/core/Mage/Sales/Model/Resource/Order/Invoice/Attribute/Backend/Parent.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Order/Invoice/Collection.php b/app/code/core/Mage/Sales/Model/Resource/Order/Invoice/Collection.php index dbe5431367ebb3083c2dbdf88b7befc4029cf617..64961a1a6752779d3982a5a77158bd9e169e915d 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Order/Invoice/Collection.php +++ b/app/code/core/Mage/Sales/Model/Resource/Order/Invoice/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Order/Invoice/Comment.php b/app/code/core/Mage/Sales/Model/Resource/Order/Invoice/Comment.php index 3e281f4fbde680d5263fc8e28b1d8267b3efde80..2f182a673167ea059780ac8a47e43770d49cfe16 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Order/Invoice/Comment.php +++ b/app/code/core/Mage/Sales/Model/Resource/Order/Invoice/Comment.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Order/Invoice/Comment/Collection.php b/app/code/core/Mage/Sales/Model/Resource/Order/Invoice/Comment/Collection.php index 9eb057641d21d8f7017ecb810a63a6c959c22137..461c3bddf835e9cf05ed7534c9f889c96b82c82b 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Order/Invoice/Comment/Collection.php +++ b/app/code/core/Mage/Sales/Model/Resource/Order/Invoice/Comment/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Order/Invoice/Grid/Collection.php b/app/code/core/Mage/Sales/Model/Resource/Order/Invoice/Grid/Collection.php index 25294a30913694856d187c022e6d0d03ec86686f..086630a6910c116625acb19d6de5fc9329746252 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Order/Invoice/Grid/Collection.php +++ b/app/code/core/Mage/Sales/Model/Resource/Order/Invoice/Grid/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Order/Invoice/Item.php b/app/code/core/Mage/Sales/Model/Resource/Order/Invoice/Item.php index 352f52c66478dbf7f04e2af89b66504822a8417a..3329bcdcdcef6b37c57eb0c01be86171eb2f715f 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Order/Invoice/Item.php +++ b/app/code/core/Mage/Sales/Model/Resource/Order/Invoice/Item.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Order/Invoice/Item/Collection.php b/app/code/core/Mage/Sales/Model/Resource/Order/Invoice/Item/Collection.php index 4b9203e417832baa798cfa88914ce7519f8a5c3c..a4e496d4a25d4517749075f779f9862944d71f25 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Order/Invoice/Item/Collection.php +++ b/app/code/core/Mage/Sales/Model/Resource/Order/Invoice/Item/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Order/Item.php b/app/code/core/Mage/Sales/Model/Resource/Order/Item.php index e4a6ddabaf8c16b5fc54847679fe973f58e3f49c..4ab8918b67635b1e992ece3bd8a0aaeb96b91b37 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Order/Item.php +++ b/app/code/core/Mage/Sales/Model/Resource/Order/Item.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Order/Item/Collection.php b/app/code/core/Mage/Sales/Model/Resource/Order/Item/Collection.php index 285c5c42036401f49c610b5b4c252e1edb481000..2b143dfbf32b2dd2c0989c2d5b13d694d5ba555e 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Order/Item/Collection.php +++ b/app/code/core/Mage/Sales/Model/Resource/Order/Item/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Order/Payment.php b/app/code/core/Mage/Sales/Model/Resource/Order/Payment.php index 0274efbce2b983c39e65da3d65b32f48af19b01b..58aeb348961570607a91c398374f06a82dc76ca2 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Order/Payment.php +++ b/app/code/core/Mage/Sales/Model/Resource/Order/Payment.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Order/Payment/Collection.php b/app/code/core/Mage/Sales/Model/Resource/Order/Payment/Collection.php index cd81258900f1bf8121e8182e4d1683f4e2d5b23c..1d4f8c38a70e85e3f05fd2e42eafafc039c8d38b 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Order/Payment/Collection.php +++ b/app/code/core/Mage/Sales/Model/Resource/Order/Payment/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Order/Payment/Transaction.php b/app/code/core/Mage/Sales/Model/Resource/Order/Payment/Transaction.php index 5f5a6919d6e4ec82862a38af209e739517047aff..642031a21f44cc7ad4e515b5667684056c3bbe11 100644 --- a/app/code/core/Mage/Sales/Model/Resource/Order/Payment/Transaction.php +++ b/app/code/core/Mage/Sales/Model/Resource/Order/Payment/Transaction.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Order/Payment/Transaction/Collection.php b/app/code/core/Mage/Sales/Model/Resource/Order/Payment/Transaction/Collection.php index fed3404a416be6b8f8d765f8474236688a037f6a..3863a39d6ea55f82144631272c6066b7e8ad01c2 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Order/Payment/Transaction/Collection.php +++ b/app/code/core/Mage/Sales/Model/Resource/Order/Payment/Transaction/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Order/Shipment.php b/app/code/core/Mage/Sales/Model/Resource/Order/Shipment.php index 409396efadef463de66194a99b83d573e247b04a..b5be929ee446c509cc432746d3f1192fd1e7515b 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Order/Shipment.php +++ b/app/code/core/Mage/Sales/Model/Resource/Order/Shipment.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Order/Shipment/Attribute/Backend/Child.php b/app/code/core/Mage/Sales/Model/Resource/Order/Shipment/Attribute/Backend/Child.php index db7b4e89e6a04788edefc5375815aa6d25a66456..0391d5536a47c814fdc179c7a130a9414ca4df9a 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Order/Shipment/Attribute/Backend/Child.php +++ b/app/code/core/Mage/Sales/Model/Resource/Order/Shipment/Attribute/Backend/Child.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Order/Shipment/Attribute/Backend/Parent.php b/app/code/core/Mage/Sales/Model/Resource/Order/Shipment/Attribute/Backend/Parent.php index ca2d14d377cc88ac427e764a374b855aae0d9845..4964afc95b007f97105c9f5a53762fb46ccca36d 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Order/Shipment/Attribute/Backend/Parent.php +++ b/app/code/core/Mage/Sales/Model/Resource/Order/Shipment/Attribute/Backend/Parent.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Order/Shipment/Collection.php b/app/code/core/Mage/Sales/Model/Resource/Order/Shipment/Collection.php index 19bd59204cf3f57e72cac940f8be1a3526d45dfe..a2b7293ee173de734c8d3cb64f5e40267d57ffd7 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Order/Shipment/Collection.php +++ b/app/code/core/Mage/Sales/Model/Resource/Order/Shipment/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Order/Shipment/Comment.php b/app/code/core/Mage/Sales/Model/Resource/Order/Shipment/Comment.php index 3dc78ae65cf78fc0e794be60bbfb1e471d77978c..9a28d4b90209c3764f6b47060d66d79419ad847e 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Order/Shipment/Comment.php +++ b/app/code/core/Mage/Sales/Model/Resource/Order/Shipment/Comment.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Order/Shipment/Comment/Collection.php b/app/code/core/Mage/Sales/Model/Resource/Order/Shipment/Comment/Collection.php index 508df57187a0ac947fc54a7e4c3a346f64b51ba6..e9e67926ae9e906d4e90512c09d8c9f6f47cf32b 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Order/Shipment/Comment/Collection.php +++ b/app/code/core/Mage/Sales/Model/Resource/Order/Shipment/Comment/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Order/Shipment/Grid/Collection.php b/app/code/core/Mage/Sales/Model/Resource/Order/Shipment/Grid/Collection.php index b173850709e2c054c87e0a02fe43aad4164170a0..f6ef9bb5a47a504b14313c907a34f769a0c256d6 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Order/Shipment/Grid/Collection.php +++ b/app/code/core/Mage/Sales/Model/Resource/Order/Shipment/Grid/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Order/Shipment/Item.php b/app/code/core/Mage/Sales/Model/Resource/Order/Shipment/Item.php index c850a06d2319d1e1f414ccbcf08fbbf6fc7ec2a1..ee8afc8b0a2146adf3c850978739ca43d6843284 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Order/Shipment/Item.php +++ b/app/code/core/Mage/Sales/Model/Resource/Order/Shipment/Item.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Order/Shipment/Item/Collection.php b/app/code/core/Mage/Sales/Model/Resource/Order/Shipment/Item/Collection.php index 652ed910287a52619022e856c70fd87faebedc21..bfe962fd2fb40b5e606f36348380fcab96928477 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Order/Shipment/Item/Collection.php +++ b/app/code/core/Mage/Sales/Model/Resource/Order/Shipment/Item/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Order/Shipment/Track.php b/app/code/core/Mage/Sales/Model/Resource/Order/Shipment/Track.php index 8167fb0a1cf496feb62bbb1cab22d1ef2de8ce7a..1d29d7ad6c7c931ba684db3af5ba35d2ec4383c8 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Order/Shipment/Track.php +++ b/app/code/core/Mage/Sales/Model/Resource/Order/Shipment/Track.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Order/Shipment/Track/Collection.php b/app/code/core/Mage/Sales/Model/Resource/Order/Shipment/Track/Collection.php index 5c03e2861f74260de5f762c2b9e416f83cceb78c..179817e0bba838045dea6625f693d743925d7435 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Order/Shipment/Track/Collection.php +++ b/app/code/core/Mage/Sales/Model/Resource/Order/Shipment/Track/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Order/Status.php b/app/code/core/Mage/Sales/Model/Resource/Order/Status.php index 2d97ea5c9fe5d71928d288aab95145c7b5e4f593..17150c61d8cf9935fdc163b68b10d79191ae305d 100644 --- a/app/code/core/Mage/Sales/Model/Resource/Order/Status.php +++ b/app/code/core/Mage/Sales/Model/Resource/Order/Status.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Order/Status/Collection.php b/app/code/core/Mage/Sales/Model/Resource/Order/Status/Collection.php index b745909ae900da8e6bf813b544c21d9f0772f6a8..16ec189d60d8c754da041550de10627600332158 100644 --- a/app/code/core/Mage/Sales/Model/Resource/Order/Status/Collection.php +++ b/app/code/core/Mage/Sales/Model/Resource/Order/Status/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Order/Status/History.php b/app/code/core/Mage/Sales/Model/Resource/Order/Status/History.php index caad63fda62360883c6b571ebe43bc7015c6090c..8820728a9fecba346d25dc7157d652b30c489e55 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Order/Status/History.php +++ b/app/code/core/Mage/Sales/Model/Resource/Order/Status/History.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Order/Status/History/Collection.php b/app/code/core/Mage/Sales/Model/Resource/Order/Status/History/Collection.php index 4750d4d20f1f9a264ac0bd7a1429724f424d5417..17a050beb42441c4d377720cc50268f85b762109 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Order/Status/History/Collection.php +++ b/app/code/core/Mage/Sales/Model/Resource/Order/Status/History/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Order/Tax.php b/app/code/core/Mage/Sales/Model/Resource/Order/Tax.php index 9ee64e9ea0970ac2d7de13f29ecd7d018720ea57..051ce208a093e3b99d424a84950a026a1b3eb52e 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Order/Tax.php +++ b/app/code/core/Mage/Sales/Model/Resource/Order/Tax.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Order/Tax/Collection.php b/app/code/core/Mage/Sales/Model/Resource/Order/Tax/Collection.php index 41513c31d5f7ec4215ea422231241aca00368c51..4230ca2e8cc7171e983cc1d111094783e07c4283 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Order/Tax/Collection.php +++ b/app/code/core/Mage/Sales/Model/Resource/Order/Tax/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Quote.php b/app/code/core/Mage/Sales/Model/Resource/Quote.php index 8198ad6ef1db7abbf671ed0b8f4a6d8f779aa7a0..800232f473e412869e9aa5fb7ddc4f74b18d80a8 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Quote.php +++ b/app/code/core/Mage/Sales/Model/Resource/Quote.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Quote/Address.php b/app/code/core/Mage/Sales/Model/Resource/Quote/Address.php index be51f16367ed9eb2b1f8f80090ddda0e6680d40e..edf55385aff13f82f44f3ff841e977a0e5f3983e 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Quote/Address.php +++ b/app/code/core/Mage/Sales/Model/Resource/Quote/Address.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Quote/Address/Attribute/Backend.php b/app/code/core/Mage/Sales/Model/Resource/Quote/Address/Attribute/Backend.php index a932aea565396bb7d9877fd71289d6bd7ec724cf..7d454f88a1cc0633cd8d7c4861f3ca9bf6a3ddb2 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Quote/Address/Attribute/Backend.php +++ b/app/code/core/Mage/Sales/Model/Resource/Quote/Address/Attribute/Backend.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Quote/Address/Attribute/Backend/Child.php b/app/code/core/Mage/Sales/Model/Resource/Quote/Address/Attribute/Backend/Child.php index add00445ec84b95357dd05086760da43597ebefe..386eee19c37e1ca2c7a11d0b179325647aa05b25 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Quote/Address/Attribute/Backend/Child.php +++ b/app/code/core/Mage/Sales/Model/Resource/Quote/Address/Attribute/Backend/Child.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Quote/Address/Attribute/Backend/Parent.php b/app/code/core/Mage/Sales/Model/Resource/Quote/Address/Attribute/Backend/Parent.php index 6bda075d985a83a8d544a3f142fba1b3df93c526..a43e05114cddbaa09d59e65e30a81b238b98b36b 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Quote/Address/Attribute/Backend/Parent.php +++ b/app/code/core/Mage/Sales/Model/Resource/Quote/Address/Attribute/Backend/Parent.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Quote/Address/Attribute/Backend/Region.php b/app/code/core/Mage/Sales/Model/Resource/Quote/Address/Attribute/Backend/Region.php index 5f76585ae84b1305dd12d5a13ea694d2b9d75113..576ff20b42555453d4992490128cd975ab9bc067 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Quote/Address/Attribute/Backend/Region.php +++ b/app/code/core/Mage/Sales/Model/Resource/Quote/Address/Attribute/Backend/Region.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Quote/Address/Attribute/Frontend.php b/app/code/core/Mage/Sales/Model/Resource/Quote/Address/Attribute/Frontend.php index 9fea3dc608c0b155f693d513f27bbefeba433cb1..50bb0ed0e0babd15b0c6701723f7df67a82aee46 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Quote/Address/Attribute/Frontend.php +++ b/app/code/core/Mage/Sales/Model/Resource/Quote/Address/Attribute/Frontend.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Quote/Address/Attribute/Frontend/Custbalance.php b/app/code/core/Mage/Sales/Model/Resource/Quote/Address/Attribute/Frontend/Custbalance.php index 066a456404d2ca39b954d8d65589472d4a3227fa..79eb66524b5917fa031749e00ea2776ef460b723 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Quote/Address/Attribute/Frontend/Custbalance.php +++ b/app/code/core/Mage/Sales/Model/Resource/Quote/Address/Attribute/Frontend/Custbalance.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Quote/Address/Attribute/Frontend/Discount.php b/app/code/core/Mage/Sales/Model/Resource/Quote/Address/Attribute/Frontend/Discount.php index 1f2eb7f2cba445cd368dd19711f669f876040a32..0430bbeb50d6ff97176ba92a70165e1f8234ac59 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Quote/Address/Attribute/Frontend/Discount.php +++ b/app/code/core/Mage/Sales/Model/Resource/Quote/Address/Attribute/Frontend/Discount.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Quote/Address/Attribute/Frontend/Grand.php b/app/code/core/Mage/Sales/Model/Resource/Quote/Address/Attribute/Frontend/Grand.php index 704d3ea096ed1c3494a690f27290b3add4c32451..4b0b00129fa59ddb10f5755f6c09d10613073207 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Quote/Address/Attribute/Frontend/Grand.php +++ b/app/code/core/Mage/Sales/Model/Resource/Quote/Address/Attribute/Frontend/Grand.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Quote/Address/Attribute/Frontend/Shipping.php b/app/code/core/Mage/Sales/Model/Resource/Quote/Address/Attribute/Frontend/Shipping.php index c5413a712f3a0bcf6667cb11060f19f2c45fd8d1..e00c4c2ef722acaca8963148f790968b075997ed 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Quote/Address/Attribute/Frontend/Shipping.php +++ b/app/code/core/Mage/Sales/Model/Resource/Quote/Address/Attribute/Frontend/Shipping.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Quote/Address/Attribute/Frontend/Subtotal.php b/app/code/core/Mage/Sales/Model/Resource/Quote/Address/Attribute/Frontend/Subtotal.php index 8f9c641b00d588df9cd1d8997eb6eed0522611c7..6eda3dd3ec8c1935c0ee7b4e493eda70f1687265 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Quote/Address/Attribute/Frontend/Subtotal.php +++ b/app/code/core/Mage/Sales/Model/Resource/Quote/Address/Attribute/Frontend/Subtotal.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Quote/Address/Attribute/Frontend/Tax.php b/app/code/core/Mage/Sales/Model/Resource/Quote/Address/Attribute/Frontend/Tax.php index d8e065be98c69ec2ba39fe75e0f2c712a0757698..3c28384785e91b5d3874f2df7fdbf4d209d08429 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Quote/Address/Attribute/Frontend/Tax.php +++ b/app/code/core/Mage/Sales/Model/Resource/Quote/Address/Attribute/Frontend/Tax.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Quote/Address/Collection.php b/app/code/core/Mage/Sales/Model/Resource/Quote/Address/Collection.php index af81f7ae19af31e300d30eccff274de781b89356..860257fb79cf057aa7ab12518ad8d67bf2d60002 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Quote/Address/Collection.php +++ b/app/code/core/Mage/Sales/Model/Resource/Quote/Address/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Quote/Address/Item.php b/app/code/core/Mage/Sales/Model/Resource/Quote/Address/Item.php index 6b100441a14fe489d74b3f8dd8a8a97e9f63b15c..cec63fa4fae276ae78c616d2d0a88ab29c5a5d3e 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Quote/Address/Item.php +++ b/app/code/core/Mage/Sales/Model/Resource/Quote/Address/Item.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Quote/Address/Item/Collection.php b/app/code/core/Mage/Sales/Model/Resource/Quote/Address/Item/Collection.php index 767957ab8a195f5b43099c077bd0caf7d5a83249..41e9eb1e5773da5695d77df996b476727a3608c4 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Quote/Address/Item/Collection.php +++ b/app/code/core/Mage/Sales/Model/Resource/Quote/Address/Item/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Quote/Address/Rate.php b/app/code/core/Mage/Sales/Model/Resource/Quote/Address/Rate.php index b674deb10a9344a3e4c7a72d0bda8f15398e33ae..1158fde7a685c83860680054d699d8ce9d79b446 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Quote/Address/Rate.php +++ b/app/code/core/Mage/Sales/Model/Resource/Quote/Address/Rate.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Quote/Address/Rate/Collection.php b/app/code/core/Mage/Sales/Model/Resource/Quote/Address/Rate/Collection.php index 9e15d9614a101786e505deefcc9f29a0d24c29f9..f52238c2369466a8c6b7cd89b61b0aec8873c5e7 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Quote/Address/Rate/Collection.php +++ b/app/code/core/Mage/Sales/Model/Resource/Quote/Address/Rate/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Quote/Collection.php b/app/code/core/Mage/Sales/Model/Resource/Quote/Collection.php index 0d1f648f0bda51e4a16fa544261394b4fd71ab0a..2b9195503974eaaf5fab383d197932c0105c6119 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Quote/Collection.php +++ b/app/code/core/Mage/Sales/Model/Resource/Quote/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Quote/Item.php b/app/code/core/Mage/Sales/Model/Resource/Quote/Item.php index 720e013efc924b96973998ad348ab8fce855ad8f..5f6b4706f9cc1807b150bc3e52d197b6bef7d448 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Quote/Item.php +++ b/app/code/core/Mage/Sales/Model/Resource/Quote/Item.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Quote/Item/Collection.php b/app/code/core/Mage/Sales/Model/Resource/Quote/Item/Collection.php index d40959601e1c59d2f45295e9aa4a76362f55c103..30ef17a78bc35497616a5d5d11a6ab3901342483 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Quote/Item/Collection.php +++ b/app/code/core/Mage/Sales/Model/Resource/Quote/Item/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Quote/Item/Option.php b/app/code/core/Mage/Sales/Model/Resource/Quote/Item/Option.php index 0dba561c66ea8c57e0e6df65295c353b403df3f5..51fbac85eb6e787bea70746cb0343c5c5e7adc9e 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Quote/Item/Option.php +++ b/app/code/core/Mage/Sales/Model/Resource/Quote/Item/Option.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Quote/Item/Option/Collection.php b/app/code/core/Mage/Sales/Model/Resource/Quote/Item/Option/Collection.php index 611ce797bb9842e6a16c338eef46e08e62eb9f8c..807c26dc1d7406a9cd7a7dbf652013d16825d48b 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Quote/Item/Option/Collection.php +++ b/app/code/core/Mage/Sales/Model/Resource/Quote/Item/Option/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Quote/Payment.php b/app/code/core/Mage/Sales/Model/Resource/Quote/Payment.php index 9f1c0205b65743e20b98e5718c06432a2631ad35..9fb6ebae24a0786e77d92983077c23feb06e84df 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Quote/Payment.php +++ b/app/code/core/Mage/Sales/Model/Resource/Quote/Payment.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Quote/Payment/Collection.php b/app/code/core/Mage/Sales/Model/Resource/Quote/Payment/Collection.php index ed7bf71ca9b5f39c74c93902b7bf8ef0b1cc02b1..2aee25ee87096dfae9ee5fec37d2873beb5e97b6 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Quote/Payment/Collection.php +++ b/app/code/core/Mage/Sales/Model/Resource/Quote/Payment/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Recurring/Profile.php b/app/code/core/Mage/Sales/Model/Resource/Recurring/Profile.php index d99e9b781c22903b2326ba1038e080d61e309553..bc8edf5b581e2825334d5056a88fdc941cb69378 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Recurring/Profile.php +++ b/app/code/core/Mage/Sales/Model/Resource/Recurring/Profile.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Recurring/Profile/Collection.php b/app/code/core/Mage/Sales/Model/Resource/Recurring/Profile/Collection.php index f0692a9e82d6744c556d3c9bb10839d0501a6a3d..3c59a680125250f907c140c211f74f399faee2f5 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Recurring/Profile/Collection.php +++ b/app/code/core/Mage/Sales/Model/Resource/Recurring/Profile/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Report.php b/app/code/core/Mage/Sales/Model/Resource/Report.php index 7b9a1b2136a48cec3d2a8fb03d78c2e27c33d3e7..08b23d346a6e3d500cd76cd43cfd6ca614d404bf 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Report.php +++ b/app/code/core/Mage/Sales/Model/Resource/Report.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Report/Abstract.php b/app/code/core/Mage/Sales/Model/Resource/Report/Abstract.php index 67838b4421350025c2a2816166a9b2284d921ad4..31b71c9b0ecf1004dcd87327194594dded3817d5 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Report/Abstract.php +++ b/app/code/core/Mage/Sales/Model/Resource/Report/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Report/Bestsellers.php b/app/code/core/Mage/Sales/Model/Resource/Report/Bestsellers.php index 80018576e81f8eeaf85d682b23313e0160202f7f..05c328afb87fec66877f642b28abc11f3191e7cd 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Report/Bestsellers.php +++ b/app/code/core/Mage/Sales/Model/Resource/Report/Bestsellers.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Report/Bestsellers/Collection.php b/app/code/core/Mage/Sales/Model/Resource/Report/Bestsellers/Collection.php index 911e17bedd568692ba19933b9f4d9e26db1cf581..fedc347d17c7a5e8bdc9ee3ee240164c6c6e4442 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Report/Bestsellers/Collection.php +++ b/app/code/core/Mage/Sales/Model/Resource/Report/Bestsellers/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Report/Collection/Abstract.php b/app/code/core/Mage/Sales/Model/Resource/Report/Collection/Abstract.php index ddc4d20e659e011eb94750d3def355c7a69ff3cf..d2d6475f16bcee26aa4fae5ded01af546949135d 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Report/Collection/Abstract.php +++ b/app/code/core/Mage/Sales/Model/Resource/Report/Collection/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Report/Invoiced.php b/app/code/core/Mage/Sales/Model/Resource/Report/Invoiced.php index 38b2bf94cb773910c8d42ea97811c6aeb00da5a5..7afbd50c9aab87045c65292647d3d443a822a912 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Report/Invoiced.php +++ b/app/code/core/Mage/Sales/Model/Resource/Report/Invoiced.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Report/Invoiced/Collection/Invoiced.php b/app/code/core/Mage/Sales/Model/Resource/Report/Invoiced/Collection/Invoiced.php index 29b5d0c47db6aaada2b61fcec4d4a2b4c8070be2..4bfc343c6e58cd0ef27e3ff92e28fbe3c491a394 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Report/Invoiced/Collection/Invoiced.php +++ b/app/code/core/Mage/Sales/Model/Resource/Report/Invoiced/Collection/Invoiced.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Report/Invoiced/Collection/Order.php b/app/code/core/Mage/Sales/Model/Resource/Report/Invoiced/Collection/Order.php index 2e296f769825b0e8d3c33031b5cff0ab955aa7f0..0e74498b39ca515ea3e32481259e023391c53d00 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Report/Invoiced/Collection/Order.php +++ b/app/code/core/Mage/Sales/Model/Resource/Report/Invoiced/Collection/Order.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Report/Order.php b/app/code/core/Mage/Sales/Model/Resource/Report/Order.php index 6b4a395c9ebf88d77cd2d2d4687f0e72079d996c..a2802d72c7afbc471ba5dff7dd6f1dda299bb291 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Report/Order.php +++ b/app/code/core/Mage/Sales/Model/Resource/Report/Order.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Report/Order/Collection.php b/app/code/core/Mage/Sales/Model/Resource/Report/Order/Collection.php index 0c0b04fb4e90a7c060e6e2413a7692c3f42b8fe2..4eb2eaa3c39332082dfd6c0d7d78e3c1c09fee41 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Report/Order/Collection.php +++ b/app/code/core/Mage/Sales/Model/Resource/Report/Order/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Report/Order/Createdat.php b/app/code/core/Mage/Sales/Model/Resource/Report/Order/Createdat.php index 7e93580cfab7db022c4574d878dd733e05537354..b9bdb0d046f2a116169d8e9da794418569b5487c 100644 --- a/app/code/core/Mage/Sales/Model/Resource/Report/Order/Createdat.php +++ b/app/code/core/Mage/Sales/Model/Resource/Report/Order/Createdat.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Report/Order/Updatedat.php b/app/code/core/Mage/Sales/Model/Resource/Report/Order/Updatedat.php index 5373ed42232636a5375d4c9d3402183eb428befc..0fe9618e43a32eee648ee858d612fdb88508f2f9 100644 --- a/app/code/core/Mage/Sales/Model/Resource/Report/Order/Updatedat.php +++ b/app/code/core/Mage/Sales/Model/Resource/Report/Order/Updatedat.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Report/Order/Updatedat/Collection.php b/app/code/core/Mage/Sales/Model/Resource/Report/Order/Updatedat/Collection.php index 17730dc91f46626b54c0e23e347a050293071006..ad473d3254bb12d1520625aa9cf7e57200dc07cf 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Report/Order/Updatedat/Collection.php +++ b/app/code/core/Mage/Sales/Model/Resource/Report/Order/Updatedat/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Report/Refunded.php b/app/code/core/Mage/Sales/Model/Resource/Report/Refunded.php index 523a0cc5de0d1a3ac0a5f6daaaf6e09fcabfe407..de6597ba815bb0a86a78771f217d5ecca3529d6e 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Report/Refunded.php +++ b/app/code/core/Mage/Sales/Model/Resource/Report/Refunded.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Report/Refunded/Collection/Order.php b/app/code/core/Mage/Sales/Model/Resource/Report/Refunded/Collection/Order.php index 6b17979ec577f73407325cafc98425d695158cc8..46bf29b1c342f8a7349dc585a19d3f812cf33396 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Report/Refunded/Collection/Order.php +++ b/app/code/core/Mage/Sales/Model/Resource/Report/Refunded/Collection/Order.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Report/Refunded/Collection/Refunded.php b/app/code/core/Mage/Sales/Model/Resource/Report/Refunded/Collection/Refunded.php index 8cc2188f7b64f35d88ae8f63265d29d438eecfa2..f81e2be0b3edf807c561a78eed7282921bd66292 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Report/Refunded/Collection/Refunded.php +++ b/app/code/core/Mage/Sales/Model/Resource/Report/Refunded/Collection/Refunded.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Report/Shipping.php b/app/code/core/Mage/Sales/Model/Resource/Report/Shipping.php index e0c00bac8b1097c28640f649ca7f3ead8855bc3b..5022b06e007cc1705c8b2d398e5ef32f6c152ce4 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Report/Shipping.php +++ b/app/code/core/Mage/Sales/Model/Resource/Report/Shipping.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Report/Shipping/Collection/Order.php b/app/code/core/Mage/Sales/Model/Resource/Report/Shipping/Collection/Order.php index 9a389f6b7c44d5ebfe642baa2ebaf30ea08225bb..356dae03dea37cd4a4646ed14f3e8028f597fe63 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Report/Shipping/Collection/Order.php +++ b/app/code/core/Mage/Sales/Model/Resource/Report/Shipping/Collection/Order.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Report/Shipping/Collection/Shipment.php b/app/code/core/Mage/Sales/Model/Resource/Report/Shipping/Collection/Shipment.php index 0d348450fece4621a20980535a841933f6f724d5..2d4ebaddfc8c4f029dcc19ca5b35cfa4f52fd7ae 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Report/Shipping/Collection/Shipment.php +++ b/app/code/core/Mage/Sales/Model/Resource/Report/Shipping/Collection/Shipment.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Sale/Collection.php b/app/code/core/Mage/Sales/Model/Resource/Sale/Collection.php index b93dcc49542aa98fe32ea1e7092a9b980fc8770c..c01f09a9e146c124258b7b68017798a31b1e5e03 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Sale/Collection.php +++ b/app/code/core/Mage/Sales/Model/Resource/Sale/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Resource/Setup.php b/app/code/core/Mage/Sales/Model/Resource/Setup.php index 386fa9de04e828c7f0f561c35762c2fe806f6d03..cf510a2c635d94e6ed13b5cbdef23fedfe9deebb 100755 --- a/app/code/core/Mage/Sales/Model/Resource/Setup.php +++ b/app/code/core/Mage/Sales/Model/Resource/Setup.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Service/Order.php b/app/code/core/Mage/Sales/Model/Service/Order.php index b3daa3051a1a31041a3f1d2e3dbd7a72c422a75e..21d8156fa5ffef3f688817e65dd90e903cdb1440 100644 --- a/app/code/core/Mage/Sales/Model/Service/Order.php +++ b/app/code/core/Mage/Sales/Model/Service/Order.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Service/Quote.php b/app/code/core/Mage/Sales/Model/Service/Quote.php index 5b2d799818a4d5d823c24248d439c30eae3014b6..1e60ec9960e551f1370926cc7dda757334b23b2b 100644 --- a/app/code/core/Mage/Sales/Model/Service/Quote.php +++ b/app/code/core/Mage/Sales/Model/Service/Quote.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/Model/Status/List.php b/app/code/core/Mage/Sales/Model/Status/List.php index b6f48983f182ef3c9712972b5f4b7a5fe9bc3860..60a333553960656d438b953c2a0dda076996f40a 100644 --- a/app/code/core/Mage/Sales/Model/Status/List.php +++ b/app/code/core/Mage/Sales/Model/Status/List.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/controllers/Billing/AgreementController.php b/app/code/core/Mage/Sales/controllers/Billing/AgreementController.php index 6a7f870aa435fd206b9e39f21c35e8f3d919649b..5381ca55a4152c702e0e8acb346926db4b165bf7 100644 --- a/app/code/core/Mage/Sales/controllers/Billing/AgreementController.php +++ b/app/code/core/Mage/Sales/controllers/Billing/AgreementController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/controllers/DownloadController.php b/app/code/core/Mage/Sales/controllers/DownloadController.php index 4e5b4bd0694d5578d35b067ae26304bbbdd85f6d..39edafee813de0b97e671c44ee84751189c1706c 100644 --- a/app/code/core/Mage/Sales/controllers/DownloadController.php +++ b/app/code/core/Mage/Sales/controllers/DownloadController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/controllers/GuestController.php b/app/code/core/Mage/Sales/controllers/GuestController.php index 3971f8ade39f200cd231fc02288bd67057be35df..12e0daf41868f45ceab928ec830be59f5da6c9c4 100644 --- a/app/code/core/Mage/Sales/controllers/GuestController.php +++ b/app/code/core/Mage/Sales/controllers/GuestController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/controllers/OrderController.php b/app/code/core/Mage/Sales/controllers/OrderController.php index e7f6054fe095e4b926e45adc63ba2e7795d7a1b3..eea888c54b671139e0a2e5b096bd49fd1986c704 100644 --- a/app/code/core/Mage/Sales/controllers/OrderController.php +++ b/app/code/core/Mage/Sales/controllers/OrderController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/controllers/Recurring/ProfileController.php b/app/code/core/Mage/Sales/controllers/Recurring/ProfileController.php index d2ad49005b3351123fa37a4bcdf1b904b8432a63..25093c06e863cc11125fd8e98ad35694d200af29 100644 --- a/app/code/core/Mage/Sales/controllers/Recurring/ProfileController.php +++ b/app/code/core/Mage/Sales/controllers/Recurring/ProfileController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/data/sales_setup/data-install-1.6.0.0.php b/app/code/core/Mage/Sales/data/sales_setup/data-install-1.6.0.0.php index 07087a99b69bbb3baba5f6624736d53197120c4b..a56b8e2df8ed1c285483b4c42773f60536e9c468 100644 --- a/app/code/core/Mage/Sales/data/sales_setup/data-install-1.6.0.0.php +++ b/app/code/core/Mage/Sales/data/sales_setup/data-install-1.6.0.0.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/data/sales_setup/data-upgrade-1.6.0.4-1.6.0.5.php b/app/code/core/Mage/Sales/data/sales_setup/data-upgrade-1.6.0.4-1.6.0.5.php index 2eff27cb830f21a05c4202ba07abf9485b1f41ef..f91ae784671fbcb2b86ccd1c1ee7e3832b7eb17d 100644 --- a/app/code/core/Mage/Sales/data/sales_setup/data-upgrade-1.6.0.4-1.6.0.5.php +++ b/app/code/core/Mage/Sales/data/sales_setup/data-upgrade-1.6.0.4-1.6.0.5.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/data/sales_setup/data-upgrade-1.6.0.8-1.6.0.9.php b/app/code/core/Mage/Sales/data/sales_setup/data-upgrade-1.6.0.8-1.6.0.9.php index 0fca2e4825e89c89e2a7393b4a79832443135d84..307e0f98b3d7f47fc3b02f6e4fb953741467052b 100644 --- a/app/code/core/Mage/Sales/data/sales_setup/data-upgrade-1.6.0.8-1.6.0.9.php +++ b/app/code/core/Mage/Sales/data/sales_setup/data-upgrade-1.6.0.8-1.6.0.9.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/etc/adminhtml/acl.xml b/app/code/core/Mage/Sales/etc/adminhtml/acl.xml index 63c85bc8fc708db0ebaf2605ca790e731141dc86..dcea205e35dd9ca4682d4d681b0f2a0ef6ddea79 100644 --- a/app/code/core/Mage/Sales/etc/adminhtml/acl.xml +++ b/app/code/core/Mage/Sales/etc/adminhtml/acl.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Sales/etc/adminhtml/menu.xml b/app/code/core/Mage/Sales/etc/adminhtml/menu.xml index c96f9fc08cb7326b07326eb306dd6cfc6987113c..90712a76f1b16e72653ff8714e4366b8c4e28db7 100644 --- a/app/code/core/Mage/Sales/etc/adminhtml/menu.xml +++ b/app/code/core/Mage/Sales/etc/adminhtml/menu.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Sales/etc/adminhtml/system.xml b/app/code/core/Mage/Sales/etc/adminhtml/system.xml index 19fd8e4f9bc34f4fa6511b9565efd9611f0ba355..303ef04321dcd34edbd7837e076c0e6e5b790012 100644 --- a/app/code/core/Mage/Sales/etc/adminhtml/system.xml +++ b/app/code/core/Mage/Sales/etc/adminhtml/system.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Sales/etc/config.xml b/app/code/core/Mage/Sales/etc/config.xml index 3dd80c6e7121b4317e2b4d1d36e9320a076c8cfa..83cb5f4ada36bb5f34dd0679b3391a4f49c57079 100644 --- a/app/code/core/Mage/Sales/etc/config.xml +++ b/app/code/core/Mage/Sales/etc/config.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Sales/etc/fieldset.xml b/app/code/core/Mage/Sales/etc/fieldset.xml index 5358cd4f9c72dbf5bf2cb2dfeb7bb8a126e5e006..53e80fe5bca69716e3dbf786292dd53816f1d7b0 100644 --- a/app/code/core/Mage/Sales/etc/fieldset.xml +++ b/app/code/core/Mage/Sales/etc/fieldset.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Sales/etc/widget.xml b/app/code/core/Mage/Sales/etc/widget.xml index 6dbc07a63e7f89e4eb3dedb6adb1b2186a598dfd..0fbabd6842c5b8472e617b183633af87e9587573 100644 --- a/app/code/core/Mage/Sales/etc/widget.xml +++ b/app/code/core/Mage/Sales/etc/widget.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Sales/sql/sales_setup/install-1.6.0.0.php b/app/code/core/Mage/Sales/sql/sales_setup/install-1.6.0.0.php index 56c04b3ab71ecf04d6ae47991623025b0589083b..48211ca0b72f7426b6d4dc512c1acd183e0fa379 100644 --- a/app/code/core/Mage/Sales/sql/sales_setup/install-1.6.0.0.php +++ b/app/code/core/Mage/Sales/sql/sales_setup/install-1.6.0.0.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/sql/sales_setup/upgrade-1.6.0.0-1.6.0.1.php b/app/code/core/Mage/Sales/sql/sales_setup/upgrade-1.6.0.0-1.6.0.1.php index ce76b8938d47db6ad556947ab15abce648f280ce..c78017d98f3a0e6862f661aff8e5d2a1add6f5b9 100644 --- a/app/code/core/Mage/Sales/sql/sales_setup/upgrade-1.6.0.0-1.6.0.1.php +++ b/app/code/core/Mage/Sales/sql/sales_setup/upgrade-1.6.0.0-1.6.0.1.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/sql/sales_setup/upgrade-1.6.0.1-1.6.0.2.php b/app/code/core/Mage/Sales/sql/sales_setup/upgrade-1.6.0.1-1.6.0.2.php index 1ff99f1b73e8145ea04c65225bf9aa1e058ab6e6..b53123482fe77fb127e7aa0d668b9d1186f38f0c 100644 --- a/app/code/core/Mage/Sales/sql/sales_setup/upgrade-1.6.0.1-1.6.0.2.php +++ b/app/code/core/Mage/Sales/sql/sales_setup/upgrade-1.6.0.1-1.6.0.2.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/sql/sales_setup/upgrade-1.6.0.2-1.6.0.3.php b/app/code/core/Mage/Sales/sql/sales_setup/upgrade-1.6.0.2-1.6.0.3.php index 7effe85fb2daeea777c8d447c5be26f0f5260591..db25795a5efbef82a2b5ea7220563edb86c4f86c 100644 --- a/app/code/core/Mage/Sales/sql/sales_setup/upgrade-1.6.0.2-1.6.0.3.php +++ b/app/code/core/Mage/Sales/sql/sales_setup/upgrade-1.6.0.2-1.6.0.3.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/sql/sales_setup/upgrade-1.6.0.3-1.6.0.4.php b/app/code/core/Mage/Sales/sql/sales_setup/upgrade-1.6.0.3-1.6.0.4.php index 2330d5e98710303403d9fce77085052f0b7d85b2..d7e2816da62f8ff3c6146aa5f148bc960ec4872b 100644 --- a/app/code/core/Mage/Sales/sql/sales_setup/upgrade-1.6.0.3-1.6.0.4.php +++ b/app/code/core/Mage/Sales/sql/sales_setup/upgrade-1.6.0.3-1.6.0.4.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/sql/sales_setup/upgrade-1.6.0.4-1.6.0.5.php b/app/code/core/Mage/Sales/sql/sales_setup/upgrade-1.6.0.4-1.6.0.5.php index fb5f4a445549c00df1ea4ef88ddf2fe67b90f857..a45a58f7316280831b25c594e4cb570b3eb2091c 100644 --- a/app/code/core/Mage/Sales/sql/sales_setup/upgrade-1.6.0.4-1.6.0.5.php +++ b/app/code/core/Mage/Sales/sql/sales_setup/upgrade-1.6.0.4-1.6.0.5.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/sql/sales_setup/upgrade-1.6.0.5-1.6.0.6.php b/app/code/core/Mage/Sales/sql/sales_setup/upgrade-1.6.0.5-1.6.0.6.php index db5a74371715f7010eab2153726d6783ced24276..fb2b7c43f26e096c8bb9e150283dce9d23ef6b4f 100644 --- a/app/code/core/Mage/Sales/sql/sales_setup/upgrade-1.6.0.5-1.6.0.6.php +++ b/app/code/core/Mage/Sales/sql/sales_setup/upgrade-1.6.0.5-1.6.0.6.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/sql/sales_setup/upgrade-1.6.0.6-1.6.0.7.php b/app/code/core/Mage/Sales/sql/sales_setup/upgrade-1.6.0.6-1.6.0.7.php index 0c97e80c7542f24e6912638e0edd7a4a0bdd57ad..9fba1e9181636bb5b5859300ab3ef6a696f28d34 100644 --- a/app/code/core/Mage/Sales/sql/sales_setup/upgrade-1.6.0.6-1.6.0.7.php +++ b/app/code/core/Mage/Sales/sql/sales_setup/upgrade-1.6.0.6-1.6.0.7.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/sql/sales_setup/upgrade-1.6.0.7-1.6.0.8.php b/app/code/core/Mage/Sales/sql/sales_setup/upgrade-1.6.0.7-1.6.0.8.php index 4eb0ae1aa786298aafc7e0d23405f576e3c11182..5162583bfb8567c8d79ac3dcd183241604c3861d 100644 --- a/app/code/core/Mage/Sales/sql/sales_setup/upgrade-1.6.0.7-1.6.0.8.php +++ b/app/code/core/Mage/Sales/sql/sales_setup/upgrade-1.6.0.7-1.6.0.8.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/sql/sales_setup/upgrade-1.6.0.8-1.6.0.9.php b/app/code/core/Mage/Sales/sql/sales_setup/upgrade-1.6.0.8-1.6.0.9.php index b0252e0e9b26af2bb9cf991ac45b1ca9a5146554..ff2a35bf4c114636fc1239cdf7711f04bc1380db 100644 --- a/app/code/core/Mage/Sales/sql/sales_setup/upgrade-1.6.0.8-1.6.0.9.php +++ b/app/code/core/Mage/Sales/sql/sales_setup/upgrade-1.6.0.8-1.6.0.9.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sales - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sales/view/adminhtml/billing/agreement/form.phtml b/app/code/core/Mage/Sales/view/adminhtml/billing/agreement/form.phtml index ce852f34d1a21263723a7f50892132bc3c669539..50935574374af27b611c89e7a6d6156cc2541d8d 100644 --- a/app/code/core/Mage/Sales/view/adminhtml/billing/agreement/form.phtml +++ b/app/code/core/Mage/Sales/view/adminhtml/billing/agreement/form.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Sales/view/adminhtml/billing/agreement/view/form.phtml b/app/code/core/Mage/Sales/view/adminhtml/billing/agreement/view/form.phtml index 47ec92a895f5f0987fa0e2abc08404e500debba4..73d8469258326008113ab62c46cc09bea3ff5b46 100644 --- a/app/code/core/Mage/Sales/view/adminhtml/billing/agreement/view/form.phtml +++ b/app/code/core/Mage/Sales/view/adminhtml/billing/agreement/view/form.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Sales/view/adminhtml/billing/agreement/view/tab/info.phtml b/app/code/core/Mage/Sales/view/adminhtml/billing/agreement/view/tab/info.phtml index cf176f4051c691db8505c5cc555179882fa9da54..1a084fafe996153a1a3964648d93e2ca987fb19f 100644 --- a/app/code/core/Mage/Sales/view/adminhtml/billing/agreement/view/tab/info.phtml +++ b/app/code/core/Mage/Sales/view/adminhtml/billing/agreement/view/tab/info.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Sales/view/adminhtml/payment/form/billing/agreement.phtml b/app/code/core/Mage/Sales/view/adminhtml/payment/form/billing/agreement.phtml index 5456a177f0a5d7f012246509f09d75c06abaddc3..0617965d96cdb188b1b4a1f0050c3694bc8ef640 100644 --- a/app/code/core/Mage/Sales/view/adminhtml/payment/form/billing/agreement.phtml +++ b/app/code/core/Mage/Sales/view/adminhtml/payment/form/billing/agreement.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Sales/view/adminhtml/recurring/profile/view.phtml b/app/code/core/Mage/Sales/view/adminhtml/recurring/profile/view.phtml index 9852527636a4ac3ecb3945e39dc90964a16a1d00..5a73414fef67d7c242d0e21e358a9abf32b3bc6b 100644 --- a/app/code/core/Mage/Sales/view/adminhtml/recurring/profile/view.phtml +++ b/app/code/core/Mage/Sales/view/adminhtml/recurring/profile/view.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Sales/view/adminhtml/recurring/profile/view/info.phtml b/app/code/core/Mage/Sales/view/adminhtml/recurring/profile/view/info.phtml index 10eae8b6d9d14c8a287e8ba9da8ad641a5c12d34..78ded7c5bf8ebfce916d1b6a2e4db44756e1743c 100644 --- a/app/code/core/Mage/Sales/view/adminhtml/recurring/profile/view/info.phtml +++ b/app/code/core/Mage/Sales/view/adminhtml/recurring/profile/view/info.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Sales/view/frontend/billing/agreement/view.phtml b/app/code/core/Mage/Sales/view/frontend/billing/agreement/view.phtml index 7cd6cc628559278128aa763452298aeeed9eb05f..9e45eae183a5705f423fe3183684e2bbbfa7de49 100644 --- a/app/code/core/Mage/Sales/view/frontend/billing/agreement/view.phtml +++ b/app/code/core/Mage/Sales/view/frontend/billing/agreement/view.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Sales/view/frontend/billing/agreements.phtml b/app/code/core/Mage/Sales/view/frontend/billing/agreements.phtml index 0cc2922baf54db83a06da5a26d2de86032ba165c..24249e6f367b2dfeebabef513fcb83cc47d6beff 100644 --- a/app/code/core/Mage/Sales/view/frontend/billing/agreements.phtml +++ b/app/code/core/Mage/Sales/view/frontend/billing/agreements.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Sales/view/frontend/billing_agreement.xml b/app/code/core/Mage/Sales/view/frontend/billing_agreement.xml index f6323bce919e217c9d7d42dc8f2a34ba353fb00d..642a579a330bb98cae088952c6e395522c0f89ec 100644 --- a/app/code/core/Mage/Sales/view/frontend/billing_agreement.xml +++ b/app/code/core/Mage/Sales/view/frontend/billing_agreement.xml @@ -21,7 +21,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Sales/view/frontend/email/creditmemo/items.phtml b/app/code/core/Mage/Sales/view/frontend/email/creditmemo/items.phtml index 7b10666e0056a99091c6fb06b9a7c9dc7b14fe2f..937805afc9726e0c6a800f797150d8514c947c80 100644 --- a/app/code/core/Mage/Sales/view/frontend/email/creditmemo/items.phtml +++ b/app/code/core/Mage/Sales/view/frontend/email/creditmemo/items.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Sales/view/frontend/email/invoice/items.phtml b/app/code/core/Mage/Sales/view/frontend/email/invoice/items.phtml index 75ffc21de9818f4b429a3568ac7259ab09a3fa02..56ff99a98154384cff3ee5f9b7030e9cf303917f 100644 --- a/app/code/core/Mage/Sales/view/frontend/email/invoice/items.phtml +++ b/app/code/core/Mage/Sales/view/frontend/email/invoice/items.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Sales/view/frontend/email/items.phtml b/app/code/core/Mage/Sales/view/frontend/email/items.phtml index 1607dbde7f33f81eff25a9a75880829c1a936302..926eb5e364ec8c75e63c2715540d38bd177d8164 100644 --- a/app/code/core/Mage/Sales/view/frontend/email/items.phtml +++ b/app/code/core/Mage/Sales/view/frontend/email/items.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Sales/view/frontend/email/items/creditmemo/default.phtml b/app/code/core/Mage/Sales/view/frontend/email/items/creditmemo/default.phtml index ddad7a8807cbec0b84297e759a5af513596897e4..ae4e6c5e430f812556efc9e39684ca875ca4e5c7 100644 --- a/app/code/core/Mage/Sales/view/frontend/email/items/creditmemo/default.phtml +++ b/app/code/core/Mage/Sales/view/frontend/email/items/creditmemo/default.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Sales/view/frontend/email/items/invoice/default.phtml b/app/code/core/Mage/Sales/view/frontend/email/items/invoice/default.phtml index ddad7a8807cbec0b84297e759a5af513596897e4..ae4e6c5e430f812556efc9e39684ca875ca4e5c7 100644 --- a/app/code/core/Mage/Sales/view/frontend/email/items/invoice/default.phtml +++ b/app/code/core/Mage/Sales/view/frontend/email/items/invoice/default.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Sales/view/frontend/email/items/order/default.phtml b/app/code/core/Mage/Sales/view/frontend/email/items/order/default.phtml index 99fcefd268dbf398572e0572f3074f7116da879c..d5097ac308ae3e572d4f64f022e3ab34b89024fd 100644 --- a/app/code/core/Mage/Sales/view/frontend/email/items/order/default.phtml +++ b/app/code/core/Mage/Sales/view/frontend/email/items/order/default.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Sales/view/frontend/email/items/shipment/default.phtml b/app/code/core/Mage/Sales/view/frontend/email/items/shipment/default.phtml index 6aec4a6a7cbfb974a1f5c69d3506b9e039aefa2b..976391afcf976598f43ecca222fe5d2be012722a 100644 --- a/app/code/core/Mage/Sales/view/frontend/email/items/shipment/default.phtml +++ b/app/code/core/Mage/Sales/view/frontend/email/items/shipment/default.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Sales/view/frontend/email/shipment/items.phtml b/app/code/core/Mage/Sales/view/frontend/email/shipment/items.phtml index 5329f198728d50017c8a2016ccb84a6cff96914d..3c5dcf0b3749a2d402e138fd1ad96adaf8ce86eb 100644 --- a/app/code/core/Mage/Sales/view/frontend/email/shipment/items.phtml +++ b/app/code/core/Mage/Sales/view/frontend/email/shipment/items.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Sales/view/frontend/email/shipment/track.phtml b/app/code/core/Mage/Sales/view/frontend/email/shipment/track.phtml index 01967f978b7bee407087e4fcc596e7fa14f54b1d..bbfb3dc35fda7fbc212ff53d259d4158ad156eb2 100644 --- a/app/code/core/Mage/Sales/view/frontend/email/shipment/track.phtml +++ b/app/code/core/Mage/Sales/view/frontend/email/shipment/track.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Sales/view/frontend/guest/form.phtml b/app/code/core/Mage/Sales/view/frontend/guest/form.phtml index f5ae5a2b98b2c664309e8f0cc167e2600ee51fc9..b0386175fdb5d23778bcdf3a41ad9c8f944df707 100644 --- a/app/code/core/Mage/Sales/view/frontend/guest/form.phtml +++ b/app/code/core/Mage/Sales/view/frontend/guest/form.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Sales/view/frontend/layout.xml b/app/code/core/Mage/Sales/view/frontend/layout.xml index b4d4e82c2cb57fa72044648eef03e8369d4792d6..b0136776b8cb6b704be2b49149ce1ac8c9a7f61b 100644 --- a/app/code/core/Mage/Sales/view/frontend/layout.xml +++ b/app/code/core/Mage/Sales/view/frontend/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Sales/view/frontend/order/comments.phtml b/app/code/core/Mage/Sales/view/frontend/order/comments.phtml index fa67b5c239be085203a0e6bfbf2a663be65c8ce6..6d6c309b5cdf386a0f056a62e5589c8681386797 100644 --- a/app/code/core/Mage/Sales/view/frontend/order/comments.phtml +++ b/app/code/core/Mage/Sales/view/frontend/order/comments.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Sales/view/frontend/order/creditmemo.phtml b/app/code/core/Mage/Sales/view/frontend/order/creditmemo.phtml index 5835bc774d556dbd5c469e7bc09e0e0cee93cdbe..af2b15acb1cbd1d83caa3529d102243127fc58fc 100644 --- a/app/code/core/Mage/Sales/view/frontend/order/creditmemo.phtml +++ b/app/code/core/Mage/Sales/view/frontend/order/creditmemo.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Sales/view/frontend/order/creditmemo/items.phtml b/app/code/core/Mage/Sales/view/frontend/order/creditmemo/items.phtml index 0cb22b88dd0dff1d171046273af54f81b3b1faca..99c0fc7466546a1138c5dc639778cc04ae7670d0 100644 --- a/app/code/core/Mage/Sales/view/frontend/order/creditmemo/items.phtml +++ b/app/code/core/Mage/Sales/view/frontend/order/creditmemo/items.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Sales/view/frontend/order/creditmemo/items/renderer/default.phtml b/app/code/core/Mage/Sales/view/frontend/order/creditmemo/items/renderer/default.phtml index 1f706acc0c1df4e333ea4ac6e759f2857372e92d..ae01d0fa345adbfde4029138b935aa2b89af6aa4 100644 --- a/app/code/core/Mage/Sales/view/frontend/order/creditmemo/items/renderer/default.phtml +++ b/app/code/core/Mage/Sales/view/frontend/order/creditmemo/items/renderer/default.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Sales/view/frontend/order/history.phtml b/app/code/core/Mage/Sales/view/frontend/order/history.phtml index dce5b0ff3b86e61d4c51f620aa52b6a70af0ef34..c428f678441bdf18c83f321c04a8e212797f9863 100644 --- a/app/code/core/Mage/Sales/view/frontend/order/history.phtml +++ b/app/code/core/Mage/Sales/view/frontend/order/history.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Sales/view/frontend/order/info.phtml b/app/code/core/Mage/Sales/view/frontend/order/info.phtml index 3b5596a1bce757df41f8297a06b294c666034941..0b231df73d9099413bd33c8e67e370254d8b21cc 100644 --- a/app/code/core/Mage/Sales/view/frontend/order/info.phtml +++ b/app/code/core/Mage/Sales/view/frontend/order/info.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Sales/view/frontend/order/info/buttons.phtml b/app/code/core/Mage/Sales/view/frontend/order/info/buttons.phtml index 9c2eb1f3d92ae74a7c0cce087d950afa60043e1c..a2ae7d7ad2347339f1ecbbe5d86d0655cc38d3d1 100644 --- a/app/code/core/Mage/Sales/view/frontend/order/info/buttons.phtml +++ b/app/code/core/Mage/Sales/view/frontend/order/info/buttons.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Sales/view/frontend/order/invoice.phtml b/app/code/core/Mage/Sales/view/frontend/order/invoice.phtml index 3c0694baf58ae958cde144699c96055b8511f4e3..58ae2f74d8b95c707cb1b22f5edb97a70fed583f 100644 --- a/app/code/core/Mage/Sales/view/frontend/order/invoice.phtml +++ b/app/code/core/Mage/Sales/view/frontend/order/invoice.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Sales/view/frontend/order/invoice/items.phtml b/app/code/core/Mage/Sales/view/frontend/order/invoice/items.phtml index 3f1740eff2da0c53af1138b948fda89f7f00b800..d4780e06dd7c710c57b2161cffaea309e5d0dd61 100644 --- a/app/code/core/Mage/Sales/view/frontend/order/invoice/items.phtml +++ b/app/code/core/Mage/Sales/view/frontend/order/invoice/items.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Sales/view/frontend/order/invoice/items/renderer/default.phtml b/app/code/core/Mage/Sales/view/frontend/order/invoice/items/renderer/default.phtml index e9378ed24a976ec917e93091f293bf4edc500229..aeb455148d50511dfd3b306135d856f3fec8097b 100644 --- a/app/code/core/Mage/Sales/view/frontend/order/invoice/items/renderer/default.phtml +++ b/app/code/core/Mage/Sales/view/frontend/order/invoice/items/renderer/default.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Sales/view/frontend/order/items.phtml b/app/code/core/Mage/Sales/view/frontend/order/items.phtml index 2c4e8b7e55d0167f6c96b528bf2cd4b8c954631c..2c3e4ccd03c78ed635dd29aba16e12d993d8d960 100644 --- a/app/code/core/Mage/Sales/view/frontend/order/items.phtml +++ b/app/code/core/Mage/Sales/view/frontend/order/items.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Sales/view/frontend/order/items/renderer/default.phtml b/app/code/core/Mage/Sales/view/frontend/order/items/renderer/default.phtml index cd8a6d5539365797e52c90ddb4c392a9bcce9396..f7173b46cedeaf4a8115542ceab6dfdf079137d3 100644 --- a/app/code/core/Mage/Sales/view/frontend/order/items/renderer/default.phtml +++ b/app/code/core/Mage/Sales/view/frontend/order/items/renderer/default.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Sales/view/frontend/order/print.phtml b/app/code/core/Mage/Sales/view/frontend/order/print.phtml index 2514fead5cc7850cc03576169d0e5c4b6e43edc2..63a0a54e6f30ff4a6bfaf0568ca8b9f7ece74394 100644 --- a/app/code/core/Mage/Sales/view/frontend/order/print.phtml +++ b/app/code/core/Mage/Sales/view/frontend/order/print.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Sales/view/frontend/order/print/creditmemo.phtml b/app/code/core/Mage/Sales/view/frontend/order/print/creditmemo.phtml index 748afa94a241947871ad7a24b3e170e64f852e79..f92e920376eda739f2b8bbcf8a33556c49b32c71 100644 --- a/app/code/core/Mage/Sales/view/frontend/order/print/creditmemo.phtml +++ b/app/code/core/Mage/Sales/view/frontend/order/print/creditmemo.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Sales/view/frontend/order/print/invoice.phtml b/app/code/core/Mage/Sales/view/frontend/order/print/invoice.phtml index d86489cc2d44ce9b1b1b68243d44bdbd9e0b9660..b9c5ea9b44ea440e077074ccc801502a2e451f5b 100644 --- a/app/code/core/Mage/Sales/view/frontend/order/print/invoice.phtml +++ b/app/code/core/Mage/Sales/view/frontend/order/print/invoice.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Sales/view/frontend/order/print/shipment.phtml b/app/code/core/Mage/Sales/view/frontend/order/print/shipment.phtml index b75c0adef4a74690d4c85a17c64ed0a575e4f443..641ea3f210ffce4f605ac2206c95394cdbc05238 100644 --- a/app/code/core/Mage/Sales/view/frontend/order/print/shipment.phtml +++ b/app/code/core/Mage/Sales/view/frontend/order/print/shipment.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Sales/view/frontend/order/recent.phtml b/app/code/core/Mage/Sales/view/frontend/order/recent.phtml index a741fdf5826a77989c0613ff0c504a5705da400a..a7e327fed75b1db1f297fc6bc95abcd83bd589d2 100644 --- a/app/code/core/Mage/Sales/view/frontend/order/recent.phtml +++ b/app/code/core/Mage/Sales/view/frontend/order/recent.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Sales/view/frontend/order/shipment.phtml b/app/code/core/Mage/Sales/view/frontend/order/shipment.phtml index 87d41034b80928142a8745a5b3fb3a72be2f1b68..134aaa3dbbef40ba0c2e3579cb13070e09bdd5ec 100644 --- a/app/code/core/Mage/Sales/view/frontend/order/shipment.phtml +++ b/app/code/core/Mage/Sales/view/frontend/order/shipment.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Sales/view/frontend/order/shipment/items.phtml b/app/code/core/Mage/Sales/view/frontend/order/shipment/items.phtml index 323890cfab93954e66e1e60af9b4acc589959dce..d1d53c43aeaa147e9a6f4704b7281fa6b4fa328b 100644 --- a/app/code/core/Mage/Sales/view/frontend/order/shipment/items.phtml +++ b/app/code/core/Mage/Sales/view/frontend/order/shipment/items.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Sales/view/frontend/order/shipment/items/renderer/default.phtml b/app/code/core/Mage/Sales/view/frontend/order/shipment/items/renderer/default.phtml index d5c2baef036b61f9d1482c7a51639af7f7ec2beb..af24b6fbd4736450befcc482c0f358bfa95fa09b 100644 --- a/app/code/core/Mage/Sales/view/frontend/order/shipment/items/renderer/default.phtml +++ b/app/code/core/Mage/Sales/view/frontend/order/shipment/items/renderer/default.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Sales/view/frontend/order/totals.phtml b/app/code/core/Mage/Sales/view/frontend/order/totals.phtml index 08a56098d41bd1f546d28df6b346da3fe51e0c02..35e2b333d15d971f00b87e01ade2e49b1187233a 100644 --- a/app/code/core/Mage/Sales/view/frontend/order/totals.phtml +++ b/app/code/core/Mage/Sales/view/frontend/order/totals.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /** diff --git a/app/code/core/Mage/Sales/view/frontend/order/trackinginfo.phtml b/app/code/core/Mage/Sales/view/frontend/order/trackinginfo.phtml index a726ca6fc5e3868e947f5a334c985033213086ab..cd235106713103261cfd2d33ae30ba738ffcef01 100644 --- a/app/code/core/Mage/Sales/view/frontend/order/trackinginfo.phtml +++ b/app/code/core/Mage/Sales/view/frontend/order/trackinginfo.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Sales/view/frontend/order/view.phtml b/app/code/core/Mage/Sales/view/frontend/order/view.phtml index d9a95e5941ce9ac202e0a1ba66f94670af9f9920..a64109b0b52bb8bfce3bd59069c968dbbb791f6e 100644 --- a/app/code/core/Mage/Sales/view/frontend/order/view.phtml +++ b/app/code/core/Mage/Sales/view/frontend/order/view.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Sales/view/frontend/payment/form/billing/agreement.phtml b/app/code/core/Mage/Sales/view/frontend/payment/form/billing/agreement.phtml index dc7b36289e6374a9e94d2ea2f1fa21b6ac55c354..c93e207a22f4f6972513af882cd3f2132ec91ef3 100644 --- a/app/code/core/Mage/Sales/view/frontend/payment/form/billing/agreement.phtml +++ b/app/code/core/Mage/Sales/view/frontend/payment/form/billing/agreement.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Sales/view/frontend/recurring/grid.phtml b/app/code/core/Mage/Sales/view/frontend/recurring/grid.phtml index 7ac4708ae6323e70e910965c6e56d3cbac16ba95..31828bb1534e06f037adf665c8c6d0f725e74acd 100644 --- a/app/code/core/Mage/Sales/view/frontend/recurring/grid.phtml +++ b/app/code/core/Mage/Sales/view/frontend/recurring/grid.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Sales/view/frontend/recurring/profile/view.phtml b/app/code/core/Mage/Sales/view/frontend/recurring/profile/view.phtml index 6b483b62cedbd2bd5cc789ece55eb5fb0e9479d8..d2afb8e601084ac4b8613f760a9fed584fc72ddb 100644 --- a/app/code/core/Mage/Sales/view/frontend/recurring/profile/view.phtml +++ b/app/code/core/Mage/Sales/view/frontend/recurring/profile/view.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Sales/view/frontend/recurring/profile/view/info.phtml b/app/code/core/Mage/Sales/view/frontend/recurring/profile/view/info.phtml index 600e4379401644423ac117c2b7d93be54f1a67af..28898d3c58662f686448746457115b2013cc6507 100644 --- a/app/code/core/Mage/Sales/view/frontend/recurring/profile/view/info.phtml +++ b/app/code/core/Mage/Sales/view/frontend/recurring/profile/view/info.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Sales/view/frontend/recurring/profiles.phtml b/app/code/core/Mage/Sales/view/frontend/recurring/profiles.phtml index 1e6d235a4d67a6b4842be4112a49efd3de39c127..75fe262c5822f2e2390f811a536c47f6fed80978 100644 --- a/app/code/core/Mage/Sales/view/frontend/recurring/profiles.phtml +++ b/app/code/core/Mage/Sales/view/frontend/recurring/profiles.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Sales/view/frontend/recurring_profile.xml b/app/code/core/Mage/Sales/view/frontend/recurring_profile.xml index 5d616a5ac2d780684f48b910d2a52e858f546301..26f6f50738940c165a6309f86bcd03feb245f398 100644 --- a/app/code/core/Mage/Sales/view/frontend/recurring_profile.xml +++ b/app/code/core/Mage/Sales/view/frontend/recurring_profile.xml @@ -21,7 +21,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Sales/view/frontend/reorder/sidebar.phtml b/app/code/core/Mage/Sales/view/frontend/reorder/sidebar.phtml index 54bfb56d30ac3d0d8686b50b879402f94385fcb4..cddbc649425a092c4b367305cda8f00fbde339d2 100644 --- a/app/code/core/Mage/Sales/view/frontend/reorder/sidebar.phtml +++ b/app/code/core/Mage/Sales/view/frontend/reorder/sidebar.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Sales/view/frontend/widget/guest/form.phtml b/app/code/core/Mage/Sales/view/frontend/widget/guest/form.phtml index 45ea4e0e4d4ed7dba8144c11fef2b5624e41f304..2f432ac9993b175518cb03b6672662451c7151a6 100644 --- a/app/code/core/Mage/Sales/view/frontend/widget/guest/form.phtml +++ b/app/code/core/Mage/Sales/view/frontend/widget/guest/form.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /** @var $this Mage_Sales_Block_Widget_Guest_Form */ diff --git a/app/code/core/Mage/SalesRule/Exception.php b/app/code/core/Mage/SalesRule/Exception.php index ebf81058ad72bb71a958bc3a3055a808a66bd4f2..77403a8d3d108e67fc66db9dd7d63be4e0095f22 100644 --- a/app/code/core/Mage/SalesRule/Exception.php +++ b/app/code/core/Mage/SalesRule/Exception.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_SalesRule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/SalesRule/Helper/Coupon.php b/app/code/core/Mage/SalesRule/Helper/Coupon.php index 045df5c25fa59c95c6ccee67129037337892f27e..6aaa915bd9905e55e94128d0ca49d057b5250f0d 100644 --- a/app/code/core/Mage/SalesRule/Helper/Coupon.php +++ b/app/code/core/Mage/SalesRule/Helper/Coupon.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_SalesRule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/SalesRule/Helper/Data.php b/app/code/core/Mage/SalesRule/Helper/Data.php index cd74de5bcc40f038bfe1b6f5b38e273013543764..5f31638938c68933f5f5982ba51256786147e1ff 100644 --- a/app/code/core/Mage/SalesRule/Helper/Data.php +++ b/app/code/core/Mage/SalesRule/Helper/Data.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_SalesRule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/SalesRule/Model/Coupon.php b/app/code/core/Mage/SalesRule/Model/Coupon.php index 97d2453560b072ca05ad74d31a396844c05624bb..55232209c36e980c5379a19a34cdfcddd750cf43 100644 --- a/app/code/core/Mage/SalesRule/Model/Coupon.php +++ b/app/code/core/Mage/SalesRule/Model/Coupon.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_SalesRule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/SalesRule/Model/Coupon/Codegenerator.php b/app/code/core/Mage/SalesRule/Model/Coupon/Codegenerator.php index 0599896f9e26f2ec983fdb830d6ef5aeafef1290..2c921e5ce179a6a57de1071d8f5570d62836c46b 100644 --- a/app/code/core/Mage/SalesRule/Model/Coupon/Codegenerator.php +++ b/app/code/core/Mage/SalesRule/Model/Coupon/Codegenerator.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_SalesRule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/SalesRule/Model/Coupon/CodegeneratorInterface.php b/app/code/core/Mage/SalesRule/Model/Coupon/CodegeneratorInterface.php index fe2f3977bc1157873e315b9bdd069973fcc63ae5..93e703c302da8f8205d666607f2909140a13e617 100644 --- a/app/code/core/Mage/SalesRule/Model/Coupon/CodegeneratorInterface.php +++ b/app/code/core/Mage/SalesRule/Model/Coupon/CodegeneratorInterface.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_SalesRule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/SalesRule/Model/Coupon/Massgenerator.php b/app/code/core/Mage/SalesRule/Model/Coupon/Massgenerator.php index 2b5c36ce75d9d8bf1ebf6a65bda4d971d1d6f8f5..9e1c6a9e5c222bed64eaed225807c2ae5c787450 100644 --- a/app/code/core/Mage/SalesRule/Model/Coupon/Massgenerator.php +++ b/app/code/core/Mage/SalesRule/Model/Coupon/Massgenerator.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_SalesRule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/SalesRule/Model/Observer.php b/app/code/core/Mage/SalesRule/Model/Observer.php index bd53691cdac355c9fe5cf5ec476a47b818d7ce06..844b48a053fa64e4d1a5babac4cab3fb0bb19450 100644 --- a/app/code/core/Mage/SalesRule/Model/Observer.php +++ b/app/code/core/Mage/SalesRule/Model/Observer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_SalesRule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/SalesRule/Model/Quote/Discount.php b/app/code/core/Mage/SalesRule/Model/Quote/Discount.php index 9735b86e3b8c81cd56c84fc9bc47d483d5902c1b..16e82fd24619dd919670e99bc4dbd0afedaaadf4 100644 --- a/app/code/core/Mage/SalesRule/Model/Quote/Discount.php +++ b/app/code/core/Mage/SalesRule/Model/Quote/Discount.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_SalesRule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/SalesRule/Model/Quote/Freeshipping.php b/app/code/core/Mage/SalesRule/Model/Quote/Freeshipping.php index cba3f19688d4fea7558e86b51cf164847d334f56..c43f07645ade3aa03c9078b1a4b614a71fe96791 100644 --- a/app/code/core/Mage/SalesRule/Model/Quote/Freeshipping.php +++ b/app/code/core/Mage/SalesRule/Model/Quote/Freeshipping.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_SalesRule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/SalesRule/Model/Quote/Nominal/Discount.php b/app/code/core/Mage/SalesRule/Model/Quote/Nominal/Discount.php index 422d478c917ddabccda52979974b22c89aaf9268..856ca5112ad8a539522984ba8d76496d00b7222a 100644 --- a/app/code/core/Mage/SalesRule/Model/Quote/Nominal/Discount.php +++ b/app/code/core/Mage/SalesRule/Model/Quote/Nominal/Discount.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_SalesRule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/SalesRule/Model/Resource/Coupon.php b/app/code/core/Mage/SalesRule/Model/Resource/Coupon.php index 631bca5ebe4e61e573f3fe5647ce8180ac25f729..2d2d5e0afba3c0dd98494cb7f1f49df67492cad9 100755 --- a/app/code/core/Mage/SalesRule/Model/Resource/Coupon.php +++ b/app/code/core/Mage/SalesRule/Model/Resource/Coupon.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_SalesRule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/SalesRule/Model/Resource/Coupon/Collection.php b/app/code/core/Mage/SalesRule/Model/Resource/Coupon/Collection.php index e579ef2f9fa8d2f59f321d8133414cd7c413df28..bf7cbd01eee310379c3b95590f9a30ab9b70d58e 100755 --- a/app/code/core/Mage/SalesRule/Model/Resource/Coupon/Collection.php +++ b/app/code/core/Mage/SalesRule/Model/Resource/Coupon/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_SalesRule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/SalesRule/Model/Resource/Coupon/Usage.php b/app/code/core/Mage/SalesRule/Model/Resource/Coupon/Usage.php index 0a92d1128f8bd5095cdd30070f976fecc6450528..e3864009d69a883e3eff2c6dd929486221396057 100755 --- a/app/code/core/Mage/SalesRule/Model/Resource/Coupon/Usage.php +++ b/app/code/core/Mage/SalesRule/Model/Resource/Coupon/Usage.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_SalesRule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/SalesRule/Model/Resource/Report/Collection.php b/app/code/core/Mage/SalesRule/Model/Resource/Report/Collection.php index 56e60321d24e9af36b2e9d6762fc8604cd6bc1c9..e72c61cc3831245c67879000a083094683686572 100755 --- a/app/code/core/Mage/SalesRule/Model/Resource/Report/Collection.php +++ b/app/code/core/Mage/SalesRule/Model/Resource/Report/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_SalesRule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/SalesRule/Model/Resource/Report/Rule.php b/app/code/core/Mage/SalesRule/Model/Resource/Report/Rule.php index 2bc6f1f944d6fe0efd4d319e8bc77ae97c5ccc34..d8bed2b1c69f0000e821bf6c36e06d730a48c2df 100755 --- a/app/code/core/Mage/SalesRule/Model/Resource/Report/Rule.php +++ b/app/code/core/Mage/SalesRule/Model/Resource/Report/Rule.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_SalesRule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/SalesRule/Model/Resource/Report/Rule/Createdat.php b/app/code/core/Mage/SalesRule/Model/Resource/Report/Rule/Createdat.php index b7a09821ba6aae2a2826030307bf3ceec311e54d..3b5bb5c369dc6617f03dd8de1561311b5289a461 100644 --- a/app/code/core/Mage/SalesRule/Model/Resource/Report/Rule/Createdat.php +++ b/app/code/core/Mage/SalesRule/Model/Resource/Report/Rule/Createdat.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_SalesRule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/SalesRule/Model/Resource/Report/Rule/Updatedat.php b/app/code/core/Mage/SalesRule/Model/Resource/Report/Rule/Updatedat.php index 62ceb3d7b59b6a9ab94ca66c53649a4ae13bee94..d956b245005c2a50bf8660ab036f94f0e583838d 100644 --- a/app/code/core/Mage/SalesRule/Model/Resource/Report/Rule/Updatedat.php +++ b/app/code/core/Mage/SalesRule/Model/Resource/Report/Rule/Updatedat.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_SalesRule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/SalesRule/Model/Resource/Report/Updatedat/Collection.php b/app/code/core/Mage/SalesRule/Model/Resource/Report/Updatedat/Collection.php index 62bdcd6d6d0d985e1515fa0c551817445b7f5eb4..277c1ede3e62b1cb5e5d7e49ec143fcecb8b3dac 100755 --- a/app/code/core/Mage/SalesRule/Model/Resource/Report/Updatedat/Collection.php +++ b/app/code/core/Mage/SalesRule/Model/Resource/Report/Updatedat/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_SalesRule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/SalesRule/Model/Resource/Rule.php b/app/code/core/Mage/SalesRule/Model/Resource/Rule.php index 24ea2e575551621275a115e3807fc4bf7f591ab1..66303ff91b56270b5f65375a4822f26cfcfe287e 100755 --- a/app/code/core/Mage/SalesRule/Model/Resource/Rule.php +++ b/app/code/core/Mage/SalesRule/Model/Resource/Rule.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_SalesRule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/SalesRule/Model/Resource/Rule/Collection.php b/app/code/core/Mage/SalesRule/Model/Resource/Rule/Collection.php index d1f791855d1a3ff5e938f4339c21aa0d1f77504f..b6c5f8bd1b06de45630ad31ba755103c53d1bc7c 100755 --- a/app/code/core/Mage/SalesRule/Model/Resource/Rule/Collection.php +++ b/app/code/core/Mage/SalesRule/Model/Resource/Rule/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_SalesRule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/SalesRule/Model/Resource/Rule/Customer.php b/app/code/core/Mage/SalesRule/Model/Resource/Rule/Customer.php index 8bc7b4177e3a095ceadf4fb4092b8f32ce926630..399516b7914ae3123439915f9c8b96ef51c27e36 100755 --- a/app/code/core/Mage/SalesRule/Model/Resource/Rule/Customer.php +++ b/app/code/core/Mage/SalesRule/Model/Resource/Rule/Customer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_SalesRule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/SalesRule/Model/Resource/Rule/Customer/Collection.php b/app/code/core/Mage/SalesRule/Model/Resource/Rule/Customer/Collection.php index 159ad7b3a04f1bd2c48da1523468343649e590c3..2d61b6a9f06dff1ff732ba0f2826e8f67788eaf3 100755 --- a/app/code/core/Mage/SalesRule/Model/Resource/Rule/Customer/Collection.php +++ b/app/code/core/Mage/SalesRule/Model/Resource/Rule/Customer/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_SalesRule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/SalesRule/Model/Rule.php b/app/code/core/Mage/SalesRule/Model/Rule.php index 973e7501bba1ee388819dabe86450241f568323c..dd31dea106f2e53c066ab599021c15a943020c00 100644 --- a/app/code/core/Mage/SalesRule/Model/Rule.php +++ b/app/code/core/Mage/SalesRule/Model/Rule.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_SalesRule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/SalesRule/Model/Rule/Action/Collection.php b/app/code/core/Mage/SalesRule/Model/Rule/Action/Collection.php index 71479c8bc902b94e28dc8dbf7858fa547aa4fa4a..21940f4435d917d695b621eff02531724e8f4a63 100644 --- a/app/code/core/Mage/SalesRule/Model/Rule/Action/Collection.php +++ b/app/code/core/Mage/SalesRule/Model/Rule/Action/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_SalesRule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/SalesRule/Model/Rule/Action/Product.php b/app/code/core/Mage/SalesRule/Model/Rule/Action/Product.php index 9fee88c673c4f14ae2c926a856f721d6623764f3..6347cf75e0bb469c0f40e22fd93094e348656a2d 100644 --- a/app/code/core/Mage/SalesRule/Model/Rule/Action/Product.php +++ b/app/code/core/Mage/SalesRule/Model/Rule/Action/Product.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_SalesRule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/SalesRule/Model/Rule/Condition/Address.php b/app/code/core/Mage/SalesRule/Model/Rule/Condition/Address.php index c926c4c33d5247df3375afdcca73d550aa426100..cab18e6f681aba10291b2a73158dadb136826ed0 100644 --- a/app/code/core/Mage/SalesRule/Model/Rule/Condition/Address.php +++ b/app/code/core/Mage/SalesRule/Model/Rule/Condition/Address.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_SalesRule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/SalesRule/Model/Rule/Condition/Combine.php b/app/code/core/Mage/SalesRule/Model/Rule/Condition/Combine.php index e20c69d0ba887bbddd936a63001d901922be6ea9..c963449c1912ad437a201f61a8320722bd94e453 100644 --- a/app/code/core/Mage/SalesRule/Model/Rule/Condition/Combine.php +++ b/app/code/core/Mage/SalesRule/Model/Rule/Condition/Combine.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_SalesRule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/SalesRule/Model/Rule/Condition/Product.php b/app/code/core/Mage/SalesRule/Model/Rule/Condition/Product.php index d7e27a838c956a08bff7e76e85146644e63a2b37..66fbca16c90b4ef3384b11a3bfd2d2fc73a66351 100644 --- a/app/code/core/Mage/SalesRule/Model/Rule/Condition/Product.php +++ b/app/code/core/Mage/SalesRule/Model/Rule/Condition/Product.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_SalesRule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/SalesRule/Model/Rule/Condition/Product/Combine.php b/app/code/core/Mage/SalesRule/Model/Rule/Condition/Product/Combine.php index 8837374e5d9eaea4905543d58c016eefccae9000..47766f04618e75e39650645580dd76db945da96e 100644 --- a/app/code/core/Mage/SalesRule/Model/Rule/Condition/Product/Combine.php +++ b/app/code/core/Mage/SalesRule/Model/Rule/Condition/Product/Combine.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_SalesRule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/SalesRule/Model/Rule/Condition/Product/Found.php b/app/code/core/Mage/SalesRule/Model/Rule/Condition/Product/Found.php index 4daa791f7ce653347b187a9bf7f2ed17c82014b1..d9610096594d5ca53057ebab1d735aec507ce316 100644 --- a/app/code/core/Mage/SalesRule/Model/Rule/Condition/Product/Found.php +++ b/app/code/core/Mage/SalesRule/Model/Rule/Condition/Product/Found.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_SalesRule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/SalesRule/Model/Rule/Condition/Product/Subselect.php b/app/code/core/Mage/SalesRule/Model/Rule/Condition/Product/Subselect.php index 9a5f22d4b5111d1f58b7890e557e55e87c1213da..c750f059c57c686c3ab46f152c6c6b5cd0723895 100644 --- a/app/code/core/Mage/SalesRule/Model/Rule/Condition/Product/Subselect.php +++ b/app/code/core/Mage/SalesRule/Model/Rule/Condition/Product/Subselect.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_SalesRule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/SalesRule/Model/Rule/Customer.php b/app/code/core/Mage/SalesRule/Model/Rule/Customer.php index d72e990e85c55c766a7713c06e27287db7b9a3d6..f47860a526ecba890e88eaa7ca9f2cf27e37e138 100644 --- a/app/code/core/Mage/SalesRule/Model/Rule/Customer.php +++ b/app/code/core/Mage/SalesRule/Model/Rule/Customer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_SalesRule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/SalesRule/Model/System/Config/Source/Coupon/Format.php b/app/code/core/Mage/SalesRule/Model/System/Config/Source/Coupon/Format.php index cbe3d263cadd0cdd87b8e97cb9c2370dec686e17..f75b61d6fd381c56bc8e7255ea31826b2712ba68 100755 --- a/app/code/core/Mage/SalesRule/Model/System/Config/Source/Coupon/Format.php +++ b/app/code/core/Mage/SalesRule/Model/System/Config/Source/Coupon/Format.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_SalesRule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/SalesRule/Model/Validator.php b/app/code/core/Mage/SalesRule/Model/Validator.php index cb75b73c7aad897d897173a2b857f107b7db8370..906f7ab0dce4c6b5cd13c5518af91ad13ee0b84d 100644 --- a/app/code/core/Mage/SalesRule/Model/Validator.php +++ b/app/code/core/Mage/SalesRule/Model/Validator.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_SalesRule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/SalesRule/data/salesrule_setup/data-upgrade-1.6.0.3-1.6.0.4.php b/app/code/core/Mage/SalesRule/data/salesrule_setup/data-upgrade-1.6.0.3-1.6.0.4.php index a964fee4615d7b5e1570d3cdb088ced45d98ed25..c92bb25daa93ee0a940238597ef9341657272392 100644 --- a/app/code/core/Mage/SalesRule/data/salesrule_setup/data-upgrade-1.6.0.3-1.6.0.4.php +++ b/app/code/core/Mage/SalesRule/data/salesrule_setup/data-upgrade-1.6.0.3-1.6.0.4.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_SalesRule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/SalesRule/etc/adminhtml/acl.xml b/app/code/core/Mage/SalesRule/etc/adminhtml/acl.xml index 8f911e2d966f4d5f3e6fb62718bd52040e47d980..5efbf0949d804d00e6b8b307768f0eb1d9f7278f 100644 --- a/app/code/core/Mage/SalesRule/etc/adminhtml/acl.xml +++ b/app/code/core/Mage/SalesRule/etc/adminhtml/acl.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_SalesRule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/SalesRule/etc/adminhtml/menu.xml b/app/code/core/Mage/SalesRule/etc/adminhtml/menu.xml index 8ed848f9aa2735a3a34a6dd42624caf949977dd5..523c00af488705314268bd1a2f8f6d95b7e0325e 100644 --- a/app/code/core/Mage/SalesRule/etc/adminhtml/menu.xml +++ b/app/code/core/Mage/SalesRule/etc/adminhtml/menu.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_SalesRule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/SalesRule/etc/adminhtml/system.xml b/app/code/core/Mage/SalesRule/etc/adminhtml/system.xml index 3b5ddc6ee2228d21847e53036fe6a8c45411e085..dae21374106986f585acfca786709e7854e03240 100644 --- a/app/code/core/Mage/SalesRule/etc/adminhtml/system.xml +++ b/app/code/core/Mage/SalesRule/etc/adminhtml/system.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_SalesRule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/SalesRule/etc/config.xml b/app/code/core/Mage/SalesRule/etc/config.xml index 609355898d88e336b95bb7720ec517d60eea4bba..08588f98225f6df57cc307ec15729abd5d22358e 100644 --- a/app/code/core/Mage/SalesRule/etc/config.xml +++ b/app/code/core/Mage/SalesRule/etc/config.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_SalesRule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/SalesRule/etc/fieldset.xml b/app/code/core/Mage/SalesRule/etc/fieldset.xml index b12d4c5a18eac19890b638a2ebf64be776b7607a..7fbedd6abf0d0ee79d02044eb58c2fa82bd1281a 100644 --- a/app/code/core/Mage/SalesRule/etc/fieldset.xml +++ b/app/code/core/Mage/SalesRule/etc/fieldset.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_SalesRule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/SalesRule/sql/salesrule_setup/install-1.6.0.0.php b/app/code/core/Mage/SalesRule/sql/salesrule_setup/install-1.6.0.0.php index 6685a35b51909ecc93259665c881f2b87a8d4ceb..60b271661035133d7195c99a208636bc2e304041 100644 --- a/app/code/core/Mage/SalesRule/sql/salesrule_setup/install-1.6.0.0.php +++ b/app/code/core/Mage/SalesRule/sql/salesrule_setup/install-1.6.0.0.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_SalesRule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/SalesRule/sql/salesrule_setup/upgrade-1.6.0.0-1.6.0.1.php b/app/code/core/Mage/SalesRule/sql/salesrule_setup/upgrade-1.6.0.0-1.6.0.1.php index f5880b75fdcd6cedf1b23d6ab0075f32e5285423..6ddabe5bfb1330f454f39252ba9a2bd256ef78db 100644 --- a/app/code/core/Mage/SalesRule/sql/salesrule_setup/upgrade-1.6.0.0-1.6.0.1.php +++ b/app/code/core/Mage/SalesRule/sql/salesrule_setup/upgrade-1.6.0.0-1.6.0.1.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/SalesRule/sql/salesrule_setup/upgrade-1.6.0.1-1.6.0.2.php b/app/code/core/Mage/SalesRule/sql/salesrule_setup/upgrade-1.6.0.1-1.6.0.2.php index 02e720fc6d860c5b3cb02dc4b2c5b2512f72195b..b14fac4867c7d86511a694f4699c1d77344b3f1d 100644 --- a/app/code/core/Mage/SalesRule/sql/salesrule_setup/upgrade-1.6.0.1-1.6.0.2.php +++ b/app/code/core/Mage/SalesRule/sql/salesrule_setup/upgrade-1.6.0.1-1.6.0.2.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_SalesRule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/SalesRule/sql/salesrule_setup/upgrade-1.6.0.2-1.6.0.3.php b/app/code/core/Mage/SalesRule/sql/salesrule_setup/upgrade-1.6.0.2-1.6.0.3.php index e8bc3eda7206ca5095e18d8b92c21923a1c3e217..e409fd8ed3d4c4a2c85eaff3c577b459e90b1b0c 100644 --- a/app/code/core/Mage/SalesRule/sql/salesrule_setup/upgrade-1.6.0.2-1.6.0.3.php +++ b/app/code/core/Mage/SalesRule/sql/salesrule_setup/upgrade-1.6.0.2-1.6.0.3.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_SalesRule - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sendfriend/Block/Send.php b/app/code/core/Mage/Sendfriend/Block/Send.php index febdabb8a087eff3846855b85e8d54b3c3f2609d..343aa44d551c4a1e9792310d23a631789db36675 100644 --- a/app/code/core/Mage/Sendfriend/Block/Send.php +++ b/app/code/core/Mage/Sendfriend/Block/Send.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sendfriend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sendfriend/Helper/Data.php b/app/code/core/Mage/Sendfriend/Helper/Data.php index 044394574a71c4c6a022ac7ccfcd13b762d437ac..a546545ab61e44093946b64f8012bc2c6384fdb6 100644 --- a/app/code/core/Mage/Sendfriend/Helper/Data.php +++ b/app/code/core/Mage/Sendfriend/Helper/Data.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sendfriend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sendfriend/Model/Observer.php b/app/code/core/Mage/Sendfriend/Model/Observer.php index a1b13d835b7640c5d34265a4f4441fdb2cb05f1a..06cc83ba4a780e118dfb893c1964ee9c459d76a6 100644 --- a/app/code/core/Mage/Sendfriend/Model/Observer.php +++ b/app/code/core/Mage/Sendfriend/Model/Observer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sendfriend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sendfriend/Model/Resource/Sendfriend.php b/app/code/core/Mage/Sendfriend/Model/Resource/Sendfriend.php index c43f9c19e98be2bcde3d62fd72aaa09b2a37ebf3..ab5ce49b896b4c4a47a785035a3d4e0e98ff0e7b 100755 --- a/app/code/core/Mage/Sendfriend/Model/Resource/Sendfriend.php +++ b/app/code/core/Mage/Sendfriend/Model/Resource/Sendfriend.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sendfriend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sendfriend/Model/Resource/Sendfriend/Collection.php b/app/code/core/Mage/Sendfriend/Model/Resource/Sendfriend/Collection.php index bded2eb1650f176b76f9cc0428b1a9353c8750ff..f93de56c24760fed3c31fe6ef4b45e293750923c 100755 --- a/app/code/core/Mage/Sendfriend/Model/Resource/Sendfriend/Collection.php +++ b/app/code/core/Mage/Sendfriend/Model/Resource/Sendfriend/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sendfriend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sendfriend/Model/Resource/Setup.php b/app/code/core/Mage/Sendfriend/Model/Resource/Setup.php index dc87c3d26d8cccc81d9fa085a076b1ef46d97bc8..bb45f8be8082a594718fcb2bac30be0a2f3735fe 100755 --- a/app/code/core/Mage/Sendfriend/Model/Resource/Setup.php +++ b/app/code/core/Mage/Sendfriend/Model/Resource/Setup.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sendfriend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sendfriend/Model/Sendfriend.php b/app/code/core/Mage/Sendfriend/Model/Sendfriend.php index 3583294d7f951ed29b792d4d9a8d2bf84f6c23e8..2bf44619f1669791f9fa6f76921ee4cbe715ba5e 100644 --- a/app/code/core/Mage/Sendfriend/Model/Sendfriend.php +++ b/app/code/core/Mage/Sendfriend/Model/Sendfriend.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sendfriend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sendfriend/controllers/ProductController.php b/app/code/core/Mage/Sendfriend/controllers/ProductController.php index 3d7d0d3989579d1b5a40a3c1072458f431c2fecc..04265730d3b815d165a4e7225055e7561b25dfd3 100644 --- a/app/code/core/Mage/Sendfriend/controllers/ProductController.php +++ b/app/code/core/Mage/Sendfriend/controllers/ProductController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sendfriend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sendfriend/etc/adminhtml/system.xml b/app/code/core/Mage/Sendfriend/etc/adminhtml/system.xml index c79b7a892f91abc54ba60a8bbf9c4479c93a7e59..a917f258df5527f5087d24766ea4ef1efd868438 100644 --- a/app/code/core/Mage/Sendfriend/etc/adminhtml/system.xml +++ b/app/code/core/Mage/Sendfriend/etc/adminhtml/system.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Sendfriend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Sendfriend/etc/config.xml b/app/code/core/Mage/Sendfriend/etc/config.xml index 1990c5dfa0f1220b5cf768c0052a4b8848c8bf9d..5e87330c446ed98c947d110283000baa73e01be4 100644 --- a/app/code/core/Mage/Sendfriend/etc/config.xml +++ b/app/code/core/Mage/Sendfriend/etc/config.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Sendfriend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Sendfriend/sql/sendfriend_setup/install-1.6.0.0.php b/app/code/core/Mage/Sendfriend/sql/sendfriend_setup/install-1.6.0.0.php index 7d86b1d20ca07b2996e0a7482d9ca1da65e4e2b5..fb3fb97f8b06a9886b008f5821b39767d2c985ff 100644 --- a/app/code/core/Mage/Sendfriend/sql/sendfriend_setup/install-1.6.0.0.php +++ b/app/code/core/Mage/Sendfriend/sql/sendfriend_setup/install-1.6.0.0.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sendfriend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sendfriend/view/frontend/layout.xml b/app/code/core/Mage/Sendfriend/view/frontend/layout.xml index b832f4885f500f32ce509ff4cc9559b4b9282c61..9619dd00bd358200aef4d6a292be6c51c1a52aa6 100644 --- a/app/code/core/Mage/Sendfriend/view/frontend/layout.xml +++ b/app/code/core/Mage/Sendfriend/view/frontend/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Sendfriend/view/frontend/send.phtml b/app/code/core/Mage/Sendfriend/view/frontend/send.phtml index 30d0d3196cdd6728338e1c253b556f628fbef95b..4f92cce9e69331f6f4230110e32ef6b886930715 100644 --- a/app/code/core/Mage/Sendfriend/view/frontend/send.phtml +++ b/app/code/core/Mage/Sendfriend/view/frontend/send.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /* @var $this Mage_Sendfriend_Block_Send */ diff --git a/app/code/core/Mage/Shipping/Block/Tracking/Ajax.php b/app/code/core/Mage/Shipping/Block/Tracking/Ajax.php index 495b780c95248ad635684cac016314497686d3c6..f4b2e8476eee185054be77205ff75a8e226e6329 100644 --- a/app/code/core/Mage/Shipping/Block/Tracking/Ajax.php +++ b/app/code/core/Mage/Shipping/Block/Tracking/Ajax.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Shipping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Shipping/Block/Tracking/Popup.php b/app/code/core/Mage/Shipping/Block/Tracking/Popup.php index 0e7807d4ded11f5f5be8829f0e77dbaa046db08e..6c58c4458ac13003edcc6e6e21345f6a34442169 100644 --- a/app/code/core/Mage/Shipping/Block/Tracking/Popup.php +++ b/app/code/core/Mage/Shipping/Block/Tracking/Popup.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Shipping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Shipping/Exception.php b/app/code/core/Mage/Shipping/Exception.php index ab45d2b0959e0bca75bd4f7c8ddf75dd695013ce..782075d1a45e1399aa291961729471947c934253 100644 --- a/app/code/core/Mage/Shipping/Exception.php +++ b/app/code/core/Mage/Shipping/Exception.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Shipping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Shipping/Helper/Data.php b/app/code/core/Mage/Shipping/Helper/Data.php index f0740d19149e2c14d3a990409e9cb8498b84b838..a7974ba6386d639c002860a11d8976ca9dd79ad1 100644 --- a/app/code/core/Mage/Shipping/Helper/Data.php +++ b/app/code/core/Mage/Shipping/Helper/Data.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Shipping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Shipping/Model/Carrier/Abstract.php b/app/code/core/Mage/Shipping/Model/Carrier/Abstract.php index 87250d1133b6de698b766ac069f802f270d35c92..7e9670cfb1f407ef920091cbaa9abb5abe5fddb0 100644 --- a/app/code/core/Mage/Shipping/Model/Carrier/Abstract.php +++ b/app/code/core/Mage/Shipping/Model/Carrier/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Shipping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Shipping/Model/Carrier/Flatrate.php b/app/code/core/Mage/Shipping/Model/Carrier/Flatrate.php index b3aebdb01401b63d29ed12442785647c1ef6556f..aaae7baa960141131fa0862067bfd35204a775eb 100644 --- a/app/code/core/Mage/Shipping/Model/Carrier/Flatrate.php +++ b/app/code/core/Mage/Shipping/Model/Carrier/Flatrate.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Shipping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Shipping/Model/Carrier/Freeshipping.php b/app/code/core/Mage/Shipping/Model/Carrier/Freeshipping.php index 061cdf42e6fae06853b7fd53f8d2832138e3ad48..5290ad3eb0b257528d013e43fcc90b24c88cabdf 100644 --- a/app/code/core/Mage/Shipping/Model/Carrier/Freeshipping.php +++ b/app/code/core/Mage/Shipping/Model/Carrier/Freeshipping.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Shipping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Shipping/Model/Carrier/Interface.php b/app/code/core/Mage/Shipping/Model/Carrier/Interface.php index 4f54b37184606f68117734ca3dd8db98bd261c49..af7175ff8d39b814546636e149890425f091b777 100644 --- a/app/code/core/Mage/Shipping/Model/Carrier/Interface.php +++ b/app/code/core/Mage/Shipping/Model/Carrier/Interface.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Shipping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Shipping/Model/Carrier/Pickup.php b/app/code/core/Mage/Shipping/Model/Carrier/Pickup.php index f6158f74fe4faf6df9368555efcfd6076105daa9..637e4c9c9da5b99684826cbbd22ad12530b57aa1 100644 --- a/app/code/core/Mage/Shipping/Model/Carrier/Pickup.php +++ b/app/code/core/Mage/Shipping/Model/Carrier/Pickup.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Shipping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Shipping/Model/Carrier/Tablerate.php b/app/code/core/Mage/Shipping/Model/Carrier/Tablerate.php index 033d622a248b556e19b9fb73c8e2027daff0aa11..875b1dee42cb17092e3f79a7bf93f359df9c8216 100644 --- a/app/code/core/Mage/Shipping/Model/Carrier/Tablerate.php +++ b/app/code/core/Mage/Shipping/Model/Carrier/Tablerate.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Shipping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Shipping/Model/Config.php b/app/code/core/Mage/Shipping/Model/Config.php index 4fda111ab17f854f9a77164655fe75d291f99639..a9ca31932a8b9714d8e7939342af3f82ae1b6757 100644 --- a/app/code/core/Mage/Shipping/Model/Config.php +++ b/app/code/core/Mage/Shipping/Model/Config.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Shipping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Shipping/Model/Config/Backend/Tablerate.php b/app/code/core/Mage/Shipping/Model/Config/Backend/Tablerate.php index fa24f805261f0e086bef011dc2b45038f9e31bbe..a97cee42f64ce478926f950b2d77265df45b96d7 100644 --- a/app/code/core/Mage/Shipping/Model/Config/Backend/Tablerate.php +++ b/app/code/core/Mage/Shipping/Model/Config/Backend/Tablerate.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Shipping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Shipping/Model/Config/Source/Allmethods.php b/app/code/core/Mage/Shipping/Model/Config/Source/Allmethods.php index de23ecc852ea5e373846eb410a963840c651dc79..8019d9ce89bd24df0ca1c8b0a9b7b114823defd0 100644 --- a/app/code/core/Mage/Shipping/Model/Config/Source/Allmethods.php +++ b/app/code/core/Mage/Shipping/Model/Config/Source/Allmethods.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Shipping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Shipping/Model/Config/Source/Allspecificcountries.php b/app/code/core/Mage/Shipping/Model/Config/Source/Allspecificcountries.php index 34f0dca202a07ba4242fc11de6cca3e90210f50c..746e2c9df9669cac1d4a4c19806aa39107f20906 100644 --- a/app/code/core/Mage/Shipping/Model/Config/Source/Allspecificcountries.php +++ b/app/code/core/Mage/Shipping/Model/Config/Source/Allspecificcountries.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Shipping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Shipping/Model/Config/Source/Flatrate.php b/app/code/core/Mage/Shipping/Model/Config/Source/Flatrate.php index 3c497ecc307368b908a2ce486cf739831ef2efdb..bd598070afce31348f6141528626517bed3daccd 100644 --- a/app/code/core/Mage/Shipping/Model/Config/Source/Flatrate.php +++ b/app/code/core/Mage/Shipping/Model/Config/Source/Flatrate.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Shipping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Shipping/Model/Config/Source/Tablerate.php b/app/code/core/Mage/Shipping/Model/Config/Source/Tablerate.php index 0447fa792ce7beabc6573a166543bc46269372e7..4d19a680aee10f8fc9c1589112a811cf5ecd8618 100644 --- a/app/code/core/Mage/Shipping/Model/Config/Source/Tablerate.php +++ b/app/code/core/Mage/Shipping/Model/Config/Source/Tablerate.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Shipping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Shipping/Model/Info.php b/app/code/core/Mage/Shipping/Model/Info.php index c6480d7a043bef66cc55a8afac9b60e968d0fb40..ff274c02a5f0862c872bfdf6a656cb7faf453031 100644 --- a/app/code/core/Mage/Shipping/Model/Info.php +++ b/app/code/core/Mage/Shipping/Model/Info.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Shipping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Shipping/Model/Rate/Abstract.php b/app/code/core/Mage/Shipping/Model/Rate/Abstract.php index e7a842e7722c14bc41d2d08c1d333c2e9f8e0d65..5b7013e5e822456de5e5245c77232445e958e9d1 100644 --- a/app/code/core/Mage/Shipping/Model/Rate/Abstract.php +++ b/app/code/core/Mage/Shipping/Model/Rate/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Shipping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Shipping/Model/Rate/Request.php b/app/code/core/Mage/Shipping/Model/Rate/Request.php index 142449a17d7c39f8dc32c0eb3482b0600fbc289a..a53a6c5fd7a7856ef27e20d6b5e2f649ab12d23f 100644 --- a/app/code/core/Mage/Shipping/Model/Rate/Request.php +++ b/app/code/core/Mage/Shipping/Model/Rate/Request.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Shipping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Shipping/Model/Rate/Result.php b/app/code/core/Mage/Shipping/Model/Rate/Result.php index 4bd9766cc27a9a1548b043dac573f2da57ed34b7..d0bee31d503334278f7926678a8a241a4b93804f 100644 --- a/app/code/core/Mage/Shipping/Model/Rate/Result.php +++ b/app/code/core/Mage/Shipping/Model/Rate/Result.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Shipping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Shipping/Model/Rate/Result/Abstract.php b/app/code/core/Mage/Shipping/Model/Rate/Result/Abstract.php index 3f97ad64b7f76c537b1303a079223698c8a58077..3c910263cc277d486f3d06a8772a9a55204b9db5 100644 --- a/app/code/core/Mage/Shipping/Model/Rate/Result/Abstract.php +++ b/app/code/core/Mage/Shipping/Model/Rate/Result/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Shipping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Shipping/Model/Rate/Result/Error.php b/app/code/core/Mage/Shipping/Model/Rate/Result/Error.php index 3bd113ebef129f729ebed9b486f948f00758f51c..7401bdea0ac79d440cca00ec1fe50940e12eb3c6 100644 --- a/app/code/core/Mage/Shipping/Model/Rate/Result/Error.php +++ b/app/code/core/Mage/Shipping/Model/Rate/Result/Error.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Shipping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Shipping/Model/Rate/Result/Method.php b/app/code/core/Mage/Shipping/Model/Rate/Result/Method.php index e3be3f4f0e2e4448db32b2f830df5a3f424c0c95..587d3e63f71dea78dd2875930fd6f5ccfbb409da 100644 --- a/app/code/core/Mage/Shipping/Model/Rate/Result/Method.php +++ b/app/code/core/Mage/Shipping/Model/Rate/Result/Method.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Shipping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Shipping/Model/Resource/Carrier/Tablerate.php b/app/code/core/Mage/Shipping/Model/Resource/Carrier/Tablerate.php index 98dfefbc98a9d08fc51119a2dec4f459459b9198..187f313c84530d0d88e092a051d7d2d760717173 100755 --- a/app/code/core/Mage/Shipping/Model/Resource/Carrier/Tablerate.php +++ b/app/code/core/Mage/Shipping/Model/Resource/Carrier/Tablerate.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Shipping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Shipping/Model/Resource/Carrier/Tablerate/Collection.php b/app/code/core/Mage/Shipping/Model/Resource/Carrier/Tablerate/Collection.php index 06b12609d7a10af76c471017d5d2bebeaf434688..4c374df42bdbdea48c4faaa57e5d8effc5fce1c4 100755 --- a/app/code/core/Mage/Shipping/Model/Resource/Carrier/Tablerate/Collection.php +++ b/app/code/core/Mage/Shipping/Model/Resource/Carrier/Tablerate/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Shipping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Shipping/Model/Shipment/Request.php b/app/code/core/Mage/Shipping/Model/Shipment/Request.php index 13c65c9ddce4599e2723effc7680d0f706eeb6ce..65ee3d1219310e94a6bde23cf904d5e5200154ff 100644 --- a/app/code/core/Mage/Shipping/Model/Shipment/Request.php +++ b/app/code/core/Mage/Shipping/Model/Shipment/Request.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Shipping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Shipping/Model/Shipment/Return.php b/app/code/core/Mage/Shipping/Model/Shipment/Return.php index 86db2408801829c7b8509db440b2720293b936a8..f801f9c617e5c0b5b6b88da62080fdd056b39dc7 100644 --- a/app/code/core/Mage/Shipping/Model/Shipment/Return.php +++ b/app/code/core/Mage/Shipping/Model/Shipment/Return.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Shipping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Shipping/Model/Shipping.php b/app/code/core/Mage/Shipping/Model/Shipping.php index 7f0d8977e14e13b7d18267c061133a16802fd45b..c5801bd2dfb2b1f0436d0aa65b1f442a63252329 100644 --- a/app/code/core/Mage/Shipping/Model/Shipping.php +++ b/app/code/core/Mage/Shipping/Model/Shipping.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Shipping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Shipping/Model/Source/HandlingAction.php b/app/code/core/Mage/Shipping/Model/Source/HandlingAction.php index 44b4f8b91278b5e27dc43d58075640a5f6e39542..5dfb385d22a48b8335ad0f2ccd1e47b4569330a6 100644 --- a/app/code/core/Mage/Shipping/Model/Source/HandlingAction.php +++ b/app/code/core/Mage/Shipping/Model/Source/HandlingAction.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Shipping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Shipping_Model_Source_HandlingAction diff --git a/app/code/core/Mage/Shipping/Model/Source/HandlingType.php b/app/code/core/Mage/Shipping/Model/Source/HandlingType.php index dff7d4ed07ac2cc3e2ceb613bc87d76bc81560e6..5de653a1e849dd2b1721412178bf76214446b806 100644 --- a/app/code/core/Mage/Shipping/Model/Source/HandlingType.php +++ b/app/code/core/Mage/Shipping/Model/Source/HandlingType.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Shipping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Shipping_Model_Source_HandlingType diff --git a/app/code/core/Mage/Shipping/Model/Tracking/Result.php b/app/code/core/Mage/Shipping/Model/Tracking/Result.php index 8b154708b675e9b09719cf0491dd99cf3c87bed1..cb06393a50e851acf209e732e0e68cc705b4eda0 100644 --- a/app/code/core/Mage/Shipping/Model/Tracking/Result.php +++ b/app/code/core/Mage/Shipping/Model/Tracking/Result.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Shipping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Shipping/Model/Tracking/Result/Abstract.php b/app/code/core/Mage/Shipping/Model/Tracking/Result/Abstract.php index 793066af3fbb86f7db5330842d164551e191e0fa..f99c4352faa4a59e57eaf724f0a9b0a8228220ec 100644 --- a/app/code/core/Mage/Shipping/Model/Tracking/Result/Abstract.php +++ b/app/code/core/Mage/Shipping/Model/Tracking/Result/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Shipping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Shipping/Model/Tracking/Result/Error.php b/app/code/core/Mage/Shipping/Model/Tracking/Result/Error.php index 43d1393cc4883fdec3b2e213783ccad74f603317..f99a156a5e79f4701152578d94fb2d7a511f43c3 100644 --- a/app/code/core/Mage/Shipping/Model/Tracking/Result/Error.php +++ b/app/code/core/Mage/Shipping/Model/Tracking/Result/Error.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Shipping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Shipping/Model/Tracking/Result/Status.php b/app/code/core/Mage/Shipping/Model/Tracking/Result/Status.php index 4297dfcaaa8bcbb45f8c7169c961ace1839b1509..213c60214d507861ce33442a16d9ea7daa9b48ec 100644 --- a/app/code/core/Mage/Shipping/Model/Tracking/Result/Status.php +++ b/app/code/core/Mage/Shipping/Model/Tracking/Result/Status.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Shipping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Shipping/controllers/TrackingController.php b/app/code/core/Mage/Shipping/controllers/TrackingController.php index 272e6af3b8dd47969ba80fec60af219f16069f05..7d787dec01381f7afd83a955eff264b14d96a0a4 100644 --- a/app/code/core/Mage/Shipping/controllers/TrackingController.php +++ b/app/code/core/Mage/Shipping/controllers/TrackingController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Shipping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Shipping/etc/adminhtml/acl.xml b/app/code/core/Mage/Shipping/etc/adminhtml/acl.xml index 3a526e25abbeca30e4d133335717865789ab2d15..06ccdc08f02166db6fa5ddd53a54d933dfdc21ed 100644 --- a/app/code/core/Mage/Shipping/etc/adminhtml/acl.xml +++ b/app/code/core/Mage/Shipping/etc/adminhtml/acl.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Shipping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Shipping/etc/adminhtml/system.xml b/app/code/core/Mage/Shipping/etc/adminhtml/system.xml index 9c917eeb52331e615d1aa5d0023769290bb49fcc..c4359cce685cd65a2589323f7f21613cf10e6cb5 100644 --- a/app/code/core/Mage/Shipping/etc/adminhtml/system.xml +++ b/app/code/core/Mage/Shipping/etc/adminhtml/system.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Shipping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Shipping/etc/config.xml b/app/code/core/Mage/Shipping/etc/config.xml index b48f11ecd876f67023982220fb4aa7586838b37c..888d0734d85ee4803923d3e53794b388e723aec3 100644 --- a/app/code/core/Mage/Shipping/etc/config.xml +++ b/app/code/core/Mage/Shipping/etc/config.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Shipping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Shipping/sql/shipping_setup/install-1.6.0.0.php b/app/code/core/Mage/Shipping/sql/shipping_setup/install-1.6.0.0.php index f63132daba34dfc39bc799ea2dcf8103f22e58bf..bac74e4c15a2d37194fd300ccca8f836df94c297 100644 --- a/app/code/core/Mage/Shipping/sql/shipping_setup/install-1.6.0.0.php +++ b/app/code/core/Mage/Shipping/sql/shipping_setup/install-1.6.0.0.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Shipping - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Shipping/view/frontend/layout.xml b/app/code/core/Mage/Shipping/view/frontend/layout.xml index faed56681cbaf8e87d238b12a06e30f21b7e6468..dffa5b36182da76f38dfaf12d042ea0db0abdd61 100644 --- a/app/code/core/Mage/Shipping/view/frontend/layout.xml +++ b/app/code/core/Mage/Shipping/view/frontend/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Shipping/view/frontend/tracking/popup.phtml b/app/code/core/Mage/Shipping/view/frontend/tracking/popup.phtml index a589d0ce0c21bf5d7234a830b6a6350fcbeb078a..ec23464d93502f6bb3ecdc0939ce96f7d752aed6 100644 --- a/app/code/core/Mage/Shipping/view/frontend/tracking/popup.phtml +++ b/app/code/core/Mage/Shipping/view/frontend/tracking/popup.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Sitemap/Helper/Data.php b/app/code/core/Mage/Sitemap/Helper/Data.php index 88bdb0145f102131f44ed56100599378c5a9acc7..aedeef0462a841ecab52d23a9337dd6797713cf6 100644 --- a/app/code/core/Mage/Sitemap/Helper/Data.php +++ b/app/code/core/Mage/Sitemap/Helper/Data.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sitemap - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sitemap/Model/Config/Backend/Priority.php b/app/code/core/Mage/Sitemap/Model/Config/Backend/Priority.php index cff433e695d4cf4c381dc047078fbb878e86d3a8..aee407f10d6337e77658570c5d5166d8a635b35d 100644 --- a/app/code/core/Mage/Sitemap/Model/Config/Backend/Priority.php +++ b/app/code/core/Mage/Sitemap/Model/Config/Backend/Priority.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sitemap - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sitemap/Model/Config/Source/Frequency.php b/app/code/core/Mage/Sitemap/Model/Config/Source/Frequency.php index 135e6e7d940e19e8ca4921ef92f91a3be872c249..aeb4485f493dd76c8ce2660c11144599b906fc5c 100644 --- a/app/code/core/Mage/Sitemap/Model/Config/Source/Frequency.php +++ b/app/code/core/Mage/Sitemap/Model/Config/Source/Frequency.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sitemap/Model/Observer.php b/app/code/core/Mage/Sitemap/Model/Observer.php index f2ffc5dd7fbbdceb9966d70a339e6dc3f9409aac..d0d50ef92484f0af9ff81fe3c13ab61fc2c539ce 100644 --- a/app/code/core/Mage/Sitemap/Model/Observer.php +++ b/app/code/core/Mage/Sitemap/Model/Observer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sitemap - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sitemap/Model/Resource/Catalog/Category.php b/app/code/core/Mage/Sitemap/Model/Resource/Catalog/Category.php index 5372427a46f7ad98175c2c034466caeb83feb2cc..d4987581268dc8415a52a21ebf6c697dda388118 100755 --- a/app/code/core/Mage/Sitemap/Model/Resource/Catalog/Category.php +++ b/app/code/core/Mage/Sitemap/Model/Resource/Catalog/Category.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sitemap - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sitemap/Model/Resource/Catalog/Product.php b/app/code/core/Mage/Sitemap/Model/Resource/Catalog/Product.php index 2924fe13f85b03f2610cf9616ccd16f8e6401ab4..23a02ed3265820b81ada698ca9523b31652e4d62 100755 --- a/app/code/core/Mage/Sitemap/Model/Resource/Catalog/Product.php +++ b/app/code/core/Mage/Sitemap/Model/Resource/Catalog/Product.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sitemap - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sitemap/Model/Resource/Cms/Page.php b/app/code/core/Mage/Sitemap/Model/Resource/Cms/Page.php index bf0b0de03ca0f90195a0ef9e6ac6f0e84202ba78..7cd9957af4b2450c1e6afd027b45bdf18cd8a7a2 100755 --- a/app/code/core/Mage/Sitemap/Model/Resource/Cms/Page.php +++ b/app/code/core/Mage/Sitemap/Model/Resource/Cms/Page.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sitemap - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sitemap/Model/Resource/Sitemap.php b/app/code/core/Mage/Sitemap/Model/Resource/Sitemap.php index 7bda25be8b592d2ca7e341597b911697fc1f3cdc..ecd01ff54ad2571b067e1f3acaaa7830fa5a4e4a 100755 --- a/app/code/core/Mage/Sitemap/Model/Resource/Sitemap.php +++ b/app/code/core/Mage/Sitemap/Model/Resource/Sitemap.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sitemap - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sitemap/Model/Resource/Sitemap/Collection.php b/app/code/core/Mage/Sitemap/Model/Resource/Sitemap/Collection.php index 38fdc59d8743a6c931177362108a5db9d0cc78fb..2e4a1a95d69c485747fca9964a1d7469d10dc1a6 100755 --- a/app/code/core/Mage/Sitemap/Model/Resource/Sitemap/Collection.php +++ b/app/code/core/Mage/Sitemap/Model/Resource/Sitemap/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sitemap - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sitemap/Model/Sitemap.php b/app/code/core/Mage/Sitemap/Model/Sitemap.php index 99c810e426a2111fb9f9f7bba638c0a7a32cf1df..b64738806956ae5a61b1666a0f4630e2efa849ec 100644 --- a/app/code/core/Mage/Sitemap/Model/Sitemap.php +++ b/app/code/core/Mage/Sitemap/Model/Sitemap.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sitemap - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sitemap/Model/Source/Product/Image/Include.php b/app/code/core/Mage/Sitemap/Model/Source/Product/Image/Include.php index 62d30e5d5740cddd79fa095d09756ad6a0605ff0..b30aaac9222bafc9460273ec3ecfd031cbbe9495 100644 --- a/app/code/core/Mage/Sitemap/Model/Source/Product/Image/Include.php +++ b/app/code/core/Mage/Sitemap/Model/Source/Product/Image/Include.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sitemap - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sitemap/etc/adminhtml/acl.xml b/app/code/core/Mage/Sitemap/etc/adminhtml/acl.xml index ccee877dd2e6adb3bdde558713a64742a6a91ebd..519cf7e00c533de94bfdc90dfbcd3146d4fd0b48 100644 --- a/app/code/core/Mage/Sitemap/etc/adminhtml/acl.xml +++ b/app/code/core/Mage/Sitemap/etc/adminhtml/acl.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Sitemap - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Sitemap/etc/adminhtml/menu.xml b/app/code/core/Mage/Sitemap/etc/adminhtml/menu.xml index 6b19309c68ddf700f5e42118743e284475707add..01666991b7e6680391aef31ba1fad3b673131288 100644 --- a/app/code/core/Mage/Sitemap/etc/adminhtml/menu.xml +++ b/app/code/core/Mage/Sitemap/etc/adminhtml/menu.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Sitemap - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Sitemap/etc/adminhtml/system.xml b/app/code/core/Mage/Sitemap/etc/adminhtml/system.xml index b87253c9e4af5e83a303a47bf9a70915c7ebb4b8..c9554d77f7c38ad5277e1b252ff918bdf94f9428 100644 --- a/app/code/core/Mage/Sitemap/etc/adminhtml/system.xml +++ b/app/code/core/Mage/Sitemap/etc/adminhtml/system.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Sitemap - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Sitemap/etc/config.xml b/app/code/core/Mage/Sitemap/etc/config.xml index cfebd36b58bf09b80e8a832947f54ea532bd4d6d..3d52824166186c83019c181e14c2359816a43687 100644 --- a/app/code/core/Mage/Sitemap/etc/config.xml +++ b/app/code/core/Mage/Sitemap/etc/config.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Sitemap - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Sitemap/sql/sitemap_setup/install-1.6.0.0.php b/app/code/core/Mage/Sitemap/sql/sitemap_setup/install-1.6.0.0.php index 2cd8698e1497e40522082f48b30232ac6171df2e..09b06da729215395d635c8d58329c85ec9c0c0ff 100644 --- a/app/code/core/Mage/Sitemap/sql/sitemap_setup/install-1.6.0.0.php +++ b/app/code/core/Mage/Sitemap/sql/sitemap_setup/install-1.6.0.0.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Sitemap - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Sitemap/view/adminhtml/layout.xml b/app/code/core/Mage/Sitemap/view/adminhtml/layout.xml index 60b13c5ccbb9ce419c521d513dd14edafef58dbc..d323593478c81d9ca8a438c949dc429018e13e74 100644 --- a/app/code/core/Mage/Sitemap/view/adminhtml/layout.xml +++ b/app/code/core/Mage/Sitemap/view/adminhtml/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Tag/Block/Adminhtml/Assigned/Grid.php b/app/code/core/Mage/Tag/Block/Adminhtml/Assigned/Grid.php index 4aa7288dec4ebe7323b140899082537b2e72adc3..3c6b6a8c0a16bb8dd5e1ec01e3622ec7a193ab6e 100644 --- a/app/code/core/Mage/Tag/Block/Adminhtml/Assigned/Grid.php +++ b/app/code/core/Mage/Tag/Block/Adminhtml/Assigned/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tag - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tag/Block/Adminhtml/Catalog/Product/Edit/Tab/Tag.php b/app/code/core/Mage/Tag/Block/Adminhtml/Catalog/Product/Edit/Tab/Tag.php index 9f142e6cd35a216a05049e427555d7a11d225519..aa311350ce665b4f4dcf9ca5e01954e4aa857daa 100644 --- a/app/code/core/Mage/Tag/Block/Adminhtml/Catalog/Product/Edit/Tab/Tag.php +++ b/app/code/core/Mage/Tag/Block/Adminhtml/Catalog/Product/Edit/Tab/Tag.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tag - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tag/Block/Adminhtml/Catalog/Product/Edit/Tab/Tag/Customer.php b/app/code/core/Mage/Tag/Block/Adminhtml/Catalog/Product/Edit/Tab/Tag/Customer.php index d133cea915dc6db112a63302915ca6399fa7733c..428fd3f7ee9073a6ac444f364d709e7e02425726 100644 --- a/app/code/core/Mage/Tag/Block/Adminhtml/Catalog/Product/Edit/Tab/Tag/Customer.php +++ b/app/code/core/Mage/Tag/Block/Adminhtml/Catalog/Product/Edit/Tab/Tag/Customer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tag - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tag/Block/Adminhtml/Catalog/Product/Edit/Tab/Tag/Customer/Grid.php b/app/code/core/Mage/Tag/Block/Adminhtml/Catalog/Product/Edit/Tab/Tag/Customer/Grid.php index 9bfb8d5da2da2078cac7de1561d00ec4bda36fd5..65f8bba59e38cd4853c6b6f19791857d48a359f4 100644 --- a/app/code/core/Mage/Tag/Block/Adminhtml/Catalog/Product/Edit/Tab/Tag/Customer/Grid.php +++ b/app/code/core/Mage/Tag/Block/Adminhtml/Catalog/Product/Edit/Tab/Tag/Customer/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tag - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tag/Block/Adminhtml/Catalog/Product/Edit/Tab/Tag/Grid.php b/app/code/core/Mage/Tag/Block/Adminhtml/Catalog/Product/Edit/Tab/Tag/Grid.php index 00bada8847facd6492c2bac2da6c041e0363fc75..d5ac5f7527d8faf9a86f4e23d2b6843e86f88f08 100644 --- a/app/code/core/Mage/Tag/Block/Adminhtml/Catalog/Product/Edit/Tab/Tag/Grid.php +++ b/app/code/core/Mage/Tag/Block/Adminhtml/Catalog/Product/Edit/Tab/Tag/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tag - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tag/Block/Adminhtml/Customer.php b/app/code/core/Mage/Tag/Block/Adminhtml/Customer.php index 57a6e5b759b10c445fc0d7905dfeace2b6a97c9b..9d26607bcaf6a5f2f243b8fc6d040925dd8482fb 100644 --- a/app/code/core/Mage/Tag/Block/Adminhtml/Customer.php +++ b/app/code/core/Mage/Tag/Block/Adminhtml/Customer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tag - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tag/Block/Adminhtml/Customer/Edit/Tab/Tag.php b/app/code/core/Mage/Tag/Block/Adminhtml/Customer/Edit/Tab/Tag.php index f4e6736e8a43e2abcb30dbf57d3154fa5ff94c1a..0c768570a2983a0e43988dea6cc4617f90efd7fa 100644 --- a/app/code/core/Mage/Tag/Block/Adminhtml/Customer/Edit/Tab/Tag.php +++ b/app/code/core/Mage/Tag/Block/Adminhtml/Customer/Edit/Tab/Tag.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tag - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * * @method Mage_Tag_Block_Adminhtml_Customer_Edit_Tab_Tag setTitle() setTitle(string $title) diff --git a/app/code/core/Mage/Tag/Block/Adminhtml/Customer/Edit/Tab/Tag/Grid.php b/app/code/core/Mage/Tag/Block/Adminhtml/Customer/Edit/Tab/Tag/Grid.php index d95a088c295d26f000008813a314391b86e56a5d..83b456fae72643198e72d142b4477bb29868906b 100644 --- a/app/code/core/Mage/Tag/Block/Adminhtml/Customer/Edit/Tab/Tag/Grid.php +++ b/app/code/core/Mage/Tag/Block/Adminhtml/Customer/Edit/Tab/Tag/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tag - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tag/Block/Adminhtml/Customer/Grid.php b/app/code/core/Mage/Tag/Block/Adminhtml/Customer/Grid.php index dd06a1476ba3b249b15ffa6c344b89b8aaa16a72..3c4ec5a41cc77d0ea71f2dfd30ef471e00379c37 100644 --- a/app/code/core/Mage/Tag/Block/Adminhtml/Customer/Grid.php +++ b/app/code/core/Mage/Tag/Block/Adminhtml/Customer/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tag - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tag/Block/Adminhtml/Edit.php b/app/code/core/Mage/Tag/Block/Adminhtml/Edit.php index 002a712cbdcf29e7d376ee7dab14d348a1858cf3..d4c023a9a8f75932959b053cb112d00c38650aee 100644 --- a/app/code/core/Mage/Tag/Block/Adminhtml/Edit.php +++ b/app/code/core/Mage/Tag/Block/Adminhtml/Edit.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tag - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tag/Block/Adminhtml/Edit/Accordion.php b/app/code/core/Mage/Tag/Block/Adminhtml/Edit/Accordion.php index ddc018b868dc56bada393b4e994b4d668447d222..294e13b99a3d007f66366889b877b87c3ccf7ca8 100644 --- a/app/code/core/Mage/Tag/Block/Adminhtml/Edit/Accordion.php +++ b/app/code/core/Mage/Tag/Block/Adminhtml/Edit/Accordion.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tag - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tag/Block/Adminhtml/Edit/Assigned.php b/app/code/core/Mage/Tag/Block/Adminhtml/Edit/Assigned.php index eb803f8fbc58f18a9074fe4a379ab182e17d2a91..1771d54ee7a7b3910e4d28e7d66c13e56a1c17ee 100644 --- a/app/code/core/Mage/Tag/Block/Adminhtml/Edit/Assigned.php +++ b/app/code/core/Mage/Tag/Block/Adminhtml/Edit/Assigned.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tag - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tag/Block/Adminhtml/Edit/Form.php b/app/code/core/Mage/Tag/Block/Adminhtml/Edit/Form.php index eb046013432aab1630c2cc3ac5413cc9598d3b1e..5d358150b0c48737757c1033fb4c0eca2b323eba 100644 --- a/app/code/core/Mage/Tag/Block/Adminhtml/Edit/Form.php +++ b/app/code/core/Mage/Tag/Block/Adminhtml/Edit/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tag - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tag/Block/Adminhtml/Grid/All.php b/app/code/core/Mage/Tag/Block/Adminhtml/Grid/All.php index 17ef5456d3468b5d1bc89ef8d18a15b0d3ed3fb5..4b4f31c3aaa397dd2356fe3142b305720627b7e8 100644 --- a/app/code/core/Mage/Tag/Block/Adminhtml/Grid/All.php +++ b/app/code/core/Mage/Tag/Block/Adminhtml/Grid/All.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tag - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tag/Block/Adminhtml/Grid/Pending.php b/app/code/core/Mage/Tag/Block/Adminhtml/Grid/Pending.php index 323e5e99905e9407e63992dc8d266708ee1ca788..fda12c48c03dfc581ee7cae967877cdac3437ef2 100644 --- a/app/code/core/Mage/Tag/Block/Adminhtml/Grid/Pending.php +++ b/app/code/core/Mage/Tag/Block/Adminhtml/Grid/Pending.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tag - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tag/Block/Adminhtml/Pending.php b/app/code/core/Mage/Tag/Block/Adminhtml/Pending.php index e9e3fc7fd249bd479ecad0c4960feff3bb184100..5e55401899573169946cd9cf2d8f54c74fe63341 100644 --- a/app/code/core/Mage/Tag/Block/Adminhtml/Pending.php +++ b/app/code/core/Mage/Tag/Block/Adminhtml/Pending.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tag - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tag/Block/Adminhtml/Product.php b/app/code/core/Mage/Tag/Block/Adminhtml/Product.php index 28e715fcc943d034c956207c4781fe686ffdbdb4..7f9006c694b92f6495484ace17b63af11595aa50 100644 --- a/app/code/core/Mage/Tag/Block/Adminhtml/Product.php +++ b/app/code/core/Mage/Tag/Block/Adminhtml/Product.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tag - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tag/Block/Adminhtml/Product/Grid.php b/app/code/core/Mage/Tag/Block/Adminhtml/Product/Grid.php index a617fac752f7ddaeadacbf9df51e6fabf062b7a8..f2c64d6ce4300c95fe9e6ea0be2318e8242aec4d 100644 --- a/app/code/core/Mage/Tag/Block/Adminhtml/Product/Grid.php +++ b/app/code/core/Mage/Tag/Block/Adminhtml/Product/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tag - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tag/Block/Adminhtml/Report/Customer.php b/app/code/core/Mage/Tag/Block/Adminhtml/Report/Customer.php index 53979122db89c2574c851373b4b050a717d34372..870de339403334970765b98f67c639f7d078de91 100644 --- a/app/code/core/Mage/Tag/Block/Adminhtml/Report/Customer.php +++ b/app/code/core/Mage/Tag/Block/Adminhtml/Report/Customer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tag - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tag/Block/Adminhtml/Report/Customer/Detail.php b/app/code/core/Mage/Tag/Block/Adminhtml/Report/Customer/Detail.php index 2f6f45aeb7dd50967fb6b76b0baea2de033dfbcd..72b76033089830f938b01150cf65b2e5e33ee456 100644 --- a/app/code/core/Mage/Tag/Block/Adminhtml/Report/Customer/Detail.php +++ b/app/code/core/Mage/Tag/Block/Adminhtml/Report/Customer/Detail.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tag - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tag/Block/Adminhtml/Report/Customer/Detail/Grid.php b/app/code/core/Mage/Tag/Block/Adminhtml/Report/Customer/Detail/Grid.php index 3ccea41db34a86541ee19d0ade72792606fce032..5924e5a885d4794b9f0c8423d01d0974953acd80 100644 --- a/app/code/core/Mage/Tag/Block/Adminhtml/Report/Customer/Detail/Grid.php +++ b/app/code/core/Mage/Tag/Block/Adminhtml/Report/Customer/Detail/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tag - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tag/Block/Adminhtml/Report/Customer/Grid.php b/app/code/core/Mage/Tag/Block/Adminhtml/Report/Customer/Grid.php index 572ed63a8d3757a12e1ff1f243e7ce53cd7ad9db..c9e5af16fdbe28e4f41e14b93f5c3589fdd2da5a 100644 --- a/app/code/core/Mage/Tag/Block/Adminhtml/Report/Customer/Grid.php +++ b/app/code/core/Mage/Tag/Block/Adminhtml/Report/Customer/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tag - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tag/Block/Adminhtml/Report/Popular.php b/app/code/core/Mage/Tag/Block/Adminhtml/Report/Popular.php index 4ad8ec8642a8ce9c03ac928089c4e235ccdbe71b..4d7e1f86593758d71ed98d0226e2330c1d82b902 100644 --- a/app/code/core/Mage/Tag/Block/Adminhtml/Report/Popular.php +++ b/app/code/core/Mage/Tag/Block/Adminhtml/Report/Popular.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tag - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tag/Block/Adminhtml/Report/Popular/Detail.php b/app/code/core/Mage/Tag/Block/Adminhtml/Report/Popular/Detail.php index 389645ad4e80ba5e067aa5770b8bc76599449f62..3202ad73ee20bca312deb7ddbb072c9a1aa0d72e 100644 --- a/app/code/core/Mage/Tag/Block/Adminhtml/Report/Popular/Detail.php +++ b/app/code/core/Mage/Tag/Block/Adminhtml/Report/Popular/Detail.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tag - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tag/Block/Adminhtml/Report/Popular/Detail/Grid.php b/app/code/core/Mage/Tag/Block/Adminhtml/Report/Popular/Detail/Grid.php index 443a670d0403c612511b08b0ac8d7be70bb43e98..c3917633f2847f5f3421cad4f556acc11834ab8a 100644 --- a/app/code/core/Mage/Tag/Block/Adminhtml/Report/Popular/Detail/Grid.php +++ b/app/code/core/Mage/Tag/Block/Adminhtml/Report/Popular/Detail/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tag - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tag/Block/Adminhtml/Report/Popular/Grid.php b/app/code/core/Mage/Tag/Block/Adminhtml/Report/Popular/Grid.php index fc69956991cb7399d9544846c92e3da17b3d6e0b..12203e47275da0835e1738db577470a63c3e31b7 100644 --- a/app/code/core/Mage/Tag/Block/Adminhtml/Report/Popular/Grid.php +++ b/app/code/core/Mage/Tag/Block/Adminhtml/Report/Popular/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tag - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tag/Block/Adminhtml/Report/Product.php b/app/code/core/Mage/Tag/Block/Adminhtml/Report/Product.php index fd1abfd2dca70f0342cbf7055825d073a2861c04..b120a4f4747b14b322ba2fecdd4d55136b6c84b7 100644 --- a/app/code/core/Mage/Tag/Block/Adminhtml/Report/Product.php +++ b/app/code/core/Mage/Tag/Block/Adminhtml/Report/Product.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tag - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tag/Block/Adminhtml/Report/Product/Detail.php b/app/code/core/Mage/Tag/Block/Adminhtml/Report/Product/Detail.php index f8fef84fda1e12934b6df247e03b6ba15431ea2e..1bb251364edb170ca9cae27512a66e0ee2c7ae26 100644 --- a/app/code/core/Mage/Tag/Block/Adminhtml/Report/Product/Detail.php +++ b/app/code/core/Mage/Tag/Block/Adminhtml/Report/Product/Detail.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tag - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tag/Block/Adminhtml/Report/Product/Detail/Grid.php b/app/code/core/Mage/Tag/Block/Adminhtml/Report/Product/Detail/Grid.php index 0f3d863ca0e00a4d0465f542bb4182822ccbdcdc..87a764608c0ad6240fece368678f35bf8313fa60 100644 --- a/app/code/core/Mage/Tag/Block/Adminhtml/Report/Product/Detail/Grid.php +++ b/app/code/core/Mage/Tag/Block/Adminhtml/Report/Product/Detail/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tag - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tag/Block/Adminhtml/Report/Product/Grid.php b/app/code/core/Mage/Tag/Block/Adminhtml/Report/Product/Grid.php index 27f3d3ed1e7b5c2323e9781a6460b3fec54e77aa..f7225213c4019a6cdf24031807176506cb51056d 100644 --- a/app/code/core/Mage/Tag/Block/Adminhtml/Report/Product/Grid.php +++ b/app/code/core/Mage/Tag/Block/Adminhtml/Report/Product/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tag - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tag/Block/Adminhtml/Store/Switcher.php b/app/code/core/Mage/Tag/Block/Adminhtml/Store/Switcher.php index ba4e94ac49295510fba4da5c0e5f3f091dbb9d18..8053d6cce62d71b2672d0ef2cda341a0042f06ad 100644 --- a/app/code/core/Mage/Tag/Block/Adminhtml/Store/Switcher.php +++ b/app/code/core/Mage/Tag/Block/Adminhtml/Store/Switcher.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tag - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tag/Block/Adminhtml/Tag.php b/app/code/core/Mage/Tag/Block/Adminhtml/Tag.php index a2a061915a2d6757fbaace28de9045478aff7cdd..5987a07ea1b484385aeb07eb4f925a1ffde2f027 100644 --- a/app/code/core/Mage/Tag/Block/Adminhtml/Tag.php +++ b/app/code/core/Mage/Tag/Block/Adminhtml/Tag.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tag - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tag/Block/Adminhtml/Tag/Grid.php b/app/code/core/Mage/Tag/Block/Adminhtml/Tag/Grid.php index 0c5cbc812a0e531eef199c249369e254b9fdeb79..aca0e765708013289347c001d44b63b7eb96ac23 100644 --- a/app/code/core/Mage/Tag/Block/Adminhtml/Tag/Grid.php +++ b/app/code/core/Mage/Tag/Block/Adminhtml/Tag/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tag - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tag/Block/All.php b/app/code/core/Mage/Tag/Block/All.php index b9dcd5573d2a1b4003f7ec094305c1bb873999bc..bc2d79cb9cf55f434f6e4abb4e59dae8808b06ef 100644 --- a/app/code/core/Mage/Tag/Block/All.php +++ b/app/code/core/Mage/Tag/Block/All.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tag - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tag/Block/Catalog/Product/Rss.php b/app/code/core/Mage/Tag/Block/Catalog/Product/Rss.php index 5b1d7e52efcbf5a6db0d86bed61f04a2bfb89322..4c03f617b26c65354bd51ddd2c73778b42e402bd 100644 --- a/app/code/core/Mage/Tag/Block/Catalog/Product/Rss.php +++ b/app/code/core/Mage/Tag/Block/Catalog/Product/Rss.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tag - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tag/Block/Catalog/Product/Rss/Link.php b/app/code/core/Mage/Tag/Block/Catalog/Product/Rss/Link.php index 644ad194f8453f1fbd36d0d95c1dd44fb19f39e8..4e89de2adb4be6e2e831ef0db7b24f83096e3033 100644 --- a/app/code/core/Mage/Tag/Block/Catalog/Product/Rss/Link.php +++ b/app/code/core/Mage/Tag/Block/Catalog/Product/Rss/Link.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tag - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tag/Block/Customer/Recent.php b/app/code/core/Mage/Tag/Block/Customer/Recent.php index 1e931ff03665d385b4f1b87c2ee976d50d202723..1d7ec71db88a6009a198cde7ba59d6982b58dbe6 100644 --- a/app/code/core/Mage/Tag/Block/Customer/Recent.php +++ b/app/code/core/Mage/Tag/Block/Customer/Recent.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tag - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tag/Block/Customer/Tags.php b/app/code/core/Mage/Tag/Block/Customer/Tags.php index a6d9e5811d737118d6a68c9cbffb36e76e140b1a..f358f8f3149a86f011e77641cb0f0417cd25a21f 100644 --- a/app/code/core/Mage/Tag/Block/Customer/Tags.php +++ b/app/code/core/Mage/Tag/Block/Customer/Tags.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tag - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tag/Block/Customer/View.php b/app/code/core/Mage/Tag/Block/Customer/View.php index f3af9152ca891fd672b8ea1f88c9b40002973767..20887319535700f5623c44f896393fca433542d8 100644 --- a/app/code/core/Mage/Tag/Block/Customer/View.php +++ b/app/code/core/Mage/Tag/Block/Customer/View.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tag - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tag/Block/Popular.php b/app/code/core/Mage/Tag/Block/Popular.php index 5524f1878575f822f8064c52548cf10c9b792dfa..2e27628847c036950b4f4f8ba1df1974f9108f87 100644 --- a/app/code/core/Mage/Tag/Block/Popular.php +++ b/app/code/core/Mage/Tag/Block/Popular.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tag - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tag/Block/Product/List.php b/app/code/core/Mage/Tag/Block/Product/List.php index 71ee4806b92110b0e9f08170894e78d6543a2aa3..0857eb6b598c8c28a15cb30dfca1ac2653f39741 100644 --- a/app/code/core/Mage/Tag/Block/Product/List.php +++ b/app/code/core/Mage/Tag/Block/Product/List.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tag - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tag/Block/Product/Result.php b/app/code/core/Mage/Tag/Block/Product/Result.php index b4576d1ea6d1452ea35072f54fc0eab0e222d14f..313a91c9c3a31f6e60b7135b9c78487f78f75604 100644 --- a/app/code/core/Mage/Tag/Block/Product/Result.php +++ b/app/code/core/Mage/Tag/Block/Product/Result.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tag - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tag/Helper/Data.php b/app/code/core/Mage/Tag/Helper/Data.php index 43a31f42ec90af57db71c0dec8b684fb5b5d6350..9f60a2c101af35e14460c7bddc57c43c850cc640 100644 --- a/app/code/core/Mage/Tag/Helper/Data.php +++ b/app/code/core/Mage/Tag/Helper/Data.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tag - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tag/Model/Entity/Customer/Collection.php b/app/code/core/Mage/Tag/Model/Entity/Customer/Collection.php index 367e45b3d66c4d1209ff2dab1552c8ab7e9252e3..bf1ba8e16283b6f70f891cc969f924d14b4be130 100644 --- a/app/code/core/Mage/Tag/Model/Entity/Customer/Collection.php +++ b/app/code/core/Mage/Tag/Model/Entity/Customer/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tag - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tag/Model/Indexer/Summary.php b/app/code/core/Mage/Tag/Model/Indexer/Summary.php index 55287bb3e106d0de50bb53b6d39a6266e784bec6..dcef6498a8906da5a4e947e680302a450fc9edd8 100644 --- a/app/code/core/Mage/Tag/Model/Indexer/Summary.php +++ b/app/code/core/Mage/Tag/Model/Indexer/Summary.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tag - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tag/Model/Resource/Customer/Collection.php b/app/code/core/Mage/Tag/Model/Resource/Customer/Collection.php index ae10d0d34307830a1651e64a9dc3c8f30dc329cf..fc3678ef24ea8c731e5e006f2443e6ba94d14dc1 100755 --- a/app/code/core/Mage/Tag/Model/Resource/Customer/Collection.php +++ b/app/code/core/Mage/Tag/Model/Resource/Customer/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tag - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tag/Model/Resource/Indexer/Summary.php b/app/code/core/Mage/Tag/Model/Resource/Indexer/Summary.php index b529a0fd692d7b7368bcfb19b718bf3187bbc06f..2fb1b75ab0834b27fd95cf6776910f4598864a78 100755 --- a/app/code/core/Mage/Tag/Model/Resource/Indexer/Summary.php +++ b/app/code/core/Mage/Tag/Model/Resource/Indexer/Summary.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tag - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tag/Model/Resource/Popular/Collection.php b/app/code/core/Mage/Tag/Model/Resource/Popular/Collection.php index 0ff8c4d7b89fa7769de0f8eb6ab8c29b5fb2202d..21e09dac8c79029a5a311f05af73a89ab07c0a34 100755 --- a/app/code/core/Mage/Tag/Model/Resource/Popular/Collection.php +++ b/app/code/core/Mage/Tag/Model/Resource/Popular/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tag - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tag/Model/Resource/Product/Collection.php b/app/code/core/Mage/Tag/Model/Resource/Product/Collection.php index ed66cab70501f21f403c77ee412573e1bd42c43d..52b8c278d5db2ebc89de3f98ccbfe18875222382 100755 --- a/app/code/core/Mage/Tag/Model/Resource/Product/Collection.php +++ b/app/code/core/Mage/Tag/Model/Resource/Product/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tag - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tag/Model/Resource/Reports/Collection.php b/app/code/core/Mage/Tag/Model/Resource/Reports/Collection.php index 222bd7a81887d23081c29a694d03cf2275881ced..33447f0cf038417d30ba0a7a2066ccb5750611bf 100644 --- a/app/code/core/Mage/Tag/Model/Resource/Reports/Collection.php +++ b/app/code/core/Mage/Tag/Model/Resource/Reports/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tag - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tag/Model/Resource/Reports/Customer/Collection.php b/app/code/core/Mage/Tag/Model/Resource/Reports/Customer/Collection.php index 3ad1fb1682bc4348d1f1b3fa7045aa8ba1414a2d..f7b8245c18b7cd42737188b0d98ef766a4c5a55d 100644 --- a/app/code/core/Mage/Tag/Model/Resource/Reports/Customer/Collection.php +++ b/app/code/core/Mage/Tag/Model/Resource/Reports/Customer/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tag - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tag/Model/Resource/Reports/Product/Collection.php b/app/code/core/Mage/Tag/Model/Resource/Reports/Product/Collection.php index 5743de3f1215a7ead3261c77ca44208d2ebf9c50..a4e649e94646c5865a6a14f84347516ac2242071 100644 --- a/app/code/core/Mage/Tag/Model/Resource/Reports/Product/Collection.php +++ b/app/code/core/Mage/Tag/Model/Resource/Reports/Product/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tag - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tag/Model/Resource/Tag.php b/app/code/core/Mage/Tag/Model/Resource/Tag.php index 22f75a2fd02fb8dae539bb270e7fc7f9cb77958b..312c9e151dd1073a31208d3390f780458036ca1f 100755 --- a/app/code/core/Mage/Tag/Model/Resource/Tag.php +++ b/app/code/core/Mage/Tag/Model/Resource/Tag.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tag - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tag/Model/Resource/Tag/Collection.php b/app/code/core/Mage/Tag/Model/Resource/Tag/Collection.php index 822b4f18a3c79950fe267c741cc63a24dbf8f400..47a4c423194bdb5327f8f74666fd21e25c795c02 100755 --- a/app/code/core/Mage/Tag/Model/Resource/Tag/Collection.php +++ b/app/code/core/Mage/Tag/Model/Resource/Tag/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tag - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tag/Model/Resource/Tag/Relation.php b/app/code/core/Mage/Tag/Model/Resource/Tag/Relation.php index cd811982ad69c21c8c99cd0be83ba7c85fd028cf..bd9dc5dfc922d2ef4d67bdbc866706cab379483e 100755 --- a/app/code/core/Mage/Tag/Model/Resource/Tag/Relation.php +++ b/app/code/core/Mage/Tag/Model/Resource/Tag/Relation.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tag - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tag/Model/Session.php b/app/code/core/Mage/Tag/Model/Session.php index ee67a377d2a6fe70ba50eb97ea675174df0b8258..bde8affed231df3f7fb42fd6542c35650e37df3b 100644 --- a/app/code/core/Mage/Tag/Model/Session.php +++ b/app/code/core/Mage/Tag/Model/Session.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tag - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tag/Model/Tag.php b/app/code/core/Mage/Tag/Model/Tag.php index d592a92befbc36a6fd2fb8a3b51dfae30c606eda..7c49bfdcb8911208f6774dd664fb308424b0a80b 100644 --- a/app/code/core/Mage/Tag/Model/Tag.php +++ b/app/code/core/Mage/Tag/Model/Tag.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tag - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tag/Model/Tag/Relation.php b/app/code/core/Mage/Tag/Model/Tag/Relation.php index b6d31aaff6698b0c201fd5f9e7841d673720634d..e58f832aece3ad1a2dea8b3ba176d879b4bdd4d5 100644 --- a/app/code/core/Mage/Tag/Model/Tag/Relation.php +++ b/app/code/core/Mage/Tag/Model/Tag/Relation.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tag - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tag/controllers/Adminhtml/Catalog/ProductController.php b/app/code/core/Mage/Tag/controllers/Adminhtml/Catalog/ProductController.php index c35c1bc4ec92b3bc198af3cf4f1dafcc358f6816..767a9f361cf893c578be44abcdda03e8b7524bba 100644 --- a/app/code/core/Mage/Tag/controllers/Adminhtml/Catalog/ProductController.php +++ b/app/code/core/Mage/Tag/controllers/Adminhtml/Catalog/ProductController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tag - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tag/controllers/Adminhtml/CustomerController.php b/app/code/core/Mage/Tag/controllers/Adminhtml/CustomerController.php index bbfc97872de5970ae7dac994df53bdedd39fc54e..ffa8bbfc580808418870fd45b5403f5d393cb924 100644 --- a/app/code/core/Mage/Tag/controllers/Adminhtml/CustomerController.php +++ b/app/code/core/Mage/Tag/controllers/Adminhtml/CustomerController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tag - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tag/controllers/Adminhtml/Report/TagController.php b/app/code/core/Mage/Tag/controllers/Adminhtml/Report/TagController.php index b2525782cbb11054a30673078054977cca45b11a..6c960f10c91a8e82579c4088cc8171fb7f83d4d6 100644 --- a/app/code/core/Mage/Tag/controllers/Adminhtml/Report/TagController.php +++ b/app/code/core/Mage/Tag/controllers/Adminhtml/Report/TagController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tag - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tag/controllers/Adminhtml/TagController.php b/app/code/core/Mage/Tag/controllers/Adminhtml/TagController.php index 728444d9b6de6d873464e62c74e4f8eea2ab2b4f..689ea8fb189d6ccc6af4aacb39e6b350d46fa5ca 100644 --- a/app/code/core/Mage/Tag/controllers/Adminhtml/TagController.php +++ b/app/code/core/Mage/Tag/controllers/Adminhtml/TagController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tag - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tag/controllers/CustomerController.php b/app/code/core/Mage/Tag/controllers/CustomerController.php index 5351c2f79f6e971d4f0788d3ce2d1f1cd694b142..a294e50634be091595ed3716b76dca80a4443fc9 100644 --- a/app/code/core/Mage/Tag/controllers/CustomerController.php +++ b/app/code/core/Mage/Tag/controllers/CustomerController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tag - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tag/controllers/IndexController.php b/app/code/core/Mage/Tag/controllers/IndexController.php index 2e78330d681859ddc01c0b72581e3852db909ee8..c431ab3eadfedc6bbdc6ab36964d41dcc42a992d 100644 --- a/app/code/core/Mage/Tag/controllers/IndexController.php +++ b/app/code/core/Mage/Tag/controllers/IndexController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tag - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tag/controllers/ListController.php b/app/code/core/Mage/Tag/controllers/ListController.php index 7260fe665f2fad1ed343f57a25d43672da63bdf4..4470db533e237046e311e7daa88d220d716a8522 100644 --- a/app/code/core/Mage/Tag/controllers/ListController.php +++ b/app/code/core/Mage/Tag/controllers/ListController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tag - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tag/controllers/ProductController.php b/app/code/core/Mage/Tag/controllers/ProductController.php index bf3add75306163d7bcc9a1a609e7959bf20d4af8..84bd4b0e244ca42a10743c1e9e432e624af3883c 100644 --- a/app/code/core/Mage/Tag/controllers/ProductController.php +++ b/app/code/core/Mage/Tag/controllers/ProductController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tag - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tag/controllers/Rss/CatalogController.php b/app/code/core/Mage/Tag/controllers/Rss/CatalogController.php index 29a85a76b5b9490e9b547136f1a72da4a22da2d3..be088c6ab2915bde426ee64d2fcd38ec59d5e088 100644 --- a/app/code/core/Mage/Tag/controllers/Rss/CatalogController.php +++ b/app/code/core/Mage/Tag/controllers/Rss/CatalogController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tag - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tag/etc/adminhtml/acl.xml b/app/code/core/Mage/Tag/etc/adminhtml/acl.xml index b037651cdc7e00dc27a76fd8c6498c3f329825d7..825135e577152265df659e7cae60b673b23a17b9 100644 --- a/app/code/core/Mage/Tag/etc/adminhtml/acl.xml +++ b/app/code/core/Mage/Tag/etc/adminhtml/acl.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Tag - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Tag/etc/adminhtml/menu.xml b/app/code/core/Mage/Tag/etc/adminhtml/menu.xml index 90a84162e481f8e416585698d295dbfdbcaaa1cb..3c55af4099c3ec4ce5ae87e6c6125592e6e0e6e1 100644 --- a/app/code/core/Mage/Tag/etc/adminhtml/menu.xml +++ b/app/code/core/Mage/Tag/etc/adminhtml/menu.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Tag - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Tag/etc/adminhtml/system.xml b/app/code/core/Mage/Tag/etc/adminhtml/system.xml index 6b8eba4437fb8c38c1d7ae0843657b6361b7db38..e1f55e12fded79b6ab5995143269ba701f9614cd 100644 --- a/app/code/core/Mage/Tag/etc/adminhtml/system.xml +++ b/app/code/core/Mage/Tag/etc/adminhtml/system.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Rss - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Tag/etc/config.xml b/app/code/core/Mage/Tag/etc/config.xml index 84de3260ae04855e825a9adc9bba82923c1e8ee4..68cdec0ac5b56d7df9456fa208d2b80d9cf5f142 100644 --- a/app/code/core/Mage/Tag/etc/config.xml +++ b/app/code/core/Mage/Tag/etc/config.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Tag - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Tag/etc/view.xml b/app/code/core/Mage/Tag/etc/view.xml index 72f4a67d1a4a69c3c57811ed0e3105470450c700..668628513704ef405516c4eb2dd9a91c4006becb 100644 --- a/app/code/core/Mage/Tag/etc/view.xml +++ b/app/code/core/Mage/Tag/etc/view.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Tag - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Tag/sql/tag_setup/install-1.6.0.0.php b/app/code/core/Mage/Tag/sql/tag_setup/install-1.6.0.0.php index 35c42d46f8b6bd7ce4c986d5178f9154e5ffbc07..770fa0a9aeaca84c06784f567af1fb136c0adf34 100644 --- a/app/code/core/Mage/Tag/sql/tag_setup/install-1.6.0.0.php +++ b/app/code/core/Mage/Tag/sql/tag_setup/install-1.6.0.0.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tag - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tag/view/adminhtml/customer.xml b/app/code/core/Mage/Tag/view/adminhtml/customer.xml index 94afa1ddb75a26594f34f038fad22a7155afdee9..dc98b549804bb417c0d2e07e97de7f9571a2cdaf 100644 --- a/app/code/core/Mage/Tag/view/adminhtml/customer.xml +++ b/app/code/core/Mage/Tag/view/adminhtml/customer.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Tag - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Tag/view/adminhtml/product.xml b/app/code/core/Mage/Tag/view/adminhtml/product.xml index 5346de0a834dec7ab648ac030860fc5d38ff9b0e..632691c077c75eeedac8614a26f1cc3a23672d5f 100644 --- a/app/code/core/Mage/Tag/view/adminhtml/product.xml +++ b/app/code/core/Mage/Tag/view/adminhtml/product.xml @@ -21,7 +21,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Tag/view/adminhtml/tag.xml b/app/code/core/Mage/Tag/view/adminhtml/tag.xml index d682b8203b62e453ccadcfb6d18a2038d6604167..b4da94a77303cc68808e1df50bc031bcabd364a2 100644 --- a/app/code/core/Mage/Tag/view/adminhtml/tag.xml +++ b/app/code/core/Mage/Tag/view/adminhtml/tag.xml @@ -21,7 +21,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Tag/view/adminhtml/tag/edit/container.phtml b/app/code/core/Mage/Tag/view/adminhtml/tag/edit/container.phtml index 45dd7923950363443ec13275c2dc9fe57c36f26e..e28f1e7c26a7b4903691d14e6c9be5b0ccdd25c9 100644 --- a/app/code/core/Mage/Tag/view/adminhtml/tag/edit/container.phtml +++ b/app/code/core/Mage/Tag/view/adminhtml/tag/edit/container.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Tag/view/adminhtml/tag/index.phtml b/app/code/core/Mage/Tag/view/adminhtml/tag/index.phtml index 5fc4a9a18201d4aad8dc273f364242bbd8c5ab17..b9a0714dd7a469305d03e9c09c2cddef693c2aa5 100644 --- a/app/code/core/Mage/Tag/view/adminhtml/tag/index.phtml +++ b/app/code/core/Mage/Tag/view/adminhtml/tag/index.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Tag/view/frontend/cloud.phtml b/app/code/core/Mage/Tag/view/frontend/cloud.phtml index 79fa4508a9ad449b2b9778a2e1ca57390ca4021f..f61ecfab1686bdee9f7ec11c28863a83d6b3bf3e 100644 --- a/app/code/core/Mage/Tag/view/frontend/cloud.phtml +++ b/app/code/core/Mage/Tag/view/frontend/cloud.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Tag/view/frontend/customer/recent.phtml b/app/code/core/Mage/Tag/view/frontend/customer/recent.phtml index 0309f906b98dfe154d607207f012c9f3e6de0983..b5c427d382f09ca0623f9aacfbc9ef7b18d6f494 100644 --- a/app/code/core/Mage/Tag/view/frontend/customer/recent.phtml +++ b/app/code/core/Mage/Tag/view/frontend/customer/recent.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Tag/view/frontend/customer/tags.phtml b/app/code/core/Mage/Tag/view/frontend/customer/tags.phtml index dbc335ce3c402c62ca267d0af5583988dbddbd29..ed6e937b1f16c5eae7301c37b4239bb36c3e31a7 100644 --- a/app/code/core/Mage/Tag/view/frontend/customer/tags.phtml +++ b/app/code/core/Mage/Tag/view/frontend/customer/tags.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Tag/view/frontend/customer/view.phtml b/app/code/core/Mage/Tag/view/frontend/customer/view.phtml index 0f5750bbac532a5cdd84870db290d8b3a8bf7484..965608db1778458796d14c79688a1e7390637406 100644 --- a/app/code/core/Mage/Tag/view/frontend/customer/view.phtml +++ b/app/code/core/Mage/Tag/view/frontend/customer/view.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Tag/view/frontend/layout.xml b/app/code/core/Mage/Tag/view/frontend/layout.xml index 928b7e9c8e2e49652cc5b125c0588914fa38a5d4..5c2d0739827e053e326470b3da26717f85a468b5 100644 --- a/app/code/core/Mage/Tag/view/frontend/layout.xml +++ b/app/code/core/Mage/Tag/view/frontend/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Tag/view/frontend/list.js b/app/code/core/Mage/Tag/view/frontend/list.js index d21730a9b6abcf91cb90f13decb2df27a1ec5e68..034ce14d829f76b4e36fc34981dee8c1985c20f2 100644 --- a/app/code/core/Mage/Tag/view/frontend/list.js +++ b/app/code/core/Mage/Tag/view/frontend/list.js @@ -19,7 +19,7 @@ * * @category tab * @package mage - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /*jshint browser:true jquery:true */ diff --git a/app/code/core/Mage/Tag/view/frontend/list.phtml b/app/code/core/Mage/Tag/view/frontend/list.phtml index c4d21db8c7acd94301fa79efe0c5f3f665cd6b11..728ff6c20dff00fcc3169dadd41de244a880c5aa 100644 --- a/app/code/core/Mage/Tag/view/frontend/list.phtml +++ b/app/code/core/Mage/Tag/view/frontend/list.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Tag/view/frontend/popular.phtml b/app/code/core/Mage/Tag/view/frontend/popular.phtml index ecb60c290d5a7e587e84445acb8e9476f8364be5..f58f9ee34d86004210c7be90382390b4c2fecd06 100644 --- a/app/code/core/Mage/Tag/view/frontend/popular.phtml +++ b/app/code/core/Mage/Tag/view/frontend/popular.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Tag/view/frontend/product/rss/link.phtml b/app/code/core/Mage/Tag/view/frontend/product/rss/link.phtml index 9b85ed5fe34edcd25f6969166a187c7241036a15..111648c9f9f7d6b5378b8cd060348503f80e6259 100644 --- a/app/code/core/Mage/Tag/view/frontend/product/rss/link.phtml +++ b/app/code/core/Mage/Tag/view/frontend/product/rss/link.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /** @var $this Mage_Tag_Block_Catalog_Product_Rss_Link */ diff --git a/app/code/core/Mage/Tag/view/frontend/rss.xml b/app/code/core/Mage/Tag/view/frontend/rss.xml index 558485b197ecb705a7c215de4fc2a7c343d42382..9d51d5f01ba27bfe5b0385f6abc8e18ecb8640b6 100644 --- a/app/code/core/Mage/Tag/view/frontend/rss.xml +++ b/app/code/core/Mage/Tag/view/frontend/rss.xml @@ -21,7 +21,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Tax/Block/Adminhtml/Frontend/Region/Updater.php b/app/code/core/Mage/Tax/Block/Adminhtml/Frontend/Region/Updater.php index ba89df77365578cd947ff8f52b3e0c7825ef292d..98a3ae23d0d0997de44fac8142fbe0bd3da5bafd 100644 --- a/app/code/core/Mage/Tax/Block/Adminhtml/Frontend/Region/Updater.php +++ b/app/code/core/Mage/Tax/Block/Adminhtml/Frontend/Region/Updater.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tax - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tax/Block/Checkout/Discount.php b/app/code/core/Mage/Tax/Block/Checkout/Discount.php index 7ac53d2c8f0428cab81599459c1dea76f049b2fc..2299b5f974ac37a780e2a9a9b90bcd7dda5b0d2f 100644 --- a/app/code/core/Mage/Tax/Block/Checkout/Discount.php +++ b/app/code/core/Mage/Tax/Block/Checkout/Discount.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tax - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tax/Block/Checkout/Grandtotal.php b/app/code/core/Mage/Tax/Block/Checkout/Grandtotal.php index 2f564abebfceb706ccf8ccdcc200ef25fabd3f15..373afb7f5066983ec9b0618d9fe50fcaa615aee0 100644 --- a/app/code/core/Mage/Tax/Block/Checkout/Grandtotal.php +++ b/app/code/core/Mage/Tax/Block/Checkout/Grandtotal.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tax - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tax/Block/Checkout/Shipping.php b/app/code/core/Mage/Tax/Block/Checkout/Shipping.php index 64ec20884a3c771f0fc6934b0832fba6db266467..b3d2f205768a21b2d910f6741447bb5da0593d6e 100644 --- a/app/code/core/Mage/Tax/Block/Checkout/Shipping.php +++ b/app/code/core/Mage/Tax/Block/Checkout/Shipping.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tax - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tax/Block/Checkout/Subtotal.php b/app/code/core/Mage/Tax/Block/Checkout/Subtotal.php index f2c53d79ec4e43dc54ca5c1dec99b6abe02f9308..f1657d054be370e22528cc76ab48b6b892f43ead 100644 --- a/app/code/core/Mage/Tax/Block/Checkout/Subtotal.php +++ b/app/code/core/Mage/Tax/Block/Checkout/Subtotal.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tax - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tax/Block/Checkout/Tax.php b/app/code/core/Mage/Tax/Block/Checkout/Tax.php index 4b475f780b7f34c560e06ef090c94c482eb78b54..3b2a79502225ba44bb993d0885dbfed1d47af79e 100644 --- a/app/code/core/Mage/Tax/Block/Checkout/Tax.php +++ b/app/code/core/Mage/Tax/Block/Checkout/Tax.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tax - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tax/Block/Sales/Order/Tax.php b/app/code/core/Mage/Tax/Block/Sales/Order/Tax.php index d6119704c1ed86956555148785aaefc1de51b884..7c0887cbda7eb9cd33c76c721d99ad4f32ae1319 100644 --- a/app/code/core/Mage/Tax/Block/Sales/Order/Tax.php +++ b/app/code/core/Mage/Tax/Block/Sales/Order/Tax.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tax - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tax/Exception.php b/app/code/core/Mage/Tax/Exception.php index aec110c4f85fcccea504ecc04a4626d0ab312ada..9075fd8abc860a50b3a2e6270fa139e651ebce0f 100644 --- a/app/code/core/Mage/Tax/Exception.php +++ b/app/code/core/Mage/Tax/Exception.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tax - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tax/Helper/Data.php b/app/code/core/Mage/Tax/Helper/Data.php index 23232edf6307c9fb323128380553442b3eeb8c67..720defc1443e86cb4f8e1c600769dd56868d7755 100644 --- a/app/code/core/Mage/Tax/Helper/Data.php +++ b/app/code/core/Mage/Tax/Helper/Data.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tax - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tax/Model/Calculation.php b/app/code/core/Mage/Tax/Model/Calculation.php index 27a12228f66d96bcc983e0a90aae6af0f830058e..d3b45a906d8002cfa0a93ee79ccc51283537d004 100644 --- a/app/code/core/Mage/Tax/Model/Calculation.php +++ b/app/code/core/Mage/Tax/Model/Calculation.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tax - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tax/Model/Calculation/Rate.php b/app/code/core/Mage/Tax/Model/Calculation/Rate.php index f52641f8d87fd1721d48921e68d9b066ba07a55f..f62826d00385897a8e71b6873634250f0b1d0ec0 100644 --- a/app/code/core/Mage/Tax/Model/Calculation/Rate.php +++ b/app/code/core/Mage/Tax/Model/Calculation/Rate.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tax - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tax/Model/Calculation/Rate/Title.php b/app/code/core/Mage/Tax/Model/Calculation/Rate/Title.php index 864956d9c36245d0559365160350c62609ec3cff..62ed03ca2bbb14dca8c974220ef81ce9225efc55 100644 --- a/app/code/core/Mage/Tax/Model/Calculation/Rate/Title.php +++ b/app/code/core/Mage/Tax/Model/Calculation/Rate/Title.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tax - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tax/Model/Calculation/Rule.php b/app/code/core/Mage/Tax/Model/Calculation/Rule.php index 35dacf0ae38c4ae165f53f6b70941ae1ebf3962e..924a96399e4894f509096380f779431f6c3840da 100644 --- a/app/code/core/Mage/Tax/Model/Calculation/Rule.php +++ b/app/code/core/Mage/Tax/Model/Calculation/Rule.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tax - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tax/Model/Class.php b/app/code/core/Mage/Tax/Model/Class.php index bf4fab3b817f4ab813a7ca46f6b2d60da63ba4c8..db026831c8b874df2f9181dcfb261476c7872ff9 100644 --- a/app/code/core/Mage/Tax/Model/Class.php +++ b/app/code/core/Mage/Tax/Model/Class.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tax - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tax/Model/Class/Source/Customer.php b/app/code/core/Mage/Tax/Model/Class/Source/Customer.php index 29839bbc2d22ee8cb3230ab6f5f1cf47db9dda07..633155e5843b3b6b0c6f8a89467450722ad53a8c 100644 --- a/app/code/core/Mage/Tax/Model/Class/Source/Customer.php +++ b/app/code/core/Mage/Tax/Model/Class/Source/Customer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tax - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tax/Model/Class/Source/Product.php b/app/code/core/Mage/Tax/Model/Class/Source/Product.php index 86aed51cf36159d7ef7dfbafe014dce9eb790244..3da5f98f2daa0a92d4df776619d76d46ebdb67c0 100644 --- a/app/code/core/Mage/Tax/Model/Class/Source/Product.php +++ b/app/code/core/Mage/Tax/Model/Class/Source/Product.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tax - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tax/Model/Config.php b/app/code/core/Mage/Tax/Model/Config.php index c0db6713d7b0e833c440f83a66e4b5b20abe710e..167628528c726fdfdfbd9b1ff268d345cd1d098c 100644 --- a/app/code/core/Mage/Tax/Model/Config.php +++ b/app/code/core/Mage/Tax/Model/Config.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tax - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tax/Model/Config/Price/Include.php b/app/code/core/Mage/Tax/Model/Config/Price/Include.php index 437e1d75a0c126d6a10525db7b98af0a2d47c367..4f90549e318de25dde7ba87e3ef3d32ffbca8220 100644 --- a/app/code/core/Mage/Tax/Model/Config/Price/Include.php +++ b/app/code/core/Mage/Tax/Model/Config/Price/Include.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tax - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Tax_Model_Config_Price_Include extends Mage_Core_Model_Config_Data diff --git a/app/code/core/Mage/Tax/Model/Config/Source/Apply/On.php b/app/code/core/Mage/Tax/Model/Config/Source/Apply/On.php index ce390db87e4ffc3afce33a4911afba417e12be66..7381d235748c9304542e0d967cb17822b9d0f8c2 100644 --- a/app/code/core/Mage/Tax/Model/Config/Source/Apply/On.php +++ b/app/code/core/Mage/Tax/Model/Config/Source/Apply/On.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tax - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Tax_Model_Config_Source_Apply_On implements Mage_Core_Model_Option_ArrayInterface diff --git a/app/code/core/Mage/Tax/Model/Config/Source/Basedon.php b/app/code/core/Mage/Tax/Model/Config/Source/Basedon.php index 76293b9311aa752e0d88429d1217cf103e13b598..1b53b6550c1fe06937d8151f7645f6941b2ce6c2 100644 --- a/app/code/core/Mage/Tax/Model/Config/Source/Basedon.php +++ b/app/code/core/Mage/Tax/Model/Config/Source/Basedon.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tax - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Tax_Model_Config_Source_Basedon implements Mage_Core_Model_Option_ArrayInterface diff --git a/app/code/core/Mage/Tax/Model/Config/Source/Catalog.php b/app/code/core/Mage/Tax/Model/Config/Source/Catalog.php index 4640c7df79c21eea285bcbfe0e4d27b87e373597..bfb03d3e00cfe7ac788c377420e2dc1f39e73730 100644 --- a/app/code/core/Mage/Tax/Model/Config/Source/Catalog.php +++ b/app/code/core/Mage/Tax/Model/Config/Source/Catalog.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tax - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Tax_Model_Config_Source_Catalog implements Mage_Core_Model_Option_ArrayInterface diff --git a/app/code/core/Mage/Tax/Model/Config/Source/Class/Customer.php b/app/code/core/Mage/Tax/Model/Config/Source/Class/Customer.php index 9168088dab515084702e497e49a676858fd91b0c..198ea1bc0c7e786e5d098f90b7bf27aebb4a3a00 100644 --- a/app/code/core/Mage/Tax/Model/Config/Source/Class/Customer.php +++ b/app/code/core/Mage/Tax/Model/Config/Source/Class/Customer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tax - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tax/Model/Config/Source/Class/Product.php b/app/code/core/Mage/Tax/Model/Config/Source/Class/Product.php index eba0613bf9dd4e77b4f840d885f41b753aa86f2b..82055603a157bec2d1aaea4bf84c9f500836d431 100644 --- a/app/code/core/Mage/Tax/Model/Config/Source/Class/Product.php +++ b/app/code/core/Mage/Tax/Model/Config/Source/Class/Product.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tax - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Tax_Model_Config_Source_Class_Product implements Mage_Core_Model_Option_ArrayInterface diff --git a/app/code/core/Mage/Tax/Model/Observer.php b/app/code/core/Mage/Tax/Model/Observer.php index 8b4a0be47964f92fab458a9c771dd46fd4473df5..b32241d372de798f32c8468ff69a324e618d0478 100644 --- a/app/code/core/Mage/Tax/Model/Observer.php +++ b/app/code/core/Mage/Tax/Model/Observer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tax - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tax/Model/Resource/Calculation.php b/app/code/core/Mage/Tax/Model/Resource/Calculation.php index 86c5eac1812eef60cadbd2f963f10c7d04d0f3f8..edacc77ad1e28c21036776941a8ffd075b434a9b 100755 --- a/app/code/core/Mage/Tax/Model/Resource/Calculation.php +++ b/app/code/core/Mage/Tax/Model/Resource/Calculation.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tax - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tax/Model/Resource/Calculation/Collection.php b/app/code/core/Mage/Tax/Model/Resource/Calculation/Collection.php index 91c60cba847205f2d304cbce04b7e11b73219777..ed42301cb9e7a833df37b52e5aebc384edc7430d 100755 --- a/app/code/core/Mage/Tax/Model/Resource/Calculation/Collection.php +++ b/app/code/core/Mage/Tax/Model/Resource/Calculation/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tax - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tax/Model/Resource/Calculation/Grid/Collection.php b/app/code/core/Mage/Tax/Model/Resource/Calculation/Grid/Collection.php index e2c75b6677358da8478f842e8223ee4d9bf4d1f2..41c43e376f0e6925144a71ac6d6fb4507e92268a 100644 --- a/app/code/core/Mage/Tax/Model/Resource/Calculation/Grid/Collection.php +++ b/app/code/core/Mage/Tax/Model/Resource/Calculation/Grid/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tax - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tax/Model/Resource/Calculation/Rate.php b/app/code/core/Mage/Tax/Model/Resource/Calculation/Rate.php index 1b742945681af22b94dbb94400125a9a898be813..f784174e10e1ba060547a8255e692fcfcc7b6a43 100755 --- a/app/code/core/Mage/Tax/Model/Resource/Calculation/Rate.php +++ b/app/code/core/Mage/Tax/Model/Resource/Calculation/Rate.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tax - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tax/Model/Resource/Calculation/Rate/Collection.php b/app/code/core/Mage/Tax/Model/Resource/Calculation/Rate/Collection.php index aa378e0ecfbf85b16f1a72f4aa4b8558d47cdb2d..4dda5388ae666a4a32f59e14521d0b1b94bff6ae 100755 --- a/app/code/core/Mage/Tax/Model/Resource/Calculation/Rate/Collection.php +++ b/app/code/core/Mage/Tax/Model/Resource/Calculation/Rate/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tax - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tax/Model/Resource/Calculation/Rate/Title.php b/app/code/core/Mage/Tax/Model/Resource/Calculation/Rate/Title.php index 0f8c364cfd0ce48be690d4413ae26305ab41b0f6..6f74d3e1e22309d7492b82f42ac5c2d7e9cbcc2d 100755 --- a/app/code/core/Mage/Tax/Model/Resource/Calculation/Rate/Title.php +++ b/app/code/core/Mage/Tax/Model/Resource/Calculation/Rate/Title.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tax - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tax/Model/Resource/Calculation/Rate/Title/Collection.php b/app/code/core/Mage/Tax/Model/Resource/Calculation/Rate/Title/Collection.php index 0360fa54949e38720b93a6a0dadc08a7088617c7..dc9b3a90622c3cc31576e6969a165079b1033f47 100755 --- a/app/code/core/Mage/Tax/Model/Resource/Calculation/Rate/Title/Collection.php +++ b/app/code/core/Mage/Tax/Model/Resource/Calculation/Rate/Title/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tax - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tax/Model/Resource/Calculation/Rule.php b/app/code/core/Mage/Tax/Model/Resource/Calculation/Rule.php index aa99e207af9755a4434559d777a6ff17292e2692..1d86d16d95df83663f79ddf7220ceba62c51446e 100755 --- a/app/code/core/Mage/Tax/Model/Resource/Calculation/Rule.php +++ b/app/code/core/Mage/Tax/Model/Resource/Calculation/Rule.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tax - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tax/Model/Resource/Calculation/Rule/Collection.php b/app/code/core/Mage/Tax/Model/Resource/Calculation/Rule/Collection.php index 189d396d6ab63122013ad779b1062091f5254869..928b672d692f3f07687f8a38021b3fd7e76d64d1 100755 --- a/app/code/core/Mage/Tax/Model/Resource/Calculation/Rule/Collection.php +++ b/app/code/core/Mage/Tax/Model/Resource/Calculation/Rule/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tax - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tax/Model/Resource/Class.php b/app/code/core/Mage/Tax/Model/Resource/Class.php index 8ee2095f9c4cc75a02fb20719f9e790f00ca15b0..6390c855704162a2cddb9fcd31777b1f675cab07 100755 --- a/app/code/core/Mage/Tax/Model/Resource/Class.php +++ b/app/code/core/Mage/Tax/Model/Resource/Class.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tax - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tax/Model/Resource/Class/Collection.php b/app/code/core/Mage/Tax/Model/Resource/Class/Collection.php index 819f50f29f31dd630dce2ab084f4132bef207783..d177b96bd9e430bde301919b996164fa2a6c9f96 100755 --- a/app/code/core/Mage/Tax/Model/Resource/Class/Collection.php +++ b/app/code/core/Mage/Tax/Model/Resource/Class/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tax - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tax/Model/Resource/Report/Collection.php b/app/code/core/Mage/Tax/Model/Resource/Report/Collection.php index 812824ae567dc46cd4464ed78dc11e3f82e53248..7cf59f8991ddb1099bf45fb452fd054d31c45635 100755 --- a/app/code/core/Mage/Tax/Model/Resource/Report/Collection.php +++ b/app/code/core/Mage/Tax/Model/Resource/Report/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tax - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tax/Model/Resource/Report/Tax.php b/app/code/core/Mage/Tax/Model/Resource/Report/Tax.php index 24f7d33247a4844184a07277ef26d095f68320c7..a20fdf032b919cbdde25b4e83f525809eec9b850 100755 --- a/app/code/core/Mage/Tax/Model/Resource/Report/Tax.php +++ b/app/code/core/Mage/Tax/Model/Resource/Report/Tax.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tax - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tax/Model/Resource/Report/Tax/Createdat.php b/app/code/core/Mage/Tax/Model/Resource/Report/Tax/Createdat.php index 00ff8fe7bec4879cbeeb6bd3fd77e1666a99980a..4b15a2d9b1c12ede86ee5f820d0c533e14d4862d 100644 --- a/app/code/core/Mage/Tax/Model/Resource/Report/Tax/Createdat.php +++ b/app/code/core/Mage/Tax/Model/Resource/Report/Tax/Createdat.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tax - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tax/Model/Resource/Report/Tax/Updatedat.php b/app/code/core/Mage/Tax/Model/Resource/Report/Tax/Updatedat.php index 73ac027d0ae31d644cee68341e5ada8259a461fd..a7459e806b9ee38b462745cbc56a525e72a916cb 100644 --- a/app/code/core/Mage/Tax/Model/Resource/Report/Tax/Updatedat.php +++ b/app/code/core/Mage/Tax/Model/Resource/Report/Tax/Updatedat.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tax - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tax/Model/Resource/Report/Updatedat/Collection.php b/app/code/core/Mage/Tax/Model/Resource/Report/Updatedat/Collection.php index 3e9407d5c746df887a8b8a6277ef4fce89895d30..ba20c8a54c743c5cf5c95f320944e8c876aa8b40 100755 --- a/app/code/core/Mage/Tax/Model/Resource/Report/Updatedat/Collection.php +++ b/app/code/core/Mage/Tax/Model/Resource/Report/Updatedat/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tax - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tax/Model/Resource/Sales/Order/Tax.php b/app/code/core/Mage/Tax/Model/Resource/Sales/Order/Tax.php index f1a6b4bed9af533c898b2d96ec8f6a1effb27b24..c21bcd1862e68b094c89ed575961da142ff6392d 100755 --- a/app/code/core/Mage/Tax/Model/Resource/Sales/Order/Tax.php +++ b/app/code/core/Mage/Tax/Model/Resource/Sales/Order/Tax.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tax - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tax/Model/Resource/Sales/Order/Tax/Collection.php b/app/code/core/Mage/Tax/Model/Resource/Sales/Order/Tax/Collection.php index 0c2ec5129e6e18fae0eac047b50ed1ff9d609de4..08aac22d74264d809b77a400adb76cf858921b66 100755 --- a/app/code/core/Mage/Tax/Model/Resource/Sales/Order/Tax/Collection.php +++ b/app/code/core/Mage/Tax/Model/Resource/Sales/Order/Tax/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tax - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tax/Model/Resource/Sales/Order/Tax/Item.php b/app/code/core/Mage/Tax/Model/Resource/Sales/Order/Tax/Item.php index 4ca30f4b7b47fb3dc3c99f6c6136e70ba225e392..ebbd1783083f371d6a89124f5ade4cffb86334b4 100755 --- a/app/code/core/Mage/Tax/Model/Resource/Sales/Order/Tax/Item.php +++ b/app/code/core/Mage/Tax/Model/Resource/Sales/Order/Tax/Item.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tax - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tax/Model/Resource/Sales/Order/Tax/Item/Collection.php b/app/code/core/Mage/Tax/Model/Resource/Sales/Order/Tax/Item/Collection.php index ba97ec58b3c25d1b8381c709b09a8eddc978ce12..b915337835933205b85ce07545b03b99dd87829f 100755 --- a/app/code/core/Mage/Tax/Model/Resource/Sales/Order/Tax/Item/Collection.php +++ b/app/code/core/Mage/Tax/Model/Resource/Sales/Order/Tax/Item/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tax - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tax/Model/Resource/Setup.php b/app/code/core/Mage/Tax/Model/Resource/Setup.php index 374ed41d68008e6395fa6781dd80c5b9be1adebe..4ce113f62c9ee70d8fa5bca05c6d1b2bc615ccfa 100755 --- a/app/code/core/Mage/Tax/Model/Resource/Setup.php +++ b/app/code/core/Mage/Tax/Model/Resource/Setup.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tax - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tax/Model/Sales/Order/Tax.php b/app/code/core/Mage/Tax/Model/Sales/Order/Tax.php index e1d30be4d2ec194679091773d55cee20748e9aac..277dbae90fe819aeaffed0d0302bb7f84e354e17 100644 --- a/app/code/core/Mage/Tax/Model/Sales/Order/Tax.php +++ b/app/code/core/Mage/Tax/Model/Sales/Order/Tax.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tax - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tax/Model/Sales/Order/Tax/Item.php b/app/code/core/Mage/Tax/Model/Sales/Order/Tax/Item.php index 520537b920008e7a2a9bf7360d027881b586bcb7..0db06d89cad8c96868baea7e846bee4ff1eae006 100644 --- a/app/code/core/Mage/Tax/Model/Sales/Order/Tax/Item.php +++ b/app/code/core/Mage/Tax/Model/Sales/Order/Tax/Item.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tax - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tax/Model/Sales/Pdf/Grandtotal.php b/app/code/core/Mage/Tax/Model/Sales/Pdf/Grandtotal.php index fb6a4c818fab28e33037ca48b1ab7e69f275b3b4..b0425f3a796ceeb4c2565ae1537a0da4f156eaf1 100644 --- a/app/code/core/Mage/Tax/Model/Sales/Pdf/Grandtotal.php +++ b/app/code/core/Mage/Tax/Model/Sales/Pdf/Grandtotal.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tax - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tax/Model/Sales/Pdf/Shipping.php b/app/code/core/Mage/Tax/Model/Sales/Pdf/Shipping.php index 02433bec7d10c31a6394cd7f1ae14aac79232198..d7d81c0c93cc326a85c99e5d0099d18b27c98b74 100644 --- a/app/code/core/Mage/Tax/Model/Sales/Pdf/Shipping.php +++ b/app/code/core/Mage/Tax/Model/Sales/Pdf/Shipping.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tax - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tax/Model/Sales/Pdf/Subtotal.php b/app/code/core/Mage/Tax/Model/Sales/Pdf/Subtotal.php index 32823544186369f9b1d1be26043ffaf907913a57..05fb14b3297526470092b3d6b64fb31eb36889ba 100644 --- a/app/code/core/Mage/Tax/Model/Sales/Pdf/Subtotal.php +++ b/app/code/core/Mage/Tax/Model/Sales/Pdf/Subtotal.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tax - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tax/Model/Sales/Pdf/Tax.php b/app/code/core/Mage/Tax/Model/Sales/Pdf/Tax.php index 6938998f4a7289dd15bb9f5539347cfd3dc9d303..4d48c52b36b6d7c62343eb1da586d16692c90cb5 100644 --- a/app/code/core/Mage/Tax/Model/Sales/Pdf/Tax.php +++ b/app/code/core/Mage/Tax/Model/Sales/Pdf/Tax.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tax - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tax/Model/Sales/Total/Quote/Discount.php b/app/code/core/Mage/Tax/Model/Sales/Total/Quote/Discount.php index 16c7e94e865ffa22381fb34eaea69605990010ab..24e073d45352aba000df7c0afce251cdc3d88502 100644 --- a/app/code/core/Mage/Tax/Model/Sales/Total/Quote/Discount.php +++ b/app/code/core/Mage/Tax/Model/Sales/Total/Quote/Discount.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tax - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tax/Model/Sales/Total/Quote/Nominal/Subtotal.php b/app/code/core/Mage/Tax/Model/Sales/Total/Quote/Nominal/Subtotal.php index d5d8d735e2cfbd7090d2f17ab62237d850ee49be..90ffa6c1dbe069617ba0c422fe57a7cb096059c3 100644 --- a/app/code/core/Mage/Tax/Model/Sales/Total/Quote/Nominal/Subtotal.php +++ b/app/code/core/Mage/Tax/Model/Sales/Total/Quote/Nominal/Subtotal.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tax - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tax/Model/Sales/Total/Quote/Nominal/Tax.php b/app/code/core/Mage/Tax/Model/Sales/Total/Quote/Nominal/Tax.php index f67a92074dd3e8e363876b20a1d883a5ab5b6d89..80ea107521ff5809fbc976a74888a32d80404b9f 100644 --- a/app/code/core/Mage/Tax/Model/Sales/Total/Quote/Nominal/Tax.php +++ b/app/code/core/Mage/Tax/Model/Sales/Total/Quote/Nominal/Tax.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tax - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tax/Model/Sales/Total/Quote/Shipping.php b/app/code/core/Mage/Tax/Model/Sales/Total/Quote/Shipping.php index 33dc907d87aebb4e164f5ef983eaba6befddcb63..f7d658f0301952a250b5b6f3118d99408bed4998 100644 --- a/app/code/core/Mage/Tax/Model/Sales/Total/Quote/Shipping.php +++ b/app/code/core/Mage/Tax/Model/Sales/Total/Quote/Shipping.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tax - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tax/Model/Sales/Total/Quote/Subtotal.php b/app/code/core/Mage/Tax/Model/Sales/Total/Quote/Subtotal.php index 7de78f1775691348d5b1f10b191677dc3bd89c4a..e1859c503548ca701f9f2d0dfe8f436acc1dacb8 100644 --- a/app/code/core/Mage/Tax/Model/Sales/Total/Quote/Subtotal.php +++ b/app/code/core/Mage/Tax/Model/Sales/Total/Quote/Subtotal.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tax - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tax/Model/Sales/Total/Quote/Tax.php b/app/code/core/Mage/Tax/Model/Sales/Total/Quote/Tax.php index 4dfb59699a5a7f2e064bc206453b076f405cf654..6a1ad73b3d74c81ac4e8a070a1d4f3a078c4ce89 100644 --- a/app/code/core/Mage/Tax/Model/Sales/Total/Quote/Tax.php +++ b/app/code/core/Mage/Tax/Model/Sales/Total/Quote/Tax.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tax - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tax/Model/System/Config/Source/Algorithm.php b/app/code/core/Mage/Tax/Model/System/Config/Source/Algorithm.php index b62c2e83415d7a9a4400be4faa0d2d9e3128fa3e..67c3855ef4f0021f2be4493344a74e322adbc8a6 100644 --- a/app/code/core/Mage/Tax/Model/System/Config/Source/Algorithm.php +++ b/app/code/core/Mage/Tax/Model/System/Config/Source/Algorithm.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tax - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tax/Model/System/Config/Source/Apply.php b/app/code/core/Mage/Tax/Model/System/Config/Source/Apply.php index e4bdf580f66f94954c9463a81fd5aac9e4ce2b6b..9a59c43508239704c61473d1d294c00e1c1b96dd 100644 --- a/app/code/core/Mage/Tax/Model/System/Config/Source/Apply.php +++ b/app/code/core/Mage/Tax/Model/System/Config/Source/Apply.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tax - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tax/Model/System/Config/Source/PriceType.php b/app/code/core/Mage/Tax/Model/System/Config/Source/PriceType.php index 549553eae9076566ecc14979979827e807567caf..42fab3c031c8ad8f418b17fb9632e893a3634410 100644 --- a/app/code/core/Mage/Tax/Model/System/Config/Source/PriceType.php +++ b/app/code/core/Mage/Tax/Model/System/Config/Source/PriceType.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tax - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tax/Model/System/Config/Source/Tax/Country.php b/app/code/core/Mage/Tax/Model/System/Config/Source/Tax/Country.php index 5753e01c64784637a58b5d4f91bfda7ee2c955e6..3172164109374fb57b66aadf1aafb1b8ce5331f6 100644 --- a/app/code/core/Mage/Tax/Model/System/Config/Source/Tax/Country.php +++ b/app/code/core/Mage/Tax/Model/System/Config/Source/Tax/Country.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tax - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tax/Model/System/Config/Source/Tax/Display/Type.php b/app/code/core/Mage/Tax/Model/System/Config/Source/Tax/Display/Type.php index f3d902e8db85fc6b1ebb3bb1d8bc3ee5134476de..ac520c5592f4d1c13dfe58622397584c36b427ec 100644 --- a/app/code/core/Mage/Tax/Model/System/Config/Source/Tax/Display/Type.php +++ b/app/code/core/Mage/Tax/Model/System/Config/Source/Tax/Display/Type.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tax - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tax/Model/System/Config/Source/Tax/Region.php b/app/code/core/Mage/Tax/Model/System/Config/Source/Tax/Region.php index 5b148be309d018a3a3c34b0ab720699f57136aba..a6ad30eb683f6c9dfbd4b324f1ef2cf93d01253f 100644 --- a/app/code/core/Mage/Tax/Model/System/Config/Source/Tax/Region.php +++ b/app/code/core/Mage/Tax/Model/System/Config/Source/Tax/Region.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tax - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tax/data/tax_setup/data-install-1.6.0.0.php b/app/code/core/Mage/Tax/data/tax_setup/data-install-1.6.0.0.php index 07e38043b5e7175a5c2155f46f6298331fa33b3c..e5c0be9f75b93f7f734b026ad9cb4dedd47434c1 100644 --- a/app/code/core/Mage/Tax/data/tax_setup/data-install-1.6.0.0.php +++ b/app/code/core/Mage/Tax/data/tax_setup/data-install-1.6.0.0.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tax - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ /** @var $installer Mage_Tax_Model_Resource_Setup */ diff --git a/app/code/core/Mage/Tax/data/tax_setup/data-upgrade-1.6.0.3-1.6.0.4.php b/app/code/core/Mage/Tax/data/tax_setup/data-upgrade-1.6.0.3-1.6.0.4.php index ae795943c35fc9ecb4fd33086ea0d0dafbbdd0a4..cd1331c7cb531267476d5aa4f7fe53935ba7c2fe 100644 --- a/app/code/core/Mage/Tax/data/tax_setup/data-upgrade-1.6.0.3-1.6.0.4.php +++ b/app/code/core/Mage/Tax/data/tax_setup/data-upgrade-1.6.0.3-1.6.0.4.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tax - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tax/etc/adminhtml/acl.xml b/app/code/core/Mage/Tax/etc/adminhtml/acl.xml index 1834e5995d424b48d44aa979e1dd8aacd37e8a74..9533ff25070ca512e67fbe2b1059eb137894fa7b 100644 --- a/app/code/core/Mage/Tax/etc/adminhtml/acl.xml +++ b/app/code/core/Mage/Tax/etc/adminhtml/acl.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Tax - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Tax/etc/adminhtml/menu.xml b/app/code/core/Mage/Tax/etc/adminhtml/menu.xml index cac9b232bc95db61b1f460d09e65a94db68f1d4d..c758dc3317de9f1117d2d02fd58d5be2bb17c1c0 100644 --- a/app/code/core/Mage/Tax/etc/adminhtml/menu.xml +++ b/app/code/core/Mage/Tax/etc/adminhtml/menu.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Tax - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Tax/etc/adminhtml/system.xml b/app/code/core/Mage/Tax/etc/adminhtml/system.xml index 2c0c63ff7de42c4f35039dd950036eb0fd0c7020..4912d50068aa1574ec7e21a09affea75a2f24314 100644 --- a/app/code/core/Mage/Tax/etc/adminhtml/system.xml +++ b/app/code/core/Mage/Tax/etc/adminhtml/system.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Tax - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Tax/etc/config.xml b/app/code/core/Mage/Tax/etc/config.xml index 2b135690a28e9ea5a01cc07189d1735962b8ac8e..13fd2d77cab84ca291b19e76eaedb6857eb75081 100644 --- a/app/code/core/Mage/Tax/etc/config.xml +++ b/app/code/core/Mage/Tax/etc/config.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Tax - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Tax/etc/fieldset.xml b/app/code/core/Mage/Tax/etc/fieldset.xml index a061e595b13aa1ec4174c0e43f1dd6dcbc0eadde..c4fdc7ded4d1d6dccdf15698ce32491ced4abec1 100644 --- a/app/code/core/Mage/Tax/etc/fieldset.xml +++ b/app/code/core/Mage/Tax/etc/fieldset.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Tax - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Tax/sql/tax_setup/install-1.6.0.0.php b/app/code/core/Mage/Tax/sql/tax_setup/install-1.6.0.0.php index 5447897dd2df9bd081403b963d7396d2c5ae11df..1f4c946bf8f886e33c27c99f1003be2439288e3d 100644 --- a/app/code/core/Mage/Tax/sql/tax_setup/install-1.6.0.0.php +++ b/app/code/core/Mage/Tax/sql/tax_setup/install-1.6.0.0.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tax - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ /** @var $installer Mage_Tax_Model_Resource_Setup */ diff --git a/app/code/core/Mage/Tax/sql/tax_setup/upgrade-1.6.0.0-1.6.0.1.php b/app/code/core/Mage/Tax/sql/tax_setup/upgrade-1.6.0.0-1.6.0.1.php index 70ee3b16637c14086eb663c16903cba8f512b39d..4503954998a2be42017ad8b0e38272fcae5b49ae 100644 --- a/app/code/core/Mage/Tax/sql/tax_setup/upgrade-1.6.0.0-1.6.0.1.php +++ b/app/code/core/Mage/Tax/sql/tax_setup/upgrade-1.6.0.0-1.6.0.1.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Catalog - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tax/sql/tax_setup/upgrade-1.6.0.1-1.6.0.2.php b/app/code/core/Mage/Tax/sql/tax_setup/upgrade-1.6.0.1-1.6.0.2.php index 132ae54fae9798286ab8b5c4233e30f7307918c0..0d6f8deff2bb4d8be9b0f59ee920a0b4ff6bdc84 100644 --- a/app/code/core/Mage/Tax/sql/tax_setup/upgrade-1.6.0.1-1.6.0.2.php +++ b/app/code/core/Mage/Tax/sql/tax_setup/upgrade-1.6.0.1-1.6.0.2.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tax - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tax/sql/tax_setup/upgrade-1.6.0.2-1.6.0.3.php b/app/code/core/Mage/Tax/sql/tax_setup/upgrade-1.6.0.2-1.6.0.3.php index 608c88576a3f28593fa55bc50ea9f0adb54be015..ed11c54172515ec1d7b1f17a6c12f09095926da2 100644 --- a/app/code/core/Mage/Tax/sql/tax_setup/upgrade-1.6.0.2-1.6.0.3.php +++ b/app/code/core/Mage/Tax/sql/tax_setup/upgrade-1.6.0.2-1.6.0.3.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tax - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tax/sql/tax_setup/upgrade-1.6.0.4-1.6.0.5.php b/app/code/core/Mage/Tax/sql/tax_setup/upgrade-1.6.0.4-1.6.0.5.php index 52ef3f353c6ea4b5b7c9ce648d4e44942255ba97..46aa8d19302542f4af421467ab3ec3353a7101c7 100644 --- a/app/code/core/Mage/Tax/sql/tax_setup/upgrade-1.6.0.4-1.6.0.5.php +++ b/app/code/core/Mage/Tax/sql/tax_setup/upgrade-1.6.0.4-1.6.0.5.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Tax - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Tax/view/frontend/checkout/discount.phtml b/app/code/core/Mage/Tax/view/frontend/checkout/discount.phtml index 1c6bc75321deff51af4c9c092a150625fb68b2a2..1752f851ad76aa092222dc4d1459614122718dbb 100644 --- a/app/code/core/Mage/Tax/view/frontend/checkout/discount.phtml +++ b/app/code/core/Mage/Tax/view/frontend/checkout/discount.phtml @@ -20,6 +20,6 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Tax/view/frontend/checkout/grandtotal.phtml b/app/code/core/Mage/Tax/view/frontend/checkout/grandtotal.phtml index b2abff2703121fd1ff6d6bb6af7ec815985b4089..b72136335c4847a5fa5291655c265485562fa140 100644 --- a/app/code/core/Mage/Tax/view/frontend/checkout/grandtotal.phtml +++ b/app/code/core/Mage/Tax/view/frontend/checkout/grandtotal.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /** diff --git a/app/code/core/Mage/Tax/view/frontend/checkout/shipping.phtml b/app/code/core/Mage/Tax/view/frontend/checkout/shipping.phtml index b066a21a6f5bc13226732ee7556787f8d26dd345..0084e55424b03c840bb5044ab9980056c263b138 100644 --- a/app/code/core/Mage/Tax/view/frontend/checkout/shipping.phtml +++ b/app/code/core/Mage/Tax/view/frontend/checkout/shipping.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /** diff --git a/app/code/core/Mage/Tax/view/frontend/checkout/subtotal.phtml b/app/code/core/Mage/Tax/view/frontend/checkout/subtotal.phtml index ab8e2a83a99c91fb1739fbf8686bf3af86d4b89d..5090c8bd8a1e633b9934f583962682179c6c1b1c 100644 --- a/app/code/core/Mage/Tax/view/frontend/checkout/subtotal.phtml +++ b/app/code/core/Mage/Tax/view/frontend/checkout/subtotal.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /** diff --git a/app/code/core/Mage/Tax/view/frontend/checkout/tax.phtml b/app/code/core/Mage/Tax/view/frontend/checkout/tax.phtml index 97f1f81a4245dd012029fd25cb7c7eef8e89aaa9..eb9e45dc38841135ae42ee1cabddd31c16478f6b 100644 --- a/app/code/core/Mage/Tax/view/frontend/checkout/tax.phtml +++ b/app/code/core/Mage/Tax/view/frontend/checkout/tax.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /** diff --git a/app/code/core/Mage/Tax/view/frontend/order/tax.phtml b/app/code/core/Mage/Tax/view/frontend/order/tax.phtml index 7922c20502fa908988847d9c119fda9342ae770d..a13647f6fe87f42c7ad4a657070cd2d592b76c14 100644 --- a/app/code/core/Mage/Tax/view/frontend/order/tax.phtml +++ b/app/code/core/Mage/Tax/view/frontend/order/tax.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Theme/Block/Adminhtml/System/Design/Theme.php b/app/code/core/Mage/Theme/Block/Adminhtml/System/Design/Theme.php index 39e5dbbb6cf1c09d10bf440aaf498c3fa5a1ec13..81021666e4b39c110e27b5ed3cd52d6ddf075d74 100644 --- a/app/code/core/Mage/Theme/Block/Adminhtml/System/Design/Theme.php +++ b/app/code/core/Mage/Theme/Block/Adminhtml/System/Design/Theme.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Theme - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Theme/Block/Adminhtml/System/Design/Theme/Edit.php b/app/code/core/Mage/Theme/Block/Adminhtml/System/Design/Theme/Edit.php index f6c2bec195c8b457e933e0cdabb22d0e6204d50c..5a188c8f79bd219cad3bf0e75f28e97759863b43 100644 --- a/app/code/core/Mage/Theme/Block/Adminhtml/System/Design/Theme/Edit.php +++ b/app/code/core/Mage/Theme/Block/Adminhtml/System/Design/Theme/Edit.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Theme - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Theme/Block/Adminhtml/System/Design/Theme/Edit/Form.php b/app/code/core/Mage/Theme/Block/Adminhtml/System/Design/Theme/Edit/Form.php index 23d243164549ebdc95ce2544e4948c2553131c09..07874942181969e47ee75e73f3aef7cc7d52e52c 100644 --- a/app/code/core/Mage/Theme/Block/Adminhtml/System/Design/Theme/Edit/Form.php +++ b/app/code/core/Mage/Theme/Block/Adminhtml/System/Design/Theme/Edit/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Theme - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Theme/Block/Adminhtml/System/Design/Theme/Edit/Form/Element/Image.php b/app/code/core/Mage/Theme/Block/Adminhtml/System/Design/Theme/Edit/Form/Element/Image.php index de2cc37b945f63306c8a6cd79d1c8389d2876045..9dc4e17e290f86f479c71d30c46db9db36e0bcee 100644 --- a/app/code/core/Mage/Theme/Block/Adminhtml/System/Design/Theme/Edit/Form/Element/Image.php +++ b/app/code/core/Mage/Theme/Block/Adminhtml/System/Design/Theme/Edit/Form/Element/Image.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Theme - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Theme/Block/Adminhtml/System/Design/Theme/Edit/Tab/General.php b/app/code/core/Mage/Theme/Block/Adminhtml/System/Design/Theme/Edit/Tab/General.php index e65972e6fe6bf6ce4c9b61f96f580a7ff24c5bdb..50772251437d5cb10b286a3a36a539744d46dbb9 100644 --- a/app/code/core/Mage/Theme/Block/Adminhtml/System/Design/Theme/Edit/Tab/General.php +++ b/app/code/core/Mage/Theme/Block/Adminhtml/System/Design/Theme/Edit/Tab/General.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Theme - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ @@ -138,7 +138,7 @@ class Mage_Theme_Block_Adminhtml_System_Design_Theme_Edit_Tab_General 'label' => $this->__('Theme Version'), 'title' => $this->__('Theme Version'), 'name' => 'theme_version', - 'required' => $this->_getFieldAttrRequired(), + 'required' => $this->_isFieldAttrRequired(), 'note' => $this->_filterFieldNote($this->__('Example: 0.0.0.1 or 123.1.0.25-alpha1')) )); @@ -146,22 +146,16 @@ class Mage_Theme_Block_Adminhtml_System_Design_Theme_Edit_Tab_General 'label' => $this->__('Theme Title'), 'title' => $this->__('Theme Title'), 'name' => 'theme_title', - 'required' => $this->_getFieldAttrRequired() + 'required' => $this->_isFieldAttrRequired() )); if ($this->_isThemeEditable) { - $maxImageSize = Mage::helper('Mage_Core_Helper_File_Storage')->getMaxFileSizeInMb(); - if ($maxImageSize) { - $previewImageNote = $this->__('Max image size %sM', $maxImageSize); - } else { - $previewImageNote = $this->__('System doesn\'t allow to get file upload settings'); - } $themeFieldset->addField('preview_image', 'image', array( 'label' => $this->__('Theme Preview Image'), 'title' => $this->__('Theme Preview Image'), 'name' => 'preview_image', 'required' => false, - 'note' => $previewImageNote + 'note' => $this->_getPreviewImageNote() )); } else if (!empty($formData['preview_image'])) { $themeFieldset->addField('preview_image', 'note', array( @@ -192,7 +186,7 @@ class Mage_Theme_Block_Adminhtml_System_Design_Theme_Edit_Tab_General 'label' => $this->__('Magento Version From'), 'title' => $this->__('Magento Version From'), 'name' => 'magento_version_from', - 'required' => $this->_getFieldAttrRequired(), + 'required' => $this->_isFieldAttrRequired(), 'note' => $this->_filterFieldNote($this->__('Example: 1.6.0.0 or *')) )); @@ -200,7 +194,7 @@ class Mage_Theme_Block_Adminhtml_System_Design_Theme_Edit_Tab_General 'label' => $this->__('Magento Version To'), 'title' => $this->__('Magento Version To'), 'name' => 'magento_version_to', - 'required' => $this->_getFieldAttrRequired(), + 'required' => $this->_isFieldAttrRequired(), 'note' => $this->_filterFieldNote($this->__('Example: 1.6.0.0 or *')) )); @@ -223,7 +217,7 @@ class Mage_Theme_Block_Adminhtml_System_Design_Theme_Edit_Tab_General * * @return bool */ - protected function _getFieldAttrRequired() + protected function _isFieldAttrRequired() { return $this->_isThemeEditable ? true : false; } @@ -341,4 +335,19 @@ class Mage_Theme_Block_Adminhtml_System_Design_Theme_Edit_Tab_General return $data; } + + /** + * Get note string for theme's preview image + * + * @return string + */ + protected function _getPreviewImageNote() + { + $maxImageSize = Mage::helper('Mage_Core_Helper_File_Storage')->getMaxFileSizeInMb(); + if ($maxImageSize) { + return $this->__('Max image size %sM', $maxImageSize); + } else { + return $this->__('System doesn\'t allow to get file upload settings'); + } + } } diff --git a/app/code/core/Mage/Theme/Block/Adminhtml/System/Design/Theme/Edit/Tabs.php b/app/code/core/Mage/Theme/Block/Adminhtml/System/Design/Theme/Edit/Tabs.php index 66d26fe75ceb9a1822359b35f3cff2974a367466..7ad379f9b1c918e491df1dd535695750fde63f67 100644 --- a/app/code/core/Mage/Theme/Block/Adminhtml/System/Design/Theme/Edit/Tabs.php +++ b/app/code/core/Mage/Theme/Block/Adminhtml/System/Design/Theme/Edit/Tabs.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Theme - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Theme/Block/Adminhtml/System/Design/Theme/Grid.php b/app/code/core/Mage/Theme/Block/Adminhtml/System/Design/Theme/Grid.php index 97e2bb512b8b8d7acca035d4a59fbbfd5d88e8c7..4a29c364bb3dcb939bb50f1ffc7c066fb9bc5ae8 100644 --- a/app/code/core/Mage/Theme/Block/Adminhtml/System/Design/Theme/Grid.php +++ b/app/code/core/Mage/Theme/Block/Adminhtml/System/Design/Theme/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Theme - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Theme/Helper/Data.php b/app/code/core/Mage/Theme/Helper/Data.php index 373dd4a7e5b6410b9ed44b0b2b7db9e045f5066e..781ab22b31f630b533452b80f03fd6d80a58e2c5 100644 --- a/app/code/core/Mage/Theme/Helper/Data.php +++ b/app/code/core/Mage/Theme/Helper/Data.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Theme - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ @@ -28,4 +28,5 @@ * Theme data helper */ class Mage_Theme_Helper_Data extends Mage_Core_Helper_Abstract -{} +{ +} diff --git a/app/code/core/Mage/Theme/controllers/Adminhtml/System/Design/ThemeController.php b/app/code/core/Mage/Theme/controllers/Adminhtml/System/Design/ThemeController.php index 82c8cd4a58666f045e37ad0c2515a5a7f9cfcf90..f33d9f3a033177271845fb0fb8f1e7c3728299c5 100644 --- a/app/code/core/Mage/Theme/controllers/Adminhtml/System/Design/ThemeController.php +++ b/app/code/core/Mage/Theme/controllers/Adminhtml/System/Design/ThemeController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Theme - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Theme/etc/adminhtml/acl.xml b/app/code/core/Mage/Theme/etc/adminhtml/acl.xml index b0eb2f9261b063bc1e2130a69f879903d5ac8cf3..8a9f2f28634a54cd724388f651c4c2599e7434c7 100644 --- a/app/code/core/Mage/Theme/etc/adminhtml/acl.xml +++ b/app/code/core/Mage/Theme/etc/adminhtml/acl.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Theme - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Theme/etc/adminhtml/menu.xml b/app/code/core/Mage/Theme/etc/adminhtml/menu.xml index 4f5c8177f27355ea834401a378d7a28f092a57e7..d3b238ccd4087ce82cdcfe9b3d17efdbec6174a6 100644 --- a/app/code/core/Mage/Theme/etc/adminhtml/menu.xml +++ b/app/code/core/Mage/Theme/etc/adminhtml/menu.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Theme - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Theme/etc/config.xml b/app/code/core/Mage/Theme/etc/config.xml index 6dd81f089195c24e37e7b3ec1856cb4aea07b7ca..f3df55fd4eb731021d12dd495f76eb5e1f10d626 100644 --- a/app/code/core/Mage/Theme/etc/config.xml +++ b/app/code/core/Mage/Theme/etc/config.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Theme - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Theme/view/adminhtml/layout.xml b/app/code/core/Mage/Theme/view/adminhtml/layout.xml index 1a9a6bb07335baea27f4457c7dac20b20f0f3113..162f25daef94d89d607509edd6d66cebbe482f7f 100644 --- a/app/code/core/Mage/Theme/view/adminhtml/layout.xml +++ b/app/code/core/Mage/Theme/view/adminhtml/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Theme/view/adminhtml/system/design/form.js b/app/code/core/Mage/Theme/view/adminhtml/system/design/form.js index 9ab63124d222da8248f7580120c9a171c4c450a9..909516283bdaf09c5509ad3c89134fc72c9cd624 100644 --- a/app/code/core/Mage/Theme/view/adminhtml/system/design/form.js +++ b/app/code/core/Mage/Theme/view/adminhtml/system/design/form.js @@ -19,7 +19,7 @@ * * @category Mage * @package Mage_Theme - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ function parentThemeOnChange(selected, defaultsById) { diff --git a/app/code/core/Mage/Usa/Block/Adminhtml/Dhl/Unitofmeasure.php b/app/code/core/Mage/Usa/Block/Adminhtml/Dhl/Unitofmeasure.php index 161c90359eca809cf63e2bbf4542e2d924c297d3..af765b4529af600ccfba61589c666cab2d1746e0 100644 --- a/app/code/core/Mage/Usa/Block/Adminhtml/Dhl/Unitofmeasure.php +++ b/app/code/core/Mage/Usa/Block/Adminhtml/Dhl/Unitofmeasure.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Usa - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Usa/Helper/Data.php b/app/code/core/Mage/Usa/Helper/Data.php index a100fd6cafceda23388e5fed9b80cef7352d4e6d..e8190af42870aff21bfde3d8f52cf6b368a7175b 100644 --- a/app/code/core/Mage/Usa/Helper/Data.php +++ b/app/code/core/Mage/Usa/Helper/Data.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Usa - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Abstract.php b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Abstract.php index 556842d8833383e9a56420a847b213979b77669b..b98a8f3634dc7bf59c1489b001e98b72279031d7 100644 --- a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Abstract.php +++ b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Usa - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Abstract/Source/Mode.php b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Abstract/Source/Mode.php index da88c0ba4497a0a84f91f7bc31580ccada69b461..6a89db43a077d10197007715a8521c33a18f72f8 100644 --- a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Abstract/Source/Mode.php +++ b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Abstract/Source/Mode.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Usa - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Abstract/Source/Requesttype.php b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Abstract/Source/Requesttype.php index ef04e7f0231ef2d714bffc226c2d2892894478c4..cbb8b83ea4b527b410777f320c953859a5289d95 100644 --- a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Abstract/Source/Requesttype.php +++ b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Abstract/Source/Requesttype.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Usa - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Dhl.php b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Dhl.php index 07487e07b14a1ffc73f299c51b38339ffbf1c5bd..95ca11f7537f3bec3ca348c4e6aa11666f6e35f9 100644 --- a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Dhl.php +++ b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Dhl.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Usa - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Dhl/International.php b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Dhl/International.php index cfb59e9701477f6194eeb9838cf8c87076052952..9d49cee29c3495bf8d4cf465bfacb6cc4b782ef8 100644 --- a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Dhl/International.php +++ b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Dhl/International.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Usa - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Dhl/International/Source/Contenttype.php b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Dhl/International/Source/Contenttype.php index decf8e6883ac14d2e23434fb727e3495e82fcd52..181aa9ad51df505a14dc0317799116e941acda74 100644 --- a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Dhl/International/Source/Contenttype.php +++ b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Dhl/International/Source/Contenttype.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Usa - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Dhl/International/Source/Method/Abstract.php b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Dhl/International/Source/Method/Abstract.php index 8e58a5daf351ed21dda32da2eb00e777fcb55b49..2c12fae02f80c017916114719cea1a33722e54c2 100644 --- a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Dhl/International/Source/Method/Abstract.php +++ b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Dhl/International/Source/Method/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Usa - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Dhl/International/Source/Method/Doc.php b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Dhl/International/Source/Method/Doc.php index 97760eec072dba7d5bcf523079e7ef054b93e48c..d9350e2dba726846206615a5c707fc437228720c 100644 --- a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Dhl/International/Source/Method/Doc.php +++ b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Dhl/International/Source/Method/Doc.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Usa - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Dhl/International/Source/Method/Freedoc.php b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Dhl/International/Source/Method/Freedoc.php index 6cc4a01712fe925c546609b321e7b08cc060786f..b76b7054f31a1572d3f9347bac85f0ebb63d7365 100644 --- a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Dhl/International/Source/Method/Freedoc.php +++ b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Dhl/International/Source/Method/Freedoc.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Usa - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Dhl/International/Source/Method/Freenondoc.php b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Dhl/International/Source/Method/Freenondoc.php index 502f1deac48ca708bac21c36b803399a4c59c595..a9cf017cc7ca3a6e5ae0c9ed82d0e6e546c9ab31 100644 --- a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Dhl/International/Source/Method/Freenondoc.php +++ b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Dhl/International/Source/Method/Freenondoc.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Usa - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Dhl/International/Source/Method/Nondoc.php b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Dhl/International/Source/Method/Nondoc.php index e7b864b4bfa225e609d76f87f8105a1fc78c2aef..4c5fe3da160fc7f151585765243d211e265e0657 100644 --- a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Dhl/International/Source/Method/Nondoc.php +++ b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Dhl/International/Source/Method/Nondoc.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Usa - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Dhl/International/Source/Method/Size.php b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Dhl/International/Source/Method/Size.php index f7bbe1452e4cc625b7ec290e1482ce514363a456..1a397c977105fce35c41775858ea426b27ca3ae9 100644 --- a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Dhl/International/Source/Method/Size.php +++ b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Dhl/International/Source/Method/Size.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Usa - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Dhl/International/Source/Method/Unitofmeasure.php b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Dhl/International/Source/Method/Unitofmeasure.php index 9fae229bf7affe46b5bbbbd70b64045ffb25b9dc..ed1223198363b5326adfb676b72ad46806519a2d 100644 --- a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Dhl/International/Source/Method/Unitofmeasure.php +++ b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Dhl/International/Source/Method/Unitofmeasure.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Usa - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Dhl/Label/Pdf.php b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Dhl/Label/Pdf.php index cdb61de7bcceb1a02d95516b096eae607cba3a44..29afb8d8969a33ee0ea843146a280f464c89807e 100644 --- a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Dhl/Label/Pdf.php +++ b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Dhl/Label/Pdf.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Usa - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Dhl/Label/Pdf/Page.php b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Dhl/Label/Pdf/Page.php index ef6cfab6a7688a85c4224f11308ec1154315aa38..08c00cd56309f6b3e64b7d776de3b493f426fe9f 100644 --- a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Dhl/Label/Pdf/Page.php +++ b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Dhl/Label/Pdf/Page.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Usa - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Dhl/Label/Pdf/PageBuilder.php b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Dhl/Label/Pdf/PageBuilder.php index 9a318034665dc0f1e0b7e1264d4468add69262ce..20b51be3b36e2439ef612efc92e1c7bc5f633b3a 100644 --- a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Dhl/Label/Pdf/PageBuilder.php +++ b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Dhl/Label/Pdf/PageBuilder.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Usa - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Dhl/Source/Dutypaymenttype.php b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Dhl/Source/Dutypaymenttype.php index 4a72775e8459bdc658568c70f4943f90265d5f08..23748a23ea1f54bb53867f6a5919ab13b1d634b3 100644 --- a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Dhl/Source/Dutypaymenttype.php +++ b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Dhl/Source/Dutypaymenttype.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Usa - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Dhl/Source/Freemethod.php b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Dhl/Source/Freemethod.php index 98ec7a96c75d7b7142ba878bd32739616c406d0c..07ccf0b8dcfd37c9f817f87bd901efcd40070891 100644 --- a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Dhl/Source/Freemethod.php +++ b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Dhl/Source/Freemethod.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Usa - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Dhl/Source/Method.php b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Dhl/Source/Method.php index 01162c61d05e40aff1800502615c0e76ccef3708..080d8d2ebe719d7701836fe18da7f0c29c77f773 100644 --- a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Dhl/Source/Method.php +++ b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Dhl/Source/Method.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Usa - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Dhl/Source/Protection/Rounding.php b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Dhl/Source/Protection/Rounding.php index 0daaf68f2edd05081d0cffee0ca855766effe037..95c41341303cb5e6f1630097e91a1e13c13c2694 100644 --- a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Dhl/Source/Protection/Rounding.php +++ b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Dhl/Source/Protection/Rounding.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Usa - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Dhl/Source/Protection/Value.php b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Dhl/Source/Protection/Value.php index 67ada2c22f361f81cf8194b1a6d0297bb91e19c3..814ddf2f0adcc26725b6c1d8f249fd598926ae71 100644 --- a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Dhl/Source/Protection/Value.php +++ b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Dhl/Source/Protection/Value.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Usa - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Dhl/Source/Shipmenttype.php b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Dhl/Source/Shipmenttype.php index f474e09e4ff4c08b54ae1c559edb77769d7678ac..759064ad5268f7363505d1adcde65601a37faca5 100644 --- a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Dhl/Source/Shipmenttype.php +++ b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Dhl/Source/Shipmenttype.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Usa - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Fedex.php b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Fedex.php index ec16a3902d31755fd23c3ff938c82a6c7f9a87ee..38703003b15f213bf169b29f29d2cb5588c72cc0 100644 --- a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Fedex.php +++ b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Fedex.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Usa - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Fedex/Source/Dropoff.php b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Fedex/Source/Dropoff.php index ef201c37949698fee7deab6837fab0078ca21861..837eb4d3f6b81aa07816ea6e7487a5d816fc5d00 100644 --- a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Fedex/Source/Dropoff.php +++ b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Fedex/Source/Dropoff.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Usa - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Fedex/Source/Freemethod.php b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Fedex/Source/Freemethod.php index 5b192149144b5a0a4244b859bfc51dcaf2b1b125..d17dfdcb1904c5735d4a9cf6ada8968c565e1db8 100644 --- a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Fedex/Source/Freemethod.php +++ b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Fedex/Source/Freemethod.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Usa - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Fedex/Source/Method.php b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Fedex/Source/Method.php index bcfe023de08b66eba080721da4b20180d7402c19..be71194ed6618f275ab82ed5dc0a5ced07ee7890 100644 --- a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Fedex/Source/Method.php +++ b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Fedex/Source/Method.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Usa - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Fedex/Source/Packaging.php b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Fedex/Source/Packaging.php index 945f9dd77b55dc3c6a731ad12567c9d3418d4425..0f50b6158bea917d34b30274cabc744a37ffd3fc 100644 --- a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Fedex/Source/Packaging.php +++ b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Fedex/Source/Packaging.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Usa - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Ups.php b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Ups.php index 32caa595e0614712bd88d3d398b83e0dc60dc834..7706f43629cf32ef50f65648914994bf346fb5a8 100644 --- a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Ups.php +++ b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Ups.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Usa - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Ups/Source/Container.php b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Ups/Source/Container.php index 399daa5f62d19ee272837ad1e3facf86d7bdb63a..843cb04e229c2050b40781661522f53cd5288fd2 100644 --- a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Ups/Source/Container.php +++ b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Ups/Source/Container.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Usa - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Ups/Source/DestType.php b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Ups/Source/DestType.php index 351a99541bfd06a8cc00718ce005c2f20cdd81c6..91943a16f386fded9cd7774152926c0150678e81 100644 --- a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Ups/Source/DestType.php +++ b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Ups/Source/DestType.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Usa - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Ups/Source/Freemethod.php b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Ups/Source/Freemethod.php index 806259bf147e0a1115a163a7779707e5a6292150..a4bdc03cdf5e0e44587b66cba0996caa15f7292e 100644 --- a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Ups/Source/Freemethod.php +++ b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Ups/Source/Freemethod.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Usa - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Ups/Source/Method.php b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Ups/Source/Method.php index 64db8b20caef0de7646e04c105d9e4bb90c95e73..c4d2cb469fc835d3007576970fb4e6d0d5aabd77 100644 --- a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Ups/Source/Method.php +++ b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Ups/Source/Method.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Usa - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Ups/Source/Mode.php b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Ups/Source/Mode.php index 3ef93c8322b68168fadf5aa42ccca36689e3b2ba..e7d1571173a06242ba4710f5c32ffedb46480900 100644 --- a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Ups/Source/Mode.php +++ b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Ups/Source/Mode.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Usa - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Ups/Source/OriginShipment.php b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Ups/Source/OriginShipment.php index f24ea26ab8a1b09f333609f1c21c0b12cc10f20b..7680467e5e154bc61f0b5aeab2ccae3b9aa2e352 100644 --- a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Ups/Source/OriginShipment.php +++ b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Ups/Source/OriginShipment.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Usa - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Ups/Source/Pickup.php b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Ups/Source/Pickup.php index 1df89e06464e925549d389b8420716a1ccefbcdd..8a9ca237e3ceb5eb08362a248b68d89838183379 100644 --- a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Ups/Source/Pickup.php +++ b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Ups/Source/Pickup.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Usa - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Ups/Source/Type.php b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Ups/Source/Type.php index 0e364212f1d4f70d916aeda1497ad6d581f2ebdb..3000cccc336bd1224001c7d03cb2e68fe5e34241 100644 --- a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Ups/Source/Type.php +++ b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Ups/Source/Type.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Usa - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Ups/Source/Unitofmeasure.php b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Ups/Source/Unitofmeasure.php index 63a40ee053fdb982381120c0965e7cf28c2457e9..0b6d356ee16305032699783d471e035ca9d00ed9 100644 --- a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Ups/Source/Unitofmeasure.php +++ b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Ups/Source/Unitofmeasure.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Usa - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Usps.php b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Usps.php index 9eb72e2400aa6c38859c37cddd7dbffa75f971b6..a33956124047a9c14f5098046736ea87dcf7c7c8 100644 --- a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Usps.php +++ b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Usps.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Usa - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Usps/Source/Container.php b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Usps/Source/Container.php index c84a8e880564c3f095f7b53600de55e880775d4e..ad146585c59569c3678c50b267a7dd142dc75fbc 100644 --- a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Usps/Source/Container.php +++ b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Usps/Source/Container.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Usa - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Usps/Source/Freemethod.php b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Usps/Source/Freemethod.php index aaf63123529a7c3eae6cfd0654eb34ad92813bfc..56a5fdab13d0b2ae213a3f0fb932a3f734a68eef 100644 --- a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Usps/Source/Freemethod.php +++ b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Usps/Source/Freemethod.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Usa - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Usps/Source/Machinable.php b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Usps/Source/Machinable.php index 357c34f1574343f0e75fcf4be3b9402b90b33d49..d46625f8d33fa728d41e7ec42e35e7e58c483c03 100644 --- a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Usps/Source/Machinable.php +++ b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Usps/Source/Machinable.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Usa - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Usps/Source/Method.php b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Usps/Source/Method.php index e9714346665fb89f208000beaed8ecff6f0bfdc2..866b44bb29a8840c8ac8dc8ce39f01f6f8a8af7b 100644 --- a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Usps/Source/Method.php +++ b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Usps/Source/Method.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Usa - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Usps/Source/Size.php b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Usps/Source/Size.php index 4ebef9011c08b096c4ca94f98fb97ca186033f48..91847a6104b9d486eb3969d352222257721777d5 100644 --- a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Usps/Source/Size.php +++ b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Usps/Source/Size.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Usa - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Usa/etc/adminhtml/system.xml b/app/code/core/Mage/Usa/etc/adminhtml/system.xml index f4bba65febf846e65ad5ee791bd3942c27c51f3d..49c2894db9b9f762820cb2bb27b7ecd22e19efb1 100644 --- a/app/code/core/Mage/Usa/etc/adminhtml/system.xml +++ b/app/code/core/Mage/Usa/etc/adminhtml/system.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Usa - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Usa/etc/config.xml b/app/code/core/Mage/Usa/etc/config.xml index 483825f084baf1efab87f163eeb0c88efcb42b31..37600d7dc38a9adf8db306a51c469c4bac603749 100644 --- a/app/code/core/Mage/Usa/etc/config.xml +++ b/app/code/core/Mage/Usa/etc/config.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Usa - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Usa/etc/dhl/international/countries.xml b/app/code/core/Mage/Usa/etc/dhl/international/countries.xml index 98a8bff3f0ab777b493bbabfacdb5f769f58926c..c13abc738a1776e48e0e9ce8f72ad1800288ea9d 100644 --- a/app/code/core/Mage/Usa/etc/dhl/international/countries.xml +++ b/app/code/core/Mage/Usa/etc/dhl/international/countries.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Usa - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Usa/sql/usa_setup/install-1.6.0.0.php b/app/code/core/Mage/Usa/sql/usa_setup/install-1.6.0.0.php index 378d34044a3c15b7250719e26c8d49bcf291b003..698638c254a433a616cfd3934e44f4ac93d3814c 100644 --- a/app/code/core/Mage/Usa/sql/usa_setup/install-1.6.0.0.php +++ b/app/code/core/Mage/Usa/sql/usa_setup/install-1.6.0.0.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Usa - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Usa/sql/usa_setup/upgrade-1.6.0.0-1.6.0.1.php b/app/code/core/Mage/Usa/sql/usa_setup/upgrade-1.6.0.0-1.6.0.1.php index 47c17419db669512780767f1968142602ed8da39..f374190c69e80d26fdfd989412fbcb195173c942 100644 --- a/app/code/core/Mage/Usa/sql/usa_setup/upgrade-1.6.0.0-1.6.0.1.php +++ b/app/code/core/Mage/Usa/sql/usa_setup/upgrade-1.6.0.0-1.6.0.1.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Usa - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Usa/view/adminhtml/dhl/unitofmeasure.phtml b/app/code/core/Mage/Usa/view/adminhtml/dhl/unitofmeasure.phtml index b8228a7bd0a72bbe25a38689c6a9264952e232ad..f1825e16eb23445ba7f9b431433e69b451658619 100644 --- a/app/code/core/Mage/Usa/view/adminhtml/dhl/unitofmeasure.phtml +++ b/app/code/core/Mage/Usa/view/adminhtml/dhl/unitofmeasure.phtml @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Usa - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/User/Block/Buttons.php b/app/code/core/Mage/User/Block/Buttons.php index 204120684b66859f5195bd0e279724e31e374615..a44be3ec189281ff01da20f14139f15973a7fba0 100644 --- a/app/code/core/Mage/User/Block/Buttons.php +++ b/app/code/core/Mage/User/Block/Buttons.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_User - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/User/Block/Role.php b/app/code/core/Mage/User/Block/Role.php index fa9a64912defa71973b2fe6ad55383afb096b34c..0554fcbe65362a67ddceb6d53148229a14389845 100644 --- a/app/code/core/Mage/User/Block/Role.php +++ b/app/code/core/Mage/User/Block/Role.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_User - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/User/Block/Role/Edit.php b/app/code/core/Mage/User/Block/Role/Edit.php index 845c43bd09bf0336ded11d04d48879caa487ecfc..568fabe4b9f3de51e9f01b9dc3e431616d2ea73f 100644 --- a/app/code/core/Mage/User/Block/Role/Edit.php +++ b/app/code/core/Mage/User/Block/Role/Edit.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_User - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/User/Block/Role/Grid/User.php b/app/code/core/Mage/User/Block/Role/Grid/User.php index dac3795b8c0e5819ceaa20f0d83a488547192f6c..e771e12cf28a892fe704a01ca64bfcc6ca6587f8 100644 --- a/app/code/core/Mage/User/Block/Role/Grid/User.php +++ b/app/code/core/Mage/User/Block/Role/Grid/User.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_User - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/User/Block/Role/Tab/Edit.php b/app/code/core/Mage/User/Block/Role/Tab/Edit.php index 74d87a181bec13ec85c663a602b43ba4c4276c57..745c4652458bedc18cae96f22c370596482f0e41 100644 --- a/app/code/core/Mage/User/Block/Role/Tab/Edit.php +++ b/app/code/core/Mage/User/Block/Role/Tab/Edit.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_User - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/User/Block/Role/Tab/Info.php b/app/code/core/Mage/User/Block/Role/Tab/Info.php index d159cc256487f88654503a5b5251e23aa0aee353..a4075c797ac49c98eea66a1b4a9f3b4204d006e3 100644 --- a/app/code/core/Mage/User/Block/Role/Tab/Info.php +++ b/app/code/core/Mage/User/Block/Role/Tab/Info.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_User - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/User/Block/Role/Tab/Users.php b/app/code/core/Mage/User/Block/Role/Tab/Users.php index 6b5e6b144da074547f52adc53f402d4b97ea5ff5..a709701eb550c44a3b4e4a92fa5391779d605a3e 100644 --- a/app/code/core/Mage/User/Block/Role/Tab/Users.php +++ b/app/code/core/Mage/User/Block/Role/Tab/Users.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_User - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/User/Block/User.php b/app/code/core/Mage/User/Block/User.php index d3a7111a0c0f585154be4223e614465d4d8662ab..c2224e96f2ef27379087525818d71ca896cdb585 100644 --- a/app/code/core/Mage/User/Block/User.php +++ b/app/code/core/Mage/User/Block/User.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_User - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/User/Block/User/Edit.php b/app/code/core/Mage/User/Block/User/Edit.php index 44a22a57be2f7644ac52e32ddc33739296e23114..cfa6b5065af2712dd906fc8a703650260a477a2e 100644 --- a/app/code/core/Mage/User/Block/User/Edit.php +++ b/app/code/core/Mage/User/Block/User/Edit.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_User - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/User/Block/User/Edit/Form.php b/app/code/core/Mage/User/Block/User/Edit/Form.php index 91289c40509be977f06bf5747b0ec2c53bc8b9f0..8fd6672815370a054cb03111c5172397620b045a 100644 --- a/app/code/core/Mage/User/Block/User/Edit/Form.php +++ b/app/code/core/Mage/User/Block/User/Edit/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_User - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/User/Block/User/Edit/Tab/Main.php b/app/code/core/Mage/User/Block/User/Edit/Tab/Main.php index 1a5bdf51944abd7a50c84cb01b826f0b6c2122f5..0a404300c2814fda816af9bf49846f760878fdfa 100644 --- a/app/code/core/Mage/User/Block/User/Edit/Tab/Main.php +++ b/app/code/core/Mage/User/Block/User/Edit/Tab/Main.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_User - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/User/Block/User/Edit/Tab/Roles.php b/app/code/core/Mage/User/Block/User/Edit/Tab/Roles.php index 85482684dd7da5686e0ee7a8d3cde51d2525b292..772025b7b9be3ca10a47884549c6cac20c5aeb51 100644 --- a/app/code/core/Mage/User/Block/User/Edit/Tab/Roles.php +++ b/app/code/core/Mage/User/Block/User/Edit/Tab/Roles.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_User - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/User/Block/User/Edit/Tabs.php b/app/code/core/Mage/User/Block/User/Edit/Tabs.php index b8c7f2bec2636878eb9935e3461e05b106f5bc5a..7fe4969875923b31e41b2d485815a6a35815915f 100644 --- a/app/code/core/Mage/User/Block/User/Edit/Tabs.php +++ b/app/code/core/Mage/User/Block/User/Edit/Tabs.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_User - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/User/Helper/Data.php b/app/code/core/Mage/User/Helper/Data.php index a7f521e3a1e556b3c92bd6a855b5558758c3664d..02c01f04525390f55620d9f5c98333aaef4e79ed 100644 --- a/app/code/core/Mage/User/Helper/Data.php +++ b/app/code/core/Mage/User/Helper/Data.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_User - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/User/Model/Acl/Loader/Role.php b/app/code/core/Mage/User/Model/Acl/Loader/Role.php index 9c7b3fdc7179f166383339e380f4c20164e928ac..ababe8188f591e4285f929eb0c49c2cb4b5b53c0 100644 --- a/app/code/core/Mage/User/Model/Acl/Loader/Role.php +++ b/app/code/core/Mage/User/Model/Acl/Loader/Role.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_User - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/User/Model/Acl/Loader/Rule.php b/app/code/core/Mage/User/Model/Acl/Loader/Rule.php index dfff2c8aaed8ed9053ddd258e60c37f9ec5f5b38..56e8bf9b3d367b70fbf1b7b36b7f6726650627f7 100644 --- a/app/code/core/Mage/User/Model/Acl/Loader/Rule.php +++ b/app/code/core/Mage/User/Model/Acl/Loader/Rule.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_User - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/User/Model/Acl/Role/Generic.php b/app/code/core/Mage/User/Model/Acl/Role/Generic.php index 02f13f9db1a786a64bd6946f7fe4f02b03b3feea..2fe2f14529b3603b6e1e6e6829045de6563d1b22 100644 --- a/app/code/core/Mage/User/Model/Acl/Role/Generic.php +++ b/app/code/core/Mage/User/Model/Acl/Role/Generic.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_User - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/User/Model/Acl/Role/Group.php b/app/code/core/Mage/User/Model/Acl/Role/Group.php index cf6b997bafa4c3b713c34282eae64da3577fd32a..7cbf2f3fac2996fbae5c7b4416c1ae057228bf07 100644 --- a/app/code/core/Mage/User/Model/Acl/Role/Group.php +++ b/app/code/core/Mage/User/Model/Acl/Role/Group.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_User - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/User/Model/Acl/Role/User.php b/app/code/core/Mage/User/Model/Acl/Role/User.php index 45489b6515a559294d267a77960ce42529bc57f4..6e3426f9354ab9737a160969520381209bd18721 100644 --- a/app/code/core/Mage/User/Model/Acl/Role/User.php +++ b/app/code/core/Mage/User/Model/Acl/Role/User.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_User - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/User/Model/Resource/Permissions/Collection.php b/app/code/core/Mage/User/Model/Resource/Permissions/Collection.php index 8a1859b583fa7c9ffd46663c6d757920b357b0b1..e514f84a35832b3e553ce782223e23db00a0c1ea 100755 --- a/app/code/core/Mage/User/Model/Resource/Permissions/Collection.php +++ b/app/code/core/Mage/User/Model/Resource/Permissions/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_User - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/User/Model/Resource/Role.php b/app/code/core/Mage/User/Model/Resource/Role.php index 6f8a38833278b9a50628395df86193c8e887d4f8..43e7d75750372f260eb138d56a4a281b182ff4f4 100755 --- a/app/code/core/Mage/User/Model/Resource/Role.php +++ b/app/code/core/Mage/User/Model/Resource/Role.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_User - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/User/Model/Resource/Role/Collection.php b/app/code/core/Mage/User/Model/Resource/Role/Collection.php index be3700fd81081effcf3c24915608d5dd3bb15312..76492c31eb6dfdb5f8f111e9d62026f6a2fdf0e4 100755 --- a/app/code/core/Mage/User/Model/Resource/Role/Collection.php +++ b/app/code/core/Mage/User/Model/Resource/Role/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_User - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/User/Model/Resource/Role/Grid/Collection.php b/app/code/core/Mage/User/Model/Resource/Role/Grid/Collection.php index 5ed6af83547a333ba46dfec1bd4263bff9dfc967..f9246b461df636712339419f8d9dab3729a866bc 100644 --- a/app/code/core/Mage/User/Model/Resource/Role/Grid/Collection.php +++ b/app/code/core/Mage/User/Model/Resource/Role/Grid/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_User - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/User/Model/Resource/Role/User/Collection.php b/app/code/core/Mage/User/Model/Resource/Role/User/Collection.php index 3027cca61df5d5591ee55c4dbff7194547d94792..8566c21305a429bd781de42868c83d411b7506be 100644 --- a/app/code/core/Mage/User/Model/Resource/Role/User/Collection.php +++ b/app/code/core/Mage/User/Model/Resource/Role/User/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_User - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/User/Model/Resource/Rules.php b/app/code/core/Mage/User/Model/Resource/Rules.php index 4abbb9db8d9b51f0de3d5454514b2cb65b8dc47b..21b5616f4ba995c6ec4da3c8381c4512d96a3cce 100755 --- a/app/code/core/Mage/User/Model/Resource/Rules.php +++ b/app/code/core/Mage/User/Model/Resource/Rules.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_User - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/User/Model/Resource/Rules/Collection.php b/app/code/core/Mage/User/Model/Resource/Rules/Collection.php index 897c5d18ea51c64c0df23c1f1ca236b94d3f2681..c0dde571f3b2511596915c26a6b4f50b890a7439 100755 --- a/app/code/core/Mage/User/Model/Resource/Rules/Collection.php +++ b/app/code/core/Mage/User/Model/Resource/Rules/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_User - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/User/Model/Resource/User.php b/app/code/core/Mage/User/Model/Resource/User.php index c026f2ff8c18653f629d4354a49c6015dba5ed6e..dee85ef8f178a68f2e5675e85828a1269d20790e 100755 --- a/app/code/core/Mage/User/Model/Resource/User.php +++ b/app/code/core/Mage/User/Model/Resource/User.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_User - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/User/Model/Resource/User/Collection.php b/app/code/core/Mage/User/Model/Resource/User/Collection.php index 7dad777f9a892af8e047b7b4861650a3217e5f2e..01a450d0971cf3f6c8cae7a4acac346add5676f5 100755 --- a/app/code/core/Mage/User/Model/Resource/User/Collection.php +++ b/app/code/core/Mage/User/Model/Resource/User/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_User - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/User/Model/Resource/User/Locked/Collection.php b/app/code/core/Mage/User/Model/Resource/User/Locked/Collection.php index 3649f016d4740ed59ec07b7b7d2aff9034974269..c772279700adaab215516cda15b1c76c340bad5c 100644 --- a/app/code/core/Mage/User/Model/Resource/User/Locked/Collection.php +++ b/app/code/core/Mage/User/Model/Resource/User/Locked/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_User - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/User/Model/Role.php b/app/code/core/Mage/User/Model/Role.php index ac87aa323a7292a94d6c6e0e4538f925e6556d0f..cc9b44c12e86c67600f5f9081c5345572e801d0e 100644 --- a/app/code/core/Mage/User/Model/Role.php +++ b/app/code/core/Mage/User/Model/Role.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_User - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/User/Model/Rules.php b/app/code/core/Mage/User/Model/Rules.php index e2380ee141f8f7ecbfa7991d755a35b668d8f222..946ca885b09c7fd42607cc9e9e77f44e0d4bb2a8 100644 --- a/app/code/core/Mage/User/Model/Rules.php +++ b/app/code/core/Mage/User/Model/Rules.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_User - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/User/Model/Statuses.php b/app/code/core/Mage/User/Model/Statuses.php index 7915c6006bdcd04a928c6ca66c547e71f99a8dbe..e6ed0a53631ba6e7097e306ab744cce82db92d78 100644 --- a/app/code/core/Mage/User/Model/Statuses.php +++ b/app/code/core/Mage/User/Model/Statuses.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_User - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/User/Model/User.php b/app/code/core/Mage/User/Model/User.php index b9822a16b8e9459c6d059f81e10f83d20925e354..bb6ae57e950ba5af49686db0752a45cf4639d3c4 100644 --- a/app/code/core/Mage/User/Model/User.php +++ b/app/code/core/Mage/User/Model/User.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_User - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/User/controllers/Adminhtml/AuthController.php b/app/code/core/Mage/User/controllers/Adminhtml/AuthController.php index a2725d6b2e4d5c34af571c0d2af7204c464d958e..8efa1f219b266798c0d6c37950c56e5d79d6fdb8 100644 --- a/app/code/core/Mage/User/controllers/Adminhtml/AuthController.php +++ b/app/code/core/Mage/User/controllers/Adminhtml/AuthController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_User - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/User/controllers/Adminhtml/User/RoleController.php b/app/code/core/Mage/User/controllers/Adminhtml/User/RoleController.php index d23003909620779a0e916fafed3854486fd53662..a03e79c6592aac023ca9aa4887c7163b3c0369b1 100644 --- a/app/code/core/Mage/User/controllers/Adminhtml/User/RoleController.php +++ b/app/code/core/Mage/User/controllers/Adminhtml/User/RoleController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_User - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/User/controllers/Adminhtml/UserController.php b/app/code/core/Mage/User/controllers/Adminhtml/UserController.php index aacbff3b4fe89a9dd325f4778f3a81458c8391a3..9b003052bd873b2d61f32e1652d01f8aa0f12bd7 100644 --- a/app/code/core/Mage/User/controllers/Adminhtml/UserController.php +++ b/app/code/core/Mage/User/controllers/Adminhtml/UserController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_User - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_User_Adminhtml_UserController extends Mage_Backend_Controller_ActionAbstract diff --git a/app/code/core/Mage/User/data/user_setup/data-install-1.6.0.0.php b/app/code/core/Mage/User/data/user_setup/data-install-1.6.0.0.php index a1f481377402f03c5a33c64795e3c60aae0567b1..a6342eacc86c05366a51b1528239bd86a526add5 100644 --- a/app/code/core/Mage/User/data/user_setup/data-install-1.6.0.0.php +++ b/app/code/core/Mage/User/data/user_setup/data-install-1.6.0.0.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_User - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/User/data/user_setup/data-upgrade-1.6.1.1-1.6.1.2.php b/app/code/core/Mage/User/data/user_setup/data-upgrade-1.6.1.1-1.6.1.2.php index 62fdd352967839d27ca4df7dca4c33ebabf8e106..a344f9f2cbdf7e9b1c3e67b03fbe120f8b0a655a 100644 --- a/app/code/core/Mage/User/data/user_setup/data-upgrade-1.6.1.1-1.6.1.2.php +++ b/app/code/core/Mage/User/data/user_setup/data-upgrade-1.6.1.1-1.6.1.2.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_User - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/User/etc/adminhtml/acl.xml b/app/code/core/Mage/User/etc/adminhtml/acl.xml index 995801cd87463ad9a87f472809f256bd38c0804b..3bfbeecbc258c3f22752f2b2b1092d293ae5c17c 100644 --- a/app/code/core/Mage/User/etc/adminhtml/acl.xml +++ b/app/code/core/Mage/User/etc/adminhtml/acl.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_User - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/User/etc/adminhtml/menu.xml b/app/code/core/Mage/User/etc/adminhtml/menu.xml index 85d51a88367640244139d663c317bc8bb1587273..2f11018523e691f840607eb7dabf66508fe1ead9 100644 --- a/app/code/core/Mage/User/etc/adminhtml/menu.xml +++ b/app/code/core/Mage/User/etc/adminhtml/menu.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_User - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/User/etc/config.xml b/app/code/core/Mage/User/etc/config.xml index 13ad77a050176d92811eb405711d05e0adc7b110..b4a12dcc124d69619194e8a02955c7a781d2e183 100644 --- a/app/code/core/Mage/User/etc/config.xml +++ b/app/code/core/Mage/User/etc/config.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_User - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/User/sql/user_setup/install-1.6.0.0.php b/app/code/core/Mage/User/sql/user_setup/install-1.6.0.0.php index a1c8da302269bfd8dfcf0cc7b0671f7445a3feff..48cb7c9c83b5596ba08a6d797df8ddf12d379bc0 100644 --- a/app/code/core/Mage/User/sql/user_setup/install-1.6.0.0.php +++ b/app/code/core/Mage/User/sql/user_setup/install-1.6.0.0.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_User - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/User/sql/user_setup/upgrade-1.6.0.0-1.6.1.0.php b/app/code/core/Mage/User/sql/user_setup/upgrade-1.6.0.0-1.6.1.0.php index 55ff383fc209eaa100b4e5fa3c8f72513e9857e7..097e9fa889b9f65f97d8ea989f2eff5f249f9822 100644 --- a/app/code/core/Mage/User/sql/user_setup/upgrade-1.6.0.0-1.6.1.0.php +++ b/app/code/core/Mage/User/sql/user_setup/upgrade-1.6.0.0-1.6.1.0.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_User - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/User/sql/user_setup/upgrade-1.6.1.0-1.6.1.1.php b/app/code/core/Mage/User/sql/user_setup/upgrade-1.6.1.0-1.6.1.1.php index 8c4fc155d821b0024fbfe67b077d1eb452ef9811..5cdfeecc1a64bb04796ebe64b0bdbd3b5845f5b7 100644 --- a/app/code/core/Mage/User/sql/user_setup/upgrade-1.6.1.0-1.6.1.1.php +++ b/app/code/core/Mage/User/sql/user_setup/upgrade-1.6.1.0-1.6.1.1.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_User - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/User/sql/user_setup/upgrade-1.6.1.2-1.6.1.3.php b/app/code/core/Mage/User/sql/user_setup/upgrade-1.6.1.2-1.6.1.3.php index c4fa3299b39592d05eabe2ff14f9e60ac6bc394b..4e306c1e3cd9c35ef6f86e1e832dc217b4b7e285 100644 --- a/app/code/core/Mage/User/sql/user_setup/upgrade-1.6.1.2-1.6.1.3.php +++ b/app/code/core/Mage/User/sql/user_setup/upgrade-1.6.1.2-1.6.1.3.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_User - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ /** @var $installer Mage_Core_Model_Resource_Setup */ diff --git a/app/code/core/Mage/User/view/adminhtml/admin/forgotpassword.phtml b/app/code/core/Mage/User/view/adminhtml/admin/forgotpassword.phtml index 70f5ce2f8542edaef68032d4bf99474b8aa2de69..28b59d6d51c035156cdc33a6efc603fe08dc7741 100644 --- a/app/code/core/Mage/User/view/adminhtml/admin/forgotpassword.phtml +++ b/app/code/core/Mage/User/view/adminhtml/admin/forgotpassword.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> @@ -33,9 +33,9 @@ <link type="text/css" rel="stylesheet" href="<?php echo $this->getViewFileUrl('boxes.css'); ?>" media="all" /> <link rel="icon" href="<?php echo $this->getViewFileUrl('Mage_Page::favicon.ico'); ?>" type="image/x-icon" /> <link rel="shortcut icon" href="<?php echo $this->getViewFileUrl('Mage_Page::favicon.ico'); ?>" type="image/x-icon" /> - <script type="text/javascript" src="<?php echo $this->getViewFileUrl('jquery/jquery-1.8.2.min.js') ?>"></script> + <script type="text/javascript" src="<?php echo $this->getViewFileUrl('jquery/jquery.min.js') ?>"></script> <script type="text/javascript" src="<?php echo $this->getViewFileUrl('mage/jquery-no-conflict.js') ?>"></script> - <script type="text/javascript" src="<?php echo $this->getViewFileUrl('jquery/jquery-ui-1.9.2.custom.min.js') ?>"></script> + <script type="text/javascript" src="<?php echo $this->getViewFileUrl('jquery/jquery-ui.min.js') ?>"></script> <script type="text/javascript" src="<?php echo $this->getViewFileUrl('jquery/jquery.tmpl.min.js') ?>"></script> <script type="text/javascript" src="<?php echo $this->getViewFileUrl('jquery/jquery.validate.js') ?>"></script> <script type="text/javascript" src="<?php echo $this->getViewFileUrl('mage/validation.js') ?>"></script> diff --git a/app/code/core/Mage/User/view/adminhtml/admin/forgotpassword_url.phtml b/app/code/core/Mage/User/view/adminhtml/admin/forgotpassword_url.phtml index 6eb8808014751980d2fec83ad99dbfee1b51ebe5..13a155e5a805b90df9d988ac2fbc41ad60176d5b 100644 --- a/app/code/core/Mage/User/view/adminhtml/admin/forgotpassword_url.phtml +++ b/app/code/core/Mage/User/view/adminhtml/admin/forgotpassword_url.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/User/view/adminhtml/admin/resetforgottenpassword.phtml b/app/code/core/Mage/User/view/adminhtml/admin/resetforgottenpassword.phtml index 964d37e6f5f7848d48fd5155822f6854cc89663d..522e39463b98aebd217a9d44fc5fadcde4355739 100644 --- a/app/code/core/Mage/User/view/adminhtml/admin/resetforgottenpassword.phtml +++ b/app/code/core/Mage/User/view/adminhtml/admin/resetforgottenpassword.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> @@ -34,9 +34,9 @@ <link rel="icon" href="<?php echo $this->getViewFileUrl('Mage_Page::favicon.ico'); ?>" type="image/x-icon" /> <link rel="shortcut icon" href="<?php echo $this->getViewFileUrl('Mage_Page::favicon.ico'); ?>" type="image/x-icon" /> - <script type="text/javascript" src="<?php echo $this->getViewFileUrl('jquery/jquery-1.8.2.min.js') ?>"></script> + <script type="text/javascript" src="<?php echo $this->getViewFileUrl('jquery/jquery.min.js') ?>"></script> <script type="text/javascript" src="<?php echo $this->getViewFileUrl('mage/jquery-no-conflict.js') ?>"></script> - <script type="text/javascript" src="<?php echo $this->getViewFileUrl('jquery/jquery-ui-1.9.2.custom.min.js') ?>"></script> + <script type="text/javascript" src="<?php echo $this->getViewFileUrl('jquery/jquery-ui.min.js') ?>"></script> <script type="text/javascript" src="<?php echo $this->getViewFileUrl('jquery/jquery.tmpl.min.js') ?>"></script> <script type="text/javascript" src="<?php echo $this->getViewFileUrl('jquery/jquery.validate.js') ?>"></script> <script type="text/javascript" src="<?php echo $this->getViewFileUrl('mage/validation.js') ?>"></script> diff --git a/app/code/core/Mage/User/view/adminhtml/layout.xml b/app/code/core/Mage/User/view/adminhtml/layout.xml index 45d50381898c626046e4e3d1b5e872dda492798d..268dbf3af9e89415586674ef1a3f80a27fdeb064 100644 --- a/app/code/core/Mage/User/view/adminhtml/layout.xml +++ b/app/code/core/Mage/User/view/adminhtml/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/User/view/adminhtml/role/edit.phtml b/app/code/core/Mage/User/view/adminhtml/role/edit.phtml index 817e12b81a07051852946f7c822d2b0bbff6acf2..95c23c5e9f47e2ee8bf9305ad2cc3b4c8e9d170c 100644 --- a/app/code/core/Mage/User/view/adminhtml/role/edit.phtml +++ b/app/code/core/Mage/User/view/adminhtml/role/edit.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/User/view/adminhtml/role/info.phtml b/app/code/core/Mage/User/view/adminhtml/role/info.phtml index 361c1ae24344cd764904276fd63801805f443eb7..4e2337580fefdc19234d49e03bdead509cd2a7be 100644 --- a/app/code/core/Mage/User/view/adminhtml/role/info.phtml +++ b/app/code/core/Mage/User/view/adminhtml/role/info.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/User/view/adminhtml/role/users.phtml b/app/code/core/Mage/User/view/adminhtml/role/users.phtml index 9ac85acb007b082e319d4da8c34886cf0c76832a..38fd74195f7ce77a981353036bcb605a7a6a2c42 100644 --- a/app/code/core/Mage/User/view/adminhtml/role/users.phtml +++ b/app/code/core/Mage/User/view/adminhtml/role/users.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/User/view/adminhtml/role/users_grid_js.phtml b/app/code/core/Mage/User/view/adminhtml/role/users_grid_js.phtml index 9ee7d39853bd89e9aaa46b95f666abb91ac5a88c..66da342d58c12c14e2e5365c4bad51d63491bc61 100644 --- a/app/code/core/Mage/User/view/adminhtml/role/users_grid_js.phtml +++ b/app/code/core/Mage/User/view/adminhtml/role/users_grid_js.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/User/view/adminhtml/user/roles_grid_js.phtml b/app/code/core/Mage/User/view/adminhtml/user/roles_grid_js.phtml index 312a049b25142ff97199370eaf9f2971db9836d8..a632e48c7bf0e5584040a43b49b4879ff64265ab 100644 --- a/app/code/core/Mage/User/view/adminhtml/user/roles_grid_js.phtml +++ b/app/code/core/Mage/User/view/adminhtml/user/roles_grid_js.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Webapi/Block/Adminhtml/Role.php b/app/code/core/Mage/Webapi/Block/Adminhtml/Role.php index b47b60ffa944ddebb9875c8acc89cc8633de094a..d883f00c5c1091a93c10394650c1f4d8391f8243 100644 --- a/app/code/core/Mage/Webapi/Block/Adminhtml/Role.php +++ b/app/code/core/Mage/Webapi/Block/Adminhtml/Role.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Block_Adminhtml_Role extends Mage_Backend_Block_Widget_Grid_Container diff --git a/app/code/core/Mage/Webapi/Block/Adminhtml/Role/Edit.php b/app/code/core/Mage/Webapi/Block/Adminhtml/Role/Edit.php index 110e51edabcfb6ca01b6eb1b57a97fa3e89bd4ae..b542d78afb74f639fb65993af9c64fdfbc32ec84 100644 --- a/app/code/core/Mage/Webapi/Block/Adminhtml/Role/Edit.php +++ b/app/code/core/Mage/Webapi/Block/Adminhtml/Role/Edit.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * * @method Mage_Webapi_Block_Adminhtml_Role_Edit setApiRole() setApiRole(Mage_Webapi_Model_Acl_Role $role) diff --git a/app/code/core/Mage/Webapi/Block/Adminhtml/Role/Edit/Form.php b/app/code/core/Mage/Webapi/Block/Adminhtml/Role/Edit/Form.php index 52298ac02c5540fd443384b748eee12f469263fa..7537fc8605c0cb882c13c4f72d8266bc200ad7de 100644 --- a/app/code/core/Mage/Webapi/Block/Adminhtml/Role/Edit/Form.php +++ b/app/code/core/Mage/Webapi/Block/Adminhtml/Role/Edit/Form.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Block_Adminhtml_Role_Edit_Form extends Mage_Backend_Block_Widget_Form diff --git a/app/code/core/Mage/Webapi/Block/Adminhtml/Role/Edit/Tab/Main.php b/app/code/core/Mage/Webapi/Block/Adminhtml/Role/Edit/Tab/Main.php index e3f5298c96d07dca39d994a4845f416cb380ec65..d2043bd0c4f73dbf768bca7ba67264f012a71393 100644 --- a/app/code/core/Mage/Webapi/Block/Adminhtml/Role/Edit/Tab/Main.php +++ b/app/code/core/Mage/Webapi/Block/Adminhtml/Role/Edit/Tab/Main.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * * @method Mage_Webapi_Block_Adminhtml_Role_Edit_Tab_Main setApiRole() setApiRole(Mage_Webapi_Model_Acl_Role $role) diff --git a/app/code/core/Mage/Webapi/Block/Adminhtml/Role/Edit/Tab/Resource.php b/app/code/core/Mage/Webapi/Block/Adminhtml/Role/Edit/Tab/Resource.php index 0a37f94910efe4b92d1a493cc19199841d2c2a75..64444785fa806a717cf3030ceac20a8c654a2ccf 100644 --- a/app/code/core/Mage/Webapi/Block/Adminhtml/Role/Edit/Tab/Resource.php +++ b/app/code/core/Mage/Webapi/Block/Adminhtml/Role/Edit/Tab/Resource.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * * @method Mage_Webapi_Block_Adminhtml_Role_Edit_Tab_Resource setApiRole() setApiRole(Mage_Webapi_Model_Acl_Role $role) diff --git a/app/code/core/Mage/Webapi/Block/Adminhtml/Role/Edit/Tabs.php b/app/code/core/Mage/Webapi/Block/Adminhtml/Role/Edit/Tabs.php index 8715196b386a570384fc043271dd24ac0fb8242e..913275bfe8f04b11992c15023abe9f3e2e767257 100644 --- a/app/code/core/Mage/Webapi/Block/Adminhtml/Role/Edit/Tabs.php +++ b/app/code/core/Mage/Webapi/Block/Adminhtml/Role/Edit/Tabs.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * * @method Mage_Webapi_Block_Adminhtml_Role_Edit_Tabs setApiRole() setApiRole(Mage_Webapi_Model_Acl_Role $role) diff --git a/app/code/core/Mage/Webapi/Block/Adminhtml/User.php b/app/code/core/Mage/Webapi/Block/Adminhtml/User.php index bc40788dd63d8da306dc507b73333e2052fcc285..bf0bb8d527e03b393270a479b60e25690bb240eb 100644 --- a/app/code/core/Mage/Webapi/Block/Adminhtml/User.php +++ b/app/code/core/Mage/Webapi/Block/Adminhtml/User.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Block_Adminhtml_User extends Mage_Backend_Block_Widget_Grid_Container diff --git a/app/code/core/Mage/Webapi/Block/Adminhtml/User/Edit.php b/app/code/core/Mage/Webapi/Block/Adminhtml/User/Edit.php index c5b9edd8b401927b9340b5ff49f51fb5a7264b10..250d147d61c5cd299b2e008f69acef21b8df69a1 100644 --- a/app/code/core/Mage/Webapi/Block/Adminhtml/User/Edit.php +++ b/app/code/core/Mage/Webapi/Block/Adminhtml/User/Edit.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * * @method Varien_Object getApiUser() getApiUser() diff --git a/app/code/core/Mage/Webapi/Block/Adminhtml/User/Edit/Form.php b/app/code/core/Mage/Webapi/Block/Adminhtml/User/Edit/Form.php index f9adf16367e214ea7db618d35af1fb185904a0ea..cd5e4dd337235fd4bfcc4a41985532afa3a78260 100644 --- a/app/code/core/Mage/Webapi/Block/Adminhtml/User/Edit/Form.php +++ b/app/code/core/Mage/Webapi/Block/Adminhtml/User/Edit/Form.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * * @method Mage_Webapi_Block_Adminhtml_User_Edit setApiUser() setApiUser(Mage_Webapi_Model_Acl_User $user) diff --git a/app/code/core/Mage/Webapi/Block/Adminhtml/User/Edit/Tab/Main.php b/app/code/core/Mage/Webapi/Block/Adminhtml/User/Edit/Tab/Main.php index 3a2e3aea96e381179b101e2d7e93ed8adfadf7c1..33ef324b966fdd21ffb09d3c59669d56c60e1e81 100644 --- a/app/code/core/Mage/Webapi/Block/Adminhtml/User/Edit/Tab/Main.php +++ b/app/code/core/Mage/Webapi/Block/Adminhtml/User/Edit/Tab/Main.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * * @method Mage_Webapi_Block_Adminhtml_User_Edit setApiUser() setApiUser(Mage_Webapi_Model_Acl_User $user) diff --git a/app/code/core/Mage/Webapi/Block/Adminhtml/User/Edit/Tabs.php b/app/code/core/Mage/Webapi/Block/Adminhtml/User/Edit/Tabs.php index dab4a354121126f5a983383c8cec184cfa5ab7c1..49cfa7e1ea0c0e731d92e347f06846bc08eec293 100644 --- a/app/code/core/Mage/Webapi/Block/Adminhtml/User/Edit/Tabs.php +++ b/app/code/core/Mage/Webapi/Block/Adminhtml/User/Edit/Tabs.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * * @method Varien_Object getApiUser() getApiUser() diff --git a/app/code/core/Mage/Webapi/Controller/Action/Factory.php b/app/code/core/Mage/Webapi/Controller/Action/Factory.php index c1503bccea1263d95575b3a753b36225bb0b4569..df285e59c909aa6a5b5572469d0ec30b4115531a 100644 --- a/app/code/core/Mage/Webapi/Controller/Action/Factory.php +++ b/app/code/core/Mage/Webapi/Controller/Action/Factory.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Controller_Action_Factory diff --git a/app/code/core/Mage/Webapi/Controller/ActionAbstract.php b/app/code/core/Mage/Webapi/Controller/ActionAbstract.php index 081da582300a39f90e705022be52f250dd40f847..0be209c14cda5e91170286e12628595e59e57bfe 100644 --- a/app/code/core/Mage/Webapi/Controller/ActionAbstract.php +++ b/app/code/core/Mage/Webapi/Controller/ActionAbstract.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ abstract class Mage_Webapi_Controller_ActionAbstract diff --git a/app/code/core/Mage/Webapi/Controller/Dispatcher/ErrorProcessor.php b/app/code/core/Mage/Webapi/Controller/Dispatcher/ErrorProcessor.php index 4651d2cf480b23da168a122318dd8e143b2fc944..6d10823e10f13513f43bf2112864df00eb8fdec3 100644 --- a/app/code/core/Mage/Webapi/Controller/Dispatcher/ErrorProcessor.php +++ b/app/code/core/Mage/Webapi/Controller/Dispatcher/ErrorProcessor.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Controller_Dispatcher_ErrorProcessor diff --git a/app/code/core/Mage/Webapi/Controller/Dispatcher/Factory.php b/app/code/core/Mage/Webapi/Controller/Dispatcher/Factory.php index cb820684050ab7c215c23daee242f32b413e3c41..bfe15dc9f6dc5b44b11ca5d308806573a7a5d225 100644 --- a/app/code/core/Mage/Webapi/Controller/Dispatcher/Factory.php +++ b/app/code/core/Mage/Webapi/Controller/Dispatcher/Factory.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Controller_Dispatcher_Factory diff --git a/app/code/core/Mage/Webapi/Controller/Dispatcher/Rest.php b/app/code/core/Mage/Webapi/Controller/Dispatcher/Rest.php index ca5597e76c9c1a6ea485a0b7703adb3c497bfd98..6ff9b2951f4c027792ad2f4120aa6b6c341d2e6e 100644 --- a/app/code/core/Mage/Webapi/Controller/Dispatcher/Rest.php +++ b/app/code/core/Mage/Webapi/Controller/Dispatcher/Rest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Controller_Dispatcher_Rest implements Mage_Webapi_Controller_DispatcherInterface diff --git a/app/code/core/Mage/Webapi/Controller/Dispatcher/Rest/Authentication.php b/app/code/core/Mage/Webapi/Controller/Dispatcher/Rest/Authentication.php index 614b1a9466b3177816cec1e164a3643099bddb21..5b07abb10086ca072b3206c674ebd80703b333d7 100644 --- a/app/code/core/Mage/Webapi/Controller/Dispatcher/Rest/Authentication.php +++ b/app/code/core/Mage/Webapi/Controller/Dispatcher/Rest/Authentication.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Controller_Dispatcher_Rest_Authentication diff --git a/app/code/core/Mage/Webapi/Controller/Dispatcher/Rest/Presentation.php b/app/code/core/Mage/Webapi/Controller/Dispatcher/Rest/Presentation.php index 796040ca5e06bbd257770d9f1d4cf8e83b534f4c..815036b8344e6647eeb5bb7f0145798babaa795e 100644 --- a/app/code/core/Mage/Webapi/Controller/Dispatcher/Rest/Presentation.php +++ b/app/code/core/Mage/Webapi/Controller/Dispatcher/Rest/Presentation.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Controller_Dispatcher_Rest_Presentation diff --git a/app/code/core/Mage/Webapi/Controller/Dispatcher/Soap.php b/app/code/core/Mage/Webapi/Controller/Dispatcher/Soap.php index 6513f65b65f37fab21c239ae37b154ea9c4ed5b3..91d9831971426c24efafe89da764475a8accd9dc 100644 --- a/app/code/core/Mage/Webapi/Controller/Dispatcher/Soap.php +++ b/app/code/core/Mage/Webapi/Controller/Dispatcher/Soap.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Controller_Dispatcher_Soap implements Mage_Webapi_Controller_DispatcherInterface diff --git a/app/code/core/Mage/Webapi/Controller/Dispatcher/Soap/Authentication.php b/app/code/core/Mage/Webapi/Controller/Dispatcher/Soap/Authentication.php index f69da14401403fc1145ec2dfc98e4ee49aec0121..32f74f6ee6adc62eff849c73ba5e3b1e096cb192 100644 --- a/app/code/core/Mage/Webapi/Controller/Dispatcher/Soap/Authentication.php +++ b/app/code/core/Mage/Webapi/Controller/Dispatcher/Soap/Authentication.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Controller_Dispatcher_Soap_Authentication diff --git a/app/code/core/Mage/Webapi/Controller/Dispatcher/Soap/Handler.php b/app/code/core/Mage/Webapi/Controller/Dispatcher/Soap/Handler.php index a774c174353f1d6884cb53bac0414b6141152597..539e6f056c71e7d78f739b9217f7c921fc66640a 100644 --- a/app/code/core/Mage/Webapi/Controller/Dispatcher/Soap/Handler.php +++ b/app/code/core/Mage/Webapi/Controller/Dispatcher/Soap/Handler.php @@ -22,7 +22,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Controller_Dispatcher_Soap_Handler diff --git a/app/code/core/Mage/Webapi/Controller/DispatcherInterface.php b/app/code/core/Mage/Webapi/Controller/DispatcherInterface.php index bb9730ec8058a1e65e308288f42b8de06db28a99..812eeb684a0585d6c5ec5862eb6917630cc04c2d 100644 --- a/app/code/core/Mage/Webapi/Controller/DispatcherInterface.php +++ b/app/code/core/Mage/Webapi/Controller/DispatcherInterface.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ interface Mage_Webapi_Controller_DispatcherInterface diff --git a/app/code/core/Mage/Webapi/Controller/Front.php b/app/code/core/Mage/Webapi/Controller/Front.php index be07a91dadf2603fe94f05ce2ba5485c20a7ece9..94193c037006505fa4a78d1f5fc4b8c769543e2a 100644 --- a/app/code/core/Mage/Webapi/Controller/Front.php +++ b/app/code/core/Mage/Webapi/Controller/Front.php @@ -22,7 +22,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Controller_Front implements Mage_Core_Controller_FrontInterface diff --git a/app/code/core/Mage/Webapi/Controller/Request.php b/app/code/core/Mage/Webapi/Controller/Request.php index 3ba729543731e096c9d415478f1ca1c0e7740e68..8d436e4afacca7b0a1fb31982b6f7addf399466a 100644 --- a/app/code/core/Mage/Webapi/Controller/Request.php +++ b/app/code/core/Mage/Webapi/Controller/Request.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Controller_Request extends Zend_Controller_Request_Http diff --git a/app/code/core/Mage/Webapi/Controller/Request/Factory.php b/app/code/core/Mage/Webapi/Controller/Request/Factory.php index 1fd912b9541b9a57e279adbbf984451ee7a99727..e73d07adf31e73203319afe99bf4a64b1a056e1c 100644 --- a/app/code/core/Mage/Webapi/Controller/Request/Factory.php +++ b/app/code/core/Mage/Webapi/Controller/Request/Factory.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Controller_Request_Factory diff --git a/app/code/core/Mage/Webapi/Controller/Request/Rest.php b/app/code/core/Mage/Webapi/Controller/Request/Rest.php index a70d533696c035d4a9bf5f448621406cca159f89..46abbd72b0616060fb0689593a2cb31aa42505a1 100644 --- a/app/code/core/Mage/Webapi/Controller/Request/Rest.php +++ b/app/code/core/Mage/Webapi/Controller/Request/Rest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Controller_Request_Rest extends Mage_Webapi_Controller_Request diff --git a/app/code/core/Mage/Webapi/Controller/Request/Rest/Interpreter/Factory.php b/app/code/core/Mage/Webapi/Controller/Request/Rest/Interpreter/Factory.php index 6d12ad8434b266ea520493c9500fd11d1291d416..048366b46fa0ae75312c761fc6ca0712d03aa0d3 100644 --- a/app/code/core/Mage/Webapi/Controller/Request/Rest/Interpreter/Factory.php +++ b/app/code/core/Mage/Webapi/Controller/Request/Rest/Interpreter/Factory.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Controller_Request_Rest_Interpreter_Factory diff --git a/app/code/core/Mage/Webapi/Controller/Request/Rest/Interpreter/Json.php b/app/code/core/Mage/Webapi/Controller/Request/Rest/Interpreter/Json.php index f9cf4946caf9fcac7b1f8355ac867929a95fd3e0..773ee5dbcc42d1f9d8657f4371f49b7a575d58bb 100644 --- a/app/code/core/Mage/Webapi/Controller/Request/Rest/Interpreter/Json.php +++ b/app/code/core/Mage/Webapi/Controller/Request/Rest/Interpreter/Json.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Controller_Request_Rest_Interpreter_Json implements diff --git a/app/code/core/Mage/Webapi/Controller/Request/Rest/Interpreter/Xml.php b/app/code/core/Mage/Webapi/Controller/Request/Rest/Interpreter/Xml.php index f1f50ba936ddbfab2674d48ef28a2ed1ca27b065..2a8a0656e4e5414d4db454b4146af280728dffb7 100644 --- a/app/code/core/Mage/Webapi/Controller/Request/Rest/Interpreter/Xml.php +++ b/app/code/core/Mage/Webapi/Controller/Request/Rest/Interpreter/Xml.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Controller_Request_Rest_Interpreter_Xml implements diff --git a/app/code/core/Mage/Webapi/Controller/Request/Rest/InterpreterInterface.php b/app/code/core/Mage/Webapi/Controller/Request/Rest/InterpreterInterface.php index e8807e21ff14fd6b0b27d7be307f65cece34e7a9..9d4ca4dda07513843fce70c6f3785b72bb26ff24 100644 --- a/app/code/core/Mage/Webapi/Controller/Request/Rest/InterpreterInterface.php +++ b/app/code/core/Mage/Webapi/Controller/Request/Rest/InterpreterInterface.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ interface Mage_Webapi_Controller_Request_Rest_InterpreterInterface diff --git a/app/code/core/Mage/Webapi/Controller/Request/Soap.php b/app/code/core/Mage/Webapi/Controller/Request/Soap.php index 241d7856cf76e2e20384b4ab2479ab5a7c583f9b..8e00c687cde1e33b49fea67bb844c983cb8e3577 100644 --- a/app/code/core/Mage/Webapi/Controller/Request/Soap.php +++ b/app/code/core/Mage/Webapi/Controller/Request/Soap.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Controller_Request_Soap extends Mage_Webapi_Controller_Request diff --git a/app/code/core/Mage/Webapi/Controller/Response.php b/app/code/core/Mage/Webapi/Controller/Response.php index 7ff56abd8482f732254f788c2e12cb9da8ade63b..358f02dcbd9b428c5d8ecc670d0ff77733e10f70 100644 --- a/app/code/core/Mage/Webapi/Controller/Response.php +++ b/app/code/core/Mage/Webapi/Controller/Response.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Controller_Response extends Zend_Controller_Response_Http diff --git a/app/code/core/Mage/Webapi/Controller/Response/Factory.php b/app/code/core/Mage/Webapi/Controller/Response/Factory.php index 08947050ea66bf4cda4dceba47bfde29144be960..3ec99ccf4bdf9dd7350dc0170cfd0c7407ed5f59 100644 --- a/app/code/core/Mage/Webapi/Controller/Response/Factory.php +++ b/app/code/core/Mage/Webapi/Controller/Response/Factory.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Controller_Response_Factory diff --git a/app/code/core/Mage/Webapi/Controller/Response/Rest.php b/app/code/core/Mage/Webapi/Controller/Response/Rest.php index e3a2670b470cc68e2c646dc372148e60c39d4f69..c372515a80448d064e0ff6bbc0394834e940bfb1 100644 --- a/app/code/core/Mage/Webapi/Controller/Response/Rest.php +++ b/app/code/core/Mage/Webapi/Controller/Response/Rest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Controller_Response_Rest extends Mage_Webapi_Controller_Response diff --git a/app/code/core/Mage/Webapi/Controller/Response/Rest/Renderer/Factory.php b/app/code/core/Mage/Webapi/Controller/Response/Rest/Renderer/Factory.php index 5e955059899a03d1cd65f353184c0bb63aee45c3..ad8a447c22917ca0bd3c2dca2af7f6325ea5b335 100644 --- a/app/code/core/Mage/Webapi/Controller/Response/Rest/Renderer/Factory.php +++ b/app/code/core/Mage/Webapi/Controller/Response/Rest/Renderer/Factory.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Controller_Response_Rest_Renderer_Factory diff --git a/app/code/core/Mage/Webapi/Controller/Response/Rest/Renderer/Json.php b/app/code/core/Mage/Webapi/Controller/Response/Rest/Renderer/Json.php index 4e60de9f3a9c3144e59d1ae6277c556a0071ff9b..cfc846fef5354115c4cc00818f2c2ceb01974fe0 100644 --- a/app/code/core/Mage/Webapi/Controller/Response/Rest/Renderer/Json.php +++ b/app/code/core/Mage/Webapi/Controller/Response/Rest/Renderer/Json.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Controller_Response_Rest_Renderer_Json implements diff --git a/app/code/core/Mage/Webapi/Controller/Response/Rest/Renderer/Xml.php b/app/code/core/Mage/Webapi/Controller/Response/Rest/Renderer/Xml.php index 23a6898d82518a65b7768cb52fcd2b598019489b..9130dc7c906f236100341504f57919853c9c31a4 100644 --- a/app/code/core/Mage/Webapi/Controller/Response/Rest/Renderer/Xml.php +++ b/app/code/core/Mage/Webapi/Controller/Response/Rest/Renderer/Xml.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Controller_Response_Rest_Renderer_Xml implements diff --git a/app/code/core/Mage/Webapi/Controller/Response/Rest/RendererInterface.php b/app/code/core/Mage/Webapi/Controller/Response/Rest/RendererInterface.php index b3ab1b4d34cdb812d25039e64e2988847aa45a6c..40630310dd80b7c2165e6d930e20096201692667 100644 --- a/app/code/core/Mage/Webapi/Controller/Response/Rest/RendererInterface.php +++ b/app/code/core/Mage/Webapi/Controller/Response/Rest/RendererInterface.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ interface Mage_Webapi_Controller_Response_Rest_RendererInterface diff --git a/app/code/core/Mage/Webapi/Controller/Router/Rest.php b/app/code/core/Mage/Webapi/Controller/Router/Rest.php index dcd7522d315eb8e947517a1804b3640b9a5b207c..d7b34cb75277013e685bdf885a7c865f55f0e058 100644 --- a/app/code/core/Mage/Webapi/Controller/Router/Rest.php +++ b/app/code/core/Mage/Webapi/Controller/Router/Rest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Controller_Router_Rest diff --git a/app/code/core/Mage/Webapi/Controller/Router/Route/Rest.php b/app/code/core/Mage/Webapi/Controller/Router/Route/Rest.php index 72c37bc866c8686716a97be045cd706a0fd290c9..31851fed1566e0387db5e1291e18710221f5804e 100644 --- a/app/code/core/Mage/Webapi/Controller/Router/Route/Rest.php +++ b/app/code/core/Mage/Webapi/Controller/Router/Route/Rest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Controller_Router_Route_Rest extends Mage_Webapi_Controller_Router_RouteAbstract diff --git a/app/code/core/Mage/Webapi/Controller/Router/Route/Webapi.php b/app/code/core/Mage/Webapi/Controller/Router/Route/Webapi.php index 4412ab90dc1a82df2f2b68c9529549f1fa2cb237..eeba98de52d142662f9b11fa9dede61dfe5e6325 100644 --- a/app/code/core/Mage/Webapi/Controller/Router/Route/Webapi.php +++ b/app/code/core/Mage/Webapi/Controller/Router/Route/Webapi.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Controller_Router_Route_Webapi extends Mage_Webapi_Controller_Router_RouteAbstract diff --git a/app/code/core/Mage/Webapi/Controller/Router/RouteAbstract.php b/app/code/core/Mage/Webapi/Controller/Router/RouteAbstract.php index a330a9eee4dc49120a5ee9aa52268498f88e5fe1..371559b7f950d85ffa207fcb4f38cca71344ea26 100644 --- a/app/code/core/Mage/Webapi/Controller/Router/RouteAbstract.php +++ b/app/code/core/Mage/Webapi/Controller/Router/RouteAbstract.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ abstract class Mage_Webapi_Controller_Router_RouteAbstract extends Zend_Controller_Router_Route diff --git a/app/code/core/Mage/Webapi/Exception.php b/app/code/core/Mage/Webapi/Exception.php index 0cc4835d8497ac97036b744ea61211b1a13c39e7..aef61f6529d50bc1608603e66fc1d5a4d5ebfb38 100644 --- a/app/code/core/Mage/Webapi/Exception.php +++ b/app/code/core/Mage/Webapi/Exception.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Exception extends RuntimeException diff --git a/app/code/core/Mage/Webapi/Helper/Config.php b/app/code/core/Mage/Webapi/Helper/Config.php index d740e0fddbcf7df2a5b8588265fac83278f3a213..50bb5e72e1e4f45ff727224251e76a2e80ff72a1 100644 --- a/app/code/core/Mage/Webapi/Helper/Config.php +++ b/app/code/core/Mage/Webapi/Helper/Config.php @@ -22,7 +22,7 @@ use Zend\Server\Reflection\ReflectionMethod; * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Helper_Config extends Mage_Core_Helper_Abstract diff --git a/app/code/core/Mage/Webapi/Helper/Data.php b/app/code/core/Mage/Webapi/Helper/Data.php index 85a2b37b1b84f5741c72b9713affd195ee0378e4..a9aa45f94a597c6b66228c827f9a55e0c880d675 100644 --- a/app/code/core/Mage/Webapi/Helper/Data.php +++ b/app/code/core/Mage/Webapi/Helper/Data.php @@ -22,7 +22,7 @@ use Zend\Server\Reflection\ReflectionMethod; * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Helper_Data extends Mage_Core_Helper_Abstract diff --git a/app/code/core/Mage/Webapi/Model/Acl/Role.php b/app/code/core/Mage/Webapi/Model/Acl/Role.php index c70aadb9070f62cf377dc1e59ea49125dff6c66a..7772151de67b98f1e06bea4fbb81417e1fd229d8 100644 --- a/app/code/core/Mage/Webapi/Model/Acl/Role.php +++ b/app/code/core/Mage/Webapi/Model/Acl/Role.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Model_Acl_Role extends Mage_Core_Model_Abstract diff --git a/app/code/core/Mage/Webapi/Model/Acl/Role/Factory.php b/app/code/core/Mage/Webapi/Model/Acl/Role/Factory.php index e191b48108ab35813df1a41a2de66f81c671aea3..4dffae2934bd1d7d6952bb8f9580b2dd2cb53ea2 100644 --- a/app/code/core/Mage/Webapi/Model/Acl/Role/Factory.php +++ b/app/code/core/Mage/Webapi/Model/Acl/Role/Factory.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Model_Acl_Role_Factory diff --git a/app/code/core/Mage/Webapi/Model/Acl/Role/InRoleUserUpdater.php b/app/code/core/Mage/Webapi/Model/Acl/Role/InRoleUserUpdater.php index ab33555a9257595dabf023caad126c5ae4a2efc9..eb7ab11da49dfe7fb1e8f3a9a01f946bbafd86ed 100644 --- a/app/code/core/Mage/Webapi/Model/Acl/Role/InRoleUserUpdater.php +++ b/app/code/core/Mage/Webapi/Model/Acl/Role/InRoleUserUpdater.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Model_Acl_Role_InRoleUserUpdater implements Mage_Core_Model_Layout_Argument_UpdaterInterface diff --git a/app/code/core/Mage/Webapi/Model/Acl/Role/UsersUpdater.php b/app/code/core/Mage/Webapi/Model/Acl/Role/UsersUpdater.php index 6f26d30c827aea513f024e01b88bd9087f365fd6..c7850fea9bb1f3f9302601ed0b85655d2b8a3632 100644 --- a/app/code/core/Mage/Webapi/Model/Acl/Role/UsersUpdater.php +++ b/app/code/core/Mage/Webapi/Model/Acl/Role/UsersUpdater.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Model_Acl_Role_UsersUpdater implements Mage_Core_Model_Layout_Argument_UpdaterInterface diff --git a/app/code/core/Mage/Webapi/Model/Acl/Rule.php b/app/code/core/Mage/Webapi/Model/Acl/Rule.php index 61e6cd817f1e13b3d950ecad58245a121908e298..e2116d749c25802a74e8b1ec2d3ad69125a9e82a 100644 --- a/app/code/core/Mage/Webapi/Model/Acl/Rule.php +++ b/app/code/core/Mage/Webapi/Model/Acl/Rule.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * * @method int getRoleId() getRoleId() diff --git a/app/code/core/Mage/Webapi/Model/Acl/User.php b/app/code/core/Mage/Webapi/Model/Acl/User.php index a9d8045ae5ab721f57769a76fa2d6be31c4201d9..a27f63750e00c5546b1dd5821233d6825926eda9 100644 --- a/app/code/core/Mage/Webapi/Model/Acl/User.php +++ b/app/code/core/Mage/Webapi/Model/Acl/User.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * * @method Mage_Webapi_Model_Acl_User setRoleId() setRoleId(int $id) diff --git a/app/code/core/Mage/Webapi/Model/Acl/User/Factory.php b/app/code/core/Mage/Webapi/Model/Acl/User/Factory.php index b2eecc3b79d76745ce9cb45d9336f4f367d472f3..e574abb9a29e593f4b27d85975b6d73a9b56f36d 100644 --- a/app/code/core/Mage/Webapi/Model/Acl/User/Factory.php +++ b/app/code/core/Mage/Webapi/Model/Acl/User/Factory.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Model_Acl_User_Factory extends Mage_Oauth_Model_Consumer_Factory diff --git a/app/code/core/Mage/Webapi/Model/Acl/User/RoleUpdater.php b/app/code/core/Mage/Webapi/Model/Acl/User/RoleUpdater.php index 0721df457522e2caeef36a4fab8a219983b02f7b..6ad803eb2a5055729a7359d7443625d9dbe106e6 100644 --- a/app/code/core/Mage/Webapi/Model/Acl/User/RoleUpdater.php +++ b/app/code/core/Mage/Webapi/Model/Acl/User/RoleUpdater.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Model_Acl_User_RoleUpdater implements Mage_Core_Model_Layout_Argument_UpdaterInterface diff --git a/app/code/core/Mage/Webapi/Model/Authorization.php b/app/code/core/Mage/Webapi/Model/Authorization.php index 81a53cab7812957584b1a2c0056d743d59a38774..0b2e76a56b56f96c0ef8e90168348f43a9fc72a2 100644 --- a/app/code/core/Mage/Webapi/Model/Authorization.php +++ b/app/code/core/Mage/Webapi/Model/Authorization.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Model_Authorization diff --git a/app/code/core/Mage/Webapi/Model/Authorization/Config.php b/app/code/core/Mage/Webapi/Model/Authorization/Config.php index 4fb805d888067d08fe5db12ad898a96e2fb2f871..b5edcd6425bd9401b0cfab34c4e7dd2b24605a47 100644 --- a/app/code/core/Mage/Webapi/Model/Authorization/Config.php +++ b/app/code/core/Mage/Webapi/Model/Authorization/Config.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Model_Authorization_Config implements Mage_Core_Model_Acl_Config_ConfigInterface diff --git a/app/code/core/Mage/Webapi/Model/Authorization/Config/Reader.php b/app/code/core/Mage/Webapi/Model/Authorization/Config/Reader.php index 15c3edcbe61e41b197582d91c399951b6bad51e0..a8039c7eedea796abc7720956cc98c9da155de13 100644 --- a/app/code/core/Mage/Webapi/Model/Authorization/Config/Reader.php +++ b/app/code/core/Mage/Webapi/Model/Authorization/Config/Reader.php @@ -20,11 +20,29 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Model_Authorization_Config_Reader extends Magento_Acl_Config_Reader { + /** + * @var Mage_Core_Model_Config + */ + protected $_config; + + /** + * @param Mage_Core_Model_Config $config + * @param array $configFiles + * @throws InvalidArgumentException + */ + public function __construct( + Mage_Core_Model_Config $config, + array $configFiles + ) { + parent::__construct($configFiles); + $this->_config = $config; + } + /** * Get absolute path to the XML-schema file. * @@ -32,7 +50,7 @@ class Mage_Webapi_Model_Authorization_Config_Reader extends Magento_Acl_Config_R */ public function getSchemaFile() { - return __DIR__ . DIRECTORY_SEPARATOR . 'acl.xsd'; + return $this->_config->getModuleDir('etc', 'Mage_Webapi') . DIRECTORY_SEPARATOR . 'acl.xsd'; } /** diff --git a/app/code/core/Mage/Webapi/Model/Authorization/Config/Reader/Factory.php b/app/code/core/Mage/Webapi/Model/Authorization/Config/Reader/Factory.php index 6c37970523fbd85e40b6eb0ff9f796464b68c271..e269ca3881875f454289c8aa2d27bf3a216d6349 100644 --- a/app/code/core/Mage/Webapi/Model/Authorization/Config/Reader/Factory.php +++ b/app/code/core/Mage/Webapi/Model/Authorization/Config/Reader/Factory.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Model_Authorization_Config_Reader_Factory diff --git a/app/code/core/Mage/Webapi/Model/Authorization/Loader/Resource.php b/app/code/core/Mage/Webapi/Model/Authorization/Loader/Resource.php index a834985714b2b2ba6dc95fc7ada4f4315ed86c7a..ed1183e834f1eecbac41468ae0d3ab43769e87c0 100644 --- a/app/code/core/Mage/Webapi/Model/Authorization/Loader/Resource.php +++ b/app/code/core/Mage/Webapi/Model/Authorization/Loader/Resource.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Model_Authorization_Loader_Resource extends Mage_Core_Model_Acl_Loader_Resource_ResourceAbstract diff --git a/app/code/core/Mage/Webapi/Model/Authorization/Loader/Role.php b/app/code/core/Mage/Webapi/Model/Authorization/Loader/Role.php index a873eba7f070ffb241bcce49c1f93767699f69e1..168348598474b48408c8420caff76b04bf964d13 100644 --- a/app/code/core/Mage/Webapi/Model/Authorization/Loader/Role.php +++ b/app/code/core/Mage/Webapi/Model/Authorization/Loader/Role.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Model_Authorization_Loader_Role implements Magento_Acl_Loader diff --git a/app/code/core/Mage/Webapi/Model/Authorization/Loader/Rule.php b/app/code/core/Mage/Webapi/Model/Authorization/Loader/Rule.php index bf37b06f799c277eb7cba6cb993a7a11fe691093..cb7ab5fb44faafc55ddb533280bb97f6d1a03d83 100644 --- a/app/code/core/Mage/Webapi/Model/Authorization/Loader/Rule.php +++ b/app/code/core/Mage/Webapi/Model/Authorization/Loader/Rule.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Model_Authorization_Loader_Rule implements Magento_Acl_Loader diff --git a/app/code/core/Mage/Webapi/Model/Authorization/Role.php b/app/code/core/Mage/Webapi/Model/Authorization/Role.php index 7cfaf9ed86cd503832c1997b2366da77c67a79d8..3f108579c22b97239be59ced5d3e0a08cc88343e 100644 --- a/app/code/core/Mage/Webapi/Model/Authorization/Role.php +++ b/app/code/core/Mage/Webapi/Model/Authorization/Role.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Model_Authorization_Role extends Zend_Acl_Role diff --git a/app/code/core/Mage/Webapi/Model/Authorization/Role/Factory.php b/app/code/core/Mage/Webapi/Model/Authorization/Role/Factory.php index e655dea7b27c9f9c47440bfd3ea6a311a8407e7f..2d6fcba26b1c26eefbc6ab4a9cbe6906899c7efb 100644 --- a/app/code/core/Mage/Webapi/Model/Authorization/Role/Factory.php +++ b/app/code/core/Mage/Webapi/Model/Authorization/Role/Factory.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Model_Authorization_Role_Factory diff --git a/app/code/core/Mage/Webapi/Model/Authorization/RoleLocator.php b/app/code/core/Mage/Webapi/Model/Authorization/RoleLocator.php index 281301f34471527d05d79e94acbacb9721be7b1c..2daac7971af9a6a8a7abc7fe5a57974f5fd3a729 100644 --- a/app/code/core/Mage/Webapi/Model/Authorization/RoleLocator.php +++ b/app/code/core/Mage/Webapi/Model/Authorization/RoleLocator.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Model_Authorization_RoleLocator implements Magento_Authorization_RoleLocator diff --git a/app/code/core/Mage/Webapi/Model/Config/Reader/ClassReflectorAbstract.php b/app/code/core/Mage/Webapi/Model/Config/Reader/ClassReflectorAbstract.php index b0210c5b19f4f2484d0af37625d6bf22fce9f145..3b78a88c1ce66506eee5e1d3ace556fe34f805b9 100644 --- a/app/code/core/Mage/Webapi/Model/Config/Reader/ClassReflectorAbstract.php +++ b/app/code/core/Mage/Webapi/Model/Config/Reader/ClassReflectorAbstract.php @@ -24,7 +24,7 @@ use Zend\Server\Reflection, * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ abstract class Mage_Webapi_Model_Config_Reader_ClassReflectorAbstract diff --git a/app/code/core/Mage/Webapi/Model/Config/Reader/Rest.php b/app/code/core/Mage/Webapi/Model/Config/Reader/Rest.php index fbec1096a84c04d822bfd8ae22c72351ed132075..b118de8f3c3356ce2776e441a54a54315cd14475 100644 --- a/app/code/core/Mage/Webapi/Model/Config/Reader/Rest.php +++ b/app/code/core/Mage/Webapi/Model/Config/Reader/Rest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Model_Config_Reader_Rest extends Mage_Webapi_Model_Config_ReaderAbstract diff --git a/app/code/core/Mage/Webapi/Model/Config/Reader/Rest/ClassReflector.php b/app/code/core/Mage/Webapi/Model/Config/Reader/Rest/ClassReflector.php index ada41e259a11b2d2ddd4dba622d8f729d52b9bb3..ad51b937d869bb6657af5182abda83420506abda 100644 --- a/app/code/core/Mage/Webapi/Model/Config/Reader/Rest/ClassReflector.php +++ b/app/code/core/Mage/Webapi/Model/Config/Reader/Rest/ClassReflector.php @@ -22,7 +22,7 @@ use Zend\Server\Reflection\ReflectionMethod; * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Model_Config_Reader_Rest_ClassReflector extends Mage_Webapi_Model_Config_Reader_ClassReflectorAbstract diff --git a/app/code/core/Mage/Webapi/Model/Config/Reader/Rest/RouteGenerator.php b/app/code/core/Mage/Webapi/Model/Config/Reader/Rest/RouteGenerator.php index 5bdb454bc156b846b3f47f7a33e5f33c83ecb3ee..c2dd75b07ef921df40d067ca25fe8a2546d8f27d 100644 --- a/app/code/core/Mage/Webapi/Model/Config/Reader/Rest/RouteGenerator.php +++ b/app/code/core/Mage/Webapi/Model/Config/Reader/Rest/RouteGenerator.php @@ -22,7 +22,7 @@ use Zend\Server\Reflection\ReflectionMethod; * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Model_Config_Reader_Rest_RouteGenerator diff --git a/app/code/core/Mage/Webapi/Model/Config/Reader/Soap.php b/app/code/core/Mage/Webapi/Model/Config/Reader/Soap.php index 6b33c190ca49eb7f7dd8ed38d44497749d044c7d..b1d7522dece2d1359757d8dcf244e3685ca90de2 100644 --- a/app/code/core/Mage/Webapi/Model/Config/Reader/Soap.php +++ b/app/code/core/Mage/Webapi/Model/Config/Reader/Soap.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Model_Config_Reader_Soap extends Mage_Webapi_Model_Config_ReaderAbstract diff --git a/app/code/core/Mage/Webapi/Model/Config/Reader/Soap/ClassReflector.php b/app/code/core/Mage/Webapi/Model/Config/Reader/Soap/ClassReflector.php index 4c0cd7cd15f0c20e9dbd83f7d1ea327250ffc62c..99ec0d8f91149e12117b39548438a391d6799142 100644 --- a/app/code/core/Mage/Webapi/Model/Config/Reader/Soap/ClassReflector.php +++ b/app/code/core/Mage/Webapi/Model/Config/Reader/Soap/ClassReflector.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Model_Config_Reader_Soap_ClassReflector diff --git a/app/code/core/Mage/Webapi/Model/Config/Reader/TypeProcessor.php b/app/code/core/Mage/Webapi/Model/Config/Reader/TypeProcessor.php index 478e56c01e81b78e8c80fd0114518cae159f6b9f..91c6295b37f495696436876d07c01d7972172fd8 100644 --- a/app/code/core/Mage/Webapi/Model/Config/Reader/TypeProcessor.php +++ b/app/code/core/Mage/Webapi/Model/Config/Reader/TypeProcessor.php @@ -22,7 +22,7 @@ use Zend\Code\Reflection\ClassReflection; * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Model_Config_Reader_TypeProcessor diff --git a/app/code/core/Mage/Webapi/Model/Config/ReaderAbstract.php b/app/code/core/Mage/Webapi/Model/Config/ReaderAbstract.php index f078468a05d72a76c8c7b56aea0ad0a0f07f2814..2a7d29e60926fd47f10742e108caee102262087e 100644 --- a/app/code/core/Mage/Webapi/Model/Config/ReaderAbstract.php +++ b/app/code/core/Mage/Webapi/Model/Config/ReaderAbstract.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ abstract class Mage_Webapi_Model_Config_ReaderAbstract diff --git a/app/code/core/Mage/Webapi/Model/Config/Rest.php b/app/code/core/Mage/Webapi/Model/Config/Rest.php index 438d4bafcf90c43a64ca35eb57067b277007ecad..64bb74405a1d2bc783a9f9d4df8e0aa47d750ce8 100644 --- a/app/code/core/Mage/Webapi/Model/Config/Rest.php +++ b/app/code/core/Mage/Webapi/Model/Config/Rest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Model_Config_Rest extends Mage_Webapi_Model_ConfigAbstract diff --git a/app/code/core/Mage/Webapi/Model/Config/Soap.php b/app/code/core/Mage/Webapi/Model/Config/Soap.php index c43036abda559882216a689f1b59804bba5ff5c9..c139217b918dde1117300fcd8d73672a9b1af118 100644 --- a/app/code/core/Mage/Webapi/Model/Config/Soap.php +++ b/app/code/core/Mage/Webapi/Model/Config/Soap.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Model_Config_Soap extends Mage_Webapi_Model_ConfigAbstract diff --git a/app/code/core/Mage/Webapi/Model/ConfigAbstract.php b/app/code/core/Mage/Webapi/Model/ConfigAbstract.php index 5d46e73b36d91daa41190ac3ff22f9fdb21e3f64..864f6b1a3d1b651cbd76d60da98021922e33111c 100644 --- a/app/code/core/Mage/Webapi/Model/ConfigAbstract.php +++ b/app/code/core/Mage/Webapi/Model/ConfigAbstract.php @@ -25,7 +25,7 @@ use Zend\Server\Reflection\ReflectionMethod; * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ abstract class Mage_Webapi_Model_ConfigAbstract diff --git a/app/code/core/Mage/Webapi/Model/Resource/Acl/Role.php b/app/code/core/Mage/Webapi/Model/Resource/Acl/Role.php index 46cd96c0948089ec10dd8db89ae9cff4d4f26460..d8fb85a616123fcdcd3f480b3de96040fd4ecbec 100644 --- a/app/code/core/Mage/Webapi/Model/Resource/Acl/Role.php +++ b/app/code/core/Mage/Webapi/Model/Resource/Acl/Role.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Model_Resource_Acl_Role extends Mage_Core_Model_Resource_Db_Abstract diff --git a/app/code/core/Mage/Webapi/Model/Resource/Acl/Role/Collection.php b/app/code/core/Mage/Webapi/Model/Resource/Acl/Role/Collection.php index e9f88ea8ad9a61545a3d9bbdb0d7cc97ea30bcd8..dfdc1fc31c82e82c408e1986dc83eae57c450a98 100644 --- a/app/code/core/Mage/Webapi/Model/Resource/Acl/Role/Collection.php +++ b/app/code/core/Mage/Webapi/Model/Resource/Acl/Role/Collection.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Model_Resource_Acl_Role_Collection extends Mage_Core_Model_Resource_Db_Collection_Abstract diff --git a/app/code/core/Mage/Webapi/Model/Resource/Acl/Rule.php b/app/code/core/Mage/Webapi/Model/Resource/Acl/Rule.php index 521eae7432d2a541d53611f2052d9d407b4abd67..5abe75b4ebb4f4ecda75e78cd420342fb114dc7b 100644 --- a/app/code/core/Mage/Webapi/Model/Resource/Acl/Rule.php +++ b/app/code/core/Mage/Webapi/Model/Resource/Acl/Rule.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * * @method array getResources() getResources() diff --git a/app/code/core/Mage/Webapi/Model/Resource/Acl/Rule/Collection.php b/app/code/core/Mage/Webapi/Model/Resource/Acl/Rule/Collection.php index 879a4b1d20fd255fe04acd721e1dfd2acddcbcd5..c1b8df6f4d9263dee15a100dabe5892c11434de8 100644 --- a/app/code/core/Mage/Webapi/Model/Resource/Acl/Rule/Collection.php +++ b/app/code/core/Mage/Webapi/Model/Resource/Acl/Rule/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Webapi - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Webapi/Model/Resource/Acl/User.php b/app/code/core/Mage/Webapi/Model/Resource/Acl/User.php index a63ce1e5d76a8a76a8f751f2740d1be30ca29d97..452f1b61b0153117e031c48f314017b4e660d142 100644 --- a/app/code/core/Mage/Webapi/Model/Resource/Acl/User.php +++ b/app/code/core/Mage/Webapi/Model/Resource/Acl/User.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Model_Resource_Acl_User extends Mage_Core_Model_Resource_Db_Abstract diff --git a/app/code/core/Mage/Webapi/Model/Resource/Acl/User/Collection.php b/app/code/core/Mage/Webapi/Model/Resource/Acl/User/Collection.php index 59f44b58ffde71d505df8fd5089ab18877b9eb5f..63114c87a90292f722a800f54d40e7d7416c86ef 100755 --- a/app/code/core/Mage/Webapi/Model/Resource/Acl/User/Collection.php +++ b/app/code/core/Mage/Webapi/Model/Resource/Acl/User/Collection.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Model_Resource_Acl_User_Collection extends Mage_Core_Model_Resource_Db_Collection_Abstract diff --git a/app/code/core/Mage/Webapi/Model/Rest/Oauth/Server.php b/app/code/core/Mage/Webapi/Model/Rest/Oauth/Server.php index 5e24a1408119e8a4b1fe29dbf4980e7e27c23248..7a4fec67026cc486bf64e48d029cb72b63917908 100644 --- a/app/code/core/Mage/Webapi/Model/Rest/Oauth/Server.php +++ b/app/code/core/Mage/Webapi/Model/Rest/Oauth/Server.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Model_Rest_Oauth_Server extends Mage_Oauth_Model_Server diff --git a/app/code/core/Mage/Webapi/Model/Soap/AutoDiscover.php b/app/code/core/Mage/Webapi/Model/Soap/AutoDiscover.php index f94c51f38bd36ddbade96eb0b76ff480a237b79b..2d8ee7a52367575a98413e72dd9d67e8272a592c 100644 --- a/app/code/core/Mage/Webapi/Model/Soap/AutoDiscover.php +++ b/app/code/core/Mage/Webapi/Model/Soap/AutoDiscover.php @@ -22,7 +22,7 @@ use Zend\Soap\Wsdl; * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Model_Soap_AutoDiscover diff --git a/app/code/core/Mage/Webapi/Model/Soap/Fault.php b/app/code/core/Mage/Webapi/Model/Soap/Fault.php index 6939c9ef379781a8cd03f7166daa65388f33a3ef..9d5711b438b4d4e526506238e41829eb2dac89a8 100644 --- a/app/code/core/Mage/Webapi/Model/Soap/Fault.php +++ b/app/code/core/Mage/Webapi/Model/Soap/Fault.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Model_Soap_Fault extends RuntimeException diff --git a/app/code/core/Mage/Webapi/Model/Soap/Security/UsernameToken.php b/app/code/core/Mage/Webapi/Model/Soap/Security/UsernameToken.php index 239af446c5a690320fb063181c2521e9fcc75512..d7bc1e7af090db4461e1d5f30949c5bb5cfef0a4 100644 --- a/app/code/core/Mage/Webapi/Model/Soap/Security/UsernameToken.php +++ b/app/code/core/Mage/Webapi/Model/Soap/Security/UsernameToken.php @@ -21,7 +21,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Model_Soap_Security_UsernameToken diff --git a/app/code/core/Mage/Webapi/Model/Soap/Security/UsernameToken/Factory.php b/app/code/core/Mage/Webapi/Model/Soap/Security/UsernameToken/Factory.php index 9181f150f004ec2bb3af1b2b1d7c4d1477829eb2..e6a46977c72a71a5aea739dcf1785f9400ce2c52 100644 --- a/app/code/core/Mage/Webapi/Model/Soap/Security/UsernameToken/Factory.php +++ b/app/code/core/Mage/Webapi/Model/Soap/Security/UsernameToken/Factory.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Model_Soap_Security_UsernameToken_Factory diff --git a/app/code/core/Mage/Webapi/Model/Soap/Security/UsernameToken/InvalidCredentialException.php b/app/code/core/Mage/Webapi/Model/Soap/Security/UsernameToken/InvalidCredentialException.php index 83addf05dbb8283be916b9ade81f1b0818181c81..3643eecffeffca10a1027d05d12df7f316149cc0 100644 --- a/app/code/core/Mage/Webapi/Model/Soap/Security/UsernameToken/InvalidCredentialException.php +++ b/app/code/core/Mage/Webapi/Model/Soap/Security/UsernameToken/InvalidCredentialException.php @@ -21,7 +21,7 @@ * needs please refer to http://www.magentocommerce.com for more information. * * @see http://docs.oasis-open.org/wss-m/wss/v1.1.1/os/wss-UsernameTokenProfile-v1.1.1-os.html - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Model_Soap_Security_UsernameToken_InvalidCredentialException extends RuntimeException diff --git a/app/code/core/Mage/Webapi/Model/Soap/Security/UsernameToken/InvalidDateException.php b/app/code/core/Mage/Webapi/Model/Soap/Security/UsernameToken/InvalidDateException.php index a4793e6dfccaec5944e25a684ed46baef40dc07c..3ebe7a80e4a0dab8ec853d58979952e399cc040c 100644 --- a/app/code/core/Mage/Webapi/Model/Soap/Security/UsernameToken/InvalidDateException.php +++ b/app/code/core/Mage/Webapi/Model/Soap/Security/UsernameToken/InvalidDateException.php @@ -21,7 +21,7 @@ * needs please refer to http://www.magentocommerce.com for more information. * * @see http://docs.oasis-open.org/wss-m/wss/v1.1.1/os/wss-UsernameTokenProfile-v1.1.1-os.html - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Model_Soap_Security_UsernameToken_InvalidDateException extends RuntimeException diff --git a/app/code/core/Mage/Webapi/Model/Soap/Security/UsernameToken/InvalidPasswordTypeException.php b/app/code/core/Mage/Webapi/Model/Soap/Security/UsernameToken/InvalidPasswordTypeException.php index 273330373e6945316b067ec236ae52e3c6d03bc3..85170ae953ddfa0d1c2d9616420e86bd516cc4ad 100644 --- a/app/code/core/Mage/Webapi/Model/Soap/Security/UsernameToken/InvalidPasswordTypeException.php +++ b/app/code/core/Mage/Webapi/Model/Soap/Security/UsernameToken/InvalidPasswordTypeException.php @@ -21,7 +21,7 @@ * needs please refer to http://www.magentocommerce.com for more information. * * @see http://docs.oasis-open.org/wss-m/wss/v1.1.1/os/wss-UsernameTokenProfile-v1.1.1-os.html - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Model_Soap_Security_UsernameToken_InvalidPasswordTypeException extends RuntimeException diff --git a/app/code/core/Mage/Webapi/Model/Soap/Security/UsernameToken/NonceStorage.php b/app/code/core/Mage/Webapi/Model/Soap/Security/UsernameToken/NonceStorage.php index 98b895ad2a5411d44a339f99af76c876e81bae0d..60771c96708748ddd86e71a5fdef1bad08f238c3 100644 --- a/app/code/core/Mage/Webapi/Model/Soap/Security/UsernameToken/NonceStorage.php +++ b/app/code/core/Mage/Webapi/Model/Soap/Security/UsernameToken/NonceStorage.php @@ -21,7 +21,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Model_Soap_Security_UsernameToken_NonceStorage diff --git a/app/code/core/Mage/Webapi/Model/Soap/Security/UsernameToken/NonceUsedException.php b/app/code/core/Mage/Webapi/Model/Soap/Security/UsernameToken/NonceUsedException.php index d2d7e1c35f40d0bed5d4e6cac6c0ac841a8904c7..6348bc43d6c6fe9cca61911d80416b1ce0993fa6 100644 --- a/app/code/core/Mage/Webapi/Model/Soap/Security/UsernameToken/NonceUsedException.php +++ b/app/code/core/Mage/Webapi/Model/Soap/Security/UsernameToken/NonceUsedException.php @@ -21,7 +21,7 @@ * needs please refer to http://www.magentocommerce.com for more information. * * @see http://docs.oasis-open.org/wss-m/wss/v1.1.1/os/wss-UsernameTokenProfile-v1.1.1-os.html - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Model_Soap_Security_UsernameToken_NonceUsedException extends RuntimeException diff --git a/app/code/core/Mage/Webapi/Model/Soap/Security/UsernameToken/TimestampRefusedException.php b/app/code/core/Mage/Webapi/Model/Soap/Security/UsernameToken/TimestampRefusedException.php index 677196a976223a7b6960c4ac13e26bbef0514fc8..5a03e4ed825d00c6fc8c28e09766b1fc12b70473 100644 --- a/app/code/core/Mage/Webapi/Model/Soap/Security/UsernameToken/TimestampRefusedException.php +++ b/app/code/core/Mage/Webapi/Model/Soap/Security/UsernameToken/TimestampRefusedException.php @@ -21,7 +21,7 @@ * needs please refer to http://www.magentocommerce.com for more information. * * @see http://docs.oasis-open.org/wss-m/wss/v1.1.1/os/wss-UsernameTokenProfile-v1.1.1-os.html - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Model_Soap_Security_UsernameToken_TimestampRefusedException extends RuntimeException diff --git a/app/code/core/Mage/Webapi/Model/Soap/Server.php b/app/code/core/Mage/Webapi/Model/Soap/Server.php index e4db0b5ee22255850de1948e53034b0b6337848a..5609192b5675c7c3fccd9bae0729d5d29019db94 100644 --- a/app/code/core/Mage/Webapi/Model/Soap/Server.php +++ b/app/code/core/Mage/Webapi/Model/Soap/Server.php @@ -22,7 +22,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Model_Soap_Server extends \Zend\Soap\Server diff --git a/app/code/core/Mage/Webapi/Model/Soap/Wsdl.php b/app/code/core/Mage/Webapi/Model/Soap/Wsdl.php index d49c58ff21391e9677be1e27d45c203d70ee8e79..714dd9b10f0de3b319a44a5225a708d58b712579 100644 --- a/app/code/core/Mage/Webapi/Model/Soap/Wsdl.php +++ b/app/code/core/Mage/Webapi/Model/Soap/Wsdl.php @@ -22,7 +22,7 @@ use Zend\Soap\Wsdl; * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Model_Soap_Wsdl extends Wsdl diff --git a/app/code/core/Mage/Webapi/Model/Soap/Wsdl/ComplexTypeStrategy/ConfigBased.php b/app/code/core/Mage/Webapi/Model/Soap/Wsdl/ComplexTypeStrategy/ConfigBased.php index 07d10c3450778701a9154004c12a46f097af1035..160565b645cc98152644b49c318923d7c6f17ae7 100644 --- a/app/code/core/Mage/Webapi/Model/Soap/Wsdl/ComplexTypeStrategy/ConfigBased.php +++ b/app/code/core/Mage/Webapi/Model/Soap/Wsdl/ComplexTypeStrategy/ConfigBased.php @@ -24,7 +24,7 @@ use Zend\Soap\Wsdl\ComplexTypeStrategy\AbstractComplexTypeStrategy, * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Model_Soap_Wsdl_ComplexTypeStrategy_ConfigBased extends AbstractComplexTypeStrategy diff --git a/app/code/core/Mage/Webapi/Model/Soap/Wsdl/Factory.php b/app/code/core/Mage/Webapi/Model/Soap/Wsdl/Factory.php index e622905d5cc7ac36629ffd8ddcc59d0f0feaf3a7..1e422943c52fc7e53edfe89605abcf88c83fdcaa 100644 --- a/app/code/core/Mage/Webapi/Model/Soap/Wsdl/Factory.php +++ b/app/code/core/Mage/Webapi/Model/Soap/Wsdl/Factory.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Model_Soap_Wsdl_Factory diff --git a/app/code/core/Mage/Webapi/Model/Source/Acl/Role.php b/app/code/core/Mage/Webapi/Model/Source/Acl/Role.php index 0d48e320cfb80d866fb06267bef87583a9e18a0a..6356e463c5ca9613a61079c5e5ecfdc019c1b488 100644 --- a/app/code/core/Mage/Webapi/Model/Source/Acl/Role.php +++ b/app/code/core/Mage/Webapi/Model/Source/Acl/Role.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Webapi - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Webapi/controllers/Adminhtml/Webapi/RoleController.php b/app/code/core/Mage/Webapi/controllers/Adminhtml/Webapi/RoleController.php index 71dc4712248166e2ef46458dee597acbf64ff349..97dd6b1f42393f55c61038a102b8f4c8a73dd4cd 100644 --- a/app/code/core/Mage/Webapi/controllers/Adminhtml/Webapi/RoleController.php +++ b/app/code/core/Mage/Webapi/controllers/Adminhtml/Webapi/RoleController.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Adminhtml_Webapi_RoleController extends Mage_Adminhtml_Controller_Action diff --git a/app/code/core/Mage/Webapi/controllers/Adminhtml/Webapi/UserController.php b/app/code/core/Mage/Webapi/controllers/Adminhtml/Webapi/UserController.php index 3212acbd5cb8919ee002f3380ed8e455b48e7ea1..0a4e56aeba1def423c9b52627ca91a6448ade97e 100644 --- a/app/code/core/Mage/Webapi/controllers/Adminhtml/Webapi/UserController.php +++ b/app/code/core/Mage/Webapi/controllers/Adminhtml/Webapi/UserController.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Adminhtml_Webapi_UserController extends Mage_Backend_Controller_ActionAbstract diff --git a/app/code/core/Mage/Webapi/Model/Authorization/Config/acl.xsd b/app/code/core/Mage/Webapi/etc/acl.xsd similarity index 98% rename from app/code/core/Mage/Webapi/Model/Authorization/Config/acl.xsd rename to app/code/core/Mage/Webapi/etc/acl.xsd index 5416737be4174827017ab4067080ed52258e253f..e6854411194c4b4db762616b0265d4bd7250fb64 100644 --- a/app/code/core/Mage/Webapi/Model/Authorization/Config/acl.xsd +++ b/app/code/core/Mage/Webapi/etc/acl.xsd @@ -21,7 +21,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Webapi/etc/adminhtml/acl.xml b/app/code/core/Mage/Webapi/etc/adminhtml/acl.xml index 582cf660256d04f1f1299699310ffe44cb3a3b49..1c5bffe04ed8133b984c3576e0682103e494132a 100644 --- a/app/code/core/Mage/Webapi/etc/adminhtml/acl.xml +++ b/app/code/core/Mage/Webapi/etc/adminhtml/acl.xml @@ -21,7 +21,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Webapi/etc/adminhtml/menu.xml b/app/code/core/Mage/Webapi/etc/adminhtml/menu.xml index 349eb37b573c0c7f75474619ac8f8175f4928886..332a4fbc88cf4dd952706f473825e0b281f46914 100644 --- a/app/code/core/Mage/Webapi/etc/adminhtml/menu.xml +++ b/app/code/core/Mage/Webapi/etc/adminhtml/menu.xml @@ -21,7 +21,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Webapi/etc/adminhtml/system.xml b/app/code/core/Mage/Webapi/etc/adminhtml/system.xml index 1bfd4176802a65cc05cc6d15925d41fafdcc75e0..ef08d631b70c3d46849c77111003e65579acd2a2 100644 --- a/app/code/core/Mage/Webapi/etc/adminhtml/system.xml +++ b/app/code/core/Mage/Webapi/etc/adminhtml/system.xml @@ -21,7 +21,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Webapi/etc/config.xml b/app/code/core/Mage/Webapi/etc/config.xml index 49b3d138c93446772ab51c793b67b72c6f0d4f85..73dab0d689d05ab33cdfd962b238971c6dc9ae79 100644 --- a/app/code/core/Mage/Webapi/etc/config.xml +++ b/app/code/core/Mage/Webapi/etc/config.xml @@ -21,7 +21,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Webapi/etc/validation.xml b/app/code/core/Mage/Webapi/etc/validation.xml index ae7568f1879079baba8b982a6e318bc8a40832c8..e6efb9411c2d641ced90bb12237f5bbe1ec46c53 100644 --- a/app/code/core/Mage/Webapi/etc/validation.xml +++ b/app/code/core/Mage/Webapi/etc/validation.xml @@ -21,7 +21,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Webapi/sql/webapi_setup/install-1.0.0.0.php b/app/code/core/Mage/Webapi/sql/webapi_setup/install-1.0.0.0.php index 3226a93700bb0eba678b7998f8771226176c4593..e2ad3602133f6d48d1afce272c82566191c38879 100644 --- a/app/code/core/Mage/Webapi/sql/webapi_setup/install-1.0.0.0.php +++ b/app/code/core/Mage/Webapi/sql/webapi_setup/install-1.0.0.0.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Webapi/sql/webapi_setup/upgrade-1.0.0.0-1.0.0.1.php b/app/code/core/Mage/Webapi/sql/webapi_setup/upgrade-1.0.0.0-1.0.0.1.php index 76e478e83ae1139b37b05e4f36b6f9c56100b3af..9f6502ff32b672663b79b3b03186b4283525564a 100644 --- a/app/code/core/Mage/Webapi/sql/webapi_setup/upgrade-1.0.0.0-1.0.0.1.php +++ b/app/code/core/Mage/Webapi/sql/webapi_setup/upgrade-1.0.0.0-1.0.0.1.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Webapi/sql/webapi_setup/upgrade-1.0.0.1-1.0.0.2.php b/app/code/core/Mage/Webapi/sql/webapi_setup/upgrade-1.0.0.1-1.0.0.2.php index 1452442cf545ddcebbee17184e5897c59a32e85a..0956b47e103a756f1a268dd056d83ac20acb6e24 100644 --- a/app/code/core/Mage/Webapi/sql/webapi_setup/upgrade-1.0.0.1-1.0.0.2.php +++ b/app/code/core/Mage/Webapi/sql/webapi_setup/upgrade-1.0.0.1-1.0.0.2.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Webapi/sql/webapi_setup/upgrade-1.0.0.2-1.0.0.3.php b/app/code/core/Mage/Webapi/sql/webapi_setup/upgrade-1.0.0.2-1.0.0.3.php index f88ac4ab356786bd432b4075a40888f546a6c70f..d761f118e39b246fadbf67c0930e6fccc6e4261d 100644 --- a/app/code/core/Mage/Webapi/sql/webapi_setup/upgrade-1.0.0.2-1.0.0.3.php +++ b/app/code/core/Mage/Webapi/sql/webapi_setup/upgrade-1.0.0.2-1.0.0.3.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Webapi/view/adminhtml/layout.xml b/app/code/core/Mage/Webapi/view/adminhtml/layout.xml index 0bf7b5ae82dff73aa1acea16b383088777c4e71b..7c46a44c43e8896318f06f28a868d75dc7a36fe2 100644 --- a/app/code/core/Mage/Webapi/view/adminhtml/layout.xml +++ b/app/code/core/Mage/Webapi/view/adminhtml/layout.xml @@ -21,7 +21,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Webapi/view/adminhtml/rolesedit.phtml b/app/code/core/Mage/Webapi/view/adminhtml/rolesedit.phtml index 57d37370d2277cd8d0d48c69d3ba6561260b9d1d..dfc14219b5aebf671e1ec6faccd41fa8470c5672 100644 --- a/app/code/core/Mage/Webapi/view/adminhtml/rolesedit.phtml +++ b/app/code/core/Mage/Webapi/view/adminhtml/rolesedit.phtml @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) * * @var Mage_Webapi_Block_Adminhtml_Role_Edit_Tab_Resource $this diff --git a/app/code/core/Mage/Webapi/view/adminhtml/rolesusersgridjs.phtml b/app/code/core/Mage/Webapi/view/adminhtml/rolesusersgridjs.phtml index 885245224022c532ed651c685fbb60719103722b..0f2ad39da58a319971da6b6c26d6f857b6fd6a15 100644 --- a/app/code/core/Mage/Webapi/view/adminhtml/rolesusersgridjs.phtml +++ b/app/code/core/Mage/Webapi/view/adminhtml/rolesusersgridjs.phtml @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) * * @var Mage_Core_Block_Template $this diff --git a/app/code/core/Mage/Weee/Block/Element/Weee/Tax.php b/app/code/core/Mage/Weee/Block/Element/Weee/Tax.php index 70e94e683863c9976aa0ee6746050023fd053650..fe2ed03c761e4e716b99af079516c49b53a648fc 100644 --- a/app/code/core/Mage/Weee/Block/Element/Weee/Tax.php +++ b/app/code/core/Mage/Weee/Block/Element/Weee/Tax.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Weee - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Weee/Block/Renderer/Weee/Tax.php b/app/code/core/Mage/Weee/Block/Renderer/Weee/Tax.php index 4436bf9e028c796a32301c013d1ad106c4beb448..b44a38b5ed54e0389261daa3e3f9ee09c3d0b0e2 100644 --- a/app/code/core/Mage/Weee/Block/Renderer/Weee/Tax.php +++ b/app/code/core/Mage/Weee/Block/Renderer/Weee/Tax.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Weee - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Weee/Helper/Data.php b/app/code/core/Mage/Weee/Helper/Data.php index fa8bc028c2a13e01fbf3055762abcfd5f72d9856..1299edebe11bf26543762d012ab3849d03ff75a0 100644 --- a/app/code/core/Mage/Weee/Helper/Data.php +++ b/app/code/core/Mage/Weee/Helper/Data.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Weee - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Weee/Model/Attribute/Backend/Weee/Tax.php b/app/code/core/Mage/Weee/Model/Attribute/Backend/Weee/Tax.php index da82d6c3c892e46985625431cb66b0f3f60a6070..33611fb6f1bb81d1014f56216028eda661a51fc0 100644 --- a/app/code/core/Mage/Weee/Model/Attribute/Backend/Weee/Tax.php +++ b/app/code/core/Mage/Weee/Model/Attribute/Backend/Weee/Tax.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Weee - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Weee/Model/Config/Source/Display.php b/app/code/core/Mage/Weee/Model/Config/Source/Display.php index df07eefd59343332456bad6850d11c88ee4a021f..7fb0ad44e8db5b7266640c7c549ad153f7eddd07 100644 --- a/app/code/core/Mage/Weee/Model/Config/Source/Display.php +++ b/app/code/core/Mage/Weee/Model/Config/Source/Display.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Weee - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Weee_Model_Config_Source_Display implements Mage_Core_Model_Option_ArrayInterface diff --git a/app/code/core/Mage/Weee/Model/Observer.php b/app/code/core/Mage/Weee/Model/Observer.php index f18e63ba6eb2bedea92cc8374ed3db13b24e7ea6..c32d0087716d63db568f46e16efdd499b3a18d06 100644 --- a/app/code/core/Mage/Weee/Model/Observer.php +++ b/app/code/core/Mage/Weee/Model/Observer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Weee - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Weee/Model/Resource/Attribute/Backend/Weee/Tax.php b/app/code/core/Mage/Weee/Model/Resource/Attribute/Backend/Weee/Tax.php index 6b02d07219b0318a9e0746a045807744993f2587..516aa3726cf326b4b3b880036a5431e016474c27 100755 --- a/app/code/core/Mage/Weee/Model/Resource/Attribute/Backend/Weee/Tax.php +++ b/app/code/core/Mage/Weee/Model/Resource/Attribute/Backend/Weee/Tax.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Weee - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Weee/Model/Resource/Setup.php b/app/code/core/Mage/Weee/Model/Resource/Setup.php index 91ade8b8fc321a18a9b87e63554f45f1bc873c98..19a2f459460ba245f2273e0a30ca7936326d5ff2 100755 --- a/app/code/core/Mage/Weee/Model/Resource/Setup.php +++ b/app/code/core/Mage/Weee/Model/Resource/Setup.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Weee - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Weee/Model/Resource/Tax.php b/app/code/core/Mage/Weee/Model/Resource/Tax.php index 6af991bdda77f6b03251549cfa15e5f577d87302..860f21262527494ebd337d1c533302cd17e6a9cc 100755 --- a/app/code/core/Mage/Weee/Model/Resource/Tax.php +++ b/app/code/core/Mage/Weee/Model/Resource/Tax.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Weee - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Weee/Model/Tax.php b/app/code/core/Mage/Weee/Model/Tax.php index 366344f668d64fc56da85418fe5c5fa12b1a6bf6..b5f07ccecdf9c17575d0cffdfd7b88851379e9af 100644 --- a/app/code/core/Mage/Weee/Model/Tax.php +++ b/app/code/core/Mage/Weee/Model/Tax.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Weee - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Weee/Model/Total/Creditmemo/Weee.php b/app/code/core/Mage/Weee/Model/Total/Creditmemo/Weee.php index db195d518287706eeec55bc4dd3f1176b29e341a..9bb14e7efea0e291c24b5ae98cf9558a9f0d86f5 100644 --- a/app/code/core/Mage/Weee/Model/Total/Creditmemo/Weee.php +++ b/app/code/core/Mage/Weee/Model/Total/Creditmemo/Weee.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Weee - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Weee/Model/Total/Invoice/Weee.php b/app/code/core/Mage/Weee/Model/Total/Invoice/Weee.php index cfcb3927ed72aa6d833a096e56991b9256e18bfa..e93afb1060025cd14d80b1fab0989180db0ebd91 100644 --- a/app/code/core/Mage/Weee/Model/Total/Invoice/Weee.php +++ b/app/code/core/Mage/Weee/Model/Total/Invoice/Weee.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Weee - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Weee/Model/Total/Quote/Nominal/Weee.php b/app/code/core/Mage/Weee/Model/Total/Quote/Nominal/Weee.php index 06cfdf59e53df0ce9134a4cb21b6d477e92195a7..9aa6d4ee407709e5249cb0a793914f80a2a052f0 100644 --- a/app/code/core/Mage/Weee/Model/Total/Quote/Nominal/Weee.php +++ b/app/code/core/Mage/Weee/Model/Total/Quote/Nominal/Weee.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Weee - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Weee/Model/Total/Quote/Weee.php b/app/code/core/Mage/Weee/Model/Total/Quote/Weee.php index 929455bd969e6bc02a1c35ca95702cfdd6539431..52394407d8d97a41caa979dec581c67bbc613485 100644 --- a/app/code/core/Mage/Weee/Model/Total/Quote/Weee.php +++ b/app/code/core/Mage/Weee/Model/Total/Quote/Weee.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Weee - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Weee/etc/adminhtml/system.xml b/app/code/core/Mage/Weee/etc/adminhtml/system.xml index 37f2a746768420fc89cae864d36a86d4f6179296..01eafc4a079c152761f142eed11bff3af6a7f40e 100644 --- a/app/code/core/Mage/Weee/etc/adminhtml/system.xml +++ b/app/code/core/Mage/Weee/etc/adminhtml/system.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Weee - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Weee/etc/config.xml b/app/code/core/Mage/Weee/etc/config.xml index dd064ce8792eea878ccbfb26a00c29dfc3afa39a..0b677c2c9eb21bd27c8d6053ecd94a7d00bfb6f8 100644 --- a/app/code/core/Mage/Weee/etc/config.xml +++ b/app/code/core/Mage/Weee/etc/config.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Weee - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Weee/etc/fieldset.xml b/app/code/core/Mage/Weee/etc/fieldset.xml index e51ed6ae4d2c844f407f0e780529bf433ea8005a..98766cb087e9a450d55005e10ca98e66a4a5ea0c 100644 --- a/app/code/core/Mage/Weee/etc/fieldset.xml +++ b/app/code/core/Mage/Weee/etc/fieldset.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Weee - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Weee/sql/weee_setup/install-1.6.0.0.php b/app/code/core/Mage/Weee/sql/weee_setup/install-1.6.0.0.php index c2b96dc6859b37f10cab6311648a359b7d54ca94..8d65fd4caa06f45161de9184b9814444fe1e070d 100644 --- a/app/code/core/Mage/Weee/sql/weee_setup/install-1.6.0.0.php +++ b/app/code/core/Mage/Weee/sql/weee_setup/install-1.6.0.0.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Weee - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Weee/view/adminhtml/renderer/tax.phtml b/app/code/core/Mage/Weee/view/adminhtml/renderer/tax.phtml index 2f99c4c1a34d178b7926ecc2acd30b426051eeae..624ab37cb87289ec867c2b5861f4db84d77081c5 100644 --- a/app/code/core/Mage/Weee/view/adminhtml/renderer/tax.phtml +++ b/app/code/core/Mage/Weee/view/adminhtml/renderer/tax.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Weee/view/frontend/layout.xml b/app/code/core/Mage/Weee/view/frontend/layout.xml index a6e8d8bcc2144c38eb2ad8cf3298c0ba85d1dc04..cb8ba9c221f9715d233db8aa3178dada480185b4 100644 --- a/app/code/core/Mage/Weee/view/frontend/layout.xml +++ b/app/code/core/Mage/Weee/view/frontend/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Weee/view/frontend/tax_toggle.js b/app/code/core/Mage/Weee/view/frontend/tax_toggle.js index b92def376f7fd0c629b52579f5952c13074aed8d..3bfb4f8b3a880b5e7b733c76676270fa87d8a8ef 100644 --- a/app/code/core/Mage/Weee/view/frontend/tax_toggle.js +++ b/app/code/core/Mage/Weee/view/frontend/tax_toggle.js @@ -19,7 +19,7 @@ * * @category Varien * @package js - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Widget/Block/Adminhtml/Widget.php b/app/code/core/Mage/Widget/Block/Adminhtml/Widget.php index 36fcb7b2a698299852846970c1285984c263e452..7b42bf313d6b7ddc26eff1d9f557644cc7e597ba 100644 --- a/app/code/core/Mage/Widget/Block/Adminhtml/Widget.php +++ b/app/code/core/Mage/Widget/Block/Adminhtml/Widget.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Widget - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Widget/Block/Adminhtml/Widget/Chooser.php b/app/code/core/Mage/Widget/Block/Adminhtml/Widget/Chooser.php index 3448ae7c99c6e97bcee795ba50231c39ef14f584..45ef0366a3be0e8cdae99a679e8b03e93cac4ed2 100644 --- a/app/code/core/Mage/Widget/Block/Adminhtml/Widget/Chooser.php +++ b/app/code/core/Mage/Widget/Block/Adminhtml/Widget/Chooser.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Widget - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Widget/Block/Adminhtml/Widget/Form.php b/app/code/core/Mage/Widget/Block/Adminhtml/Widget/Form.php index e74c338fa95082e9c38911c3ad02176d9c91f299..b12c5afcb113dc1126c429c55ba9b686c3d7c3d9 100644 --- a/app/code/core/Mage/Widget/Block/Adminhtml/Widget/Form.php +++ b/app/code/core/Mage/Widget/Block/Adminhtml/Widget/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Widget - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Widget/Block/Adminhtml/Widget/Instance.php b/app/code/core/Mage/Widget/Block/Adminhtml/Widget/Instance.php index 509b3f3b8953df2a14c72a89f275efb45cd4f5f8..8e73461c75c7918705444cda5339357539fdaef7 100644 --- a/app/code/core/Mage/Widget/Block/Adminhtml/Widget/Instance.php +++ b/app/code/core/Mage/Widget/Block/Adminhtml/Widget/Instance.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Widget - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Widget/Block/Adminhtml/Widget/Instance/Edit.php b/app/code/core/Mage/Widget/Block/Adminhtml/Widget/Instance/Edit.php index ec021dfc2e9399b6cc2d0be64a1d5f48cbaa0fbe..3f19113bcd6f2a61ef91a6f2509d78d9af3cc48e 100644 --- a/app/code/core/Mage/Widget/Block/Adminhtml/Widget/Instance/Edit.php +++ b/app/code/core/Mage/Widget/Block/Adminhtml/Widget/Instance/Edit.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Widget - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/Container.php b/app/code/core/Mage/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/Container.php index f6b98dce1b51c722c2911fb548eebda00ece1660..37ad4f1c82ff4b6e671af1274995428c1230132f 100644 --- a/app/code/core/Mage/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/Container.php +++ b/app/code/core/Mage/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/Container.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Widget - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/Layout.php b/app/code/core/Mage/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/Layout.php index f04abf80dd438f8e2881e9cf81600daeec412c6d..d61e786ad37ba459049bcde0b86cdc377542c185 100644 --- a/app/code/core/Mage/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/Layout.php +++ b/app/code/core/Mage/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/Layout.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Widget - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/Template.php b/app/code/core/Mage/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/Template.php index 451e05ed726a199cdca5fdda848bca7c199c8ace..1ffaed883cec34ad48091a47207c53860ccf6a54 100644 --- a/app/code/core/Mage/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/Template.php +++ b/app/code/core/Mage/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/Template.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Widget - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Widget/Block/Adminhtml/Widget/Instance/Edit/Form.php b/app/code/core/Mage/Widget/Block/Adminhtml/Widget/Instance/Edit/Form.php index d2dff760c0e2f130c6f20fc6b91958b3ac4796e1..bb6b75a4941c0aed57c2ed1f43d16cd33d4afeb6 100644 --- a/app/code/core/Mage/Widget/Block/Adminhtml/Widget/Instance/Edit/Form.php +++ b/app/code/core/Mage/Widget/Block/Adminhtml/Widget/Instance/Edit/Form.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Widget - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Widget/Block/Adminhtml/Widget/Instance/Edit/Tab/Main.php b/app/code/core/Mage/Widget/Block/Adminhtml/Widget/Instance/Edit/Tab/Main.php index 24ddf1e94936a3ea4ab687cda13a40e8f5a47b19..d5ae2d64149722de7202596eb434de1036ab4ad7 100644 --- a/app/code/core/Mage/Widget/Block/Adminhtml/Widget/Instance/Edit/Tab/Main.php +++ b/app/code/core/Mage/Widget/Block/Adminhtml/Widget/Instance/Edit/Tab/Main.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Widget - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Widget/Block/Adminhtml/Widget/Instance/Edit/Tab/Main/Layout.php b/app/code/core/Mage/Widget/Block/Adminhtml/Widget/Instance/Edit/Tab/Main/Layout.php index 3bd5511b08193f7dea841bb857748206baf97506..33037b1d17dd0ecc61eccc9190aa422548a5dfd3 100644 --- a/app/code/core/Mage/Widget/Block/Adminhtml/Widget/Instance/Edit/Tab/Main/Layout.php +++ b/app/code/core/Mage/Widget/Block/Adminhtml/Widget/Instance/Edit/Tab/Main/Layout.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Widget - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Widget/Block/Adminhtml/Widget/Instance/Edit/Tab/Properties.php b/app/code/core/Mage/Widget/Block/Adminhtml/Widget/Instance/Edit/Tab/Properties.php index 2128a68a8d25ddd3f959f86c1da98fc82cb6d47f..cdc34b8df293529053c3b0c6e24bfc1f24ece5bb 100644 --- a/app/code/core/Mage/Widget/Block/Adminhtml/Widget/Instance/Edit/Tab/Properties.php +++ b/app/code/core/Mage/Widget/Block/Adminhtml/Widget/Instance/Edit/Tab/Properties.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Widget - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Widget/Block/Adminhtml/Widget/Instance/Edit/Tab/Settings.php b/app/code/core/Mage/Widget/Block/Adminhtml/Widget/Instance/Edit/Tab/Settings.php index 6ef5d89f2519d6dae0bea2459b6eb6579aa7da6d..99dc0f501a7c7610f9c8b89f3740bf0a6e590e40 100644 --- a/app/code/core/Mage/Widget/Block/Adminhtml/Widget/Instance/Edit/Tab/Settings.php +++ b/app/code/core/Mage/Widget/Block/Adminhtml/Widget/Instance/Edit/Tab/Settings.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Widget - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Widget/Block/Adminhtml/Widget/Instance/Edit/Tabs.php b/app/code/core/Mage/Widget/Block/Adminhtml/Widget/Instance/Edit/Tabs.php index 7202c1d25032d5a15e484973373c739d2dfca725..13081e3fe1f55bdb258e4da1d8e38125f2ef508a 100644 --- a/app/code/core/Mage/Widget/Block/Adminhtml/Widget/Instance/Edit/Tabs.php +++ b/app/code/core/Mage/Widget/Block/Adminhtml/Widget/Instance/Edit/Tabs.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Widget - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Widget/Block/Adminhtml/Widget/Instance/Grid.php b/app/code/core/Mage/Widget/Block/Adminhtml/Widget/Instance/Grid.php index 8507eb5a4ac8ae78600d656718ee138cf656c6c1..20aac4c41bb3e36ae49737ddbeba6eea719a7ccf 100644 --- a/app/code/core/Mage/Widget/Block/Adminhtml/Widget/Instance/Grid.php +++ b/app/code/core/Mage/Widget/Block/Adminhtml/Widget/Instance/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Widget - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Widget/Block/Adminhtml/Widget/Options.php b/app/code/core/Mage/Widget/Block/Adminhtml/Widget/Options.php index c8e699cfaf6d702544b44f1866766c36202d9307..1850aca64f69c8a5d55f6cbbdf4fbfe1090d8d37 100644 --- a/app/code/core/Mage/Widget/Block/Adminhtml/Widget/Options.php +++ b/app/code/core/Mage/Widget/Block/Adminhtml/Widget/Options.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Widget - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Widget/Block/Interface.php b/app/code/core/Mage/Widget/Block/Interface.php index 53d69f4fca8f00e9f6e6a634d8a51c44e47df5d0..72e885df5919fcdc1cd74c78877d8c758d8e8d35 100644 --- a/app/code/core/Mage/Widget/Block/Interface.php +++ b/app/code/core/Mage/Widget/Block/Interface.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Widget - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Widget/Helper/Data.php b/app/code/core/Mage/Widget/Helper/Data.php index 29c599d9c5d959ea1a7306780397f0e2df7306da..bf7b85d4262aeedb5af22ef4bb8f9db60fa64683 100644 --- a/app/code/core/Mage/Widget/Helper/Data.php +++ b/app/code/core/Mage/Widget/Helper/Data.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Widget - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Widget/Model/Observer.php b/app/code/core/Mage/Widget/Model/Observer.php index e36f042c3dcb173bec4ee1a71eb52d7ab46efbbe..0eb13c99165dea110ec6a6783fbaf66b61e9535a 100644 --- a/app/code/core/Mage/Widget/Model/Observer.php +++ b/app/code/core/Mage/Widget/Model/Observer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Widget - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Widget/Model/Resource/Widget.php b/app/code/core/Mage/Widget/Model/Resource/Widget.php index c007b7ca72a3be8f8e300d11ca12d6f3162b88f8..47d36ff9a398e62d5af43fdd96bc77f45e8154a3 100755 --- a/app/code/core/Mage/Widget/Model/Resource/Widget.php +++ b/app/code/core/Mage/Widget/Model/Resource/Widget.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Widget - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Widget/Model/Resource/Widget/Instance.php b/app/code/core/Mage/Widget/Model/Resource/Widget/Instance.php index b39fe3ee35bc26613d76946ac6125d96f452e8b3..fd96b75fb22a52af71a4e0208f7c9454dd771e11 100755 --- a/app/code/core/Mage/Widget/Model/Resource/Widget/Instance.php +++ b/app/code/core/Mage/Widget/Model/Resource/Widget/Instance.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Widget - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Widget/Model/Resource/Widget/Instance/Collection.php b/app/code/core/Mage/Widget/Model/Resource/Widget/Instance/Collection.php index 870846fc66733f3dbb6d93047b887542782e3e49..c6f7cc04fc19c409559324ed52f966d3f6b3b791 100755 --- a/app/code/core/Mage/Widget/Model/Resource/Widget/Instance/Collection.php +++ b/app/code/core/Mage/Widget/Model/Resource/Widget/Instance/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Widget - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Widget/Model/Template/Filter.php b/app/code/core/Mage/Widget/Model/Template/Filter.php index 2cb465d632895112c714c25a692b488324e22425..db33c8e2affdf02d446ed3bd05beb00c26391ec1 100644 --- a/app/code/core/Mage/Widget/Model/Template/Filter.php +++ b/app/code/core/Mage/Widget/Model/Template/Filter.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Widget - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Widget/Model/Widget.php b/app/code/core/Mage/Widget/Model/Widget.php index 7565f3a2bd34cd264a1218f946e0ee4b22ce8897..9de67fbc5fadaf4a801b7d67a4b8a3df3cf310cc 100644 --- a/app/code/core/Mage/Widget/Model/Widget.php +++ b/app/code/core/Mage/Widget/Model/Widget.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Widget - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Widget/Model/Widget/Config.php b/app/code/core/Mage/Widget/Model/Widget/Config.php index 7ba7379931045a5e8e979f9487a46011c822936e..4169f92bd8b4d38120ca6de8f27cf802113aff7a 100644 --- a/app/code/core/Mage/Widget/Model/Widget/Config.php +++ b/app/code/core/Mage/Widget/Model/Widget/Config.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Widget - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Widget/Model/Widget/Instance.php b/app/code/core/Mage/Widget/Model/Widget/Instance.php index 4b38ae536ca789019372eaa923514391ffce094d..6bbff1978638cf9afb29dfff746b1ec6eb5c39c5 100644 --- a/app/code/core/Mage/Widget/Model/Widget/Instance.php +++ b/app/code/core/Mage/Widget/Model/Widget/Instance.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Widget - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Widget/controllers/Adminhtml/Widget/InstanceController.php b/app/code/core/Mage/Widget/controllers/Adminhtml/Widget/InstanceController.php index d1d007e55df908bcfc72e33c635d625c7ee11f50..d9c304c4c10fbe86f91c19ab9a6e5d0696001adb 100644 --- a/app/code/core/Mage/Widget/controllers/Adminhtml/Widget/InstanceController.php +++ b/app/code/core/Mage/Widget/controllers/Adminhtml/Widget/InstanceController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Widget - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Widget/controllers/Adminhtml/WidgetController.php b/app/code/core/Mage/Widget/controllers/Adminhtml/WidgetController.php index c74e501052291a5319d9955cfd756d55a0012dfd..cadd1789f180554f078ba9c05df016a732f9cb3d 100644 --- a/app/code/core/Mage/Widget/controllers/Adminhtml/WidgetController.php +++ b/app/code/core/Mage/Widget/controllers/Adminhtml/WidgetController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Widget - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Widget/data/widget_setup/data-upgrade-1.6.0.0-1.6.0.1.php b/app/code/core/Mage/Widget/data/widget_setup/data-upgrade-1.6.0.0-1.6.0.1.php index b4e6fea746da523f9a963572a94f1c446dbf0a39..bae5f43f9743b30604e281d644bb6f57778cb249 100644 --- a/app/code/core/Mage/Widget/data/widget_setup/data-upgrade-1.6.0.0-1.6.0.1.php +++ b/app/code/core/Mage/Widget/data/widget_setup/data-upgrade-1.6.0.0-1.6.0.1.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Widget - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Widget/etc/adminhtml/acl.xml b/app/code/core/Mage/Widget/etc/adminhtml/acl.xml index 502659e1139c933228c8202af6c5c2342f063212..b9ce063f0fbbec7440fe66921c875c35eadf005d 100644 --- a/app/code/core/Mage/Widget/etc/adminhtml/acl.xml +++ b/app/code/core/Mage/Widget/etc/adminhtml/acl.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Widget - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Widget/etc/adminhtml/menu.xml b/app/code/core/Mage/Widget/etc/adminhtml/menu.xml index e55c059b22995705e75b655be8b9e3bf0c954502..60406ef26d8170d8ca29fe1b7cf6e79cf017ae43 100644 --- a/app/code/core/Mage/Widget/etc/adminhtml/menu.xml +++ b/app/code/core/Mage/Widget/etc/adminhtml/menu.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Widget - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Widget/etc/config.xml b/app/code/core/Mage/Widget/etc/config.xml index cec0572e21d9a4ad0b89c529c82b239a683b8d69..a7f6adea97737e3777e31441e7aff8ec0acc784b 100644 --- a/app/code/core/Mage/Widget/etc/config.xml +++ b/app/code/core/Mage/Widget/etc/config.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Widget - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Widget/etc/jstranslator.xml b/app/code/core/Mage/Widget/etc/jstranslator.xml index 79d54390a57d53075a5cc72f2152c74325965923..62d173b5bd5c572e4d742a18927fcbebe06e8682 100644 --- a/app/code/core/Mage/Widget/etc/jstranslator.xml +++ b/app/code/core/Mage/Widget/etc/jstranslator.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Widget - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Widget/sql/widget_setup/install-1.6.0.0.php b/app/code/core/Mage/Widget/sql/widget_setup/install-1.6.0.0.php index c0c39e87d626f2e3534ded948f26021caa734ccb..8228041420ea29dc50e1c9f2785086d7a91d8de5 100644 --- a/app/code/core/Mage/Widget/sql/widget_setup/install-1.6.0.0.php +++ b/app/code/core/Mage/Widget/sql/widget_setup/install-1.6.0.0.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Widget - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Widget/sql/widget_setup/upgrade-1.6.0.1-1.6.0.2.php b/app/code/core/Mage/Widget/sql/widget_setup/upgrade-1.6.0.1-1.6.0.2.php index 0161a53745e1c3394016c25a8717897c842312ef..7f30f92560b6f95762992a30f47b4f569df66533 100644 --- a/app/code/core/Mage/Widget/sql/widget_setup/upgrade-1.6.0.1-1.6.0.2.php +++ b/app/code/core/Mage/Widget/sql/widget_setup/upgrade-1.6.0.1-1.6.0.2.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Widget - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Widget/view/adminhtml/css/styles.css b/app/code/core/Mage/Widget/view/adminhtml/css/styles.css index ffa1e0757f65137b7bb2691f822628890a0295fe..61c59912295172d30818652f00ac68d8c6326e6c 100644 --- a/app/code/core/Mage/Widget/view/adminhtml/css/styles.css +++ b/app/code/core/Mage/Widget/view/adminhtml/css/styles.css @@ -19,7 +19,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ #layout_handle .fragment { diff --git a/app/code/core/Mage/Widget/view/adminhtml/instance/edit/layout.phtml b/app/code/core/Mage/Widget/view/adminhtml/instance/edit/layout.phtml index ba55c201fada4f7ad0a6f134ddb46d7713f685af..32ad397e4861f6e4acecbadf093e8b6b9f5a872a 100644 --- a/app/code/core/Mage/Widget/view/adminhtml/instance/edit/layout.phtml +++ b/app/code/core/Mage/Widget/view/adminhtml/instance/edit/layout.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Widget/view/adminhtml/instance/js.phtml b/app/code/core/Mage/Widget/view/adminhtml/instance/js.phtml index 2a1bf1200220a0af71e25e0685bd92d86fcd7b7a..ad6c24ae16cc348cb06582475976cf4166a41679 100644 --- a/app/code/core/Mage/Widget/view/adminhtml/instance/js.phtml +++ b/app/code/core/Mage/Widget/view/adminhtml/instance/js.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Widget/view/adminhtml/layout.xml b/app/code/core/Mage/Widget/view/adminhtml/layout.xml index ce540b3d76b956817b1a0c4c815670dfcdb10ad7..96dd6a0f74cfce5772d6859cdb441aed57d6926e 100644 --- a/app/code/core/Mage/Widget/view/adminhtml/layout.xml +++ b/app/code/core/Mage/Widget/view/adminhtml/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Widget/view/frontend/layout.xml b/app/code/core/Mage/Widget/view/frontend/layout.xml index 1f28c6aa0c2f11f4f25e19138610e22ddb57ca2f..232975762240a1f0541e95ef2b49cde8618a3069 100644 --- a/app/code/core/Mage/Widget/view/frontend/layout.xml +++ b/app/code/core/Mage/Widget/view/frontend/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package Mage_Widget - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Widget/view/frontend/widgets.css b/app/code/core/Mage/Widget/view/frontend/widgets.css index fb1ef3239805eca943c44671188996739607a062..2691267413400f7b9bb204557daa30c96f800d6a 100644 --- a/app/code/core/Mage/Widget/view/frontend/widgets.css +++ b/app/code/core/Mage/Widget/view/frontend/widgets.css @@ -19,7 +19,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Wishlist/Block/Abstract.php b/app/code/core/Mage/Wishlist/Block/Abstract.php index cb26ca06b59cc7380c9c30192cdede9f56e835c8..f62ffa70efa2adc6a2f7872b0d4c6ebf7915d45d 100644 --- a/app/code/core/Mage/Wishlist/Block/Abstract.php +++ b/app/code/core/Mage/Wishlist/Block/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Wishlist - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Wishlist/Block/Customer/Sharing.php b/app/code/core/Mage/Wishlist/Block/Customer/Sharing.php index cfd2eb0f7da4079c95d57c424affc5995a764de5..ea841a7b0f2a29577ff4b791092aacaff744e5ac 100644 --- a/app/code/core/Mage/Wishlist/Block/Customer/Sharing.php +++ b/app/code/core/Mage/Wishlist/Block/Customer/Sharing.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Wishlist - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Wishlist/Block/Customer/Sidebar.php b/app/code/core/Mage/Wishlist/Block/Customer/Sidebar.php index 8ee2260ac58a3a8cd5017872fdde0a3c9d94b723..10d42a01984de85f31e70e8c1f58bc1e90f546f6 100644 --- a/app/code/core/Mage/Wishlist/Block/Customer/Sidebar.php +++ b/app/code/core/Mage/Wishlist/Block/Customer/Sidebar.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Wishlist - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Wishlist/Block/Customer/Wishlist.php b/app/code/core/Mage/Wishlist/Block/Customer/Wishlist.php index 4050ef492912900fd4c6f860642599ab708967e3..966fa50bbb9648ea212571f94aff1970f4940ea6 100644 --- a/app/code/core/Mage/Wishlist/Block/Customer/Wishlist.php +++ b/app/code/core/Mage/Wishlist/Block/Customer/Wishlist.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Wishlist - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Wishlist/Block/Customer/Wishlist/Button.php b/app/code/core/Mage/Wishlist/Block/Customer/Wishlist/Button.php index 67cc9c4b7c6041d474b673298673b59c316dbd3e..5c4b471232ea4d7e61a4429e740ca3597122c296 100644 --- a/app/code/core/Mage/Wishlist/Block/Customer/Wishlist/Button.php +++ b/app/code/core/Mage/Wishlist/Block/Customer/Wishlist/Button.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Wishlist - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Wishlist/Block/Customer/Wishlist/Item/Column.php b/app/code/core/Mage/Wishlist/Block/Customer/Wishlist/Item/Column.php index e7363ac33dd832427ab7a17a699d6d1720d86ac9..9f56541f7409bc7b7b43841f37882806fefc38fc 100644 --- a/app/code/core/Mage/Wishlist/Block/Customer/Wishlist/Item/Column.php +++ b/app/code/core/Mage/Wishlist/Block/Customer/Wishlist/Item/Column.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Wishlist - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Wishlist/Block/Customer/Wishlist/Item/Column/Cart.php b/app/code/core/Mage/Wishlist/Block/Customer/Wishlist/Item/Column/Cart.php index 5c62bb3676c9f937bb9c143117dd4da47cd422e7..bc700bc534e89f7535a1f3e0d978f27727f553c0 100644 --- a/app/code/core/Mage/Wishlist/Block/Customer/Wishlist/Item/Column/Cart.php +++ b/app/code/core/Mage/Wishlist/Block/Customer/Wishlist/Item/Column/Cart.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Wishlist - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Wishlist/Block/Customer/Wishlist/Item/Column/Comment.php b/app/code/core/Mage/Wishlist/Block/Customer/Wishlist/Item/Column/Comment.php index 8d005fe1ba8181cc78edc5b77b0d01c1f0c3d9de..6138cb2f7101f728d11d086c8f84deded3e8e7f7 100644 --- a/app/code/core/Mage/Wishlist/Block/Customer/Wishlist/Item/Column/Comment.php +++ b/app/code/core/Mage/Wishlist/Block/Customer/Wishlist/Item/Column/Comment.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Wishlist - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Wishlist/Block/Customer/Wishlist/Item/Column/Image.php b/app/code/core/Mage/Wishlist/Block/Customer/Wishlist/Item/Column/Image.php index 32e4dac18e31cbef087489a2d5ef5b4c9866c502..cb7ad4c5ce0da55c6142ef4da727f7273c5be29c 100644 --- a/app/code/core/Mage/Wishlist/Block/Customer/Wishlist/Item/Column/Image.php +++ b/app/code/core/Mage/Wishlist/Block/Customer/Wishlist/Item/Column/Image.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Wishlist - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Wishlist/Block/Customer/Wishlist/Item/Column/Remove.php b/app/code/core/Mage/Wishlist/Block/Customer/Wishlist/Item/Column/Remove.php index e71b01229f307ce09647f1f87e7c165e50604783..00d3a5bceb7f16638d33af4934e2f1540a6115fc 100644 --- a/app/code/core/Mage/Wishlist/Block/Customer/Wishlist/Item/Column/Remove.php +++ b/app/code/core/Mage/Wishlist/Block/Customer/Wishlist/Item/Column/Remove.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Wishlist - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Wishlist/Block/Customer/Wishlist/Item/Options.php b/app/code/core/Mage/Wishlist/Block/Customer/Wishlist/Item/Options.php index 3a1509d922fd708d9fab4319dcbe8fae79564854..35655b8b916167081124799aba1abddb97832b5b 100644 --- a/app/code/core/Mage/Wishlist/Block/Customer/Wishlist/Item/Options.php +++ b/app/code/core/Mage/Wishlist/Block/Customer/Wishlist/Item/Options.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Wishlist - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Wishlist/Block/Customer/Wishlist/Items.php b/app/code/core/Mage/Wishlist/Block/Customer/Wishlist/Items.php index d5bff871a7b32b9ce92431ea6d02b6e79cf6521e..f19ced8b16ae42c300b619c14bfcd912097e17c1 100644 --- a/app/code/core/Mage/Wishlist/Block/Customer/Wishlist/Items.php +++ b/app/code/core/Mage/Wishlist/Block/Customer/Wishlist/Items.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Wishlist - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Wishlist/Block/Item/Configure.php b/app/code/core/Mage/Wishlist/Block/Item/Configure.php index b366c2a9b61f6be11181a599248b5e243903b96c..b56c0b180c4bd67756a8460d72bf3c976215743f 100644 --- a/app/code/core/Mage/Wishlist/Block/Item/Configure.php +++ b/app/code/core/Mage/Wishlist/Block/Item/Configure.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Wishlist - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Wishlist/Block/Links.php b/app/code/core/Mage/Wishlist/Block/Links.php index 8b3aa3a2e8a298edb29cdf046562d8b1fa07f74d..2de4a678b0a1dd34c74cbb3557e2b01aff736ff8 100644 --- a/app/code/core/Mage/Wishlist/Block/Links.php +++ b/app/code/core/Mage/Wishlist/Block/Links.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Wishlist - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Wishlist/Block/Render/Item/Price.php b/app/code/core/Mage/Wishlist/Block/Render/Item/Price.php index 324eeb1b301998fe12f3d43a5303c416f417a0e1..7aac3475f0e0f186e6e828930dc7de6397bc96e0 100644 --- a/app/code/core/Mage/Wishlist/Block/Render/Item/Price.php +++ b/app/code/core/Mage/Wishlist/Block/Render/Item/Price.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Wishlist - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Wishlist/Block/Share/Email/Items.php b/app/code/core/Mage/Wishlist/Block/Share/Email/Items.php index b3805348c68b1fa3f210870244bf587e4efc8916..ff447ccf2e01e08b91c04a13253eb1fc1db317ea 100644 --- a/app/code/core/Mage/Wishlist/Block/Share/Email/Items.php +++ b/app/code/core/Mage/Wishlist/Block/Share/Email/Items.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Wishlist - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Wishlist/Block/Share/Email/Rss.php b/app/code/core/Mage/Wishlist/Block/Share/Email/Rss.php index 54baf36694a3ff58162ce9da04a0ddcc2e4ae1ec..2dac1f232a38906bfcbd1a7764878f3dc689b7ef 100644 --- a/app/code/core/Mage/Wishlist/Block/Share/Email/Rss.php +++ b/app/code/core/Mage/Wishlist/Block/Share/Email/Rss.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Wishlist - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Wishlist/Block/Share/Wishlist.php b/app/code/core/Mage/Wishlist/Block/Share/Wishlist.php index c2146d08874888f0b7df35ba6f5a2517ae122af0..98497e6156fc0cd962a2a3b2759bf85f2f1ad60f 100644 --- a/app/code/core/Mage/Wishlist/Block/Share/Wishlist.php +++ b/app/code/core/Mage/Wishlist/Block/Share/Wishlist.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Wishlist - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Wishlist/Controller/Abstract.php b/app/code/core/Mage/Wishlist/Controller/Abstract.php index 75128671aebffb2622628b86673d09afb3411c6c..0d7d00bbf5da10d788a59ce0dc588b676330905c 100644 --- a/app/code/core/Mage/Wishlist/Controller/Abstract.php +++ b/app/code/core/Mage/Wishlist/Controller/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Wishlist - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Wishlist/Helper/Data.php b/app/code/core/Mage/Wishlist/Helper/Data.php index 18433d23fc4d6e8b677818bfec87bfed22e6498a..9db61368f4ff7375812b7e7270a08c796a75df4c 100644 --- a/app/code/core/Mage/Wishlist/Helper/Data.php +++ b/app/code/core/Mage/Wishlist/Helper/Data.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Wishlist - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Wishlist/Model/Config.php b/app/code/core/Mage/Wishlist/Model/Config.php index 7dd6de87751e3518224e985e80b3e22c5a11568f..9500fb262eb10e3d560e63d2b3859c13a1721c1d 100644 --- a/app/code/core/Mage/Wishlist/Model/Config.php +++ b/app/code/core/Mage/Wishlist/Model/Config.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Wishlist - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Wishlist/Model/Config/Source/Summary.php b/app/code/core/Mage/Wishlist/Model/Config/Source/Summary.php index a7724e106204811b91a9f8f78c21c9fd215d0416..dac035ee2e40a11b3a837a107a33e2bce5588506 100644 --- a/app/code/core/Mage/Wishlist/Model/Config/Source/Summary.php +++ b/app/code/core/Mage/Wishlist/Model/Config/Source/Summary.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Wishlist - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Wishlist_Model_Config_Source_Summary implements Mage_Core_Model_Option_ArrayInterface diff --git a/app/code/core/Mage/Wishlist/Model/Item.php b/app/code/core/Mage/Wishlist/Model/Item.php index 95d5c5071a2a845e0850b6856d8d5600037516f6..f485d72b65d644ee1d00fb634c68fefb99ef26fe 100644 --- a/app/code/core/Mage/Wishlist/Model/Item.php +++ b/app/code/core/Mage/Wishlist/Model/Item.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Wishlist - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Wishlist/Model/Item/Option.php b/app/code/core/Mage/Wishlist/Model/Item/Option.php index d0986bd910da6d30c8a4f5b6d6138508ff440abe..092d41daef5cee0b8476d4833d3d118848921fac 100644 --- a/app/code/core/Mage/Wishlist/Model/Item/Option.php +++ b/app/code/core/Mage/Wishlist/Model/Item/Option.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Wishlist - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Wishlist/Model/Observer.php b/app/code/core/Mage/Wishlist/Model/Observer.php index fe06ec7de0a6916f2945aef5af8c8491f73486f3..40b9b57b1ee623153d39e9bd5c7497b782d33948 100644 --- a/app/code/core/Mage/Wishlist/Model/Observer.php +++ b/app/code/core/Mage/Wishlist/Model/Observer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Wishlist - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Wishlist/Model/Resource/Item.php b/app/code/core/Mage/Wishlist/Model/Resource/Item.php index 079d6a24aeaabab139c30ac298233715b622a457..c144d64d64530e365d25ce874fcd218ff6c7e59c 100755 --- a/app/code/core/Mage/Wishlist/Model/Resource/Item.php +++ b/app/code/core/Mage/Wishlist/Model/Resource/Item.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Wishlist - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Wishlist/Model/Resource/Item/Collection.php b/app/code/core/Mage/Wishlist/Model/Resource/Item/Collection.php index eb0e6333b957fa359efb3777c860dcfb688fbb07..6004cb4bf94594e8906aef4558b6461fefe1c3e2 100755 --- a/app/code/core/Mage/Wishlist/Model/Resource/Item/Collection.php +++ b/app/code/core/Mage/Wishlist/Model/Resource/Item/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Wishlist - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Wishlist/Model/Resource/Item/Collection/Grid.php b/app/code/core/Mage/Wishlist/Model/Resource/Item/Collection/Grid.php index e17787d8e3fcf62ab6e1c477cf53cb4fb7c700bb..2f9422e8e6044738c1f66e889d540235dca9a341 100644 --- a/app/code/core/Mage/Wishlist/Model/Resource/Item/Collection/Grid.php +++ b/app/code/core/Mage/Wishlist/Model/Resource/Item/Collection/Grid.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Wishlist - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Wishlist/Model/Resource/Item/Option.php b/app/code/core/Mage/Wishlist/Model/Resource/Item/Option.php index d686d0e2b5406efe4d82a06002580b9626bd4aae..16e0804de5b23e9c09be5b64f610bf0e23fa9644 100644 --- a/app/code/core/Mage/Wishlist/Model/Resource/Item/Option.php +++ b/app/code/core/Mage/Wishlist/Model/Resource/Item/Option.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Wishlist - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Wishlist/Model/Resource/Item/Option/Collection.php b/app/code/core/Mage/Wishlist/Model/Resource/Item/Option/Collection.php index e33accf979f3ee44b700163d1903849acb8049ec..f69ba1a9aeec8633cc0da9f589131e0326206d8e 100644 --- a/app/code/core/Mage/Wishlist/Model/Resource/Item/Option/Collection.php +++ b/app/code/core/Mage/Wishlist/Model/Resource/Item/Option/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Wishlist - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Wishlist/Model/Resource/Wishlist.php b/app/code/core/Mage/Wishlist/Model/Resource/Wishlist.php index e906bda3e419b47ed00bafb9fdece602bc67bbb7..b85eca47cc5d197a518c65b812c37a628cc1c648 100755 --- a/app/code/core/Mage/Wishlist/Model/Resource/Wishlist.php +++ b/app/code/core/Mage/Wishlist/Model/Resource/Wishlist.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Wishlist - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Wishlist/Model/Resource/Wishlist/Collection.php b/app/code/core/Mage/Wishlist/Model/Resource/Wishlist/Collection.php index ca339a9e32dc9e5cad939359607fb9b4ebbc1cc4..101b71aac84be6427ec968cfb7d4a13f83bdbace 100755 --- a/app/code/core/Mage/Wishlist/Model/Resource/Wishlist/Collection.php +++ b/app/code/core/Mage/Wishlist/Model/Resource/Wishlist/Collection.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Wishlist - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Wishlist/Model/Session.php b/app/code/core/Mage/Wishlist/Model/Session.php index 651ee8a53c7dec5951038c36edbfd0fd529fc7dc..8c78086235de6990249f3984377dc0ea1967da2a 100644 --- a/app/code/core/Mage/Wishlist/Model/Session.php +++ b/app/code/core/Mage/Wishlist/Model/Session.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Wishlist - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Wishlist/Model/Wishlist.php b/app/code/core/Mage/Wishlist/Model/Wishlist.php index f282ea027de6f94b15fc494fe363ca55a9200c41..ac478bf286d8563c25c6dcd30eac69eaac8b3312 100644 --- a/app/code/core/Mage/Wishlist/Model/Wishlist.php +++ b/app/code/core/Mage/Wishlist/Model/Wishlist.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Wishlist - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Wishlist/controllers/IndexController.php b/app/code/core/Mage/Wishlist/controllers/IndexController.php index d8b791e8f7311f656a7c02fd28650adc1819aedb..e467cf728524655225b508fe715299bb2ff144e1 100644 --- a/app/code/core/Mage/Wishlist/controllers/IndexController.php +++ b/app/code/core/Mage/Wishlist/controllers/IndexController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Wishlist - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Wishlist/controllers/SharedController.php b/app/code/core/Mage/Wishlist/controllers/SharedController.php index 3036d3b3557409811d519f7382cdaf5c84d8dabc..12c159d2fc7776c57806be22c106df2f3b71f7ff 100644 --- a/app/code/core/Mage/Wishlist/controllers/SharedController.php +++ b/app/code/core/Mage/Wishlist/controllers/SharedController.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Wishlist - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Wishlist/etc/adminhtml/acl.xml b/app/code/core/Mage/Wishlist/etc/adminhtml/acl.xml index b277e9fd3152df5720abd1bd2c5df0f204080457..2de1c53c8fd3aff5e9fddd6da647c1257a188e79 100644 --- a/app/code/core/Mage/Wishlist/etc/adminhtml/acl.xml +++ b/app/code/core/Mage/Wishlist/etc/adminhtml/acl.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Wishlist - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Wishlist/etc/adminhtml/system.xml b/app/code/core/Mage/Wishlist/etc/adminhtml/system.xml index a03d063e5fc49b744002c68a6a85126f6527fce9..b4f56b60be56486c50839ccc8a151e9e25922e57 100644 --- a/app/code/core/Mage/Wishlist/etc/adminhtml/system.xml +++ b/app/code/core/Mage/Wishlist/etc/adminhtml/system.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Wishlist - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Wishlist/etc/config.xml b/app/code/core/Mage/Wishlist/etc/config.xml index 37f706cc77d3cf79f527a48eb2ffbb9c795c7563..f69b9d64768c0edc88a746e8ff9859ca88141bff 100644 --- a/app/code/core/Mage/Wishlist/etc/config.xml +++ b/app/code/core/Mage/Wishlist/etc/config.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Wishlist - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Wishlist/etc/view.xml b/app/code/core/Mage/Wishlist/etc/view.xml index 84d4008cead1d5c39271fe9cda3e1337dcd827fa..67f3f6d3987bb113e1ca0e3fc84152d30a3d706c 100644 --- a/app/code/core/Mage/Wishlist/etc/view.xml +++ b/app/code/core/Mage/Wishlist/etc/view.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Wishlist - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Wishlist/sql/wishlist_setup/install-1.6.0.0.php b/app/code/core/Mage/Wishlist/sql/wishlist_setup/install-1.6.0.0.php index f01280f505e890dbdc2974ae5a536e30d6eecf62..81f529fcfa3dceffda86e6f3800b5e2dfef83d91 100644 --- a/app/code/core/Mage/Wishlist/sql/wishlist_setup/install-1.6.0.0.php +++ b/app/code/core/Mage/Wishlist/sql/wishlist_setup/install-1.6.0.0.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Wishlist - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/app/code/core/Mage/Wishlist/view/adminhtml/customer/edit/tab/wishlist.phtml b/app/code/core/Mage/Wishlist/view/adminhtml/customer/edit/tab/wishlist.phtml index 41693f525ff6720f1588a2ac3434f17e2d5a4225..d00b94189f7df3723a993b92e1b85914646b4faf 100644 --- a/app/code/core/Mage/Wishlist/view/adminhtml/customer/edit/tab/wishlist.phtml +++ b/app/code/core/Mage/Wishlist/view/adminhtml/customer/edit/tab/wishlist.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Wishlist/view/adminhtml/layout.xml b/app/code/core/Mage/Wishlist/view/adminhtml/layout.xml index b1f2c2cf7ba3ca639c4f1897905d1be8a0d0e106..620f85fdad7fd733ff589e9af1648ae5256a430c 100644 --- a/app/code/core/Mage/Wishlist/view/adminhtml/layout.xml +++ b/app/code/core/Mage/Wishlist/view/adminhtml/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/code/core/Mage/Wishlist/view/frontend/button/share.phtml b/app/code/core/Mage/Wishlist/view/frontend/button/share.phtml index f991da00eba8c0ef604bb6fc719d3a5d1c11c7b5..a6d221a668d27f0593effc9d95fd5a4bd21fb741 100644 --- a/app/code/core/Mage/Wishlist/view/frontend/button/share.phtml +++ b/app/code/core/Mage/Wishlist/view/frontend/button/share.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Wishlist/view/frontend/button/tocart.phtml b/app/code/core/Mage/Wishlist/view/frontend/button/tocart.phtml index 8a665fbdd797b8021795c24decf827d01e46bbd2..ce7de2fe6679cda68da73f986d02cbb9eadb1cc3 100644 --- a/app/code/core/Mage/Wishlist/view/frontend/button/tocart.phtml +++ b/app/code/core/Mage/Wishlist/view/frontend/button/tocart.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Wishlist/view/frontend/button/update.phtml b/app/code/core/Mage/Wishlist/view/frontend/button/update.phtml index 9a75f0ca69db24d272f13278d4e91aa379471eee..c3aa714595ec41f999081ab355b38c794216ed4d 100644 --- a/app/code/core/Mage/Wishlist/view/frontend/button/update.phtml +++ b/app/code/core/Mage/Wishlist/view/frontend/button/update.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Wishlist/view/frontend/email/items.phtml b/app/code/core/Mage/Wishlist/view/frontend/email/items.phtml index 068173100bd152a8bb3f8bbaf41380f2c6dcc4a4..d3494b9a279ad742fdd1da88379ec0cfef7e63fb 100644 --- a/app/code/core/Mage/Wishlist/view/frontend/email/items.phtml +++ b/app/code/core/Mage/Wishlist/view/frontend/email/items.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /* @var $this Mage_Wishlist_Block_Share_Email_Items */ diff --git a/app/code/core/Mage/Wishlist/view/frontend/email/rss.phtml b/app/code/core/Mage/Wishlist/view/frontend/email/rss.phtml index 2f2a814ad405cc862838a885a349cd99bb62864e..682bfded439057be846cb211707279a110f0ceb5 100644 --- a/app/code/core/Mage/Wishlist/view/frontend/email/rss.phtml +++ b/app/code/core/Mage/Wishlist/view/frontend/email/rss.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Wishlist/view/frontend/item/column/cart.phtml b/app/code/core/Mage/Wishlist/view/frontend/item/column/cart.phtml index c2f247420fa3648b85bd96b45b1e5b9dcc22731a..90ee4d10ff20022dd526721144dd5c2ea89c1d58 100644 --- a/app/code/core/Mage/Wishlist/view/frontend/item/column/cart.phtml +++ b/app/code/core/Mage/Wishlist/view/frontend/item/column/cart.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Wishlist/view/frontend/item/column/image.phtml b/app/code/core/Mage/Wishlist/view/frontend/item/column/image.phtml index e33e71843c920b8213f9f5b0f34dde0115d08671..9358a14b35b2694f4dae681dda7b8d0b547dc224 100644 --- a/app/code/core/Mage/Wishlist/view/frontend/item/column/image.phtml +++ b/app/code/core/Mage/Wishlist/view/frontend/item/column/image.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Wishlist/view/frontend/item/column/info.phtml b/app/code/core/Mage/Wishlist/view/frontend/item/column/info.phtml index 44be5291d3268ccc7df2ceceb3449ed222189597..ac113d52bf3becf4e8ff88f1d7b0ef21f55533d7 100644 --- a/app/code/core/Mage/Wishlist/view/frontend/item/column/info.phtml +++ b/app/code/core/Mage/Wishlist/view/frontend/item/column/info.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Wishlist/view/frontend/item/column/remove.phtml b/app/code/core/Mage/Wishlist/view/frontend/item/column/remove.phtml index bea319d685d71ef45f2f457667bebb13ccc3b286..015a3d66daf5e1ebabc907d8829911b2489dd153 100644 --- a/app/code/core/Mage/Wishlist/view/frontend/item/column/remove.phtml +++ b/app/code/core/Mage/Wishlist/view/frontend/item/column/remove.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Wishlist/view/frontend/item/configure/addto.phtml b/app/code/core/Mage/Wishlist/view/frontend/item/configure/addto.phtml index efd62b4e9b76c77d7ccf524ec294d2a433290607..595f456a98d9fbd770ec24e6bb6d90658b6906f8 100644 --- a/app/code/core/Mage/Wishlist/view/frontend/item/configure/addto.phtml +++ b/app/code/core/Mage/Wishlist/view/frontend/item/configure/addto.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Wishlist/view/frontend/item/list.phtml b/app/code/core/Mage/Wishlist/view/frontend/item/list.phtml index fd46592f40a5e41875c6dfa9cecfc641cd2a163d..08cd2a3644c7b8e9cdd4050d3a9c371b29bfd584 100644 --- a/app/code/core/Mage/Wishlist/view/frontend/item/list.phtml +++ b/app/code/core/Mage/Wishlist/view/frontend/item/list.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Wishlist/view/frontend/layout.xml b/app/code/core/Mage/Wishlist/view/frontend/layout.xml index 4fbd3d6fd9411c3565b1295276a7c42611de5b64..f03aac6977db86db8eae6fd2d5d9b97f06583626 100644 --- a/app/code/core/Mage/Wishlist/view/frontend/layout.xml +++ b/app/code/core/Mage/Wishlist/view/frontend/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/code/core/Mage/Wishlist/view/frontend/options_list.phtml b/app/code/core/Mage/Wishlist/view/frontend/options_list.phtml index b1825423987e39ca1a1904e89901a04fe8f9b508..92a98a09713aca61c0b2b5b4088e5b43d605d99c 100644 --- a/app/code/core/Mage/Wishlist/view/frontend/options_list.phtml +++ b/app/code/core/Mage/Wishlist/view/frontend/options_list.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /* @var $this Mage_Wishlist_Block_Customer_Wishlist_Item_Options */ diff --git a/app/code/core/Mage/Wishlist/view/frontend/render/item/price.phtml b/app/code/core/Mage/Wishlist/view/frontend/render/item/price.phtml index 87ad11766b8ede397579c1adbfe7cbb02ea9a61b..db9dff92b3edcbe3d2f4692edc06dc4cbde5d5b1 100644 --- a/app/code/core/Mage/Wishlist/view/frontend/render/item/price.phtml +++ b/app/code/core/Mage/Wishlist/view/frontend/render/item/price.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /* @var $this Mage_Wishlist_Block_Customer_Wishlist_Render_Item_Price */ diff --git a/app/code/core/Mage/Wishlist/view/frontend/render/item/price_msrp_item.phtml b/app/code/core/Mage/Wishlist/view/frontend/render/item/price_msrp_item.phtml index 5025cead7a3c96a40ef97414c2181c853b3dc715..133e0dbc0b4226abfa93b4528e6049b86bc4a69d 100644 --- a/app/code/core/Mage/Wishlist/view/frontend/render/item/price_msrp_item.phtml +++ b/app/code/core/Mage/Wishlist/view/frontend/render/item/price_msrp_item.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Wishlist/view/frontend/render/item/price_msrp_rss.phtml b/app/code/core/Mage/Wishlist/view/frontend/render/item/price_msrp_rss.phtml index 295418e05c93e05ba05cdd5219d1ae8e0e9dfd84..2d6c69884e4840fcfda5425c3943c9bd6e646bd6 100644 --- a/app/code/core/Mage/Wishlist/view/frontend/render/item/price_msrp_rss.phtml +++ b/app/code/core/Mage/Wishlist/view/frontend/render/item/price_msrp_rss.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Wishlist/view/frontend/shared.phtml b/app/code/core/Mage/Wishlist/view/frontend/shared.phtml index 31dc0d4be8e81b3206f350ade28b69d2c38ed43d..282e3f198ee0e168a28f1a8e9a57ca0e61ba7ea2 100644 --- a/app/code/core/Mage/Wishlist/view/frontend/shared.phtml +++ b/app/code/core/Mage/Wishlist/view/frontend/shared.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /* @var $this Mage_Wishlist_Block_Share_Wishlist */ diff --git a/app/code/core/Mage/Wishlist/view/frontend/sharing.phtml b/app/code/core/Mage/Wishlist/view/frontend/sharing.phtml index ac689e6f0dafa1c8be75cdbbe81d6fbd4e4311be..c3689b846f4a8f70d9eaf0446805416e9bbf94bc 100644 --- a/app/code/core/Mage/Wishlist/view/frontend/sharing.phtml +++ b/app/code/core/Mage/Wishlist/view/frontend/sharing.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/code/core/Mage/Wishlist/view/frontend/sidebar.phtml b/app/code/core/Mage/Wishlist/view/frontend/sidebar.phtml index e4f3e6e7df9e8d973ec6711d45476fa0e6782a8a..8cc99243f1d3b2ee74179709e90b68bffa60bd7d 100644 --- a/app/code/core/Mage/Wishlist/view/frontend/sidebar.phtml +++ b/app/code/core/Mage/Wishlist/view/frontend/sidebar.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /* @var $this Mage_Wishlist_Block_Customer_Sidebar */ diff --git a/app/code/core/Mage/Wishlist/view/frontend/view.phtml b/app/code/core/Mage/Wishlist/view/frontend/view.phtml index a55df63d06a909fa0e736ffc75754043de2e8b0e..c0eff262aaded58c52f8c8c325169dfa7cca0e11 100644 --- a/app/code/core/Mage/Wishlist/view/frontend/view.phtml +++ b/app/code/core/Mage/Wishlist/view/frontend/view.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /* @var $this Mage_Wishlist_Block_Customer_Wishlist */ diff --git a/app/design/adminhtml/default/basic/below_ie7.css b/app/design/adminhtml/default/basic/below_ie7.css index 5c83c7ad6956c8ae12f0a8278ebf6db1a1447a64..c76d1eec0de5ca5bffff6e9947f4ec6a934faaca 100644 --- a/app/design/adminhtml/default/basic/below_ie7.css +++ b/app/design/adminhtml/default/basic/below_ie7.css @@ -17,7 +17,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /* Set min-width */ diff --git a/app/design/adminhtml/default/basic/boxes.css b/app/design/adminhtml/default/basic/boxes.css index abe64804507ed13d8757226d64ef48d0a3561632..2ce1a9e43f5a3b7fba489fa3f65f231a222d3372 100644 --- a/app/design/adminhtml/default/basic/boxes.css +++ b/app/design/adminhtml/default/basic/boxes.css @@ -17,7 +17,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/design/adminhtml/default/basic/custom.css b/app/design/adminhtml/default/basic/custom.css index 4d698f97a649b69a07a8cc5e49d527facfeab916..734128e887d03133675a6d2ff2489c325012b437 100644 --- a/app/design/adminhtml/default/basic/custom.css +++ b/app/design/adminhtml/default/basic/custom.css @@ -17,6 +17,6 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/design/adminhtml/default/basic/ie7.css b/app/design/adminhtml/default/basic/ie7.css index b7e5f6e6c8912b624ad2df7096718ffbc1559312..81034a34b552d8fdca98a2e77887011364449049 100644 --- a/app/design/adminhtml/default/basic/ie7.css +++ b/app/design/adminhtml/default/basic/ie7.css @@ -17,7 +17,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/design/adminhtml/default/basic/iestyles.css b/app/design/adminhtml/default/basic/iestyles.css index 2ab98e970cf4524d49f46e4b6c0427551d135722..68d51d7e92ebe812dd437264b03fc73b0b6fc914 100644 --- a/app/design/adminhtml/default/basic/iestyles.css +++ b/app/design/adminhtml/default/basic/iestyles.css @@ -17,7 +17,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /* Clearing */ diff --git a/app/design/adminhtml/default/basic/local.xml b/app/design/adminhtml/default/basic/local.xml index 68bd4da623737ccb7c0b16dfa9e4454f0c4a8db3..49114963f1ceb04a78319cf413be53f1bfc1bce0 100644 --- a/app/design/adminhtml/default/basic/local.xml +++ b/app/design/adminhtml/default/basic/local.xml @@ -21,7 +21,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/design/adminhtml/default/basic/menu.css b/app/design/adminhtml/default/basic/menu.css index 9bbf1177cd7a8261f01bbfeb46010405e0b621bd..19eb0cbbc73876104771e08b4df345b3e85cbc7b 100644 --- a/app/design/adminhtml/default/basic/menu.css +++ b/app/design/adminhtml/default/basic/menu.css @@ -17,7 +17,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/design/adminhtml/default/basic/print.css b/app/design/adminhtml/default/basic/print.css index d1591a1ae06731817234a6e1263a110193d2f459..00bb0bad4e1f022999664a3cf6d9f01f02c61a94 100644 --- a/app/design/adminhtml/default/basic/print.css +++ b/app/design/adminhtml/default/basic/print.css @@ -19,7 +19,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/design/adminhtml/default/basic/reset.css b/app/design/adminhtml/default/basic/reset.css index aa627b16b8bac6a2f1952164121cc2a0a6ad0d4b..236d9bed19a02ea6d6202f011946a6a171c19dd5 100644 --- a/app/design/adminhtml/default/basic/reset.css +++ b/app/design/adminhtml/default/basic/reset.css @@ -17,7 +17,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /******************************************/ diff --git a/app/design/adminhtml/default/basic/theme.xml b/app/design/adminhtml/default/basic/theme.xml index c5ae5ca0d7c68b3135e4da1b4e19953c282acf44..bdfd62802ba4b90d2ebea40fcb34a38ee34f0bd5 100644 --- a/app/design/adminhtml/default/basic/theme.xml +++ b/app/design/adminhtml/default/basic/theme.xml @@ -20,7 +20,7 @@ * * @category Magento * @package Design - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/design/frontend/default/blank/css/print.css b/app/design/frontend/default/blank/css/print.css index 6ee88080478fb4cd5e1cde21c3ec866b35f3ab28..77401e43f7ed1b369a33362bb2f6b5a7cffd7c32 100644 --- a/app/design/frontend/default/blank/css/print.css +++ b/app/design/frontend/default/blank/css/print.css @@ -19,7 +19,7 @@ * * @category design * @package default_blank - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/design/frontend/default/blank/css/styles-ie.css b/app/design/frontend/default/blank/css/styles-ie.css index aa4744f296bd1bfc013b34388656be7ae4c17eeb..834da2f6763fd703dee6c62c225fde1f9cf1a496 100644 --- a/app/design/frontend/default/blank/css/styles-ie.css +++ b/app/design/frontend/default/blank/css/styles-ie.css @@ -19,7 +19,7 @@ * * @category design * @package default_blank - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/design/frontend/default/blank/css/styles.css b/app/design/frontend/default/blank/css/styles.css index c1e697bd3945ad3b06d9daa57f3eea9498287ebf..e8aa9c765a2103a44e4ec7f615f825136fa095a6 100644 --- a/app/design/frontend/default/blank/css/styles.css +++ b/app/design/frontend/default/blank/css/styles.css @@ -19,7 +19,7 @@ * * @category design * @package default_blank - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/design/frontend/default/blank/local.xml b/app/design/frontend/default/blank/local.xml index 4c3a4eb7b75f153911f60b52bb47f699e8c2bfa1..f0bde14e2088f5f54dcc7cfd909bf45c21d0585e 100644 --- a/app/design/frontend/default/blank/local.xml +++ b/app/design/frontend/default/blank/local.xml @@ -21,7 +21,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/design/frontend/default/blank/theme.xml b/app/design/frontend/default/blank/theme.xml index b9fc63915654e5059d741cddffd98073a2d95f2d..310048617760f0bba1d5c97891d974d88597d688 100644 --- a/app/design/frontend/default/blank/theme.xml +++ b/app/design/frontend/default/blank/theme.xml @@ -20,7 +20,7 @@ * * @category Magento * @package Design - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/design/frontend/default/demo/css/print.css b/app/design/frontend/default/demo/css/print.css index 43b620b55f1b2be8a1306af0871a8c729ab0f3c7..b2ac6823c62e4d3758080e1ee226e2968482e961 100644 --- a/app/design/frontend/default/demo/css/print.css +++ b/app/design/frontend/default/demo/css/print.css @@ -19,7 +19,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/design/frontend/default/demo/css/styles-ie.css b/app/design/frontend/default/demo/css/styles-ie.css index 5197157dbd64b91e03a12287d7bb9f55c0cca21f..1ca23a1d8e27d87528ff6f966f548f95fad7ffcb 100644 --- a/app/design/frontend/default/demo/css/styles-ie.css +++ b/app/design/frontend/default/demo/css/styles-ie.css @@ -19,7 +19,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/design/frontend/default/demo/css/styles.css b/app/design/frontend/default/demo/css/styles.css index cebbc5fdbc495502cdce909aac5f89dd998f3a70..3d01cba7bb7694d95820b25ea97ccf3c4e75a3db 100644 --- a/app/design/frontend/default/demo/css/styles.css +++ b/app/design/frontend/default/demo/css/styles.css @@ -19,7 +19,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/design/frontend/default/demo/local.xml b/app/design/frontend/default/demo/local.xml index 4c3a4eb7b75f153911f60b52bb47f699e8c2bfa1..f0bde14e2088f5f54dcc7cfd909bf45c21d0585e 100644 --- a/app/design/frontend/default/demo/local.xml +++ b/app/design/frontend/default/demo/local.xml @@ -21,7 +21,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/design/frontend/default/demo/theme.xml b/app/design/frontend/default/demo/theme.xml index 1d39de9511acca4a6f32acc2d63e4f396aaa7b63..40d12d4ec54be39df6ca7415912000809d144e81 100644 --- a/app/design/frontend/default/demo/theme.xml +++ b/app/design/frontend/default/demo/theme.xml @@ -20,7 +20,7 @@ * * @category Magento * @package Design - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/design/frontend/default/demo_blue/css/styles-ie.css b/app/design/frontend/default/demo_blue/css/styles-ie.css index 2d17532ba76a0ae7e4922f93ff4b2f31a4b347ca..5e9a506be8230932886873fd2f2a4e1397ea4a7d 100644 --- a/app/design/frontend/default/demo_blue/css/styles-ie.css +++ b/app/design/frontend/default/demo_blue/css/styles-ie.css @@ -19,7 +19,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/design/frontend/default/demo_blue/css/styles.css b/app/design/frontend/default/demo_blue/css/styles.css index 872681d3023bd090dcb6153d25a00cc9d6f4b507..c15c7ada09bb34ce35756de8ee0e38d309c557cf 100644 --- a/app/design/frontend/default/demo_blue/css/styles.css +++ b/app/design/frontend/default/demo_blue/css/styles.css @@ -19,7 +19,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/design/frontend/default/demo_blue/local.xml b/app/design/frontend/default/demo_blue/local.xml index 4c3a4eb7b75f153911f60b52bb47f699e8c2bfa1..f0bde14e2088f5f54dcc7cfd909bf45c21d0585e 100644 --- a/app/design/frontend/default/demo_blue/local.xml +++ b/app/design/frontend/default/demo_blue/local.xml @@ -21,7 +21,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/design/frontend/default/demo_blue/theme.xml b/app/design/frontend/default/demo_blue/theme.xml index de46d07708fa384814d93b276919400a00eeea3b..1d42000166a43fac73399ed91dfe38654b03d9df 100644 --- a/app/design/frontend/default/demo_blue/theme.xml +++ b/app/design/frontend/default/demo_blue/theme.xml @@ -20,7 +20,7 @@ * * @category Magento * @package Design - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/design/frontend/default/iphone/Mage_Bundle/catalog/product/view/type/bundle.phtml b/app/design/frontend/default/iphone/Mage_Bundle/catalog/product/view/type/bundle.phtml index b5d3b60bf5c5fce4a26a8ce162ce87cba699d260..c42788222af21d3fefade67723b9fce088b3e623 100644 --- a/app/design/frontend/default/iphone/Mage_Bundle/catalog/product/view/type/bundle.phtml +++ b/app/design/frontend/default/iphone/Mage_Bundle/catalog/product/view/type/bundle.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/design/frontend/default/iphone/Mage_Bundle/layout.xml b/app/design/frontend/default/iphone/Mage_Bundle/layout.xml index dbca238b43c71930dfb6632d6562ed3920703eae..63e73613daecfdf6089d09d8737e342941168c5d 100644 --- a/app/design/frontend/default/iphone/Mage_Bundle/layout.xml +++ b/app/design/frontend/default/iphone/Mage_Bundle/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package default_iphone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/design/frontend/default/iphone/Mage_Bundle/sales/order/items/renderer.phtml b/app/design/frontend/default/iphone/Mage_Bundle/sales/order/items/renderer.phtml index fe9391350d7bbebbe1413218f7c532b94cd1fa98..973806d4b07b6838496ee022ef6e63626c42abf2 100644 --- a/app/design/frontend/default/iphone/Mage_Bundle/sales/order/items/renderer.phtml +++ b/app/design/frontend/default/iphone/Mage_Bundle/sales/order/items/renderer.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_iphone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/design/frontend/default/iphone/Mage_Catalog/category/view.phtml b/app/design/frontend/default/iphone/Mage_Catalog/category/view.phtml index 2eab5c39d541f06b49483c8e5210afffe39c4680..49ace225e0a30d31447e0b967eb4f9f372d9ee35 100644 --- a/app/design/frontend/default/iphone/Mage_Catalog/category/view.phtml +++ b/app/design/frontend/default/iphone/Mage_Catalog/category/view.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_iphone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/design/frontend/default/iphone/Mage_Catalog/layer/view.phtml b/app/design/frontend/default/iphone/Mage_Catalog/layer/view.phtml index dbca2455cd4eef3b7bcc35b907f13672820550cb..8a51e6d15b3074914a683b8bf7a30ae60fc6b0e5 100644 --- a/app/design/frontend/default/iphone/Mage_Catalog/layer/view.phtml +++ b/app/design/frontend/default/iphone/Mage_Catalog/layer/view.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_iphone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/design/frontend/default/iphone/Mage_Catalog/layout.xml b/app/design/frontend/default/iphone/Mage_Catalog/layout.xml index 754369d1141a0f2a9c7bbffc35b71d8350f0195f..c7ffcd52ed8dbd825a77b48360dfe4e7f3912731 100644 --- a/app/design/frontend/default/iphone/Mage_Catalog/layout.xml +++ b/app/design/frontend/default/iphone/Mage_Catalog/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package default_iphone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/design/frontend/default/iphone/Mage_Catalog/navigation/top.phtml b/app/design/frontend/default/iphone/Mage_Catalog/navigation/top.phtml index a4657cef5626e292be032a14f0200f13f897d6ee..f3a661fdc43b93af6103868475a61ec6d6b6e90d 100644 --- a/app/design/frontend/default/iphone/Mage_Catalog/navigation/top.phtml +++ b/app/design/frontend/default/iphone/Mage_Catalog/navigation/top.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/design/frontend/default/iphone/Mage_Catalog/product/gallery.phtml b/app/design/frontend/default/iphone/Mage_Catalog/product/gallery.phtml index d4d763be5dba29bebb2c2d9787f59bee170298ce..cbabe535910caf0cde344f84ef613bf6cbd4e310 100644 --- a/app/design/frontend/default/iphone/Mage_Catalog/product/gallery.phtml +++ b/app/design/frontend/default/iphone/Mage_Catalog/product/gallery.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/design/frontend/default/iphone/Mage_Catalog/product/list.phtml b/app/design/frontend/default/iphone/Mage_Catalog/product/list.phtml index c6137c9eaa72a5bb2b0a5c48860a56039a7c4326..3c05548663849aadb07fd87e19d275d83cab04d0 100644 --- a/app/design/frontend/default/iphone/Mage_Catalog/product/list.phtml +++ b/app/design/frontend/default/iphone/Mage_Catalog/product/list.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_iphone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/design/frontend/default/iphone/Mage_Catalog/product/list/toolbar.phtml b/app/design/frontend/default/iphone/Mage_Catalog/product/list/toolbar.phtml index 96885e9b1d706c28cc4000419119fef732e6f42c..bd04cf564af2eded7c06c3da54751df5b8dc1960 100644 --- a/app/design/frontend/default/iphone/Mage_Catalog/product/list/toolbar.phtml +++ b/app/design/frontend/default/iphone/Mage_Catalog/product/list/toolbar.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_iphone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/design/frontend/default/iphone/Mage_Catalog/product/list/upsell.phtml b/app/design/frontend/default/iphone/Mage_Catalog/product/list/upsell.phtml index b365680230b214bd1f5b1e6df84e8d8728bb4221..1e13f5ea18a5c188ed73f287513577654cdb7ba0 100644 --- a/app/design/frontend/default/iphone/Mage_Catalog/product/list/upsell.phtml +++ b/app/design/frontend/default/iphone/Mage_Catalog/product/list/upsell.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_iphone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/design/frontend/default/iphone/Mage_Catalog/product/price.phtml b/app/design/frontend/default/iphone/Mage_Catalog/product/price.phtml index 29cbdf35649d107ba14a06016a7d70129d13848f..8ed4ea4cb93c666ba7f668b04615894b9707fc9b 100644 --- a/app/design/frontend/default/iphone/Mage_Catalog/product/price.phtml +++ b/app/design/frontend/default/iphone/Mage_Catalog/product/price.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_iphone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/design/frontend/default/iphone/Mage_Catalog/product/price_msrp.phtml b/app/design/frontend/default/iphone/Mage_Catalog/product/price_msrp.phtml index 771710d025ec7a2e07a6fbeee9cdcc4539e355af..c474e8b02e6001e884387dcf681a31430adbd845 100644 --- a/app/design/frontend/default/iphone/Mage_Catalog/product/price_msrp.phtml +++ b/app/design/frontend/default/iphone/Mage_Catalog/product/price_msrp.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_iphone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/design/frontend/default/iphone/Mage_Catalog/product/price_msrp_noform.phtml b/app/design/frontend/default/iphone/Mage_Catalog/product/price_msrp_noform.phtml index 771710d025ec7a2e07a6fbeee9cdcc4539e355af..c474e8b02e6001e884387dcf681a31430adbd845 100644 --- a/app/design/frontend/default/iphone/Mage_Catalog/product/price_msrp_noform.phtml +++ b/app/design/frontend/default/iphone/Mage_Catalog/product/price_msrp_noform.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_iphone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/design/frontend/default/iphone/Mage_Catalog/product/view.phtml b/app/design/frontend/default/iphone/Mage_Catalog/product/view.phtml index 0cdea67489bd70b3eb1ec26804597d0e30c9422d..c0e2327020b7e3a3cb9147cefcd2508d70f2859e 100644 --- a/app/design/frontend/default/iphone/Mage_Catalog/product/view.phtml +++ b/app/design/frontend/default/iphone/Mage_Catalog/product/view.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_iphone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/design/frontend/default/iphone/Mage_Catalog/product/view/addto.phtml b/app/design/frontend/default/iphone/Mage_Catalog/product/view/addto.phtml index 2475a5935b1d670aff8be2c1178739f22703c013..cd77404312d61c91a0c26e5c9e704d6123e8efc7 100644 --- a/app/design/frontend/default/iphone/Mage_Catalog/product/view/addto.phtml +++ b/app/design/frontend/default/iphone/Mage_Catalog/product/view/addto.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/design/frontend/default/iphone/Mage_Catalog/product/view/addtocart.phtml b/app/design/frontend/default/iphone/Mage_Catalog/product/view/addtocart.phtml index 5c550bde37ac1505def2fdf086a919625e741378..b0000bba8e9f1785ef4940da926788f6982940db 100644 --- a/app/design/frontend/default/iphone/Mage_Catalog/product/view/addtocart.phtml +++ b/app/design/frontend/default/iphone/Mage_Catalog/product/view/addtocart.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/design/frontend/default/iphone/Mage_Catalog/product/view/addtocartbottom.phtml b/app/design/frontend/default/iphone/Mage_Catalog/product/view/addtocartbottom.phtml index 3c482357e9c822dd59e1e59fdcaf482673c8a0c4..dbc5a77db309826fe9477258f0a8ca858a4a57f2 100644 --- a/app/design/frontend/default/iphone/Mage_Catalog/product/view/addtocartbottom.phtml +++ b/app/design/frontend/default/iphone/Mage_Catalog/product/view/addtocartbottom.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/design/frontend/default/iphone/Mage_Catalog/product/view/addtowishlist.phtml b/app/design/frontend/default/iphone/Mage_Catalog/product/view/addtowishlist.phtml index ebf49c3d2d9b40ab75d59aa376a87cda761f6265..07a4e527e483b148a61266ac7f407cea49d95d34 100644 --- a/app/design/frontend/default/iphone/Mage_Catalog/product/view/addtowishlist.phtml +++ b/app/design/frontend/default/iphone/Mage_Catalog/product/view/addtowishlist.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_iphone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/design/frontend/default/iphone/Mage_Catalog/product/view/description.phtml b/app/design/frontend/default/iphone/Mage_Catalog/product/view/description.phtml index c9922a7e7c254df4dd76e8ee939e5afd99baec91..7d4bdb8ec46f1f3df6da2cb940cd162c45894205 100644 --- a/app/design/frontend/default/iphone/Mage_Catalog/product/view/description.phtml +++ b/app/design/frontend/default/iphone/Mage_Catalog/product/view/description.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/design/frontend/default/iphone/Mage_Catalog/product/view/media.phtml b/app/design/frontend/default/iphone/Mage_Catalog/product/view/media.phtml index 4661d5ff1b4c4607b35de77bf894facbf0c5ee40..8e22c0dc47c4abdb6156415a8730d568d24629cf 100644 --- a/app/design/frontend/default/iphone/Mage_Catalog/product/view/media.phtml +++ b/app/design/frontend/default/iphone/Mage_Catalog/product/view/media.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/design/frontend/default/iphone/Mage_Catalog/product/view/options/wrapper.phtml b/app/design/frontend/default/iphone/Mage_Catalog/product/view/options/wrapper.phtml index 92f0cf998a64e913fc104f299550ada175d1ecd3..d58d8ef239516c59970d3e76386043879ac07551 100644 --- a/app/design/frontend/default/iphone/Mage_Catalog/product/view/options/wrapper.phtml +++ b/app/design/frontend/default/iphone/Mage_Catalog/product/view/options/wrapper.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/design/frontend/default/iphone/Mage_Catalog/product/view/options/wrapper/bottom.phtml b/app/design/frontend/default/iphone/Mage_Catalog/product/view/options/wrapper/bottom.phtml index a363ada673f9184d2fdb8767173d586933920b1e..ca5aff7c7241d1e0e8303b8853d70aea7832981b 100644 --- a/app/design/frontend/default/iphone/Mage_Catalog/product/view/options/wrapper/bottom.phtml +++ b/app/design/frontend/default/iphone/Mage_Catalog/product/view/options/wrapper/bottom.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/design/frontend/default/iphone/Mage_Catalog/product/view/type/grouped.phtml b/app/design/frontend/default/iphone/Mage_Catalog/product/view/type/grouped.phtml index f2d9681d1c5bc18c5f36519a2a466de12f847329..0807e28c6b6bf505c24d8eb80e53c5832393c43c 100644 --- a/app/design/frontend/default/iphone/Mage_Catalog/product/view/type/grouped.phtml +++ b/app/design/frontend/default/iphone/Mage_Catalog/product/view/type/grouped.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/design/frontend/default/iphone/Mage_CatalogSearch/form.mini.phtml b/app/design/frontend/default/iphone/Mage_CatalogSearch/form.mini.phtml index 530d7a6ff9704aa123d2c75c1c89aca6445928ed..5ddae74868555b685f96c422da3e8768c93d090f 100644 --- a/app/design/frontend/default/iphone/Mage_CatalogSearch/form.mini.phtml +++ b/app/design/frontend/default/iphone/Mage_CatalogSearch/form.mini.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_iphone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /* @var $this Mage_Core_Block_Template */ diff --git a/app/design/frontend/default/iphone/Mage_CatalogSearch/layout.xml b/app/design/frontend/default/iphone/Mage_CatalogSearch/layout.xml index cc285cb57c631a7de0d74959cbb04263ef01bf89..213370543e1de61565d9a3810d74effbcf2c3183 100644 --- a/app/design/frontend/default/iphone/Mage_CatalogSearch/layout.xml +++ b/app/design/frontend/default/iphone/Mage_CatalogSearch/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/design/frontend/default/iphone/Mage_CatalogSearch/result.phtml b/app/design/frontend/default/iphone/Mage_CatalogSearch/result.phtml index 73b202ee854a3188f6e2d2239df456b2b7dc6d89..1ae4712fba8dcb51c3732c15b08df4dae8ac4ca3 100644 --- a/app/design/frontend/default/iphone/Mage_CatalogSearch/result.phtml +++ b/app/design/frontend/default/iphone/Mage_CatalogSearch/result.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_iphone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/design/frontend/default/iphone/Mage_Checkout/cart.phtml b/app/design/frontend/default/iphone/Mage_Checkout/cart.phtml index 8430b78e7a80975c5e716eb9a3631a1e50046317..af7e906b1df97ede42309c70efbe5edf3c9a1282 100644 --- a/app/design/frontend/default/iphone/Mage_Checkout/cart.phtml +++ b/app/design/frontend/default/iphone/Mage_Checkout/cart.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_iphone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/design/frontend/default/iphone/Mage_Checkout/cart/item/default.phtml b/app/design/frontend/default/iphone/Mage_Checkout/cart/item/default.phtml index f60b60b3c29b5d4fbda767c2abefd18b3fd49487..a232e70f83c0dfb292f30ec9f23ee61f67c076a9 100644 --- a/app/design/frontend/default/iphone/Mage_Checkout/cart/item/default.phtml +++ b/app/design/frontend/default/iphone/Mage_Checkout/cart/item/default.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_iphone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/design/frontend/default/iphone/Mage_Checkout/cart/no_items_header.phtml b/app/design/frontend/default/iphone/Mage_Checkout/cart/no_items_header.phtml index cb73cb6c5f82846a7a9d34f776c4a67ab478b273..36c883efbed0f61499f3f621729f2195ef554ce8 100644 --- a/app/design/frontend/default/iphone/Mage_Checkout/cart/no_items_header.phtml +++ b/app/design/frontend/default/iphone/Mage_Checkout/cart/no_items_header.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/design/frontend/default/iphone/Mage_Checkout/layout.xml b/app/design/frontend/default/iphone/Mage_Checkout/layout.xml index c3672b8ee51db2bd5db5a7db479fcb2b910745ec..9dad138cb473965ae2f8f66a798844d7b38a64ae 100644 --- a/app/design/frontend/default/iphone/Mage_Checkout/layout.xml +++ b/app/design/frontend/default/iphone/Mage_Checkout/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package default_iphone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/design/frontend/default/iphone/Mage_Checkout/onepage/review/info.phtml b/app/design/frontend/default/iphone/Mage_Checkout/onepage/review/info.phtml index d3833c51c985ba7dab125d45d577630db1ef4696..d93cb57f9638a9bc17e588e24927d6d9f2c7cbd7 100644 --- a/app/design/frontend/default/iphone/Mage_Checkout/onepage/review/info.phtml +++ b/app/design/frontend/default/iphone/Mage_Checkout/onepage/review/info.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_iphone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/design/frontend/default/iphone/Mage_Checkout/onepage/review/item.phtml b/app/design/frontend/default/iphone/Mage_Checkout/onepage/review/item.phtml index d2c96fbeeacfc7d22b28528754682e756f0f6e14..58edc4e9e5019966e2d2db06a13240fb633c59bd 100644 --- a/app/design/frontend/default/iphone/Mage_Checkout/onepage/review/item.phtml +++ b/app/design/frontend/default/iphone/Mage_Checkout/onepage/review/item.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/design/frontend/default/iphone/Mage_Checkout/onepage/review/totals.phtml b/app/design/frontend/default/iphone/Mage_Checkout/onepage/review/totals.phtml index 2bb1bbf11c961019fb6af18b3083197eb3d27d23..4d75855493c3d24bf6e090886399d00ed947f14f 100644 --- a/app/design/frontend/default/iphone/Mage_Checkout/onepage/review/totals.phtml +++ b/app/design/frontend/default/iphone/Mage_Checkout/onepage/review/totals.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/design/frontend/default/iphone/Mage_Checkout/success.phtml b/app/design/frontend/default/iphone/Mage_Checkout/success.phtml index 2e2bd389a8aebedad51728c051d6fb838de047f1..cfe4389343db8137a5d5f8b7b27397d99dcc16aa 100644 --- a/app/design/frontend/default/iphone/Mage_Checkout/success.phtml +++ b/app/design/frontend/default/iphone/Mage_Checkout/success.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_iphone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/design/frontend/default/iphone/Mage_Cms/layout.xml b/app/design/frontend/default/iphone/Mage_Cms/layout.xml index 56ea8a8c495f220093f043c2f371275969348c0a..12c5c3992c17dededbef0871662ca189f35a1cff 100644 --- a/app/design/frontend/default/iphone/Mage_Cms/layout.xml +++ b/app/design/frontend/default/iphone/Mage_Cms/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/design/frontend/default/iphone/Mage_Contacts/layout.xml b/app/design/frontend/default/iphone/Mage_Contacts/layout.xml index d08b850b47055c6df39b9179e0782059ddd42e1e..b881a6cc6ccd24b408d705aebd8dce61e8527329 100644 --- a/app/design/frontend/default/iphone/Mage_Contacts/layout.xml +++ b/app/design/frontend/default/iphone/Mage_Contacts/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/design/frontend/default/iphone/Mage_Customer/account/dashboard/address.phtml b/app/design/frontend/default/iphone/Mage_Customer/account/dashboard/address.phtml index 30b60ccf9a959d121a78b9196a12ca95a50b3d4c..154cb8cb287e2602d89d16cb69bfb3d44d06f48f 100644 --- a/app/design/frontend/default/iphone/Mage_Customer/account/dashboard/address.phtml +++ b/app/design/frontend/default/iphone/Mage_Customer/account/dashboard/address.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_iphone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/design/frontend/default/iphone/Mage_Customer/account/navigation.phtml b/app/design/frontend/default/iphone/Mage_Customer/account/navigation.phtml index 25307fed7ea19d36baf61edbbf750cf4932f3da1..4e234abff79ab3da20de960ebb262947f6cda977 100644 --- a/app/design/frontend/default/iphone/Mage_Customer/account/navigation.phtml +++ b/app/design/frontend/default/iphone/Mage_Customer/account/navigation.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_iphone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/design/frontend/default/iphone/Mage_Customer/address/book.phtml b/app/design/frontend/default/iphone/Mage_Customer/address/book.phtml index 7d0d108ca44f8c062eac368c5e24976828135057..6e325e1c16375c8caba894039216b5ede0d91916 100644 --- a/app/design/frontend/default/iphone/Mage_Customer/address/book.phtml +++ b/app/design/frontend/default/iphone/Mage_Customer/address/book.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_iphone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/design/frontend/default/iphone/Mage_Customer/form/login.phtml b/app/design/frontend/default/iphone/Mage_Customer/form/login.phtml index ab2cbd6df280b5221b117c71e60836776118a78e..9c52100c6ca16bb32d9684ff81a11a017d4903eb 100644 --- a/app/design/frontend/default/iphone/Mage_Customer/form/login.phtml +++ b/app/design/frontend/default/iphone/Mage_Customer/form/login.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_iphone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/design/frontend/default/iphone/Mage_Customer/layout.xml b/app/design/frontend/default/iphone/Mage_Customer/layout.xml index ed147c7fa4faa228a54c8b5bb8bf0cb3bd69fc74..4d62c08feafb1e4ad579966f3f5114842bf4ab7f 100644 --- a/app/design/frontend/default/iphone/Mage_Customer/layout.xml +++ b/app/design/frontend/default/iphone/Mage_Customer/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package default_iphone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/design/frontend/default/iphone/Mage_DesignEditor/css/iphone_styles.css b/app/design/frontend/default/iphone/Mage_DesignEditor/css/iphone_styles.css index 0ff481d69b7ea5e2791d24d6c1f65a687382b214..48cf2299a70bc51dc8d5a1b111a32e9825be2e56 100644 --- a/app/design/frontend/default/iphone/Mage_DesignEditor/css/iphone_styles.css +++ b/app/design/frontend/default/iphone/Mage_DesignEditor/css/iphone_styles.css @@ -19,7 +19,7 @@ * * @category design * @package default_iphone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/design/frontend/default/iphone/Mage_Downloadable/checkout/cart/item/default.phtml b/app/design/frontend/default/iphone/Mage_Downloadable/checkout/cart/item/default.phtml index c214b35d2cf9457fae329631e590a5d3690cfebe..36c10400dfcadd68628e5f8fb6f34057f9b724c0 100644 --- a/app/design/frontend/default/iphone/Mage_Downloadable/checkout/cart/item/default.phtml +++ b/app/design/frontend/default/iphone/Mage_Downloadable/checkout/cart/item/default.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_iphone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/design/frontend/default/iphone/Mage_Downloadable/checkout/onepage/review/item.phtml b/app/design/frontend/default/iphone/Mage_Downloadable/checkout/onepage/review/item.phtml index 235ce319c90ad46feb862db7369a1cc7dc82ca4c..6313c0fc5ef0a16843b256676de1f79a381d73c0 100644 --- a/app/design/frontend/default/iphone/Mage_Downloadable/checkout/onepage/review/item.phtml +++ b/app/design/frontend/default/iphone/Mage_Downloadable/checkout/onepage/review/item.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_iphone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/design/frontend/default/iphone/Mage_Downloadable/customer/products/list.phtml b/app/design/frontend/default/iphone/Mage_Downloadable/customer/products/list.phtml index f3401a036f1f904d5d811505488bf7d442c72b00..1a943f66dbaf1c00afd9865d6e3fe43898e900a6 100644 --- a/app/design/frontend/default/iphone/Mage_Downloadable/customer/products/list.phtml +++ b/app/design/frontend/default/iphone/Mage_Downloadable/customer/products/list.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_iphone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/design/frontend/default/iphone/Mage_Downloadable/sales/order/creditmemo/items/renderer/downloadable.phtml b/app/design/frontend/default/iphone/Mage_Downloadable/sales/order/creditmemo/items/renderer/downloadable.phtml index f048c8669c584b3e47498bba1b939a93e8e47fd8..830ba1ed23f61c1a1320c8c9b896e3269d192c25 100644 --- a/app/design/frontend/default/iphone/Mage_Downloadable/sales/order/creditmemo/items/renderer/downloadable.phtml +++ b/app/design/frontend/default/iphone/Mage_Downloadable/sales/order/creditmemo/items/renderer/downloadable.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_iphone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/design/frontend/default/iphone/Mage_Downloadable/sales/order/invoice/items/renderer/downloadable.phtml b/app/design/frontend/default/iphone/Mage_Downloadable/sales/order/invoice/items/renderer/downloadable.phtml index 44235785f1293de0baee26d8a344d831bdda3a1b..59dc132747c56b1eea46b1e0e1bf0bc121f4cec1 100644 --- a/app/design/frontend/default/iphone/Mage_Downloadable/sales/order/invoice/items/renderer/downloadable.phtml +++ b/app/design/frontend/default/iphone/Mage_Downloadable/sales/order/invoice/items/renderer/downloadable.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_iphone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/design/frontend/default/iphone/Mage_Downloadable/sales/order/items/renderer/downloadable.phtml b/app/design/frontend/default/iphone/Mage_Downloadable/sales/order/items/renderer/downloadable.phtml index 8979e5066aa5cf20d80d8fe4bc6646bb95dfa63a..cd411e57dab9255fd219807184a30b9e904be9b8 100644 --- a/app/design/frontend/default/iphone/Mage_Downloadable/sales/order/items/renderer/downloadable.phtml +++ b/app/design/frontend/default/iphone/Mage_Downloadable/sales/order/items/renderer/downloadable.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_iphone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/design/frontend/default/iphone/Mage_Newsletter/layout.xml b/app/design/frontend/default/iphone/Mage_Newsletter/layout.xml index bb49bfede449745f29d18d73c329635dcfce918b..8a29fd363b3d82a59682cb1630cfd40d1b98ff85 100644 --- a/app/design/frontend/default/iphone/Mage_Newsletter/layout.xml +++ b/app/design/frontend/default/iphone/Mage_Newsletter/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package default_iphone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/design/frontend/default/iphone/Mage_Newsletter/subscribe.phtml b/app/design/frontend/default/iphone/Mage_Newsletter/subscribe.phtml index 45d025376291204547ecd06de6e859fccdf54b69..db5ead33a001207ef9f4eef47104f57d3cb2a669 100644 --- a/app/design/frontend/default/iphone/Mage_Newsletter/subscribe.phtml +++ b/app/design/frontend/default/iphone/Mage_Newsletter/subscribe.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_iphone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/design/frontend/default/iphone/Mage_Page/1column.phtml b/app/design/frontend/default/iphone/Mage_Page/1column.phtml index aa5b19006b28ae42f36fe27daba1929a92ef04b4..772e5f65307410ee0339a8b81ded645e250a6de5 100644 --- a/app/design/frontend/default/iphone/Mage_Page/1column.phtml +++ b/app/design/frontend/default/iphone/Mage_Page/1column.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_iphone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/design/frontend/default/iphone/Mage_Page/html/footer.phtml b/app/design/frontend/default/iphone/Mage_Page/html/footer.phtml index 9cf1da94bf2a8c0c3a173771a6fab0ea9c1669c0..4055eca3cfd79b4ce891d4172488e0aa66975f8e 100644 --- a/app/design/frontend/default/iphone/Mage_Page/html/footer.phtml +++ b/app/design/frontend/default/iphone/Mage_Page/html/footer.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_iphone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/design/frontend/default/iphone/Mage_Page/html/head.phtml b/app/design/frontend/default/iphone/Mage_Page/html/head.phtml index 7c07e9ebe275d1e079e04b0915225a5afb44a1ab..38d8b3b79078f3d1fe88bfc5e1b8ba5878f973f5 100644 --- a/app/design/frontend/default/iphone/Mage_Page/html/head.phtml +++ b/app/design/frontend/default/iphone/Mage_Page/html/head.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_iphone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/design/frontend/default/iphone/Mage_Page/html/header.phtml b/app/design/frontend/default/iphone/Mage_Page/html/header.phtml index 9d29823b0b83996e91e7eff234cccd4d527d2575..45be07b2294f478d6d93b1b231320fc7817a9305 100644 --- a/app/design/frontend/default/iphone/Mage_Page/html/header.phtml +++ b/app/design/frontend/default/iphone/Mage_Page/html/header.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_iphone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /** diff --git a/app/design/frontend/default/iphone/Mage_Page/html/pager.phtml b/app/design/frontend/default/iphone/Mage_Page/html/pager.phtml index 464c25fa922f28333ae6d957abb4187e5a52a1f9..c8805df05d3654aa672c72722684013a61fda855 100644 --- a/app/design/frontend/default/iphone/Mage_Page/html/pager.phtml +++ b/app/design/frontend/default/iphone/Mage_Page/html/pager.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_iphone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/design/frontend/default/iphone/Mage_Page/layout.xml b/app/design/frontend/default/iphone/Mage_Page/layout.xml index 5f6e3fb3d36cbc38feafd6238bb4e8266ae72c68..b83e2fe5c979a23a2619d70e51133915b7337d39 100644 --- a/app/design/frontend/default/iphone/Mage_Page/layout.xml +++ b/app/design/frontend/default/iphone/Mage_Page/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package default_iphone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/design/frontend/default/iphone/Mage_Page/switch/languages.phtml b/app/design/frontend/default/iphone/Mage_Page/switch/languages.phtml index 3774aae4ef5d79aa04739aa13ccdbda5358aa60e..004e7156bba7b56f0974bc94b9ef50606664e865 100644 --- a/app/design/frontend/default/iphone/Mage_Page/switch/languages.phtml +++ b/app/design/frontend/default/iphone/Mage_Page/switch/languages.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/design/frontend/default/iphone/Mage_Page/switch/stores.phtml b/app/design/frontend/default/iphone/Mage_Page/switch/stores.phtml index 245a3f769fba714364dfd36062c7a2eb5a442828..0c1023e88e66892966cebd5f5147bac7f54d3712 100644 --- a/app/design/frontend/default/iphone/Mage_Page/switch/stores.phtml +++ b/app/design/frontend/default/iphone/Mage_Page/switch/stores.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/design/frontend/default/iphone/Mage_Page/template/links.phtml b/app/design/frontend/default/iphone/Mage_Page/template/links.phtml index decbe94a4db6b19732007bb2aa1b6e75256e24bc..0931671c7713725c32b7fce0766f4cd270391b29 100644 --- a/app/design/frontend/default/iphone/Mage_Page/template/links.phtml +++ b/app/design/frontend/default/iphone/Mage_Page/template/links.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_iphone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/design/frontend/default/iphone/Mage_Paypal/express/review/details.phtml b/app/design/frontend/default/iphone/Mage_Paypal/express/review/details.phtml index 329ed2bc47e2bdf6a85051ee045c821cf4f732a5..d2a99c3cd2bf8d6bf40a2338b830e0d224c6aed6 100644 --- a/app/design/frontend/default/iphone/Mage_Paypal/express/review/details.phtml +++ b/app/design/frontend/default/iphone/Mage_Paypal/express/review/details.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_iphone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/design/frontend/default/iphone/Mage_Paypal/express/review/review.phtml b/app/design/frontend/default/iphone/Mage_Paypal/express/review/review.phtml index 0043921395981e3d9fa46ac0482b1d9f71702e32..1d745a960c5483ffbc942f5b577e6325368f90db 100644 --- a/app/design/frontend/default/iphone/Mage_Paypal/express/review/review.phtml +++ b/app/design/frontend/default/iphone/Mage_Paypal/express/review/review.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_iphone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /** @var $this Mage_Paypal_Block_Express_Review */ diff --git a/app/design/frontend/default/iphone/Mage_Persistent/checkout/onepage/login.phtml b/app/design/frontend/default/iphone/Mage_Persistent/checkout/onepage/login.phtml index 8b48851a85d02cf0712a0bf2f2194b4e47c9a0a5..ff78215f001c337f46c525593927313571d5ba29 100644 --- a/app/design/frontend/default/iphone/Mage_Persistent/checkout/onepage/login.phtml +++ b/app/design/frontend/default/iphone/Mage_Persistent/checkout/onepage/login.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_iphone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/design/frontend/default/iphone/Mage_Persistent/customer/form/login.phtml b/app/design/frontend/default/iphone/Mage_Persistent/customer/form/login.phtml index 91ff5e20785a899e7c5592e34640c118446c8389..9408e9be7849d71e92b245f220f366e11730a48c 100644 --- a/app/design/frontend/default/iphone/Mage_Persistent/customer/form/login.phtml +++ b/app/design/frontend/default/iphone/Mage_Persistent/customer/form/login.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_iphone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/design/frontend/default/iphone/Mage_Persistent/layout.xml b/app/design/frontend/default/iphone/Mage_Persistent/layout.xml index c4f75ed4e28b8b6883d40cf2c93be57a6d457bba..0ca75f8b471331a77ea5d438fcb35b5b270cf162 100644 --- a/app/design/frontend/default/iphone/Mage_Persistent/layout.xml +++ b/app/design/frontend/default/iphone/Mage_Persistent/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package default_iphone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/design/frontend/default/iphone/Mage_Persistent/remember_me_tooltip.phtml b/app/design/frontend/default/iphone/Mage_Persistent/remember_me_tooltip.phtml index 136d1371a757f5a915e00bdb4abc6a57090bfde9..cdd9052f1ea402f32387449118445c378178dc24 100644 --- a/app/design/frontend/default/iphone/Mage_Persistent/remember_me_tooltip.phtml +++ b/app/design/frontend/default/iphone/Mage_Persistent/remember_me_tooltip.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_iphone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/design/frontend/default/iphone/Mage_Review/customer/list.phtml b/app/design/frontend/default/iphone/Mage_Review/customer/list.phtml index b68b7cb5b60c70f20ba5c078eabbba2ccd9dad54..2504e7fce5f292f871c0b56c2ccafce83e73cfde 100644 --- a/app/design/frontend/default/iphone/Mage_Review/customer/list.phtml +++ b/app/design/frontend/default/iphone/Mage_Review/customer/list.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_iphone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/design/frontend/default/iphone/Mage_Review/layout.xml b/app/design/frontend/default/iphone/Mage_Review/layout.xml index faa95990354c7c1d5af586ee0eaade233a2d2f56..7bc18c98b24379dbfd9ce66180ab5e039d26522d 100644 --- a/app/design/frontend/default/iphone/Mage_Review/layout.xml +++ b/app/design/frontend/default/iphone/Mage_Review/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package default_iphone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/design/frontend/default/iphone/Mage_Rss/layout.xml b/app/design/frontend/default/iphone/Mage_Rss/layout.xml index 8437d590fa11e3491e89b6ba32b9f309b37d3de2..500be03be7c4fcd2234a1162826a7e64e4e329b5 100644 --- a/app/design/frontend/default/iphone/Mage_Rss/layout.xml +++ b/app/design/frontend/default/iphone/Mage_Rss/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package default_iphone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/design/frontend/default/iphone/Mage_Sales/billing/agreement/view.phtml b/app/design/frontend/default/iphone/Mage_Sales/billing/agreement/view.phtml index 38a3d5445c8564b7edaf36795d16980094b3cd95..89a1fa737e95032fa795b32328c44fdc0009cf02 100644 --- a/app/design/frontend/default/iphone/Mage_Sales/billing/agreement/view.phtml +++ b/app/design/frontend/default/iphone/Mage_Sales/billing/agreement/view.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_iphone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/design/frontend/default/iphone/Mage_Sales/billing/agreements.phtml b/app/design/frontend/default/iphone/Mage_Sales/billing/agreements.phtml index 33cf130881ccadaf39c8247ca542e9e85de2e3c1..3d9ebf88308902d68a52d39cb802a965cf5ad00f 100644 --- a/app/design/frontend/default/iphone/Mage_Sales/billing/agreements.phtml +++ b/app/design/frontend/default/iphone/Mage_Sales/billing/agreements.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_iphone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/design/frontend/default/iphone/Mage_Sales/billing_agreement.xml b/app/design/frontend/default/iphone/Mage_Sales/billing_agreement.xml index c2d3b28e06ffd4a8ee71c2c858de67d6c0219bf0..f19fce11e8ad2839091dd3e3fef88a1307add75d 100644 --- a/app/design/frontend/default/iphone/Mage_Sales/billing_agreement.xml +++ b/app/design/frontend/default/iphone/Mage_Sales/billing_agreement.xml @@ -21,7 +21,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/design/frontend/default/iphone/Mage_Sales/layout.xml b/app/design/frontend/default/iphone/Mage_Sales/layout.xml index 180964a2ebe7f28a7f81319b9de79a7972b63c56..0eec00bb4d432fb1d1c3fae538cdd50f4f6f738a 100644 --- a/app/design/frontend/default/iphone/Mage_Sales/layout.xml +++ b/app/design/frontend/default/iphone/Mage_Sales/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package default_iphone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/design/frontend/default/iphone/Mage_Sales/order/creditmemo/items.phtml b/app/design/frontend/default/iphone/Mage_Sales/order/creditmemo/items.phtml index e032893519874e2983b804c95cb78bcf051958e1..a54791873c59168af3557d1b45ebc5903dc979aa 100644 --- a/app/design/frontend/default/iphone/Mage_Sales/order/creditmemo/items.phtml +++ b/app/design/frontend/default/iphone/Mage_Sales/order/creditmemo/items.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_iphone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/design/frontend/default/iphone/Mage_Sales/order/creditmemo/items/renderer/default.phtml b/app/design/frontend/default/iphone/Mage_Sales/order/creditmemo/items/renderer/default.phtml index e6a561e461c19958f25dd652dae51a7cc1f51513..225ec7cad1ab26f7ac6f2ab511f6e3dcd392b30d 100644 --- a/app/design/frontend/default/iphone/Mage_Sales/order/creditmemo/items/renderer/default.phtml +++ b/app/design/frontend/default/iphone/Mage_Sales/order/creditmemo/items/renderer/default.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_iphone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/design/frontend/default/iphone/Mage_Sales/order/history.phtml b/app/design/frontend/default/iphone/Mage_Sales/order/history.phtml index 116eae08febac3b9efb7758f99b2407524cd5b72..daef2346205b93eadaf21a10232dc8ad3243537f 100644 --- a/app/design/frontend/default/iphone/Mage_Sales/order/history.phtml +++ b/app/design/frontend/default/iphone/Mage_Sales/order/history.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_iphone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/design/frontend/default/iphone/Mage_Sales/order/invoice/items.phtml b/app/design/frontend/default/iphone/Mage_Sales/order/invoice/items.phtml index 88649479f449d7f6fcfbf1b4441536f0acea50a0..6e45a6a84d157a0cb886c14e4b3c200ffd9cc76a 100644 --- a/app/design/frontend/default/iphone/Mage_Sales/order/invoice/items.phtml +++ b/app/design/frontend/default/iphone/Mage_Sales/order/invoice/items.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_iphone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/design/frontend/default/iphone/Mage_Sales/order/invoice/items/renderer/default.phtml b/app/design/frontend/default/iphone/Mage_Sales/order/invoice/items/renderer/default.phtml index 6ad44ea31669b60cb7274a7037e25cb245eeef53..068b5c99251bb45ffbe2a178a8db03a66e84c4a5 100644 --- a/app/design/frontend/default/iphone/Mage_Sales/order/invoice/items/renderer/default.phtml +++ b/app/design/frontend/default/iphone/Mage_Sales/order/invoice/items/renderer/default.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_iphone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/design/frontend/default/iphone/Mage_Sales/order/items.phtml b/app/design/frontend/default/iphone/Mage_Sales/order/items.phtml index a38820156db470b0cc7be429c3c8cb3138ed982e..d1ae869e37a7d97e5ed5e584002e87fecb1db7bf 100644 --- a/app/design/frontend/default/iphone/Mage_Sales/order/items.phtml +++ b/app/design/frontend/default/iphone/Mage_Sales/order/items.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_iphone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/design/frontend/default/iphone/Mage_Sales/order/items/renderer/default.phtml b/app/design/frontend/default/iphone/Mage_Sales/order/items/renderer/default.phtml index 217aac54b6635b82c5794f7af019210f570273d9..1ad27150d7fcd55212bf2805de4d2c0ea82f14e5 100644 --- a/app/design/frontend/default/iphone/Mage_Sales/order/items/renderer/default.phtml +++ b/app/design/frontend/default/iphone/Mage_Sales/order/items/renderer/default.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_iphone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/design/frontend/default/iphone/Mage_Sales/order/recent.phtml b/app/design/frontend/default/iphone/Mage_Sales/order/recent.phtml index 58f6152e09dcf5ddc33b7e694c2175043b3bf05c..2e38d7460fda484680d4b3664ba2a1a42a32dad5 100644 --- a/app/design/frontend/default/iphone/Mage_Sales/order/recent.phtml +++ b/app/design/frontend/default/iphone/Mage_Sales/order/recent.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_iphone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/design/frontend/default/iphone/Mage_Sales/order/totals.phtml b/app/design/frontend/default/iphone/Mage_Sales/order/totals.phtml index 76dfda4be219b31b17a6fcecfdd85093c75b3729..269a550822efba2abffacf7f8519d51f11fe0631 100644 --- a/app/design/frontend/default/iphone/Mage_Sales/order/totals.phtml +++ b/app/design/frontend/default/iphone/Mage_Sales/order/totals.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_iphone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /** diff --git a/app/design/frontend/default/iphone/Mage_Sales/recurring_profile.xml b/app/design/frontend/default/iphone/Mage_Sales/recurring_profile.xml index 30437629e2e970281a3089cb22fa87b1697012b0..2f2ac4f32fa47e5ec5e7b2a09fe34fb257438088 100644 --- a/app/design/frontend/default/iphone/Mage_Sales/recurring_profile.xml +++ b/app/design/frontend/default/iphone/Mage_Sales/recurring_profile.xml @@ -21,7 +21,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/design/frontend/default/iphone/Mage_Sendfriend/layout.xml b/app/design/frontend/default/iphone/Mage_Sendfriend/layout.xml index f1871a4382e06a69a0ffd4addea94a3f30214856..57a34a3a3077243b80b2e108dd8ceb604c6cd5ea 100644 --- a/app/design/frontend/default/iphone/Mage_Sendfriend/layout.xml +++ b/app/design/frontend/default/iphone/Mage_Sendfriend/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/design/frontend/default/iphone/Mage_Shipping/tracking/ajax.phtml b/app/design/frontend/default/iphone/Mage_Shipping/tracking/ajax.phtml index 2a1c662fbd247b46a8d1c22b3ae8aa58f5e02fae..e02c01f5879de0f5ff2bf2e55baef6e9089e4163 100644 --- a/app/design/frontend/default/iphone/Mage_Shipping/tracking/ajax.phtml +++ b/app/design/frontend/default/iphone/Mage_Shipping/tracking/ajax.phtml @@ -20,6 +20,6 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ \ No newline at end of file diff --git a/app/design/frontend/default/iphone/Mage_Shipping/tracking/popup.phtml b/app/design/frontend/default/iphone/Mage_Shipping/tracking/popup.phtml index 4332c074e6d3d41e945ed919785ffd5ba60bee85..06cd88ab010afffc6d255fea3dfd85a3b41c744d 100644 --- a/app/design/frontend/default/iphone/Mage_Shipping/tracking/popup.phtml +++ b/app/design/frontend/default/iphone/Mage_Shipping/tracking/popup.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_iphone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/design/frontend/default/iphone/Mage_Tag/layout.xml b/app/design/frontend/default/iphone/Mage_Tag/layout.xml index 70ea4abd8b63927dae8585d6327fba0fe0586871..b856820201ade163ecbb5ac9780c03aa1380024e 100644 --- a/app/design/frontend/default/iphone/Mage_Tag/layout.xml +++ b/app/design/frontend/default/iphone/Mage_Tag/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package default_iphone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/design/frontend/default/iphone/Mage_Tag/list.phtml b/app/design/frontend/default/iphone/Mage_Tag/list.phtml index b6074e89f866b7702809b1970a633f6d8fcd394a..3006d0af8a85eb5534870d8bcadcd6f0acff0efa 100644 --- a/app/design/frontend/default/iphone/Mage_Tag/list.phtml +++ b/app/design/frontend/default/iphone/Mage_Tag/list.phtml @@ -20,7 +20,7 @@ * * @category design * @package base_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/design/frontend/default/iphone/Mage_Tax/order/tax.phtml b/app/design/frontend/default/iphone/Mage_Tax/order/tax.phtml index 903d24996d03aa931ca09cf9c3e7e9f2a2398d03..0a37a9d5bf2668390282900995c3c32f098f0c96 100644 --- a/app/design/frontend/default/iphone/Mage_Tax/order/tax.phtml +++ b/app/design/frontend/default/iphone/Mage_Tax/order/tax.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_iphone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/design/frontend/default/iphone/Mage_Wishlist/item/column/cart.phtml b/app/design/frontend/default/iphone/Mage_Wishlist/item/column/cart.phtml index 607ab0af3b3bb784fb6fcb57ca81c39dccbc91cc..1df33cb0a83cf2fbe66730e075f973c60d622361 100644 --- a/app/design/frontend/default/iphone/Mage_Wishlist/item/column/cart.phtml +++ b/app/design/frontend/default/iphone/Mage_Wishlist/item/column/cart.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_iphone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/design/frontend/default/iphone/Mage_Wishlist/item/column/image.phtml b/app/design/frontend/default/iphone/Mage_Wishlist/item/column/image.phtml index ef349cdd16bd1c2a16191bf4daadff20d91d6a8d..1761ecd6e2301a837a6ce08f518d67599c30bbb5 100644 --- a/app/design/frontend/default/iphone/Mage_Wishlist/item/column/image.phtml +++ b/app/design/frontend/default/iphone/Mage_Wishlist/item/column/image.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_iphone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/design/frontend/default/iphone/Mage_Wishlist/item/column/info.phtml b/app/design/frontend/default/iphone/Mage_Wishlist/item/column/info.phtml index 7415835d8aa88ca1d07ab31ebf1dd8df327c2799..57d1e4944858929b0317e13a8df6ddaa877cefd7 100644 --- a/app/design/frontend/default/iphone/Mage_Wishlist/item/column/info.phtml +++ b/app/design/frontend/default/iphone/Mage_Wishlist/item/column/info.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_iphone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/design/frontend/default/iphone/Mage_Wishlist/item/configure/addto.phtml b/app/design/frontend/default/iphone/Mage_Wishlist/item/configure/addto.phtml index bfbf10f30206ec5333de88f74d4227b9fec76a04..a1c1e1545361fc14cefa3630227a4c9f8bb0fb6e 100644 --- a/app/design/frontend/default/iphone/Mage_Wishlist/item/configure/addto.phtml +++ b/app/design/frontend/default/iphone/Mage_Wishlist/item/configure/addto.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_iphone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/design/frontend/default/iphone/Mage_Wishlist/item/list.phtml b/app/design/frontend/default/iphone/Mage_Wishlist/item/list.phtml index 93d9a618f85e53b9b5afbaddb28a1214d1a1908b..dad420a56fa348b7c708c06c187b42fb88b58dfe 100644 --- a/app/design/frontend/default/iphone/Mage_Wishlist/item/list.phtml +++ b/app/design/frontend/default/iphone/Mage_Wishlist/item/list.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_iphone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/design/frontend/default/iphone/Mage_Wishlist/layout.xml b/app/design/frontend/default/iphone/Mage_Wishlist/layout.xml index 0f379d63fc7ccbca33ec3fb84f8318f3d4ad94b3..f2d4ea4f6085949e2e73068ba2aad0cd952287fb 100644 --- a/app/design/frontend/default/iphone/Mage_Wishlist/layout.xml +++ b/app/design/frontend/default/iphone/Mage_Wishlist/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package default_iphone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/design/frontend/default/iphone/Mage_Wishlist/shared.phtml b/app/design/frontend/default/iphone/Mage_Wishlist/shared.phtml index 4b8e7273643cbba8fbc52f7aa49d909eff0573a7..71b3438192669ec01367dbefb0a0af6f5e20c8f6 100644 --- a/app/design/frontend/default/iphone/Mage_Wishlist/shared.phtml +++ b/app/design/frontend/default/iphone/Mage_Wishlist/shared.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_iphone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /* @var $this Mage_Wishlist_Block_Share_Wishlist */ diff --git a/app/design/frontend/default/iphone/Mage_Wishlist/view.phtml b/app/design/frontend/default/iphone/Mage_Wishlist/view.phtml index 37b3ec5a6e53390a5fbce004ca849391064a0824..5f28939a930fccdfc69045f953647e01c9774239 100644 --- a/app/design/frontend/default/iphone/Mage_Wishlist/view.phtml +++ b/app/design/frontend/default/iphone/Mage_Wishlist/view.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_iphone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /* @var $this Mage_Wishlist_Block_Customer_Wishlist */ diff --git a/app/design/frontend/default/iphone/css/custom.css b/app/design/frontend/default/iphone/css/custom.css index 17b1a314ac817a90f0813c8a0c40db0baf598400..ef8bb174cec7e6657b2c7c8127f91266ba333a6c 100644 --- a/app/design/frontend/default/iphone/css/custom.css +++ b/app/design/frontend/default/iphone/css/custom.css @@ -19,7 +19,7 @@ * * @category design * @package default_iphone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/design/frontend/default/iphone/css/iphone.css b/app/design/frontend/default/iphone/css/iphone.css index 84bfebd44c5ecafe8c0247bab807e95ad0f0fb49..d0aea388c3274ccf854302932e1557d4bfd13d8c 100644 --- a/app/design/frontend/default/iphone/css/iphone.css +++ b/app/design/frontend/default/iphone/css/iphone.css @@ -19,7 +19,7 @@ * * @category design * @package default_iphone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/design/frontend/default/iphone/js/iphone.js b/app/design/frontend/default/iphone/js/iphone.js index f4d9b8c4da79bba79e323f6abb8ee6c6c38e045c..a878f5fa13ac31ad5a9b7b735a08ea82cbc01625 100644 --- a/app/design/frontend/default/iphone/js/iphone.js +++ b/app/design/frontend/default/iphone/js/iphone.js @@ -19,7 +19,7 @@ * * @category design * @package default_iphone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/design/frontend/default/iphone/local.xml b/app/design/frontend/default/iphone/local.xml index 3cc68c3e23f90dc34a4609bc469c81326cc252f8..a6b0b75f8e86a4edc89f624474e7150639e9d4d8 100644 --- a/app/design/frontend/default/iphone/local.xml +++ b/app/design/frontend/default/iphone/local.xml @@ -21,7 +21,7 @@ * * @category design * @package default_iphone - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/design/frontend/default/iphone/theme.xml b/app/design/frontend/default/iphone/theme.xml index 702ab2bf162fecdf82622205c11ff8d018489856..13416a3d662f9b1db5b164bb8f7258bb7bbb43a2 100644 --- a/app/design/frontend/default/iphone/theme.xml +++ b/app/design/frontend/default/iphone/theme.xml @@ -20,7 +20,7 @@ * * @category Magento * @package Design - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/design/frontend/default/iphone/view.xml b/app/design/frontend/default/iphone/view.xml index 2e4b1dd7e8e96b390552d0349525d64885e5e321..ebd3dadce4d229ab519ac9eb3d5d25cda5f066e0 100644 --- a/app/design/frontend/default/iphone/view.xml +++ b/app/design/frontend/default/iphone/view.xml @@ -21,7 +21,7 @@ * * @category Mage * @package modern_theme - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/design/frontend/default/modern/Mage_Catalog/layout.xml b/app/design/frontend/default/modern/Mage_Catalog/layout.xml index 44e29b029bcf33b991bca943d5ea1c1b1f1b934c..09e3f589df5e16fc01ce7ca1d099d705bae33b6a 100644 --- a/app/design/frontend/default/modern/Mage_Catalog/layout.xml +++ b/app/design/frontend/default/modern/Mage_Catalog/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package default_modern - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/design/frontend/default/modern/Mage_Catalog/product/list.phtml b/app/design/frontend/default/modern/Mage_Catalog/product/list.phtml index ebc4616b1f0736b2d6de962e6bef832886a27525..87d3d35657db96fbe504efa8d64334d0bd5deb93 100644 --- a/app/design/frontend/default/modern/Mage_Catalog/product/list.phtml +++ b/app/design/frontend/default/modern/Mage_Catalog/product/list.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_modern - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/design/frontend/default/modern/Mage_Catalog/product/list/upsell.phtml b/app/design/frontend/default/modern/Mage_Catalog/product/list/upsell.phtml index 64b90007f4b56545bf1921d4bdf11f73d332baf7..92c8a9c88990244886a9b07aee15191934bf2ab5 100644 --- a/app/design/frontend/default/modern/Mage_Catalog/product/list/upsell.phtml +++ b/app/design/frontend/default/modern/Mage_Catalog/product/list/upsell.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_modern - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/design/frontend/default/modern/Mage_Catalog/product/view.phtml b/app/design/frontend/default/modern/Mage_Catalog/product/view.phtml index 97096122b46dcabb8651788fc4caf784de46836b..c1ba3a446f5ba3250d787c7e462914060248b9d9 100644 --- a/app/design/frontend/default/modern/Mage_Catalog/product/view.phtml +++ b/app/design/frontend/default/modern/Mage_Catalog/product/view.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_modern - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/design/frontend/default/modern/Mage_Catalog/product/view/media.phtml b/app/design/frontend/default/modern/Mage_Catalog/product/view/media.phtml index 275303062ee8ce23eeae3cdb53cc1abab32f536b..9d2fa1cb3436e151b1d42064c5e6c8843907537f 100644 --- a/app/design/frontend/default/modern/Mage_Catalog/product/view/media.phtml +++ b/app/design/frontend/default/modern/Mage_Catalog/product/view/media.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_modern - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/design/frontend/default/modern/Mage_Catalog/product/view/tabs.phtml b/app/design/frontend/default/modern/Mage_Catalog/product/view/tabs.phtml index c3332fa18a8cdda53fd589e3eb52c6e9ca4790a4..78cc691aabfefcc16d3195e569f47bc52b3968d6 100644 --- a/app/design/frontend/default/modern/Mage_Catalog/product/view/tabs.phtml +++ b/app/design/frontend/default/modern/Mage_Catalog/product/view/tabs.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_modern - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/design/frontend/default/modern/Mage_Catalog/widgets.css b/app/design/frontend/default/modern/Mage_Catalog/widgets.css index a610403f4380b7dc5952377bdf6e7b5b1aa6bfee..854520c622d837ec7b2adcb0f59cf8a107982ae4 100644 --- a/app/design/frontend/default/modern/Mage_Catalog/widgets.css +++ b/app/design/frontend/default/modern/Mage_Catalog/widgets.css @@ -19,7 +19,7 @@ * * @category design * @package default_modern - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/design/frontend/default/modern/Mage_CatalogSearch/form.mini.phtml b/app/design/frontend/default/modern/Mage_CatalogSearch/form.mini.phtml index cef3e87c3d88b3049ddc5fe345c08449e2acf3f8..fb416de6960634fd1fce8eb481098ff326acccb1 100644 --- a/app/design/frontend/default/modern/Mage_CatalogSearch/form.mini.phtml +++ b/app/design/frontend/default/modern/Mage_CatalogSearch/form.mini.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_modern - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/design/frontend/default/modern/Mage_CatalogSearch/layout.xml b/app/design/frontend/default/modern/Mage_CatalogSearch/layout.xml index 08d14b0f1a9cb7476c80d0a6a696d5e15dfc4c8a..ac93d26e1dbe7a0fcc13a00a4d8d807a61a95bea 100644 --- a/app/design/frontend/default/modern/Mage_CatalogSearch/layout.xml +++ b/app/design/frontend/default/modern/Mage_CatalogSearch/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package default_modern - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/design/frontend/default/modern/Mage_Checkout/cart.phtml b/app/design/frontend/default/modern/Mage_Checkout/cart.phtml index c476f59b15332bd005568d5e698e58047128fd4a..b33ea7f818230186ddb9519c4d5ae4366287c3a3 100644 --- a/app/design/frontend/default/modern/Mage_Checkout/cart.phtml +++ b/app/design/frontend/default/modern/Mage_Checkout/cart.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_modern - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/design/frontend/default/modern/Mage_Checkout/layout.xml b/app/design/frontend/default/modern/Mage_Checkout/layout.xml index 56a7e72bdbbfd142e6db367bac332965a9ff2ab7..438f22aac7eddc5ca1f06520f95a1886e62d47d3 100644 --- a/app/design/frontend/default/modern/Mage_Checkout/layout.xml +++ b/app/design/frontend/default/modern/Mage_Checkout/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package default_modern - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/design/frontend/default/modern/Mage_Cms/widgets.css b/app/design/frontend/default/modern/Mage_Cms/widgets.css index 69773e4ba0c8fa0cb38b31ad918da4c8b34dafe7..f1530db1d63d93de3901d4d1c50bfdfdabeccddc 100644 --- a/app/design/frontend/default/modern/Mage_Cms/widgets.css +++ b/app/design/frontend/default/modern/Mage_Cms/widgets.css @@ -19,7 +19,7 @@ * * @category design * @package default_modern - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/design/frontend/default/modern/Mage_Contacts/layout.xml b/app/design/frontend/default/modern/Mage_Contacts/layout.xml index af7a554e988c93721d1df36e067e287bd8976204..c898388a5a279ccf44173e9d9e80a0920dc2ee6f 100644 --- a/app/design/frontend/default/modern/Mage_Contacts/layout.xml +++ b/app/design/frontend/default/modern/Mage_Contacts/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package default_modern - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/design/frontend/default/modern/Mage_Customer/layout.xml b/app/design/frontend/default/modern/Mage_Customer/layout.xml index ecabe7b01dcb7d65e2dae93667c262fa1dcb0bed..c2a197d19cb024d461d87228071962aacfa4292b 100644 --- a/app/design/frontend/default/modern/Mage_Customer/layout.xml +++ b/app/design/frontend/default/modern/Mage_Customer/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package default_modern - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/design/frontend/default/modern/Mage_Newsletter/layout.xml b/app/design/frontend/default/modern/Mage_Newsletter/layout.xml index d3e1d29b09740d84ccc02c9d95aa163fb902dd2d..dac45bd51a443dfac8f24707ec2bd65d55d5ebef 100644 --- a/app/design/frontend/default/modern/Mage_Newsletter/layout.xml +++ b/app/design/frontend/default/modern/Mage_Newsletter/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package default_modern - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/design/frontend/default/modern/Mage_Newsletter/subscribe.phtml b/app/design/frontend/default/modern/Mage_Newsletter/subscribe.phtml index f06e745aa6c6f08bef57b40359e3aa2d7f860d8a..6f9c84ef4536ce06e07a432a123cc9caab6f85f1 100644 --- a/app/design/frontend/default/modern/Mage_Newsletter/subscribe.phtml +++ b/app/design/frontend/default/modern/Mage_Newsletter/subscribe.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_modern - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/design/frontend/default/modern/Mage_Page/3columns.phtml b/app/design/frontend/default/modern/Mage_Page/3columns.phtml index 14eb08bc3200fd4b9da9dd50e0f3f347ae139b5d..ac284b7d9cb93b9214d696ecdb4380933b9f2794 100644 --- a/app/design/frontend/default/modern/Mage_Page/3columns.phtml +++ b/app/design/frontend/default/modern/Mage_Page/3columns.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_modern - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/design/frontend/default/modern/Mage_Page/css/validate.css b/app/design/frontend/default/modern/Mage_Page/css/validate.css index 8c2d63d466a17291b0d3d38437603786bf351027..f3615bb316cf9dbb396d58cbc116ba690fe4f1d7 100644 --- a/app/design/frontend/default/modern/Mage_Page/css/validate.css +++ b/app/design/frontend/default/modern/Mage_Page/css/validate.css @@ -19,7 +19,7 @@ * * @category validator style * @package mage - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ input.mage-error, textarea.mage-error, ul.mage-error, select.mage-error { diff --git a/app/design/frontend/default/modern/Mage_Page/html/footer.phtml b/app/design/frontend/default/modern/Mage_Page/html/footer.phtml index b2c00966f5b7d87f4d51113ea497b4f68eb83ad7..80338818d1cd76e6b1c2b0101e1b843a8fee2f48 100644 --- a/app/design/frontend/default/modern/Mage_Page/html/footer.phtml +++ b/app/design/frontend/default/modern/Mage_Page/html/footer.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_modern - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/app/design/frontend/default/modern/Mage_Page/html/header.phtml b/app/design/frontend/default/modern/Mage_Page/html/header.phtml index aff7407a846c3e2b76eec6d0a21b6680866390f2..b92f2c50af8daacdc0a172e755dd01f4f5031948 100644 --- a/app/design/frontend/default/modern/Mage_Page/html/header.phtml +++ b/app/design/frontend/default/modern/Mage_Page/html/header.phtml @@ -20,7 +20,7 @@ * * @category design * @package default_modern - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /** diff --git a/app/design/frontend/default/modern/Mage_Page/layout.xml b/app/design/frontend/default/modern/Mage_Page/layout.xml index 3a260b3aa3a6a12d167c4a37653f4c628ee65266..aaebc99fffd193e6f0f2fc3a4d2cca951fe915ca 100644 --- a/app/design/frontend/default/modern/Mage_Page/layout.xml +++ b/app/design/frontend/default/modern/Mage_Page/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package default_modern - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> @@ -35,7 +35,7 @@ Default layout, loads most of the pages <block type="Mage_Page_Block_Html" name="root" output="1" template="2columns-left.phtml"> <block type="Mage_Page_Block_Html_Head" name="head" as="head"> - <action method="addJs"><file>jquery/jquery-1.7.1.min.js</file></action> + <action method="addJs"><file>jquery/jquery.min.js</file></action> <action method="addJs"><file>mage/jquery-no-conflict.js</file></action> <action method="addJs"><file>prototype/prototype.js</file></action> <action method="addJs"><file>lib/ccard.js</file></action> @@ -92,7 +92,7 @@ Default layout, loads most of the pages <block type="Mage_Page_Block_Html" name="root" output="1" template="print.phtml"> <block type="Mage_Page_Block_Html_Head" name="head" as="head"> - <action method="addJs"><file>jquery/jquery-1.7.1.min.js</file></action> + <action method="addJs"><file>jquery/jquery.min.js</file></action> <action method="addJs"><file>mage/jquery-no-conflict.js</file></action> <action method="addJs"><file>prototype/prototype.js</file></action> <action method="addJs"><file>mage/translate.js</file></action> diff --git a/app/design/frontend/default/modern/Mage_Payment/layout.xml b/app/design/frontend/default/modern/Mage_Payment/layout.xml index d42abdba84e6e09888938cd3d9a15cb6acbe2795..76513d746785d42f29fe904f018dae58ffa7fee9 100644 --- a/app/design/frontend/default/modern/Mage_Payment/layout.xml +++ b/app/design/frontend/default/modern/Mage_Payment/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package default_modern - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/design/frontend/default/modern/Mage_Persistent/layout.xml b/app/design/frontend/default/modern/Mage_Persistent/layout.xml index d8322eb4b596dc16855bb471ea99f14d060b9914..0ae28fed96cf4c2043cf36237eb4865c6dd5466d 100644 --- a/app/design/frontend/default/modern/Mage_Persistent/layout.xml +++ b/app/design/frontend/default/modern/Mage_Persistent/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package default_modern - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/design/frontend/default/modern/Mage_Reports/widgets.css b/app/design/frontend/default/modern/Mage_Reports/widgets.css index 511910efe2637ec776cf9233d5acbeb1e6fd7b57..9937e161f9be9fc7f097c58fbb2251824e9f17ef 100644 --- a/app/design/frontend/default/modern/Mage_Reports/widgets.css +++ b/app/design/frontend/default/modern/Mage_Reports/widgets.css @@ -19,7 +19,7 @@ * * @category design * @package default_modern - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/design/frontend/default/modern/Mage_Review/layout.xml b/app/design/frontend/default/modern/Mage_Review/layout.xml index 033fce4a8edf2bc54ccdabe4338552f8d0a5e29d..071186dce36c51eae150b1688b51f727eea65691 100644 --- a/app/design/frontend/default/modern/Mage_Review/layout.xml +++ b/app/design/frontend/default/modern/Mage_Review/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package default_modern - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/design/frontend/default/modern/Mage_Rss/layout.xml b/app/design/frontend/default/modern/Mage_Rss/layout.xml index d2e8220e4e6bd389162478da9efd5254d14811e6..afd94b83091f570fa1240736212783593d9a7f60 100644 --- a/app/design/frontend/default/modern/Mage_Rss/layout.xml +++ b/app/design/frontend/default/modern/Mage_Rss/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package default_modern - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/design/frontend/default/modern/Mage_Sales/layout.xml b/app/design/frontend/default/modern/Mage_Sales/layout.xml index 4a9bef747c1b29ae7db6e5f63138efc8c30a0d1f..29ff476f285af1bbb04379fbadd000b1bbbc4d90 100644 --- a/app/design/frontend/default/modern/Mage_Sales/layout.xml +++ b/app/design/frontend/default/modern/Mage_Sales/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package default_modern - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/design/frontend/default/modern/Mage_Sendfriend/layout.xml b/app/design/frontend/default/modern/Mage_Sendfriend/layout.xml index 5893d0ea21901a832ea2dbff4c9c72632de118f1..34eb32944024c7e9228f633725160494346e8ee2 100644 --- a/app/design/frontend/default/modern/Mage_Sendfriend/layout.xml +++ b/app/design/frontend/default/modern/Mage_Sendfriend/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package default_modern - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/design/frontend/default/modern/Mage_Tag/layout.xml b/app/design/frontend/default/modern/Mage_Tag/layout.xml index d0d3037555b279340ed6b5af38110fc551ae367a..a43287b03aaf7ef1a839db0403fa4c0920780302 100644 --- a/app/design/frontend/default/modern/Mage_Tag/layout.xml +++ b/app/design/frontend/default/modern/Mage_Tag/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package default_modern - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/design/frontend/default/modern/Mage_Wishlist/layout.xml b/app/design/frontend/default/modern/Mage_Wishlist/layout.xml index b59ad0c888cbee8b0d8e1b8564773edff6476553..ef066b2f16d8be09f501b0da9d3cee7e9b71cef0 100644 --- a/app/design/frontend/default/modern/Mage_Wishlist/layout.xml +++ b/app/design/frontend/default/modern/Mage_Wishlist/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package default_modern - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/design/frontend/default/modern/css/print.css b/app/design/frontend/default/modern/css/print.css index d844981f6145d6008c77aa86936f30ac14f555ec..8730108e04d6b38dbdfbb4cc4428e743567c22bf 100644 --- a/app/design/frontend/default/modern/css/print.css +++ b/app/design/frontend/default/modern/css/print.css @@ -19,7 +19,7 @@ * * @category design * @package default_modern - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/design/frontend/default/modern/css/styles-ie.css b/app/design/frontend/default/modern/css/styles-ie.css index 210d16e767cf5a9377af3a8d07778ea592ddd9cf..93ee6bdb9309d8a7e6caed3c46a83215a0c3a259 100644 --- a/app/design/frontend/default/modern/css/styles-ie.css +++ b/app/design/frontend/default/modern/css/styles-ie.css @@ -19,7 +19,7 @@ * * @category design * @package default_modern - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/design/frontend/default/modern/css/styles.css b/app/design/frontend/default/modern/css/styles.css index 04fa62c99e3f442be3260b6c5f53bc43f83f6465..7d98d7a319bd87ad1a61266fbdbf15ade6334c75 100644 --- a/app/design/frontend/default/modern/css/styles.css +++ b/app/design/frontend/default/modern/css/styles.css @@ -19,7 +19,7 @@ * * @category design * @package default_modern - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/design/frontend/default/modern/theme.xml b/app/design/frontend/default/modern/theme.xml index 4838471e9cc3375772c932a02e6ed182904fc555..2efabfeb85d9e9afead2d75acbdc7a8b5b54ee65 100644 --- a/app/design/frontend/default/modern/theme.xml +++ b/app/design/frontend/default/modern/theme.xml @@ -20,7 +20,7 @@ * * @category Magento * @package Design - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/design/frontend/default/modern/view.xml b/app/design/frontend/default/modern/view.xml index 63caa5472bc034f4a321497de4fa81709ca202dd..359e1663c36c386b710249e80041253500f5973c 100644 --- a/app/design/frontend/default/modern/view.xml +++ b/app/design/frontend/default/modern/view.xml @@ -21,7 +21,7 @@ * * @category Mage * @package modern_theme - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/design/install/default/basic/css/boxes.css b/app/design/install/default/basic/css/boxes.css index 738b045ce8a4c2ef8cc0a8363f7b5575ae4e8448..16368dda68ddf93debf2074abd90d539790d1cf9 100644 --- a/app/design/install/default/basic/css/boxes.css +++ b/app/design/install/default/basic/css/boxes.css @@ -17,7 +17,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/design/install/default/basic/css/clears.css b/app/design/install/default/basic/css/clears.css index 29d488f1e5b0b10b938c3573b0befca5dc03e81c..a466f8d710643dc921dba47229ca53d4a581ab23 100644 --- a/app/design/install/default/basic/css/clears.css +++ b/app/design/install/default/basic/css/clears.css @@ -17,7 +17,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/design/install/default/basic/css/ie7minus.css b/app/design/install/default/basic/css/ie7minus.css index b0148a6298cab1c90a30d12bd4a0b17ed6607606..d6c7f7cd109345e3170f0de7562c017e1694788e 100644 --- a/app/design/install/default/basic/css/ie7minus.css +++ b/app/design/install/default/basic/css/ie7minus.css @@ -17,7 +17,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/app/design/install/default/basic/css/iestyles.css b/app/design/install/default/basic/css/iestyles.css index 038c4d656831b70d080ddf66bd5d3f40865c91aa..23c3a7d72b36fab2c93a99bfdf695dee0c7cad01 100644 --- a/app/design/install/default/basic/css/iestyles.css +++ b/app/design/install/default/basic/css/iestyles.css @@ -17,7 +17,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ .col2-set, diff --git a/app/design/install/default/basic/css/reset.css b/app/design/install/default/basic/css/reset.css index b4ea8b9f0268fdccf4da655fa06fd7c78b4027b2..98e113bf2f2cbde78e6b8a962da14a0d6888cb8a 100644 --- a/app/design/install/default/basic/css/reset.css +++ b/app/design/install/default/basic/css/reset.css @@ -17,7 +17,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /******************************************/ diff --git a/app/design/install/default/basic/theme.xml b/app/design/install/default/basic/theme.xml index c5ae5ca0d7c68b3135e4da1b4e19953c282acf44..bdfd62802ba4b90d2ebea40fcb34a38ee34f0bd5 100644 --- a/app/design/install/default/basic/theme.xml +++ b/app/design/install/default/basic/theme.xml @@ -20,7 +20,7 @@ * * @category Magento * @package Design - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/etc/config.xml b/app/etc/config.xml index 0c166fe879d962755f2b78c5530e03396a701aea..5c02dcabf498fc65cba1b967fc098ed3e072b9ca 100644 --- a/app/etc/config.xml +++ b/app/etc/config.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> @@ -98,8 +98,8 @@ <design>{{app_dir}}/design</design> <locale>{{app_dir}}/locale</locale> <etc>{{app_dir}}/etc</etc> - <media>{{root_dir}}/pub/media</media> - <upload>{{root_dir}}/pub/media/upload</upload> + <media>{{media_dir}}</media> + <upload>{{media_dir}}/upload</upload> <var>{{var_dir}}</var> <cache>{{var_dir}}/cache</cache> <session>{{var_dir}}/session</session> diff --git a/app/etc/local.xml.additional b/app/etc/local.xml.additional index 2f325a4c2751e21856405a2975eeefd861750471..429ee0d6a4f65e5c6352d35f5ecd885203256330 100644 --- a/app/etc/local.xml.additional +++ b/app/etc/local.xml.additional @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/app/etc/local.xml.template b/app/etc/local.xml.template index 682e3558a12bcd8721d53da786111aaebdbe037e..46c5676c42faf7e5dbbfd96a85e2db00e465f379 100644 --- a/app/etc/local.xml.template +++ b/app/etc/local.xml.template @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/build/bin/ant-jshint.jar b/dev/build/bin/ant-jshint.jar deleted file mode 100644 index d74f4481a997ec53d6d6308faaf1973016e79bda..0000000000000000000000000000000000000000 Binary files a/dev/build/bin/ant-jshint.jar and /dev/null differ diff --git a/dev/build/bin/create-database.sh b/dev/build/bin/create-database.sh deleted file mode 100755 index 31d5cc341f4ad66215870b0fe32c02c5a39cfed2..0000000000000000000000000000000000000000 --- a/dev/build/bin/create-database.sh +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/sh - -DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" - -. $DIR/include.sh - -log "Creating clean DB..." -echo "CREATE DATABASE \`$DB_NAME\`;" | mysql -h $DB_HOST -P $DB_PORT -u$DB_USER -p$DB_PASS -check_failure $? diff --git a/dev/build/bin/current.sh b/dev/build/bin/current.sh deleted file mode 100755 index f711b2e7e76a2707b9884d026b97eeda81eedfa7..0000000000000000000000000000000000000000 --- a/dev/build/bin/current.sh +++ /dev/null @@ -1,22 +0,0 @@ -#!/bin/sh - -DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" - -. $DIR/include.sh - -cd $PWD/../ - -if [ -L "current" ]; then - log "Removing previous 'current' link..." - rm current - check_failure $? -fi - -log "Creating 'current' link..." -ln -sf $BUILD_DIR current -check_failure $? - -ch_baseurl $DB_NAME $URL_UNSECURE $URL_SECURE -clean_cache $BUILD_DIR - -cd $OLDPWD \ No newline at end of file diff --git a/dev/build/bin/delete-old-builds.sh b/dev/build/bin/delete-old-builds.sh deleted file mode 100755 index 3cdac36669840460f889741deabad09747c1e610..0000000000000000000000000000000000000000 --- a/dev/build/bin/delete-old-builds.sh +++ /dev/null @@ -1,53 +0,0 @@ -#!/bin/sh - -function logprint() { - echo "`date`: $1" -} - -if [ -z $1 ]; then - logprint 'Please specify directory where builds should be placed.' - exit 1 -fi - -BUILD_SCOPE="$1" -BUILDPATH=/home/qa/builds -MINBUILDCOUNT=10 -MYSQLUSER="$2" -MYSQLPASS="$3" - - -MMDBBUILDPACKAGES=`ls -1 $BUILDPATH | grep "^$BUILD_SCOPE"` -DELETECOUNT=`expr $MINBUILDCOUNT + 1` - -logprint "Build cleaning started" -for package in $MMDBBUILDPACKAGES; do - NEWBUILDS=`find $BUILDPATH/$package -maxdepth 1 -mtime -$MINBUILDCOUNT -type d | grep -v "^$BUILDPATH/$package$"` - NEWBUILDSCOUNT=`find $BUILDPATH/$package -maxdepth 1 -mtime -$MINBUILDCOUNT -type d | grep -v "^$BUILDPATH/$package$" | wc -l` - logprint " Processing $package build package" - if [ $NEWBUILDSCOUNT -ge $MINBUILDCOUNT ]; then - BUILDSTODELETE=`find $BUILDPATH/$package -maxdepth 1 -mtime +$MINBUILDCOUNT -type d | grep -v "^$BUILDPATH/$package$" | sort -n` - else - BUILDSCOUNT=`find $BUILDPATH/$package -maxdepth 1 -type d | grep -v "^$BUILDPATH/$package$" | wc -l` - if [ $BUILDSCOUNT -gt $MINBUILDCOUNT ]; then - FILTERCOUNT=`expr $BUILDSCOUNT - $MINBUILDCOUNT` - BUILDSTODELETE=`find $BUILDPATH/$package -maxdepth 1 -type d | grep -v "^$BUILDPATH/$package$" | sort -n | head -n $FILTERCOUNT` - else - BUILDSTODELETE="" - fi - fi - - if [[ ${#BUILDSTODELETE[@]} -eq 0 || $BUILDSTODELETE = '' ]]; then - logprint " Nothing to do" - fi - - for build in $BUILDSTODELETE; do - DATABASE=`grep -R dbname $build/app/etc/ | grep "local.xml:" | grep mysql | head -n1 | cut -d "[" -f 3 | cut -d "]" -f 1` - logprint " Cleaning $build" - if [ $DATABASE ]; then - logprint " Dropping $DATABASE" - `mysql -u$MYSQLUSER -p$MYSQLPASS -e "drop database $DATABASE"` - fi - logprint " Removing files from $build" - `rm -rf $build` - done -done diff --git a/dev/build/bin/include.sh b/dev/build/bin/include.sh deleted file mode 100755 index 9b73e2698c6094d8cee7c6f9826904041cc4eedb..0000000000000000000000000000000000000000 --- a/dev/build/bin/include.sh +++ /dev/null @@ -1,50 +0,0 @@ -#!/bin/sh - -OLDPWD="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" -OLDIFS=$IFS -PHP_BIN="/usr/bin/php" - -DB_HOST="$1" -DB_PORT=3306 -DB_NAME="$2" -DB_USER="$3" -DB_PASS="$4" - -BUILD_DIR="$5" -PREVIOUS_BUILD_DIR="$6" -URL_UNSECURE="$7" -URL_SECURE="$8" - -PWD="$BUILD_DIR" - -check_failure() { - if [ "${1}" -ne "0" ]; then - cd $OLDPWD - IFS=$OLDIFS - failed "ERROR # ${1} : ${2}" - fi -} - -failed() { - log "$1" - exit 1 -} - -log() { - echo "$1" -} - -ch_baseurl() { - log "Updating unsecure base url..." - echo "USE $1; UPDATE core_config_data SET value = '$2' WHERE path like 'web/unsecure/base_url';" | mysql -h $DB_HOST -P $DB_PORT -u$DB_USER -p$DB_PASS - check_failure $? - log "Updating secure base url..." - echo "USE $1; UPDATE core_config_data SET value = '$3' WHERE path like 'web/secure/base_url';" | mysql -h $DB_HOST -P $DB_PORT -u$DB_USER -p$DB_PASS - check_failure $? -} - -clean_cache() { - log "Clearing cache..." - rm -rf $1/var/cache/* - check_failure $? -} diff --git a/dev/build/bin/phpunit-with-xdebug.sh b/dev/build/bin/phpunit-with-xdebug.sh deleted file mode 100755 index 7bbeaf63f03e90a315332292ef01c870b88565f8..0000000000000000000000000000000000000000 --- a/dev/build/bin/phpunit-with-xdebug.sh +++ /dev/null @@ -1,19 +0,0 @@ -#!/usr/bin/env bash -PHP="/usr/bin/env php " -XDEBUG_INSTALED=`$PHP -m|grep xdebug` -if [ -z "$XDEBUG_INSTALED" ]; then - # Test xdebug.so exists in 'extension_dir' - XDEBUG_LIB=`$PHP -r "echo ini_get('extension_dir');"`/xdebug.so - if [ ! -f $XDEBUG_LIB ]; then - # Try locate xdebug.so - XDEBUG_LIB=`locate xdebug.so | head -1` - fi - if [ -z "$XDEBUG_LIB" ]; then - echo XDebug extension is not found [$XDEBUG_LIB] - exit 1 - fi - $PHP -d zend_extension=$XDEBUG_LIB -d xdebug.max_nesting_level=200 `which phpunit` $@ -else - # XDebug is enabled in php.ini - /usr/bin/env phpunit $@ -fi diff --git a/dev/build/bin/prepare-previous.sh b/dev/build/bin/prepare-previous.sh deleted file mode 100755 index ad9ac4b5ea70b0422b2d18bf4d8938fa6ac3f1af..0000000000000000000000000000000000000000 --- a/dev/build/bin/prepare-previous.sh +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/sh - -DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" - -. $DIR/include.sh - -cd $PREVIOUS_BUILD_DIR -OLD_BUILD_BASE_DIR="$(basename `pwd -P`)" - -SB_DB=`grep -R dbname app/etc/local.xml | head -n1 | cut -d "[" -f 3 | cut -d "]" -f 1` - -log "Dropping DB if exists..." -echo "DROP DATABASE IF EXISTS \`$DB_NAME\`;" | mysql -h $DB_HOST -P $DB_PORT -u$DB_USER -p$DB_PASS -check_failure $? - -log "Creating clean DB..." -echo "CREATE DATABASE \`$DB_NAME\`;" | mysql -h $DB_HOST -P $DB_PORT -u$DB_USER -p$DB_PASS -check_failure $? - -echo 'SHOW DATABASES;' | mysql -h $DB_HOST -P $DB_PORT -u$DB_USER -p$DB_PASS | grep $SB_DB > /dev/null -if [ "$?" -eq 0 ] ; then - log "Copying DB..." - mysqldump -h $DB_HOST -P $DB_PORT -u$DB_USER -p$DB_PASS $SB_DB | mysql -h $DB_HOST -P $DB_PORT -u$DB_USER -p$DB_PASS $DB_NAME - check_failure $? -fi - -cd $OLDPWD - -CURRENT_BUILD_BASE_DIR="$(basename `pwd -P`)" -ch_baseurl $DB_NAME "$URL_UNSECURE/$CURRENT_BUILD_BASE_DIR/" "$URL_SECURE/$CURRENT_BUILD_BASE_DIR/" -ch_baseurl $SB_DB "$URL_UNSECURE/$OLD_BUILD_BASE_DIR/" "$URL_SECURE/$OLD_BUILD_BASE_DIR/" diff --git a/dev/build/build.properties b/dev/build/build.properties deleted file mode 100644 index 5038c27af6600f438a6ca1b41f50c539a3783262..0000000000000000000000000000000000000000 --- a/dev/build/build.properties +++ /dev/null @@ -1,4 +0,0 @@ -file.phpunit_xdebug = dev/build/bin/phpunit-with-xdebug.sh -extruder.dir = dev/build -enterprise-enabler.file = app/etc/modules/XEnterprise_Enabler.xml -saas-enabler.file = app/etc/modules/XSaas_Enabler.xml \ No newline at end of file diff --git a/dev/build/build.xml b/dev/build/build.xml deleted file mode 100644 index 584cfa9797908b557993f2b183e916dffff6dfd3..0000000000000000000000000000000000000000 --- a/dev/build/build.xml +++ /dev/null @@ -1,276 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- -/** - * Magento - * - * NOTICE OF LICENSE - * - * This source file is subject to the Academic Free License (AFL 3.0) - * that is bundled with this package in the file LICENSE_AFL.txt. - * It is also available through the world-wide-web at this URL: - * http://opensource.org/licenses/afl-3.0.php - * If you did not receive a copy of the license and are unable to - * obtain it through the world-wide-web, please send an email - * to license@magentocommerce.com so we can send you a copy immediately. - * - * DISCLAIMER - * - * Do not edit or add to this file if you wish to upgrade Magento to newer - * versions in the future. If you wish to customize Magento for your - * needs please refer to http://www.magentocommerce.com for more information. - * - * @category dev - * @package build - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) - * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) - */ ---> -<project name="Magento2" basedir="../../" default="init"> - <property file="dev/build/build.properties" /> - <property environment="env"/> - <tstamp> - <format property="timestamp" pattern="yyyyMMdd"/> - </tstamp> - - <!-- copy the build customization files --> - <target name="init" if="env.build_customization_dir"> - <copy todir="${basedir}" failonerror="true" overwrite="true"> - <fileset dir="${basedir}/${env.build_customization_dir}"/> - </copy> - </target> - - <target name="prepare-build-properties"> - <condition property="dir.build_directory" value="${basedir}"> - <not> - <isset property="dir.build_directory"/> - </not> - </condition> - <property name="dir.extruder" location="${dir.build_directory}/${extruder.dir}"/> - </target> - - <!-- setup permissions for the application installation --> - <target name="prepare-installation" depends="prepare-build-properties"> - <chmod perm="a+w"> - <dirset dir="${dir.build_directory}/app/etc"/> - <dirset dir="${dir.build_directory}/pub/media"/> - <fileset dir="${dir.build_directory}/pub/media"/> - <dirset dir="${dir.build_directory}/var"/> - </chmod> - </target> - - <!-- delete files, that don't belong to Community Edition, from working copy --> - <target name="prepare-ce" depends="prepare-build-properties"> - <exec executable="php" failonerror="true"> - <arg line="-f ${dir.extruder}/extruder.php -- - -w ${dir.build_directory} - -l ${dir.extruder}/publication/extruder/common.txt - -l ${dir.extruder}/publication/extruder/ce.txt - -v - "/> - </exec> - </target> - - <target name="jstestdriver-path-substitution"> - <fail unless="env.JsTestDriver" message="Bamboo variable 'JsTestDriver' must be defined on your agent"/> - <copy file="${basedir}/dev/tests/js/jsTestDriver.php.dist" tofile="${basedir}/dev/tests/js/jsTestDriver.php"/> - <replace file="${basedir}/dev/tests/js/jsTestDriver.php"> - <replacefilter token="{{path_to_jstestdriver_jar}}" value="${env.JsTestDriver}"/> - </replace> - </target> - - <target name="js-test-php" depends="jstestdriver-path-substitution"> - <exec dir="${basedir}/dev/tests/js" executable="php" failonerror="true"> - <arg line="run_js_tests.php"/> - </exec> - </target> - - <target name="prepare-ee" depends="prepare-build-properties"> - <copy file="${dir.build_directory}/${enterprise-enabler.file}.dist" tofile="${dir.build_directory}/${enterprise-enabler.file}"/> - <copy file="${dir.build_directory}/${saas-enabler.file}.dist" tofile="${dir.build_directory}/${saas-enabler.file}"/> - - <replace file="${dir.build_directory}/downloader/config.ini" token="community" value="enterprise"/> - <replace file="${dir.build_directory}/app/Mage.php" token="self::EDITION_COMMUNITY" value="self::EDITION_ENTERPRISE"/> - </target> - - <!-- deploy and run functional tests --> - <target name="functional-tests-with-deploy" description="Deploy Magento"> - <fail unless="env.build_customization_dir" message="Bamboo variable 'customization_dir' must be defined" /> - <!-- Functional tests params --> - <fail unless="env.deploy_directory" message="Bamboo variable 'deploy_directory' must be defined on your agent"/> - <fail unless="env.db_host" message="Bamboo variable 'db_host' must be defined on your agent"/> - <fail unless="env.db_name" message="Bamboo variable 'db_name' must be defined on your agent"/> - <fail unless="env.db_user" message="Bamboo variable 'db_user' must be defined on your agent"/> - <fail unless="env.db_password" message="Bamboo variable 'db_password' must be defined on your agent"/> - <fail unless="env.http_host" message="Bamboo variable 'http_host' must be defined on your agent (e.g. http://myhost.com/mypath/)"/> - <fail unless="env.https_host" message="Bamboo variable 'https_host' must be defined on your agent (e.g. https://myhost.com/mypath/)"/> - - <fail unless="env.selenium_host" message="Bamboo variable 'selenium_host' must be defined on your agent"/> - <fail unless="env.selenium_port" message="Bamboo variable 'selenium_port' must be defined on your agent"/> - <fail unless="env.testsuite" message="Bamboo variable 'testsuite' must be defined on your agent (mage, enterprise)"/> - - <property name="dir.build_directory" location="${env.deploy_directory}/${env.build.key}"/> - - <delete dir="${dir.build_directory}" /> - - <copy todir="${dir.build_directory}" failonerror="true"> - <fileset dir="${basedir}" defaultexcludes="no"/> - </copy> - - <copy todir="${dir.build_directory}" failonerror="true" overwrite="true"> - <fileset dir="${basedir}/${env.build_customization_dir}"/> - </copy> - - <antcall target="prepare-installation" inheritAll="true" /> - - <replace file="${dir.build_directory}/dev/tests/functional/config/install.php"> - <replacefilter token="{{db_model}}" value="${env.db_model}"/> - <replacefilter token="{{db_host}}" value="${env.db_host}"/> - <replacefilter token="{{db_name}}" value="${env.db_name}"/> - <replacefilter token="{{db_user}}" value="${env.db_user}"/> - <replacefilter token="{{db_password}}" value="${env.db_password}"/> - <replacefilter token="{{url}}" value="${env.http_host}${env.build.key}"/> - <replacefilter token="{{secure_url}}" value="${env.https_host}${env.build.key}"/> - </replace> - - - <replace file="${dir.build_directory}/dev/tests/functional/config/config.yml"> - <replacefilter token="{{admin_url}}" value="${env.https_host}${env.build.key}/backend/admin"/> - <replacefilter token="{{url}}" value="${env.http_host}${env.build.key}"/> - <replacefilter token="{{selenium_host}}" value="${env.selenium_host}"/> - <replacefilter token="{{selenium_port}}" value="${env.selenium_port}"/> - <replacefilter token="{{selenium_testsuite}}" value="${env.testsuite}"/> - </replace> - </target> - - <target name="functional-tests-with-deploy-ee" depends="functional-tests-with-deploy,prepare-ee"> - <replace file="${dir.build_directory}/dev/tests/functional/config/config.yml"> - <replacefilter token="{{enterprise_admin_url}}" value="${env.https_host}${env.build.key}/backend/admin"/> - <replacefilter token="{{enterprise_url}}" value="${env.http_host}${env.build.key}/"/> - </replace> - </target> - - <target name="init-build-directory" unless="build.directory.initialized"> - <fail unless="env.deploy_directory" message="Bamboo variable 'deploy_directory' must be defined."/> - <fail unless="env.build_number" message="Bamboo variable 'build_number' must be defined."/> - <fail unless="env.build_scope_name" message="Bamboo variable 'env.build_scope_name' must be defined."/> - - <property name="dir.build_directory" location="${env.deploy_directory}/${env.build_scope_name}/${timestamp}-${env.build_number}"/> - <echo message="Build directory: ${dir.build_directory}" level="info"/> - <property name="build.directory.initialized" value="1" /> - </target> - - <target name="deploy" unless="build.deployed" depends="init-build-directory"> - <delete dir="${dir.build_directory}"/> - - <copy todir="${dir.build_directory}" failonerror="true"> - <fileset dir="${basedir}" defaultexcludes="no"/> - </copy> - <property name="build.deployed" value="1" /> - </target> - - <target name="install" depends="init-build-directory"> - <fail unless="env.install_properties_file" message="Bamboo variable 'build_properties_file' must be defined."/> - <fail unless="env.build_number" message="Bamboo variable 'build_number' must be defined."/> - <fail unless="env.db_host" message="Bamboo variable 'db_host' must be defined."/> - <fail unless="env.db_user" message="Bamboo variable 'db_user' must be defined."/> - <fail unless="env.db_password" message="Bamboo variable 'db_password' must be defined."/> - <fail unless="env.http_host" message="Bamboo variable 'http_host' must be defined."/> - <fail unless="env.https_host" message="Bamboo variable 'https_host' must be defined."/> - <fail unless="env.build_scope_name" message="Bamboo variable 'env.build_scope_name' must be defined."/> - - <property name="db.name" value="${env.build_scope_name}_${timestamp}_${env.build_number}"/> - - <property name="file.create_database" location="${dir.build_directory}/dev/build/bin/create-database.sh"/> - <chmod file="${file.create_database}" perm="ugo+rx"/> - - <exec executable="${file.create_database}" failonerror="true"> - <arg value="${env.db_host}"/> - <arg value="${db.name}"/> - <arg value="${env.db_user}"/> - <arg value="${env.db_password}"/> - </exec> - - <antcall target="install-magento" inheritAll="true"/> - - <mkdir dir="${dir.build_directory}/websites"/> - </target> - - <target name="install-magento"> - <replace file="${dir.build_directory}/${env.install_properties_file}" > - <replacefilter token="{{db_host}}" value="${env.db_host}"/> - <replacefilter token="{{db_name}}" value="${db.name}"/> - <replacefilter token="{{db_user}}" value="${env.db_user}"/> - <replacefilter token="{{db_password}}" value="${env.db_password}"/> - <replacefilter token="{{url}}" value="${env.http_host}${env.build_scope_name}/${timestamp}-${env.build_number}"/> - <replacefilter token="{{secure_url}}" value="${env.https_host}${env.build_scope_name}/${timestamp}-${env.build_number}"/> - </replace> - - <exec executable="php" failonerror="true"> - <arg line="-f ${dir.build_directory}/dev/build/publication/install.php -- - --build_properties_file ${dir.build_directory}/${env.install_properties_file} - "/> - </exec> - </target> - - <target name="upgrade" depends="init-build-directory"> - <property name="dir.previous_build_directory" value="${dir.build_directory}/../current"/> - <property name="db.name" value="${env.build_scope_name}_${timestamp}_${env.build_number}"/> - - <copy todir="${dir.build_directory}/websites" failonerror="false"> - <fileset dir="${dir.previous_build_directory}/websites" /> - </copy> - - <copy todir="${dir.build_directory}/pub/media" failonerror="false"> - <fileset dir="${dir.previous_build_directory}/pub/media"/> - </copy> - - <chmod perm="a+w"> - <dirset dir="${dir.build_directory}/pub/media"/> - <fileset dir="${dir.build_directory}/pub/media"/> - </chmod> - - <property name="file.prepare_previous" location="${dir.build_directory}/dev/build/bin/prepare-previous.sh"/> - <chmod file="${file.prepare_previous}" perm="ugo+rx"/> - - <exec executable="${file.prepare_previous}" failonerror="true"> - <arg value="${env.db_host}"/> - <arg value="${db.name}"/> - <arg value="${env.db_user}"/> - <arg value="${env.db_password}"/> - <arg value="${dir.build_directory}"/> - <arg value="${dir.previous_build_directory}"/> - <arg value="${env.http_host}${env.build_scope_name}"/> - <arg value="${env.https_host}${env.build_scope_name}"/> - </exec> - - <antcall target="install-magento" inheritAll="true"/> - </target> - - <target name="update-current" depends="init-build-directory"> - <property name="file.current" location="${dir.build_directory}/dev/build/bin/current.sh"/> - <chmod file="${file.current}" perm="ugo+rx"/> - <chmod file="${dir.build_directory}/dev/build/bin/include.sh" perm="ugo+rx"/> - - <exec executable="${file.current}" failonerror="true"> - <arg value="${env.db_host}"/> - <arg value="${db.name}"/> - <arg value="${env.db_user}"/> - <arg value="${env.db_password}"/> - <arg value="${dir.build_directory}"/> - <arg value=""/> - <arg value="${env.http_host}${env.build_scope_name}/current/"/> - <arg value="${env.https_host}${env.build_scope_name}/current/"/> - </exec> - </target> - - <target name="remove-old-builds" depends="init-build-directory"> - <property name="file.delete_old_builds" location="${dir.build_directory}/dev/build/bin/delete-old-builds.sh"/> - <chmod file="${file.delete_old_builds}" perm="ugo+rx"/> - - <exec executable="${file.delete_old_builds}" failonerror="true"> - <arg value="${env.build_scope_name}"/> - <arg value="${env.db_user}"/> - <arg value="${env.db_password}"/> - </exec> - </target> -</project> diff --git a/dev/build/core_dep/build.xml b/dev/build/core_dep/build.xml deleted file mode 100644 index 78d906ecadf6378c8553b459f8eee861e264b99e..0000000000000000000000000000000000000000 --- a/dev/build/core_dep/build.xml +++ /dev/null @@ -1,73 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- -/** - * Apache Ant's build file for core deployment builds - * - * Magento - * - * NOTICE OF LICENSE - * - * This source file is subject to the Academic Free License (AFL 3.0) - * that is bundled with this package in the file LICENSE_AFL.txt. - * It is also available through the world-wide-web at this URL: - * http://opensource.org/licenses/afl-3.0.php - * If you did not receive a copy of the license and are unable to - * obtain it through the world-wide-web, please send an email - * to license@magentocommerce.com so we can send you a copy immediately. - * - * DISCLAIMER - * - * Do not edit or add to this file if you wish to upgrade Magento to newer - * versions in the future. If you wish to customize Magento for your - * needs please refer to http://www.magentocommerce.com for more information. - * - * @category dev - * @package build - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) - * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) - */ ---> -<project name="Core Deployment Builds" basedir="../../../" default="publication_ce"> - <import file="../core_dev/unit/build.xml"/> - <import file="../core_dev/static/build.xml"/> - <import file="../core_dev/integration/build.xml"/> - - <target name="publication_ce" description="Community Edition source code population to the public repository"> - <property name="publication_target_dir" location="${basedir}/dev/build/publication/_tmp_target"/> - <fail message="Bamboo variable 'source_repository' must be defined."> - <condition><equals arg1="${env.bamboo_source_repository}" arg2="" trim="true"/></condition> - </fail> - <fail message="Bamboo variable 'target_repository' must be defined."> - <condition><equals arg1="${env.bamboo_target_repository}" arg2="" trim="true"/></condition> - </fail> - <fail message="Bamboo variable 'source_point' must be defined."> - <condition><equals arg1="${env.bamboo_source_point}" arg2="" trim="true"/></condition> - </fail> - <condition property="env.bamboo_target_branch" value="master"> - <not><isset property="env.bamboo_target_branch"/></not> - </condition> - <delete dir="${publication_target_dir}" failonerror="true"/> - <exec executable="php" failonerror="true"> - <arg line="-f ${basedir}/dev/build/publication/publish.php -- - --source=${env.bamboo_source_repository} --source-point=${env.bamboo_source_point} - --target=${env.bamboo_target_repository} --target-branch=${env.bamboo_target_branch} - --target-dir=${publication_target_dir} - --changelog-file=CHANGELOG.markdown - --no-push - "/> - </exec> - <antcall> - <param name="product_root_dir" value="${publication_target_dir}"/> - <param name="product_edition_code" value="ce"/> - <target name="_unit_tests_all"/> - <target name="_sanity_check"/> - <target name="_static_tests_no_js"/> - <target name="_integration_tests_magento"/> - <target name="_integration_integrity_tests_magento"/> - </antcall> - <exec dir="${publication_target_dir}" executable="git" failonerror="true"> - <arg line="push origin ${env.bamboo_target_branch}"/> - </exec> - </target> - -</project> diff --git a/dev/build/core_dev/integration/build.xml b/dev/build/core_dev/integration/build.xml deleted file mode 100644 index fcda6e8a93fd555a0881f802478962013dd1c6f2..0000000000000000000000000000000000000000 --- a/dev/build/core_dev/integration/build.xml +++ /dev/null @@ -1,152 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- -/** - * Apache Ant's build file for core development integration tests - * - * Magento - * - * NOTICE OF LICENSE - * - * This source file is subject to the Academic Free License (AFL 3.0) - * that is bundled with this package in the file LICENSE_AFL.txt. - * It is also available through the world-wide-web at this URL: - * http://opensource.org/licenses/afl-3.0.php - * If you did not receive a copy of the license and are unable to - * obtain it through the world-wide-web, please send an email - * to license@magentocommerce.com so we can send you a copy immediately. - * - * DISCLAIMER - * - * Do not edit or add to this file if you wish to upgrade Magento to newer - * versions in the future. If you wish to customize Magento for your - * needs please refer to http://www.magentocommerce.com for more information. - * - * @category dev - * @package build - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) - * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) - */ ---> -<project name="Core Development Integration Tests" basedir="../../../../" default="integration_tests_ee_mysql"> - <import file="../util.xml"/> - - <target name="_integration_tests_configuration" depends="_product_location" description="Generation of configuration for integration tests"> - <condition property="db_vendor_name" value="mysql"> - <not><isset property="db_vendor_name"/></not> - </condition> - <condition property="db_table_prefix" value=""> - <not><isset property="db_table_prefix"/></not> - </condition> - <condition property="developer_mode" value="enabled"> - <not><isset property="developer_mode"/></not> - </condition> - <copy file="${basedir}/dev/build/core_dev/integration/local-${db_vendor_name}.xml" todir="${product_root_dir}/dev/tests/integration/etc" overwrite="true"/> - <ant antfile="${basedir}/dev/build/core_dev/util.xml" target="_database_credential_substitution"> - <property name="db_config_file" value="${product_root_dir}/dev/tests/integration/etc/local-${db_vendor_name}.xml"/> - </ant> - <replace file="${product_root_dir}/dev/tests/integration/etc/local-${db_vendor_name}.xml"> - <replacefilter token="{{db_table_prefix}}" value="${db_table_prefix}"/> - </replace> - <copy file="${basedir}/dev/build/core_dev/integration/phpunit.xml" todir="${product_root_dir}/dev/tests/integration" overwrite="true"/> - <replace file="${product_root_dir}/dev/tests/integration/phpunit.xml"> - <replacefilter token="{{local_config_file}}" value="etc/local-${db_vendor_name}.xml"/> - <replacefilter token="{{developer_mode}}" value="${developer_mode}"/> - </replace> - </target> - - - <target name="_integration_tests_magento" depends="_integration_tests_configuration" description="Product integration tests"> - <exec dir="${product_root_dir}/dev/tests/integration" executable="phpunit" failonerror="true"> - <arg line="--log-junit ${basedir}/integration_tests_magento.xml"/> - </exec> - </target> - <target name="_integration_tests_magento_xdebug" depends="_integration_tests_configuration" description="Product integration tests with Xdebug"> - <chmod perm="u+x" file="${basedir}/dev/build/bin/phpunit-with-xdebug.sh"/> - <exec dir="${product_root_dir}/dev/tests/integration" executable="${basedir}/dev/build/bin/phpunit-with-xdebug.sh" failonerror="true"> - <arg line="--stderr --log-junit ${basedir}/integration_tests_magento_xdebug.xml"/> - </exec> - </target> - - <target name="integration_tests_ee_dev_mysql" description="Integration tests in dev mode on MySQL for EE"> - <antcall target="_integration_tests_magento"/> - </target> - <target name="integration_tests_ee_mysql" description="Integration tests on MySQL for EE"> - <antcall target="_integration_tests_magento"> - <param name="developer_mode" value="disabled"/> - </antcall> - </target> - <target name="integration_tests_ee_dev_mysql_tpfx" description="Integration tests in dev mode with table prefix on MySQL for EE"> - <antcall target="_integration_tests_magento"> - <param name="db_table_prefix" value="pfx_"/> - </antcall> - </target> - <target name="integration_tests_ee_dev_xd_mysql" description="Integration tests in dev mode with Xdebug on MySQL for EE"> - <antcall target="_integration_tests_magento_xdebug"/> - </target> - <target name="integration_tests_ee_xd_mysql" description="Integration tests with Xdebug on MySQL for EE"> - <antcall target="_integration_tests_magento_xdebug"> - <param name="developer_mode" value="disabled"/> - </antcall> - </target> - <target name="integration_tests_ee_dev_xd_mysql_tpfx" description="Integration tests in dev mode with Xdebug and table prefix on MySQL for EE"> - <antcall target="_integration_tests_magento_xdebug"> - <param name="db_table_prefix" value="pfx_"/> - </antcall> - </target> - <target name="integration_tests_ee_dev_xd_mssql" description="Integration tests in dev mode with Xdebug on MSSQL for EE"> - <antcall target="_integration_tests_magento_xdebug"> - <param name="db_vendor_name" value="mssql"/> - </antcall> - </target> - <target name="integration_tests_ee_dev_xd_oracle" description="Integration tests in dev mode with Xdebug on Oracle for EE"> - <antcall target="_integration_tests_magento_xdebug"> - <param name="db_vendor_name" value="oracle"/> - </antcall> - </target> - <target name="integration_tests_ce_dev_mysql" depends="_community_edition" description="Integration tests in dev mode on MySQL for CE"> - <antcall target="_integration_tests_magento"/> - </target> - <target name="integration_tests_ce_mysql" depends="_community_edition" description="Integration tests on MySQL for CE"> - <antcall target="_integration_tests_magento"> - <param name="developer_mode" value="disabled"/> - </antcall> - </target> - <target name="integration_tests_ce_dev_mysql_tpfx" depends="_community_edition" description="Integration tests in dev mode with table prefix on MySQL for CE"> - <antcall target="_integration_tests_magento"> - <param name="db_table_prefix" value="pfx_"/> - </antcall> - </target> - <target name="integration_tests_ce_dev_xd_mysql" depends="_community_edition" description="Integration tests in dev mode with Xdebug on MySQL for CE"> - <antcall target="_integration_tests_magento_xdebug"/> - </target> - <target name="integration_tests_ce_xd_mysql" depends="_community_edition" description="Integration tests with Xdebug on MySQL for CE"> - <antcall target="_integration_tests_magento_xdebug"> - <param name="developer_mode" value="disabled"/> - </antcall> - </target> - - - <target name="_integration_integrity_tests_magento" depends="_integration_tests_configuration" description="Product integration integrity tests"> - <exec dir="${product_root_dir}/dev/tests/integration" executable="phpunit" failonerror="true"> - <arg line="--log-junit ${basedir}/integration_integrity_tests_magento.xml testsuite/integrity"/> - </exec> - </target> - - <target name="integration_integrity_tests_ee_dev_mysql" description="Integration integrity tests in dev mode on MySQL for EE"> - <antcall target="_integration_integrity_tests_magento"/> - </target> - <target name="integration_integrity_tests_ee_mysql" description="Integration integrity tests on MySQL for EE"> - <antcall target="_integration_integrity_tests_magento"> - <param name="developer_mode" value="disabled"/> - </antcall> - </target> - <target name="integration_integrity_tests_ce_dev_mysql" depends="_community_edition" description="Integration integrity tests in dev mode on MySQL for CE"> - <antcall target="_integration_integrity_tests_magento"/> - </target> - <target name="integration_integrity_tests_ce_mysql" depends="_community_edition" description="Integration integrity tests on MySQL for CE"> - <antcall target="_integration_integrity_tests_magento"> - <param name="developer_mode" value="disabled"/> - </antcall> - </target> - -</project> diff --git a/dev/build/core_dev/integration/local-mssql.xml b/dev/build/core_dev/integration/local-mssql.xml deleted file mode 100644 index 7002996fc9263bdc76e3a257f799cbce7eae31ec..0000000000000000000000000000000000000000 --- a/dev/build/core_dev/integration/local-mssql.xml +++ /dev/null @@ -1,76 +0,0 @@ -<?xml version="1.0"?> -<!-- -/** - * Magento - * - * NOTICE OF LICENSE - * - * This source file is subject to the Academic Free License (AFL 3.0) - * that is bundled with this package in the file LICENSE_AFL.txt. - * It is also available through the world-wide-web at this URL: - * http://opensource.org/licenses/afl-3.0.php - * If you did not receive a copy of the license and are unable to - * obtain it through the world-wide-web, please send an email - * to license@magentocommerce.com so we can send you a copy immediately. - * - * DISCLAIMER - * - * Do not edit or add to this file if you wish to upgrade Magento to newer - * versions in the future. If you wish to customize Magento for your - * needs please refer to http://www.magentocommerce.com for more information. - * - * @category Magento - * @package Magento - * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) - * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) - */ ---> -<config> - <global> - <install> - <date><![CDATA[d-d-d-d-d]]></date> - </install> - <crypt> - <key><![CDATA[k-k-k-k-k]]></key> - </crypt> - <disable_local_modules>false</disable_local_modules> - <resources> - <db> - <table_prefix><![CDATA[{{db_table_prefix}}]]></table_prefix> - </db> - <default_setup> - <connection> - <host><![CDATA[{{db_host}}]]></host> - <username><![CDATA[{{db_user}}]]></username> - <password><![CDATA[{{db_password}}]]></password> - <dbname><![CDATA[{{db_name}}]]></dbname> - <initStatements><![CDATA[]]></initStatements> - <model><![CDATA[mssql]]></model> - <type><![CDATA[pdo_mssql]]></type> - <pdoType><![CDATA[pdo_dblib]]></pdoType> - <active>1</active> - </connection> - </default_setup> - </resources> - <session_save><![CDATA[files]]></session_save> - <resource> - <connection> - <types> - <pdo_mssql> - <adapter><![CDATA[Magento_Test_Db_Adapter_Mssql]]></adapter> - </pdo_mssql> - </types> - </connection> - </resource> - </global> - <admin> - <routers> - <adminhtml> - <args> - <frontName><![CDATA[admin]]></frontName> - </args> - </adminhtml> - </routers> - </admin> -</config> diff --git a/dev/build/core_dev/integration/local-mysql.xml b/dev/build/core_dev/integration/local-mysql.xml deleted file mode 100644 index e66d0dacf3065b56c8cdd1e0506147e773f6e069..0000000000000000000000000000000000000000 --- a/dev/build/core_dev/integration/local-mysql.xml +++ /dev/null @@ -1,76 +0,0 @@ -<?xml version="1.0"?> -<!-- -/** - * Magento - * - * NOTICE OF LICENSE - * - * This source file is subject to the Academic Free License (AFL 3.0) - * that is bundled with this package in the file LICENSE_AFL.txt. - * It is also available through the world-wide-web at this URL: - * http://opensource.org/licenses/afl-3.0.php - * If you did not receive a copy of the license and are unable to - * obtain it through the world-wide-web, please send an email - * to license@magentocommerce.com so we can send you a copy immediately. - * - * DISCLAIMER - * - * Do not edit or add to this file if you wish to upgrade Magento to newer - * versions in the future. If you wish to customize Magento for your - * needs please refer to http://www.magentocommerce.com for more information. - * - * @category Magento - * @package Magento - * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) - * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) - */ ---> -<config> - <global> - <install> - <date><![CDATA[d-d-d-d-d]]></date> - </install> - <crypt> - <key><![CDATA[k-k-k-k-k]]></key> - </crypt> - <disable_local_modules>false</disable_local_modules> - <resources> - <db> - <table_prefix><![CDATA[{{db_table_prefix}}]]></table_prefix> - </db> - <default_setup> - <connection> - <host><![CDATA[{{db_host}}]]></host> - <username><![CDATA[{{db_user}}]]></username> - <password><![CDATA[{{db_password}}]]></password> - <dbname><![CDATA[{{db_name}}]]></dbname> - <initStatements><![CDATA[SET NAMES utf8]]></initStatements> - <model><![CDATA[mysql4]]></model> - <type><![CDATA[pdo_mysql]]></type> - <pdoType><![CDATA[]]></pdoType> - <active>1</active> - </connection> - </default_setup> - </resources> - <session_save><![CDATA[files]]></session_save> - <resource> - <connection> - <types> - <pdo_mysql> - <adapter><![CDATA[Magento_Test_Db_Adapter_Mysql]]></adapter> - </pdo_mysql> - </types> - </connection> - </resource> - </global> - <admin> - <routers> - <adminhtml> - <args> - <frontName><![CDATA[admin]]></frontName> - </args> - </adminhtml> - </routers> - </admin> -</config> diff --git a/dev/build/core_dev/integration/local-oracle.xml b/dev/build/core_dev/integration/local-oracle.xml deleted file mode 100644 index 1d2d75050a9239ac1d37b2944416ccf895a91163..0000000000000000000000000000000000000000 --- a/dev/build/core_dev/integration/local-oracle.xml +++ /dev/null @@ -1,76 +0,0 @@ -<?xml version="1.0"?> -<!-- -/** - * Magento - * - * NOTICE OF LICENSE - * - * This source file is subject to the Academic Free License (AFL 3.0) - * that is bundled with this package in the file LICENSE_AFL.txt. - * It is also available through the world-wide-web at this URL: - * http://opensource.org/licenses/afl-3.0.php - * If you did not receive a copy of the license and are unable to - * obtain it through the world-wide-web, please send an email - * to license@magentocommerce.com so we can send you a copy immediately. - * - * DISCLAIMER - * - * Do not edit or add to this file if you wish to upgrade Magento to newer - * versions in the future. If you wish to customize Magento for your - * needs please refer to http://www.magentocommerce.com for more information. - * - * @category Magento - * @package Magento - * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) - * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) - */ ---> -<config> - <global> - <install> - <date><![CDATA[d-d-d-d-d]]></date> - </install> - <crypt> - <key><![CDATA[k-k-k-k-k]]></key> - </crypt> - <disable_local_modules>false</disable_local_modules> - <resources> - <db> - <table_prefix><![CDATA[{{db_table_prefix}}]]></table_prefix> - </db> - <default_setup> - <connection> - <host><![CDATA[{{db_host}}]]></host> - <username><![CDATA[{{db_user}}]]></username> - <password><![CDATA[{{db_password}}]]></password> - <dbname><![CDATA[{{db_name}}]]></dbname> - <initStatements><![CDATA[]]></initStatements> - <model><![CDATA[oracle]]></model> - <type><![CDATA[oracle]]></type> - <pdoType><![CDATA[]]></pdoType> - <active>1</active> - </connection> - </default_setup> - </resources> - <session_save><![CDATA[files]]></session_save> - <resource> - <connection> - <types> - <oracle> - <adapter><![CDATA[Magento_Test_Db_Adapter_Oracle]]></adapter> - </oracle> - </types> - </connection> - </resource> - </global> - <admin> - <routers> - <adminhtml> - <args> - <frontName><![CDATA[admin]]></frontName> - </args> - </adminhtml> - </routers> - </admin> -</config> diff --git a/dev/build/core_dev/integration/phpunit.xml b/dev/build/core_dev/integration/phpunit.xml deleted file mode 100644 index 7f7031c6beacb31e81ea47f9316b10d0c1a8dd7c..0000000000000000000000000000000000000000 --- a/dev/build/core_dev/integration/phpunit.xml +++ /dev/null @@ -1,48 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!-- -/** - * Magento - * - * NOTICE OF LICENSE - * - * This source file is subject to the Academic Free License (AFL 3.0) - * that is bundled with this package in the file LICENSE_AFL.txt. - * It is also available through the world-wide-web at this URL: - * http://opensource.org/licenses/afl-3.0.php - * If you did not receive a copy of the license and are unable to - * obtain it through the world-wide-web, please send an email - * to license@magentocommerce.com so we can send you a copy immediately. - * - * DISCLAIMER - * - * Do not edit or add to this file if you wish to upgrade Magento to newer - * versions in the future. If you wish to customize Magento for your - * needs please refer to http://www.magentocommerce.com for more information. - * - * @category Magento - * @package Magento - * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) - * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) - */ ---> -<phpunit bootstrap="./framework/bootstrap.php"> - <testsuites> - <testsuite name="Magento Integration Tests"> - <directory suffix="Test.php">testsuite</directory> - <exclude>testsuite/integrity</exclude> - </testsuite> - </testsuites> - <php> - <includePath>.</includePath> - <ini name="date.timezone" value="America/Los_Angeles"/> - <const name="TESTS_LOCAL_CONFIG_FILE" value="{{local_config_file}}"/> - <const name="TESTS_GLOBAL_CONFIG_FILES" value="../../../app/etc/*.xml"/> - <const name="TESTS_MODULE_CONFIG_FILES" value="../../../app/etc/modules/*.xml;etc/modules/*.xml"/> - <const name="TESTS_CLEANUP" value="enabled"/> - <const name="TESTS_MAGENTO_DEVELOPER_MODE" value="{{developer_mode}}"/> - </php> - <listeners> - <listener class="Magento_Test_Event_PhpUnit"/> - </listeners> -</phpunit> diff --git a/dev/build/core_dev/performance/build.xml b/dev/build/core_dev/performance/build.xml deleted file mode 100644 index c5128efe6665f4543ef56b334c823acde06bc4b7..0000000000000000000000000000000000000000 --- a/dev/build/core_dev/performance/build.xml +++ /dev/null @@ -1,65 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- -/** - * Apache Ant's build file for core development performance tests - * - * Magento - * - * NOTICE OF LICENSE - * - * This source file is subject to the Academic Free License (AFL 3.0) - * that is bundled with this package in the file LICENSE_AFL.txt. - * It is also available through the world-wide-web at this URL: - * http://opensource.org/licenses/afl-3.0.php - * If you did not receive a copy of the license and are unable to - * obtain it through the world-wide-web, please send an email - * to license@magentocommerce.com so we can send you a copy immediately. - * - * DISCLAIMER - * - * Do not edit or add to this file if you wish to upgrade Magento to newer - * versions in the future. If you wish to customize Magento for your - * needs please refer to http://www.magentocommerce.com for more information. - * - * @category dev - * @package build - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) - * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) - */ ---> -<project name="Core Development Performance Tests" basedir="../../../../" default="performance_tests_ce_mysql"> - <import file="../util.xml"/> - - <target name="_performance_tests_configuration" depends="_product_location" description="Generation of configuration for product performance tests"> - <fail unless="env.web_access_host" message="Environment variable 'web_access_host' must be defined"/> - <fail unless="env.web_access_path" message="Environment variable 'web_access_path' must be defined"/> - <condition property="performance_tests_config_file" value="${basedir}/dev/build/core_dev/performance/config.php"> - <not><isset property="performance_tests_config_file"/></not> - </condition> - <copy file="${performance_tests_config_file}" tofile="${product_root_dir}/dev/tests/performance/config.php" overwrite="true"/> - <antcall target="_database_credential_substitution"> - <param name="db_config_file" value="${product_root_dir}/dev/tests/performance/config.php"/> - </antcall> - <replace file="${product_root_dir}/dev/tests/performance/config.php"> - <replacefilter token="{{web_access_host}}" value="${env.web_access_host}"/> - <replacefilter token="{{web_access_path}}" value="${env.web_access_path}"/> - </replace> - </target> - <target name="_performance_tests_magento" depends="_installation_requirements" description="Product performance tests"> - <exec executable="php" failonerror="true"> - <arg value="${product_root_dir}/dev/tests/performance/run_scenarios.php"/> - </exec> - </target> - - <target name="performance_tests_ce_mysql" depends="_community_edition" description="Performance tests on MySQL for CE"> - <antcall target="_performance_tests_configuration"/> - <antcall target="_performance_tests_magento"/> - </target> - - <target name="performance_tests_ce_mysql_volume" depends="_community_edition" description="Performance tests with large DB on MySQL for CE"> - <antcall target="_performance_tests_configuration"> - <param name="performance_tests_config_file" value="${basedir}/dev/build/core_dev/performance/config_large_db.php"/> - </antcall> - <antcall target="_performance_tests_magento"/> - </target> -</project> diff --git a/dev/build/core_dev/performance/config.php b/dev/build/core_dev/performance/config.php deleted file mode 100644 index cd0e272223f6c60648ec173882cf3f12917e6ef2..0000000000000000000000000000000000000000 --- a/dev/build/core_dev/performance/config.php +++ /dev/null @@ -1,117 +0,0 @@ -<?php -/** - * Magento - * - * NOTICE OF LICENSE - * - * This source file is subject to the Open Software License (OSL 3.0) - * that is bundled with this package in the file LICENSE.txt. - * It is also available through the world-wide-web at this URL: - * http://opensource.org/licenses/osl-3.0.php - * If you did not receive a copy of the license and are unable to - * obtain it through the world-wide-web, please send an email - * to license@magentocommerce.com so we can send you a copy immediately. - * - * DISCLAIMER - * - * Do not edit or add to this file if you wish to upgrade Magento to newer - * versions in the future. If you wish to customize Magento for your - * needs please refer to http://www.magentocommerce.com for more information. - * - * @category Magento - * @package performance_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) - * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) - */ - -return array( - 'application' => array( - 'url_host' => '{{web_access_host}}', - 'url_path' => '{{web_access_path}}', - 'admin' => array( - 'frontname' => 'backend', - 'username' => 'admin', - 'password' => '123123q', - ), - 'installation' => array( - 'options' => array( - 'license_agreement_accepted' => 'yes', - 'locale' => 'en_US', - 'timezone' => 'America/Los_Angeles', - 'default_currency' => 'USD', - 'db_host' => '{{db_host}}', - 'db_name' => '{{db_name}}', - 'db_user' => '{{db_user}}', - 'db_pass' => '{{db_password}}', - 'use_secure' => 'no', - 'use_secure_admin' => 'no', - 'use_rewrites' => 'no', - 'admin_lastname' => 'Admin', - 'admin_firstname' => 'Admin', - 'admin_email' => 'admin@example.com', - 'admin_no_form_key' => 'yes', - 'cleanup_database' => 'yes', - ), - ), - ), - 'scenario' => array( - 'common_config' => array( - 'arguments' => array( - 'users' => 10, - 'loops' => 100, - ), - ), - 'scenarios' => array( - 'Add to Cart' => array( - 'file' => 'testsuite/add_to_cart.jmx', - 'fixtures' => array( - 'testsuite/fixtures/catalog_product.php', - ), - ), - 'Advanced Search' => array( - 'file' => 'testsuite/advanced_search.jmx', - 'fixtures' => array( - 'testsuite/fixtures/catalog_product.php', - ), - ), - 'Category View' => array( - 'file' => 'testsuite/category_view.jmx', - 'fixtures' => array( - 'testsuite/fixtures/catalog_category.php', - ), - ), - 'Checkout' => array( - 'file' => 'testsuite/checkout.jmx', - 'fixtures' => array( - 'testsuite/fixtures/catalog_product.php', - ), - ), - 'Home Page' => array( - 'file' => 'testsuite/home_page.jmx', - ), - 'Product Edit' => array( - 'file' => 'testsuite/product_edit.jmx', - 'fixtures' => array( - 'testsuite/fixtures/catalog_product.php', - ), - ), - 'Product View' => array( - 'file' => 'testsuite/product_view.jmx', - 'arguments' => array( - 'product_url_key' => 'product-1.html', - 'product_name' => 'Product 1', - ), - 'fixtures' => array( - 'testsuite/fixtures/catalog_product.php', - ), - ), - 'Quick Search' => array( - 'file' => 'testsuite/quick_search.jmx', - 'fixtures' => array( - 'testsuite/fixtures/catalog_product.php', - ), - ), - ), - ), - 'report_dir' => 'report', -); diff --git a/dev/build/core_dev/performance/config_large_db.php b/dev/build/core_dev/performance/config_large_db.php deleted file mode 100644 index 2b8512ccb21cec5123f5d3d6e962b12779227e12..0000000000000000000000000000000000000000 --- a/dev/build/core_dev/performance/config_large_db.php +++ /dev/null @@ -1,175 +0,0 @@ -<?php -/** - * Magento - * - * NOTICE OF LICENSE - * - * This source file is subject to the Open Software License (OSL 3.0) - * that is bundled with this package in the file LICENSE.txt. - * It is also available through the world-wide-web at this URL: - * http://opensource.org/licenses/osl-3.0.php - * If you did not receive a copy of the license and are unable to - * obtain it through the world-wide-web, please send an email - * to license@magentocommerce.com so we can send you a copy immediately. - * - * DISCLAIMER - * - * Do not edit or add to this file if you wish to upgrade Magento to newer - * versions in the future. If you wish to customize Magento for your - * needs please refer to http://www.magentocommerce.com for more information. - * - * @category Magento - * @package performance_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) - * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) - */ - -return array( - 'application' => array( - 'url_host' => '{{web_access_host}}', - 'url_path' => '{{web_access_path}}', - 'admin' => array( - 'frontname' => 'backend', - 'username' => 'admin', - 'password' => '123123q', - ), - 'installation' => array( - 'options' => array( - 'license_agreement_accepted' => 'yes', - 'locale' => 'en_US', - 'timezone' => 'America/Los_Angeles', - 'default_currency' => 'USD', - 'db_host' => '{{db_host}}', - 'db_name' => '{{db_name}}', - 'db_user' => '{{db_user}}', - 'db_pass' => '{{db_password}}', - 'use_secure' => 'no', - 'use_secure_admin' => 'no', - 'use_rewrites' => 'no', - 'admin_lastname' => 'Admin', - 'admin_firstname' => 'Admin', - 'admin_email' => 'admin@example.com', - 'admin_no_form_key' => 'yes', - 'cleanup_database' => 'yes', - ), - ), - ), - 'scenario' => array( - 'common_config' => array( - 'arguments' => array( - 'users' => 1, - 'loops' => 1, - ), - 'settings' => array( - 'skip_warm_up' => true, - ), - ), - 'scenarios' => array( - 'Backend Management with Many Entities' => array( - 'file' => 'testsuite/backend.jmx', - 'arguments' => array( - 'loops' => 100, - 'products_number' => 100000, - 'customers_number' => 100000, - 'orders_number' => 100000, - ), - 'settings' => array( - 'skip_warm_up' => false, - ), - 'fixtures' => array( - 'testsuite/fixtures/catalog_100k_products.php', - 'testsuite/fixtures/customer_100k_customers.php', - 'testsuite/fixtures/sales_100k_orders.php', - ), - ), - 'Product Attributes Indexer' => array( - 'file' => '/../../shell/indexer.php', - 'fixtures' => array( - 'testsuite/fixtures/catalog_200_categories_80k_products_with_tags.php', - ), - 'arguments' => array( - 'loops' => 3, - 'reindex' => 'catalog_product_attribute', - ), - ), - 'Product Prices Indexer' => array( - 'file' => '/../../shell/indexer.php', - 'fixtures' => array( - 'testsuite/fixtures/catalog_200_categories_80k_products_with_tags.php', - ), - 'arguments' => array( - 'loops' => 3, - 'reindex' => 'catalog_product_price', - ), - ), - 'Catalog URL Rewrites Indexer' => array( - 'file' => '/../../shell/indexer.php', - 'fixtures' => array( - 'testsuite/fixtures/catalog_200_categories_80k_products_with_tags.php', - ), - 'arguments' => array( - 'reindex' => 'catalog_url', - ), - ), - 'Product Flat Data Indexer' => array( - 'file' => '/../../shell/indexer.php', - 'fixtures' => array( - 'testsuite/fixtures/catalog_200_categories_80k_products_with_tags.php', - ), - 'arguments' => array( - 'reindex' => 'catalog_product_flat', - ), - ), - 'Category Flat Data Indexer' => array( - 'file' => '/../../shell/indexer.php', - 'fixtures' => array( - 'testsuite/fixtures/catalog_200_categories_80k_products_with_tags.php', - ), - 'arguments' => array( - 'loops' => 10, - 'reindex' => 'catalog_category_flat', - ), - ), - 'Category Products Indexer' => array( - 'file' => '/../../shell/indexer.php', - 'fixtures' => array( - 'testsuite/fixtures/catalog_200_categories_80k_products_with_tags.php', - ), - 'arguments' => array( - 'loops' => 3, - 'reindex' => 'catalog_category_product', - ), - ), - 'Stock Status Indexer' => array( - 'file' => '/../../shell/indexer.php', - 'fixtures' => array( - 'testsuite/fixtures/catalog_200_categories_80k_products_with_tags.php', - ), - 'arguments' => array( - 'loops' => 5, - 'reindex' => 'cataloginventory_stock', - ), - ), - 'Catalog Search Indexer' => array( - 'file' => '/../../shell/indexer.php', - 'fixtures' => array( - 'testsuite/fixtures/catalog_200_categories_80k_products_with_tags.php', - ), - 'arguments' => array( - 'reindex' => 'catalogsearch_fulltext', - ), - ), - 'Tag Aggregation Data Indexer' => array( - 'file' => '/../../shell/indexer.php', - 'fixtures' => array( - 'testsuite/fixtures/catalog_200_categories_80k_products_with_tags.php', - ), - 'arguments' => array( - 'loops' => 5, - 'reindex' => 'tag_summary', - ), - ), - ), - ), - 'report_dir' => 'report', -); diff --git a/dev/build/core_dev/static/build.xml b/dev/build/core_dev/static/build.xml deleted file mode 100644 index 03fcde12e39dd3c2c737c439cd27778901b0b265..0000000000000000000000000000000000000000 --- a/dev/build/core_dev/static/build.xml +++ /dev/null @@ -1,106 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- -/** - * Apache Ant's build file for core development static tests - * - * Magento - * - * NOTICE OF LICENSE - * - * This source file is subject to the Academic Free License (AFL 3.0) - * that is bundled with this package in the file LICENSE_AFL.txt. - * It is also available through the world-wide-web at this URL: - * http://opensource.org/licenses/afl-3.0.php - * If you did not receive a copy of the license and are unable to - * obtain it through the world-wide-web, please send an email - * to license@magentocommerce.com so we can send you a copy immediately. - * - * DISCLAIMER - * - * Do not edit or add to this file if you wish to upgrade Magento to newer - * versions in the future. If you wish to customize Magento for your - * needs please refer to http://www.magentocommerce.com for more information. - * - * @category dev - * @package build - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) - * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) - */ ---> -<project name="Core Development Static Tests" basedir="../../../../" default="_static_tests_all"> - <import file="../util.xml"/> - - <target name="_jshint_path_substitution" description="JsHint Javascript file path substitution from environment variable"> - <fail unless="phpunit_config_file" message="Property 'phpunit_config_file' must be defined"/> - <fail unless="env.JsHintPath" message="Environment variable 'JsHintPath' must be defined"/> - <replace file="${phpunit_config_file}"> - <replacefilter token="{{tests_jshint_path}}" value="${env.JsHintPath}"/> - </replace> - </target> - - <target name="_static_tests_no_js" depends="_product_location" description="All static tests without JS static test"> - <copy file="${basedir}/dev/build/core_dev/static/phpunit.php.xml" - tofile="${product_root_dir}/dev/tests/static/phpunit.xml" overwrite="true"/> - <copy file="${basedir}/dev/build/core_dev/static/pdepend.xml" - tofile="${product_root_dir}/dev/tests/static/pdepend.xml" overwrite="true"/> - <exec dir="${product_root_dir}/dev/tests/static" executable="phpunit" failonerror="true"> - <arg line="--log-junit ${basedir}/static_tests_no_js.xml"/> - </exec> - </target> - - <target name="_code_legacy_tests" depends="_product_location" description="Code Legacy Tests"> - <copy file="${basedir}/dev/build/core_dev/static/phpunit.legacy.xml" - tofile="${product_root_dir}/dev/tests/static/phpunit.xml" overwrite="true"/> - <exec dir="${product_root_dir}/dev/tests/static" executable="phpunit" failonerror="true"> - <arg line="--log-junit ${basedir}/code_legacy_tests.xml"/> - </exec> - </target> - - <target name="_sanity_check" depends="_product_location" description="Static sanity check"> - <fail unless="product_edition_code" message="Property 'product_edition_code' must be defined"/> - <exec executable="php" failonerror="true"> - <arg line="-f ${basedir}/dev/build/publication/sanity/sanity.php -- - -w ${product_root_dir} - -c ${basedir}/dev/build/publication/sanity/${product_edition_code}.xml - -v - "/> - </exec> - </target> - - <target name="static_tests_ee" description="Static tests for EE"> - <antcall> - <param name="license_replacement_enabled" value="true"/> - <param name="product_edition_code" value="ee"/> - <target name="_product_edition"/> - <target name="_static_tests_no_js"/> - <target name="_sanity_check"/> - </antcall> - </target> - <target name="static_tests_ce" description="Static tests for CE"> - <antcall> - <param name="license_replacement_enabled" value="true"/> - <param name="product_edition_code" value="ce"/> - <target name="_product_edition"/> - <target name="_static_tests_no_js"/> - <target name="_sanity_check"/> - </antcall> - </target> - - <target name="static_tests_js" depends="_product_location" description="JS static tests"> - <copy file="${basedir}/dev/build/core_dev/static/phpunit.js.xml" - tofile="${product_root_dir}/dev/tests/static/phpunit.xml" overwrite="true"/> - <antcall target="_jshint_path_substitution"> - <param name="phpunit_config_file" value="${product_root_dir}/dev/tests/static/phpunit.xml"/> - </antcall> - <exec dir="${product_root_dir}/dev/tests/static" executable="phpunit" failonerror="true"> - <arg line="--log-junit ${basedir}/static_tests_js.xml"/> - </exec> - </target> - - <target name="code_legacy_tests" description="Code Legacy Tests"> - <antcall> - <target name="_code_legacy_tests"/> - </antcall> - </target> - -</project> diff --git a/dev/build/core_dev/static/pdepend.xml b/dev/build/core_dev/static/pdepend.xml deleted file mode 100644 index 0a781e9c37eb5a1164dcb3eef61bca77706e08a0..0000000000000000000000000000000000000000 --- a/dev/build/core_dev/static/pdepend.xml +++ /dev/null @@ -1,35 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!-- -/** - * PHP Depend configuration - * @link http://pdepend.org/documentation/handbook/configuration/index.html - * - * Magento - * - * NOTICE OF LICENSE - * - * This source file is subject to the Academic Free License (AFL 3.0) - * that is bundled with this package in the file LICENSE_AFL.txt. - * It is also available through the world-wide-web at this URL: - * http://opensource.org/licenses/afl-3.0.php - * If you did not receive a copy of the license and are unable to - * obtain it through the world-wide-web, please send an email - * to license@magentocommerce.com so we can send you a copy immediately. - * - * DISCLAIMER - * - * Do not edit or add to this file if you wish to upgrade Magento to newer - * versions in the future. If you wish to customize Magento for your - * needs please refer to http://www.magentocommerce.com for more information. - * - * @category tests - * @package static - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) - * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) - */ ---> -<configuration> - <cache> - <driver>memory</driver> - </cache> -</configuration> diff --git a/dev/build/core_dev/static/phpunit.js.xml b/dev/build/core_dev/static/phpunit.js.xml deleted file mode 100644 index 7dfb3a8c8c9cf0d5e177eed348e6bfc66339cc62..0000000000000000000000000000000000000000 --- a/dev/build/core_dev/static/phpunit.js.xml +++ /dev/null @@ -1,43 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!-- -/** - * Test suite to run JSHint javascript static code analysis - * - * Magento - * - * NOTICE OF LICENSE - * - * This source file is subject to the Academic Free License (AFL 3.0) - * that is bundled with this package in the file LICENSE_AFL.txt. - * It is also available through the world-wide-web at this URL: - * http://opensource.org/licenses/afl-3.0.php - * If you did not receive a copy of the license and are unable to - * obtain it through the world-wide-web, please send an email - * to license@magentocommerce.com so we can send you a copy immediately. - * - * DISCLAIMER - * - * Do not edit or add to this file if you wish to upgrade Magento to newer - * versions in the future. If you wish to customize Magento for your - * needs please refer to http://www.magentocommerce.com for more information. - * - * @category tests - * @package static - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) - * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) - */ ---> -<phpunit bootstrap="./framework/bootstrap.php"> - <testsuites> - <testsuite name="Javascript Static Code Analysis"> - <file>testsuite/Js/LiveCodeTest.php</file> - </testsuite> - </testsuites> - <php> - <ini name="date.timezone" value="America/Los_Angeles"/> - <!-- TESTS_JSHINT_PATH specify the path to wsh.js on Windows and jshint-rhino.js on Linux --> - <const name="TESTS_JSHINT_PATH" value="{{tests_jshint_path}}"/> - <!-- JSHint global options for code verification. See: http://www.jshint.com/docs/ --> - <const name="TESTS_JSHINT_OPTIONS" value=""/> - </php> -</phpunit> \ No newline at end of file diff --git a/dev/build/core_dev/static/phpunit.legacy.xml b/dev/build/core_dev/static/phpunit.legacy.xml deleted file mode 100644 index 815c344285a2e0b63dd4c7dbab71cbffd5a0ec46..0000000000000000000000000000000000000000 --- a/dev/build/core_dev/static/phpunit.legacy.xml +++ /dev/null @@ -1,39 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!-- -/** - * Test suite to run PHP code legacy tests - * - * Magento - * - * NOTICE OF LICENSE - * - * This source file is subject to the Academic Free License (AFL 3.0) - * that is bundled with this package in the file LICENSE_AFL.txt. - * It is also available through the world-wide-web at this URL: - * http://opensource.org/licenses/afl-3.0.php - * If you did not receive a copy of the license and are unable to - * obtain it through the world-wide-web, please send an email - * to license@magentocommerce.com so we can send you a copy immediately. - * - * DISCLAIMER - * - * Do not edit or add to this file if you wish to upgrade Magento to newer - * versions in the future. If you wish to customize Magento for your - * needs please refer to http://www.magentocommerce.com for more information. - * - * @category tests - * @package static - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) - * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) - */ ---> -<phpunit bootstrap="./framework/bootstrap.php"> - <testsuites> - <testsuite name="Code Legacy Tests"> - <directory>testsuite/Legacy</directory> - </testsuite> - </testsuites> - <php> - <ini name="date.timezone" value="America/Los_Angeles"/> - </php> -</phpunit> diff --git a/dev/build/core_dev/static/phpunit.php.xml b/dev/build/core_dev/static/phpunit.php.xml deleted file mode 100644 index 87b25fd6eb6fe99ed0fff1b7b18b794acab15f93..0000000000000000000000000000000000000000 --- a/dev/build/core_dev/static/phpunit.php.xml +++ /dev/null @@ -1,42 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!-- -/** - * Test suite to run PHP static code analysis - * - * Magento - * - * NOTICE OF LICENSE - * - * This source file is subject to the Academic Free License (AFL 3.0) - * that is bundled with this package in the file LICENSE_AFL.txt. - * It is also available through the world-wide-web at this URL: - * http://opensource.org/licenses/afl-3.0.php - * If you did not receive a copy of the license and are unable to - * obtain it through the world-wide-web, please send an email - * to license@magentocommerce.com so we can send you a copy immediately. - * - * DISCLAIMER - * - * Do not edit or add to this file if you wish to upgrade Magento to newer - * versions in the future. If you wish to customize Magento for your - * needs please refer to http://www.magentocommerce.com for more information. - * - * @category tests - * @package static - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) - * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) - */ ---> -<phpunit bootstrap="./framework/bootstrap.php"> - <testsuites> - <testsuite name="PHP Coding Standard Verification"> - <file>testsuite/Php/LiveCodeTest.php</file> - </testsuite> - <testsuite name="Code Integrity Tests"> - <directory>testsuite/Integrity</directory> - </testsuite> - </testsuites> - <php> - <ini name="date.timezone" value="America/Los_Angeles"/> - </php> -</phpunit> diff --git a/dev/build/core_dev/unit/build.xml b/dev/build/core_dev/unit/build.xml deleted file mode 100644 index f6898739dde7c6c3ee13311a8f724b0dd83c4f32..0000000000000000000000000000000000000000 --- a/dev/build/core_dev/unit/build.xml +++ /dev/null @@ -1,95 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- -/** - * Apache Ant's build file for core development unit tests - * - * Magento - * - * NOTICE OF LICENSE - * - * This source file is subject to the Academic Free License (AFL 3.0) - * that is bundled with this package in the file LICENSE_AFL.txt. - * It is also available through the world-wide-web at this URL: - * http://opensource.org/licenses/afl-3.0.php - * If you did not receive a copy of the license and are unable to - * obtain it through the world-wide-web, please send an email - * to license@magentocommerce.com so we can send you a copy immediately. - * - * DISCLAIMER - * - * Do not edit or add to this file if you wish to upgrade Magento to newer - * versions in the future. If you wish to customize Magento for your - * needs please refer to http://www.magentocommerce.com for more information. - * - * @category dev - * @package build - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) - * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) - */ ---> -<project name="Core Development Unit Tests" basedir="../../../../" default="_unit_tests_all"> - <import file="../util.xml"/> - - <target name="_jstestdriver_path_substitution" description="JsTestDriver JAR file path substitution in configuration file from environment variable"> - <fail unless="jstestdriver_config_file" message="Property 'jstestdriver_config_file' must be defined"/> - <fail unless="env.JsTestDriver" message="Environment variable 'JsTestDriver' must be defined"/> - <replace file="${jstestdriver_config_file}"> - <replacefilter token="{{path_to_jstestdriver_jar}}" value="${env.JsTestDriver}"/> - </replace> - </target> - - <target name="_unit_tests_magento" depends="_product_location" description="Product unit tests"> - <exec dir="${product_root_dir}/dev/tests/unit" executable="phpunit" failonerror="true"> - <arg line="--log-junit ${basedir}/unit_tests_magento.xml"/> - </exec> - </target> - <target name="_unit_tests_integration_framework" depends="_product_location" description="Unit tests for integration testing framework"> - <exec dir="${product_root_dir}/dev/tests/integration/framework/tests/unit" executable="phpunit" failonerror="true"> - <arg line="--log-junit ${basedir}/unit_tests_integration_framework.xml"/> - </exec> - </target> - <target name="_unit_tests_performance_framework" depends="_product_location" description="Unit tests for performance testing framework"> - <exec dir="${product_root_dir}/dev/tests/performance/framework/tests/unit" executable="phpunit" failonerror="true"> - <arg line="--log-junit ${basedir}/unit_tests_performance_framework.xml"/> - </exec> - </target> - <target name="_unit_tests_static_framework" depends="_product_location" description="Unit tests for static code analysis framework"> - <exec dir="${product_root_dir}/dev/tests/static/framework/tests/unit" executable="phpunit" failonerror="true"> - <arg line="--log-junit ${basedir}/unit_tests_static_framework.xml"/> - </exec> - </target> - <target name="_unit_tests_unit_framework" depends="_product_location" description="Unit tests for unit testing framework"> - <exec dir="${product_root_dir}/dev/tests/unit/framework/tests/unit" executable="phpunit" failonerror="true"> - <arg line="--log-junit ${basedir}/unit_tests_unit_framework.xml"/> - </exec> - </target> - - <target name="_unit_tests_all" description="All unit tests"> - <antcall> - <target name="_unit_tests_magento"/> - <target name="_unit_tests_integration_framework"/> - <target name="_unit_tests_performance_framework"/> - <target name="_unit_tests_static_framework"/> - <target name="_unit_tests_unit_framework"/> - </antcall> - </target> - - <target name="unit_tests_ee" description="Unit tests for EE"> - <antcall target="_unit_tests_all"/> - </target> - <target name="unit_tests_ce" depends="_community_edition" description="Unit tests for CE"> - <antcall target="_unit_tests_all"/> - </target> - - <target name="unit_tests_js" depends="_product_location" description="Javascript unit tests"> - <copy file="${product_root_dir}/dev/tests/js/jsTestDriver.php.dist" - tofile="${product_root_dir}/dev/tests/js/jsTestDriver.php" overwrite="true"/> - <antcall target="_jstestdriver_path_substitution"> - <param name="jstestdriver_config_file" value="${product_root_dir}/dev/tests/js/jsTestDriver.php"/> - </antcall> - <exec executable="php" failonerror="true"> - <arg value="${product_root_dir}/dev/tests/js/run_js_tests.php"/> - </exec> - </target> - -</project> diff --git a/dev/build/core_dev/util.xml b/dev/build/core_dev/util.xml deleted file mode 100644 index c081970f01aafe4b029f22473f6662a883dd7938..0000000000000000000000000000000000000000 --- a/dev/build/core_dev/util.xml +++ /dev/null @@ -1,95 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- -/** - * Apache Ant's build file with general-purpose routines common to various CI builds - * - * Magento - * - * NOTICE OF LICENSE - * - * This source file is subject to the Academic Free License (AFL 3.0) - * that is bundled with this package in the file LICENSE_AFL.txt. - * It is also available through the world-wide-web at this URL: - * http://opensource.org/licenses/afl-3.0.php - * If you did not receive a copy of the license and are unable to - * obtain it through the world-wide-web, please send an email - * to license@magentocommerce.com so we can send you a copy immediately. - * - * DISCLAIMER - * - * Do not edit or add to this file if you wish to upgrade Magento to newer - * versions in the future. If you wish to customize Magento for your - * needs please refer to http://www.magentocommerce.com for more information. - * - * @category dev - * @package build - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) - * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) - */ ---> -<project name="Core Development General-Purpose Routines" basedir="../../../" default="_community_edition"> - <property environment="env"/> - - <target name="_product_location" description="Detection of a product source code root directory"> - <condition property="product_root_dir" value="${basedir}"> - <not><isset property="product_root_dir"/></not> - </condition> - </target> - - <target name="_product_edition_files" depends="_product_location" description="Removal of files, which do not belong to a product edition"> - <fail unless="product_edition_code" message="Property 'product_edition_code' must be defined"/> - <exec executable="php" failonerror="true"> - <arg line="-f ${basedir}/dev/build/extruder.php -- - -w ${product_root_dir} - -l ${basedir}/dev/build/publication/extruder/common.txt - -l ${basedir}/dev/build/publication/extruder/${product_edition_code}.txt - -v - "/> - </exec> - </target> - <target name="_license_replacement" depends="_product_location" description="License notices replacement" if="license_replacement_enabled"> - <fail unless="product_edition_code" message="Property 'product_edition_code' must be defined"/> - <exec executable="php" failonerror="true"> - <arg line="-f ${basedir}/dev/build/publication/license/license-tool.php -- - -w ${product_root_dir} - -e ${product_edition_code} - -v - "/> - </exec> - </target> - <target name="_product_edition" description="Product edition source code preparation"> - <antcall> - <target name="_product_edition_files"/> - <target name="_license_replacement"/> - </antcall> - </target> - <target name="_community_edition" description="Community Edition source code preparation"> - <antcall target="_product_edition"> - <param name="product_edition_code" value="ce"/> - </antcall> - </target> - - <target name="_database_credential_substitution" description="Database credentials substitution in configuration file from environment variables"> - <fail unless="db_config_file" message="Property 'db_config_file' must be defined"/> - <fail unless="env.db_host" message="Environment variable 'db_host' must be defined"/> - <fail unless="env.db_name" message="Environment variable 'db_name' must be defined"/> - <fail unless="env.db_user" message="Environment variable 'db_user' must be defined"/> - <fail unless="env.db_password" message="Environment variable 'db_password' must be defined"/> - <replace file="${db_config_file}"> - <replacefilter token="{{db_host}}" value="${env.db_host}"/> - <replacefilter token="{{db_name}}" value="${env.db_name}"/> - <replacefilter token="{{db_user}}" value="${env.db_user}"/> - <replacefilter token="{{db_password}}" value="${env.db_password}"/> - </replace> - </target> - - <target name="_installation_requirements" depends="_product_location" description="Environment setup for product installation"> - <chmod perm="a+w"> - <dirset dir="${product_root_dir}/app/etc"/> - <dirset dir="${product_root_dir}/pub/media"/> - <fileset dir="${product_root_dir}/pub/media"/> - <dirset dir="${product_root_dir}/var"/> - </chmod> - </target> - -</project> diff --git a/dev/build/customization/functional/dev/tests/functional/config/config.yml b/dev/build/customization/functional/dev/tests/functional/config/config.yml deleted file mode 100644 index b2454d0d3a86db4e71bc4b75a1b2b129d5c42bd8..0000000000000000000000000000000000000000 --- a/dev/build/customization/functional/dev/tests/functional/config/config.yml +++ /dev/null @@ -1,104 +0,0 @@ -# -# {license_notice} -# -# @category tests -# @package selenium -# @subpackage configuration -# @copyright {copyright} -# @license {license_link} ---- -################################################################################ -# # -# Browsers for running tests # -# # -################################################################################ -browsers: - firefox: &firefox - name: 'Firefox' - browser: '*firefox' - host: '{{selenium_host}}' - port: {{selenium_port}} - timeout: 1000 - restartBrowser: false - default: *firefox -################################################################################ -# # -# Framework configuration # -# # -################################################################################ -framework: - fixture_base_path: 'fixture' - testsuite_base_path: 'testsuite' - #work only if tests are run for single browser - shareSession: true - coverageScriptUrl: '' - #captureScreenshotOnFailure works only for browsers that support it: Firefox/Chrome, IE with snapsIE tool - captureScreenshotOnFailure: true - saveHtmlPageOnFailure: true - load_all_uimaps: true - load_all_data: true - load_all_fixtures: true - cache: - frontend: - name: 'core' - options: - caching: false - cache_id_prefix: 'selenium_' - automatic_serialization: true - backend: - name: 'file' - options: '' - cache_dir: 'var/cache' -################################################################################ -# # -# Applications for running tests # -# # -################################################################################ -applications: - mage: &mage - fallbackOrderFixture: 'community2, default' - fallbackOrderHelper: 'Community2, Core' - areas: - admin: - url: '{{admin_url}}' - base_page_uimap: 'log_in_to_admin' - uimap_path: 'admin' - login: 'admin' - password: '123123q' - frontend: - url: '{{url}}' - base_page_uimap: 'home_page' - uimap_path: 'frontend' - login: '' - password: '' - paypal_sandbox: &paypalSandbox - url: 'https://www.sandbox.paypal.com/' - base_page_uimap: 'paypal_sandbox' - uimap_path: 'paypal_sandbox' - login: 'paypal_sandbox_login' - password: 'paypal_sandbox_password' - paypal_developer: &paypalDeveloper - url: 'https://developer.paypal.com/' - base_page_uimap: 'paypal_developer_home' - uimap_path: 'paypal_developer' - login: 'ssergunin@ebay.com' - password: 'magentoTAF1' - enterprise: &enterprise - fallbackOrderFixture: 'enterprise2, enterprise, default' - fallbackOrderHelper: 'Enterprise2, Enterprise, Core' - areas: - admin: - url: '{{enterprise_admin_url}}' - base_page_uimap: 'log_in_to_admin' - uimap_path: 'admin' - login: 'admin' - password: '123123q' - frontend: - url: '{{enterprise_url}}' - base_page_uimap: 'home_page' - uimap_path: 'frontend' - login: '' - password: '' - paypal_sandbox: *paypalSandbox - paypal_developer: *paypalDeveloper - default: *{{selenium_testsuite}} diff --git a/dev/build/customization/functional/dev/tests/functional/config/install.php b/dev/build/customization/functional/dev/tests/functional/config/install.php deleted file mode 100644 index fa01efb0bdcb4a502389523ff25cf41417c19592..0000000000000000000000000000000000000000 --- a/dev/build/customization/functional/dev/tests/functional/config/install.php +++ /dev/null @@ -1,57 +0,0 @@ -<?php -/** - * Magento - * - * NOTICE OF LICENSE - * - * This source file is subject to the Open Software License (OSL 3.0) - * that is bundled with this package in the file LICENSE.txt. - * It is also available through the world-wide-web at this URL: - * http://opensource.org/licenses/osl-3.0.php - * If you did not receive a copy of the license and are unable to - * obtain it through the world-wide-web, please send an email - * to license@magentocommerce.com so we can send you a copy immediately. - * - * DISCLAIMER - * - * Do not edit or add to this file if you wish to upgrade Magento to newer - * versions in the future. If you wish to customize Magento for your - * needs please refer to http://www.magentocommerce.com for more information. - * - * @category tests - * @package selenium - * @subpackage configuration - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) - * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) - */ - -return array( - /** - * Console installer options - * @see Mage_Install_Model_Installer_Console::_installOptions - */ - 'install_options' => array( - 'license_agreement_accepted' => 'yes', - 'locale' => 'en_US', - 'timezone' => 'America/Los_Angeles', - 'default_currency' => 'USD', - 'db_model' => '{{db_model}}', - 'db_host' => '{{db_host}}', - 'db_name' => '{{db_name}}', - 'db_user' => '{{db_user}}', - 'db_pass' => '{{db_password}}', - 'use_secure' => 'yes', - 'use_secure_admin' => 'yes', - 'admin_no_form_key' => 'yes', - 'use_rewrites' => 'no', - 'admin_lastname' => 'Admin', - 'admin_firstname' => 'Admin', - 'admin_email' => 'admin@example.com', - 'admin_username' => 'admin', - 'admin_password' => '123123q', // must be at least of 7 both numeric and alphanumeric characters - 'url' => '{{url}}', - 'secure_base_url' => '{{secure_url}}', - 'session_save' => 'db', - 'cleanup_database' => true, - ) -); diff --git a/dev/build/customization/functional/dev/tests/functional/phpunit.xml b/dev/build/customization/functional/dev/tests/functional/phpunit.xml deleted file mode 100644 index a76c8bdaaf7cd0767553941c584a3dbf21210918..0000000000000000000000000000000000000000 --- a/dev/build/customization/functional/dev/tests/functional/phpunit.xml +++ /dev/null @@ -1,70 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!-- -/** - * Magento - * - * NOTICE OF LICENSE - * - * This source file is subject to the Academic Free License (AFL 3.0) - * that is bundled with this package in the file LICENSE_AFL.txt. - * It is also available through the world-wide-web at this URL: - * http://opensource.org/licenses/afl-3.0.php - * If you did not receive a copy of the license and are unable to - * obtain it through the world-wide-web, please send an email - * to license@magentocommerce.com so we can send you a copy immediately. - * - * DISCLAIMER - * - * Do not edit or add to this file if you wish to upgrade Magento to newer - * versions in the future. If you wish to customize Magento for your - * needs please refer to http://www.magentocommerce.com for more information. - * - * @category tests - * @package selenium - * @subpackage runner - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) - * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) - */ ---> -<phpunit backupGlobals="true" - backupStaticAttributes="false" - bootstrap="./framework/bootstrap.php" - cacheTokens="true" - colors="false" - convertErrorsToExceptions="true" - convertNoticesToExceptions="true" - convertWarningsToExceptions="true" - forceCoversAnnotation="false" - mapTestClassNameToCoveredClassName="false" - processIsolation="false" - stopOnError="false" - stopOnFailure="false" - stopOnIncomplete="false" - stopOnSkipped="false" - testSuiteLoaderClass="PHPUnit_Runner_StandardTestSuiteLoader" - strict="false" - verbose="true"> - <testsuites> - <testsuite name="All Tests"> - <!--<directory suffix="Test.php">testsuite/Core/Mage/Customer</directory> - <directory suffix="Test.php">testsuite/Core/Mage/Product</directory>--> - <file>testsuite/Core/Mage/Product/ReviewTest.php</file> - <file>testsuite/Core/Mage/Product/DeleteTest.php</file> - <file>testsuite/Core/Mage/Product/Create/BundleTest.php</file> - <file>testsuite/Core/Mage/Product/Linking/SimpleLinkingTest.php</file> - </testsuite> - </testsuites> - <php> - <!-- Whether to install the application before tests execution. Value 'enabled' turns installation on. --> - <const name="SELENIUM_TESTS_INSTALLATION" value="enabled"/> - <!-- Whether to perform a cleanup to guarantee the "clean" installation before the next tests execution. --> - <const name="SELENIUM_TESTS_INSTALLATION_CLEANUP" value="enabled"/> - </php> - <logging> - <log type="json" target="./var/logs/logfile.json"/> - <log type="tap" target="./var/logs/logfile.tap"/> - <log type="junit" target="./var/logs/logfile.xml" logIncompleteSkipped="false"/> - <log type="testdox-html" target="./var/logs/testdox.html"/> - <log type="testdox-text" target="./var/logs/testdox.txt"/> - </logging> -</phpunit> diff --git a/dev/build/customization/mysql/app/etc/config.php b/dev/build/customization/mysql/app/etc/config.php deleted file mode 100644 index 12dc136d7262fe2cad140099f6521d6a47d0f9ac..0000000000000000000000000000000000000000 --- a/dev/build/customization/mysql/app/etc/config.php +++ /dev/null @@ -1,53 +0,0 @@ -<?php -/** - * Magento - * - * NOTICE OF LICENSE - * - * This source file is subject to the Open Software License (OSL 3.0) - * that is bundled with this package in the file LICENSE.txt. - * It is also available through the world-wide-web at this URL: - * http://opensource.org/licenses/osl-3.0.php - * If you did not receive a copy of the license and are unable to - * obtain it through the world-wide-web, please send an email - * to license@magentocommerce.com so we can send you a copy immediately. - * - * DISCLAIMER - * - * Do not edit or add to this file if you wish to upgrade Magento to newer - * versions in the future. If you wish to customize Magento for your - * needs please refer to http://www.magentocommerce.com for more information. - * - * @category Magento - * @package Magento - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) - * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) - */ - -return array( - /** - * Console installer options - * @see Mage_Install_Model_Installer_Console::_installOptions - */ - 'install_options' => array( - 'license_agreement_accepted' => 'yes', - 'locale' => 'en_US', - 'timezone' => 'America/Los_Angeles', - 'default_currency' => 'USD', - 'db_host' => '{{db_host}}', - 'db_name' => '{{db_name}}', - 'db_user' => '{{db_user}}', - 'db_pass' => '{{db_password}}', - 'url' => '{{url}}', - 'secure_base_url' => '{{secure_url}}', - 'use_secure' => 'no', - 'use_secure_admin' => 'no', - 'use_rewrites' => 'no', - 'admin_lastname' => 'Admin', - 'admin_firstname' => 'Admin', - 'admin_email' => 'admin@example.com', - 'admin_username' => 'admin', - 'admin_password' => '123123q' // must be at least of 7 both numeric and alphanumeric characters - ), - 'report_dir' => 'report' -); diff --git a/dev/build/customization/mysql/dev/tests/integration/etc/local-mysql.xml b/dev/build/customization/mysql/dev/tests/integration/etc/local-mysql.xml deleted file mode 100644 index eb3e0f5688f6cf7e87fb7efa2a55a844490ef35f..0000000000000000000000000000000000000000 --- a/dev/build/customization/mysql/dev/tests/integration/etc/local-mysql.xml +++ /dev/null @@ -1,73 +0,0 @@ -<?xml version="1.0"?> -<!-- -/** - * Magento - * - * NOTICE OF LICENSE - * - * This source file is subject to the Academic Free License (AFL 3.0) - * that is bundled with this package in the file LICENSE_AFL.txt. - * It is also available through the world-wide-web at this URL: - * http://opensource.org/licenses/afl-3.0.php - * If you did not receive a copy of the license and are unable to - * obtain it through the world-wide-web, please send an email - * to license@magentocommerce.com so we can send you a copy immediately. - * - * DISCLAIMER - * - * Do not edit or add to this file if you wish to upgrade Magento to newer - * versions in the future. If you wish to customize Magento for your - * needs please refer to http://www.magentocommerce.com for more information. - * - * @category Magento - * @package Magento - * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) - * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) - */ ---> -<config> - <global> - <install> - <!-- Important: validity of installation date indicates whether an application is installed or not --> - <date><![CDATA[d-d-d-d-d]]></date> - </install> - <crypt> - <key><![CDATA[k-k-k-k-k]]></key> - </crypt> - <disable_local_modules>false</disable_local_modules> - <resources> - <db> - <table_prefix><![CDATA[]]></table_prefix> - </db> - <default_setup> - <connection> - <host><![CDATA[localhost]]></host> - <username><![CDATA[root]]></username> - <password><![CDATA[]]></password> - <dbname><![CDATA[bamboo_integration]]></dbname> - <initStatements><![CDATA[SET NAMES utf8]]></initStatements> - <model><![CDATA[mysql4]]></model> - <type><![CDATA[pdo_mysql]]></type> - <pdoType><![CDATA[]]></pdoType> - <active>1</active> - </connection> - </default_setup> - </resources> - <session_save><![CDATA[files]]></session_save> - <resource> - <connection> - <types> - <pdo_mysql> - <adapter><![CDATA[Magento_Test_Db_Adapter_Mysql]]></adapter> - </pdo_mysql> - </types> - </connection> - </resource> - <areas> - <adminhtml> - <frontName><![CDATA[backend]]></frontName> - </adminhtml> - </areas> - </global> -</config> diff --git a/dev/build/customization/mysql/dev/tests/integration/phpunit.xml b/dev/build/customization/mysql/dev/tests/integration/phpunit.xml deleted file mode 100644 index 6d40252339f98a035f7f7bca84e5ff9d5037aafd..0000000000000000000000000000000000000000 --- a/dev/build/customization/mysql/dev/tests/integration/phpunit.xml +++ /dev/null @@ -1,49 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!-- -/** - * Magento - * - * NOTICE OF LICENSE - * - * This source file is subject to the Academic Free License (AFL 3.0) - * that is bundled with this package in the file LICENSE_AFL.txt. - * It is also available through the world-wide-web at this URL: - * http://opensource.org/licenses/afl-3.0.php - * If you did not receive a copy of the license and are unable to - * obtain it through the world-wide-web, please send an email - * to license@magentocommerce.com so we can send you a copy immediately. - * - * DISCLAIMER - * - * Do not edit or add to this file if you wish to upgrade Magento to newer - * versions in the future. If you wish to customize Magento for your - * needs please refer to http://www.magentocommerce.com for more information. - * - * @category Magento - * @package Magento - * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) - * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) - */ ---> -<phpunit bootstrap="./framework/bootstrap.php"> - <testsuites> - <testsuite name="Magento Integration Tests"> - <directory suffix="Test.php">testsuite</directory> - <exclude>testsuite/integrity</exclude> - </testsuite> - </testsuites> - - <php> - <includePath>.</includePath> - <ini name="date.timezone" value="America/Los_Angeles"/> - <const name="TESTS_LOCAL_CONFIG_FILE" value="etc/local-mysql.xml"/> - <const name="TESTS_GLOBAL_CONFIG_FILES" value="../../../app/etc/*.xml"/> - <const name="TESTS_MODULE_CONFIG_FILES" value="../../../app/etc/modules/*.xml;etc/modules/*.xml"/> - <const name="TESTS_CLEANUP_ACTION" value="uninstall"/> - <!--<const name="TESTS_MAGENTO_DEVELOPER_MODE" value="enabled"/>--> - </php> - <listeners> - <listener class="Magento_Test_Event_PhpUnit"/> - </listeners> -</phpunit> diff --git a/dev/build/customization/static/dev/tests/static/phpunit.xml b/dev/build/customization/static/dev/tests/static/phpunit.xml deleted file mode 100644 index 54f200e870988cd8bb329d1d12400998ba8a6d9d..0000000000000000000000000000000000000000 --- a/dev/build/customization/static/dev/tests/static/phpunit.xml +++ /dev/null @@ -1,49 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!-- -/** - * Test suite to run JSHint javascript static code analysis - * - * Magento - * - * NOTICE OF LICENSE - * - * This source file is subject to the Academic Free License (AFL 3.0) - * that is bundled with this package in the file LICENSE_AFL.txt. - * It is also available through the world-wide-web at this URL: - * http://opensource.org/licenses/afl-3.0.php - * If you did not receive a copy of the license and are unable to - * obtain it through the world-wide-web, please send an email - * to license@magentocommerce.com so we can send you a copy immediately. - * - * DISCLAIMER - * - * Do not edit or add to this file if you wish to upgrade Magento to newer - * versions in the future. If you wish to customize Magento for your - * needs please refer to http://www.magentocommerce.com for more information. - * - * @category tests - * @package static - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) - * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) - */ ---> -<phpunit bootstrap="./framework/bootstrap.php"> - <testsuites> - <testsuite name="Javascript Static Code Analysis"> - <file>testsuite/Js/LiveCodeTest.php</file> - </testsuite> - <testsuite name="PHP Coding Standard Verification"> - <file>testsuite/Php/LiveCodeTest.php</file> - </testsuite> - <testsuite name="Code Integrity Tests"> - <directory>testsuite/Integrity</directory> - </testsuite> - </testsuites> - <php> - <ini name="date.timezone" value="America/Los_Angeles"/> - <!-- TESTS_JSHINT_PATH specify the path to wsh.js on Windows and jshint-rhino.js on Linux --> - <const name="TESTS_JSHINT_PATH" value="{{tests_jshint_path}}"/> - <!-- JSHint global options for code verification. See: http://www.jshint.com/docs/ --> - <const name="TESTS_JSHINT_OPTIONS" value=""/> - </php> -</phpunit> \ No newline at end of file diff --git a/dev/build/extruder.php b/dev/build/extruder.php deleted file mode 100644 index 8e1b4f4e59e4ee9448a1523aa44b8a4af666fee0..0000000000000000000000000000000000000000 --- a/dev/build/extruder.php +++ /dev/null @@ -1,109 +0,0 @@ -#!/usr/bin/php -<?php -/** - * Magento - * - * NOTICE OF LICENSE - * - * This source file is subject to the Open Software License (OSL 3.0) - * that is bundled with this package in the file LICENSE.txt. - * It is also available through the world-wide-web at this URL: - * http://opensource.org/licenses/osl-3.0.php - * If you did not receive a copy of the license and are unable to - * obtain it through the world-wide-web, please send an email - * to license@magentocommerce.com so we can send you a copy immediately. - * - * DISCLAIMER - * - * Do not edit or add to this file if you wish to upgrade Magento to newer - * versions in the future. If you wish to customize Magento for your - * needs please refer to http://www.magentocommerce.com for more information. - * - * @category build - * @package extruder - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) - * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) - */ - -require_once __DIR__ . '/../../lib/Magento/Shell.php'; -require_once __DIR__ . '/../../lib/Magento/Exception.php'; // used by Magento_Shell (autoload is not present here) - -define('USAGE', <<<USAGE -$>./extruder.php -w <working_dir> -l /path/to/list.txt [[-l /path/to/extra.txt] parameters] - additional parameters: - -w dir directory with working copy to edit with the extruder - -l one or many files with lists that refer to files and directories to be deleted - -v additional verbosity in output - -USAGE -); - -$options = getopt('w:l:v'); - -try { - // working dir argument - if (empty($options['w'])) { - throw new Exception(USAGE); - } - $workingDir = realpath($options['w']); - if (!$workingDir || !is_writable($workingDir) || !is_dir($workingDir)) { - throw new Exception("'{$options['w']}' must be a writable directory."); - } - - // lists argument - if (empty($options['l'])) { - throw new Exception(USAGE); - } - if (!is_array($options['l'])) { - $options['l'] = array($options['l']); - } - $list = array(); - foreach ($options['l'] as $file) { - if (!is_file($file) || !is_readable($file)) { - throw new Exception("Specified file with patterns does not exist or cannot be read: '{$file}'"); - } - $patterns = file($file, FILE_IGNORE_NEW_LINES); - foreach ($patterns as $pattern) { - if (empty($pattern) || 0 === strpos($pattern, '#')) { // comments start from # - continue; - } - $pattern = $workingDir . DIRECTORY_SEPARATOR . $pattern; - $items = glob($pattern, GLOB_BRACE); - if (empty($items)) { - throw new Exception("glob() pattern '{$pattern}' returned empty result."); - } - $list = array_merge($list, $items); - } - } - if (empty($list)) { - throw new Exception('List of files or directories to delete is empty.'); - } - - // verbosity argument - $verbose = isset($options['v']); - - // perform "extrusion" - $shell = new Magento_Shell($verbose); - foreach ($list as $item) { - if (!file_exists($item)) { - throw new Exception("The file or directory '{$item} is marked for deletion, but it doesn't exist."); - } - $shell->execute( - 'git --git-dir %s --work-tree %s rm -r -f -- %s', - array("{$workingDir}/.git", $workingDir, $item) - ); - if (file_exists($item)) { - throw new Exception("The file or directory '{$item}' was supposed to be deleted, but it still exists."); - } - } - - exit(0); -} catch (Exception $e) { - if ($e->getPrevious()) { - $message = (string)$e->getPrevious(); - } else { - $message = $e->getMessage(); - } - echo $message . PHP_EOL; - exit(1); -} diff --git a/dev/build/profiler_metrics.php b/dev/build/profiler_metrics.php deleted file mode 100644 index 011f887eeeac41a4c448764bf5c7fa577f489a79..0000000000000000000000000000000000000000 --- a/dev/build/profiler_metrics.php +++ /dev/null @@ -1,46 +0,0 @@ -<?php -/** - * Magento - * - * NOTICE OF LICENSE - * - * This source file is subject to the Open Software License (OSL 3.0) - * that is bundled with this package in the file LICENSE.txt. - * It is also available through the world-wide-web at this URL: - * http://opensource.org/licenses/osl-3.0.php - * If you did not receive a copy of the license and are unable to - * obtain it through the world-wide-web, please send an email - * to license@magentocommerce.com so we can send you a copy immediately. - * - * DISCLAIMER - * - * Do not edit or add to this file if you wish to upgrade Magento to newer - * versions in the future. If you wish to customize Magento for your - * needs please refer to http://www.magentocommerce.com for more information. - * - * @category Magento - * @package Magento - * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) - * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) - */ -?> -<?php return array( - 'test execution time (ms)' => array('integration_test'), - /* Application framework metrics */ - 'bootstrap time (ms)' => array('bootstrap'), - 'modules initialization time (ms)' => array('init_modules'), - 'request initialization time (ms)' => array('init_request'), - 'routing time (ms)' => array( - 'routing_init', 'db_url_rewrite', 'config_url_rewrite', 'routing_match_router' - ), - 'pre dispatching time (ms)' => array('predispatch'), - 'layout overhead time (ms)' => array('layout_load', 'layout_generate_xml', 'layout_generate_blocks'), - 'response rendering time (ms)' => array('layout_render'), - 'post dispatching time (ms)' => array('postdispatch', 'response_send'), - /* Mage_Catalog module metrics */ - 'product save time (ms)' => array('catalog_product_save'), - 'product load time (ms)' => array('catalog_product_load'), - 'category save time (ms)' => array('catalog_category_save'), - 'category load time (ms)' => array('catalog_category_load'), -); diff --git a/dev/build/publication/composer.json_ b/dev/build/publication/composer.json_ deleted file mode 100644 index ce3ee5f9ac4d4f938cee648a75e59589eb62659c..0000000000000000000000000000000000000000 --- a/dev/build/publication/composer.json_ +++ /dev/null @@ -1,14 +0,0 @@ -{ - "name": "magento/community-edition", - "description": "eCommerce Platform for Growth (Community Edition)", - "license": ["OSL-3.0", "AFL-3.0"], - "require": { - "php": ">=5.3.0" - }, - "autoload": { - "psr-0": { - "": ["app/code/local", "app/code/community", "app/code/core", "lib"] - } - }, - "minimum-stability": "dev" -} diff --git a/dev/build/publication/extruder/ce.txt b/dev/build/publication/extruder/ce.txt deleted file mode 100644 index 8e48d9abae70f56b3e8b28ddb4d864ae2a527124..0000000000000000000000000000000000000000 --- a/dev/build/publication/extruder/ce.txt +++ /dev/null @@ -1,48 +0,0 @@ -# Files or directories that are not published with Magento CE -# See also common.txt and dev_build.txt for items that are not published as well -# -LICENSE_EE.html -LICENSE_EE.txt -LICENSE_PRO.html -LICENSE_PRO.txt -app/code/core/Enterprise -app/design/adminhtml/default/enterprise -app/design/adminhtml/default/pro -app/design/frontend/enterprise -app/design/frontend/pro -app/design/install/default/enterprise -app/design/install/default/pro -app/etc/enterprise.xml -app/etc/modules -app/etc/aliases_to_classes_map.json -dev/tests/integration/etc/modules/XEnterprise_Enabler.xml -dev/tests/integration/testsuite/Enterprise -dev/tests/integration/testsuite/integrity/modular/ViewFilesTest.php -dev/tests/integration/testsuite/integrity/theme/RenderersTest.php -dev/tests/integration/testsuite/Mage/ImportExport/Model/Import/Entity/_files/customer_composite_update_reward.csv -dev/tests/integration/testsuite/Theme -dev/tests/static/testsuite/Js/_files/whitelist/ee.txt -dev/tests/static/testsuite/Integrity/Enterprise -dev/tests/static/testsuite/Legacy/ProductTypeModelTest.php -dev/tests/static/testsuite/Legacy/_files/obsolete_classes_ee.php -dev/tests/static/testsuite/Legacy/_files/obsolete_constants_ee.php -dev/tests/static/testsuite/Legacy/_files/obsolete_methods_ee.php -dev/tests/static/testsuite/Legacy/_files/obsolete_properties_ee.php -dev/tests/static/testsuite/Legacy/_files/words_ee.xml -dev/tests/static/testsuite/Legacy/Enterprise -dev/tests/static/testsuite/Php/_files/{whitelist,blacklist}/ee.txt -dev/tests/unit/testsuite/Magento/Profiler/Driver/PinbaTest.php -dev/tests/unit/testsuite/Magento/Profiler/_files/pinba_functions.php -dev/tests/unit/testsuite/Enterprise -dev/tools/migration/factory_table_names/replace_ee.php -dev/tools/migration/aliases_map/composite_modules_ee.php -dev/tools/migration/aliases_map/cms_content_tables_ee.php -downloader/Maged/Model/Config/Enterprise.php -downloader/Maged/Model/Config/Professional.php -downloader/skin/install/images/enterprise.gif -downloader/template/enterprise -downloader/template/professional -lib/Apache -lib/Magento/Profiler/Driver/Pinba.php -pub/errors/enterprise -pub/errors/pro diff --git a/dev/build/publication/extruder/common.txt b/dev/build/publication/extruder/common.txt deleted file mode 100644 index 20ffb7c254bf59d6b7b5f333ffca60be6e8b5629..0000000000000000000000000000000000000000 --- a/dev/build/publication/extruder/common.txt +++ /dev/null @@ -1,30 +0,0 @@ -# Files or directories that are not published at all (for any reason, can be non-technical) -# -app/code/*/*/*/Model/Resource/Helper/{Oracle,Mssql}.php -app/code/*/*/*/sql/*/{oracle,mssql}-* -app/code/community/Find -app/code/community/Social -app/code/core/Mage/Install/Block/Db/Type/{Oracle,Mssql}.php -app/code/core/Mage/Install/Model/Installer/Db/{Mssql,Oracle}.php -app/code/core/Mage/Install/view/install/db/{mssql,oracle}.phtml -app/code/core/Mage/Install/view/install/layout_{oracle,mssql}.xml -app/etc/config.{oracle,mssql}.xml -dev/tests/functional -dev/tests/integration/etc/local-{oracle,mssql}.xml.dist -dev/tests/integration/framework/Magento/Test/Db/cleanup_database.{oracle,mssql}.sql -dev/tests/integration/framework/Magento/Test/Db/{Mssql,Oracle}.php -dev/tests/integration/framework/Magento/Test/Db/Adapter/{Mssql,Oracle}.php -dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Db/{Oracle,Mssql}Test.php -dev/tests/integration/testsuite/Social/Facebook -dev/tests/unit/testsuite/Varien/Db/Adapter/Pdo/MssqlTest.php -dev/tests/static/testsuite/Legacy/_files/words_internal.xml -dev/tests/static/testsuite/Php/_files/{whitelist,blacklist}/non_public.txt -dev/tools/translate -lib/Varien/Db/Adapter/Oracle.php -lib/Varien/Db/Adapter/Pdo/Mssql.php -lib/Varien/Db/Statement/Oracle.php -lib/Varien/Db/Statement/Pdo/Mssql.php -lib/Varien/Db/Statement/Sqlsrv.php -app/code/core/Saas -dev/tests/unit/testsuite/Saas -dev/tests/js/testsuite/saas diff --git a/dev/build/publication/extruder/dev_build.txt b/dev/build/publication/extruder/dev_build.txt deleted file mode 100644 index b895485566b5c95258ca97bcf6187b8f7f1b3158..0000000000000000000000000000000000000000 --- a/dev/build/publication/extruder/dev_build.txt +++ /dev/null @@ -1,4 +0,0 @@ -# special case for dev/build: it is not published, but distinguished into a separate list -# because it is used in infrastructure for running tests -dev/build -dev/tools/license_placeholder diff --git a/dev/build/publication/extruder/ee.txt b/dev/build/publication/extruder/ee.txt deleted file mode 100644 index 9e2f4a1e0f37192967fd0357f03d6ff750089850..0000000000000000000000000000000000000000 --- a/dev/build/publication/extruder/ee.txt +++ /dev/null @@ -1 +0,0 @@ -# Magento Enterprise Edition publishing is not implemented yet diff --git a/dev/build/publication/install.php b/dev/build/publication/install.php deleted file mode 100644 index 2ec327c39982ae33b223de4e9f6807d67813166d..0000000000000000000000000000000000000000 --- a/dev/build/publication/install.php +++ /dev/null @@ -1,94 +0,0 @@ -#!/usr/bin/php -<?php -/** - * Magento install script - * - * Magento - * - * NOTICE OF LICENSE - * - * This source file is subject to the Open Software License (OSL 3.0) - * that is bundled with this package in the file LICENSE.txt. - * It is also available through the world-wide-web at this URL: - * http://opensource.org/licenses/osl-3.0.php - * If you did not receive a copy of the license and are unable to - * obtain it through the world-wide-web, please send an email - * to license@magentocommerce.com so we can send you a copy immediately. - * - * DISCLAIMER - * - * Do not edit or add to this file if you wish to upgrade Magento to newer - * versions in the future. If you wish to customize Magento for your - * needs please refer to http://www.magentocommerce.com for more information. - * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) - * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) - */ - -define('SYNOPSIS', <<<SYNOPSIS -php -f install.php -- --build_properties_file "<path_to_file>" - -SYNOPSIS -); - -/** - * Parse command line arguments - */ -$currentArgName = false; -$args = array(); -foreach ($_SERVER['argv'] as $argNameOrValue) { - if (substr($argNameOrValue, 0, 2) == '--') { - // argument name - $currentArgName = substr($argNameOrValue, 2); - // in case if argument doesn't need a value - $args[$currentArgName] = true; - } else { - // argument value - if ($currentArgName) { - $args[$currentArgName] = $argNameOrValue; - } - $currentArgName = false; - } -} - -if (!isset($args['build_properties_file'])) { - echo SYNOPSIS; - exit(1); -} -$baseDir = realpath(__DIR__ . '/../../../'); -$configFile = $args['build_properties_file']; -$configFile = file_exists($configFile) ? $configFile : "$configFile.dist"; -$config = require($configFile); -$installOptions = isset($config['install_options']) ? $config['install_options'] : array(); - -$reportDir = __DIR__ . '/' . $config['report_dir']; - -/* Install application */ -if ($installOptions) { - $installCmd = sprintf('php -f %s --', escapeshellarg("$baseDir/dev/shell/install.php")); - foreach ($installOptions as $optionName => $optionValue) { - $installCmd .= sprintf(' --%s %s', $optionName, escapeshellarg($optionValue)); - } - - passthru($installCmd, $exitCode); - if ($exitCode) { - exit($exitCode); - } -} - -/* Initialize Magento application */ -require_once __DIR__ . '/../../../app/bootstrap.php'; -Mage::app(); - -/* Clean reports */ -Varien_Io_File::rmdirRecursive($reportDir); - -/* Run all indexer processes */ -/** @var $indexer Mage_Index_Model_Indexer */ -$indexer = Mage::getModel('Mage_Index_Model_Indexer'); -/** @var $process Mage_Index_Model_Process */ -foreach ($indexer->getProcessesCollection() as $process) { - if ($process->getIndexer()->isVisible()) { - $process->reindexEverything(); - } -} diff --git a/dev/build/publication/license/Afl.php b/dev/build/publication/license/Afl.php deleted file mode 100644 index 43011b23ca9261c1af996b342967828ea47a0d64..0000000000000000000000000000000000000000 --- a/dev/build/publication/license/Afl.php +++ /dev/null @@ -1,55 +0,0 @@ -<?php -/** - * {license_notice} - * - * @category build - * @package license - * @copyright {copyright} - * @license {license_link} - */ - -/** - * AFL license information class - * - */ -class Afl extends LicenseAbstract -{ - /** - * Prepare short information about license - * - * @return string - */ - public function getNotice() - { - return <<<EOT - * Magento - * - * NOTICE OF LICENSE - * - * This source file is subject to the Academic Free License (AFL 3.0) - * that is bundled with this package in the file LICENSE_AFL.txt. - * It is also available through the world-wide-web at this URL: - * http://opensource.org/licenses/afl-3.0.php - * If you did not receive a copy of the license and are unable to - * obtain it through the world-wide-web, please send an email - * to license@magentocommerce.com so we can send you a copy immediately. - * - * DISCLAIMER - * - * Do not edit or add to this file if you wish to upgrade Magento to newer - * versions in the future. If you wish to customize Magento for your - * needs please refer to http://www.magentocommerce.com for more information. -EOT; - - } - - /** - * Prepare data for phpdoc attribute "license" - * - * @return string - */ - public function getLink() - { - return 'http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)'; - } -} diff --git a/dev/build/publication/license/LicenseAbstract.php b/dev/build/publication/license/LicenseAbstract.php deleted file mode 100644 index 146df195e0cb347145ffc16d3534e256abf28c9a..0000000000000000000000000000000000000000 --- a/dev/build/publication/license/LicenseAbstract.php +++ /dev/null @@ -1,43 +0,0 @@ -<?php -/** - * {license_notice} - * - * @category build - * @package license - * @copyright {copyright} - * @license {license_link} - */ - -/** - * Interface for license information class - * - */ -abstract class LicenseAbstract -{ - /** - * Prepare short information about license - * - * @abstract - * @return string - */ - abstract public function getNotice(); - - /** - * Prepare data for phpdoc attribute "copyright" - * - * @return string - */ - public function getCopyright() - { - $year = date('Y'); - return "Copyright (c) {$year} X.commerce, Inc. (http://www.magentocommerce.com)"; - } - - /** - * Prepare data for phpdoc attribute "license" - * - * @abstract - * @return string - */ - abstract public function getLink(); -} diff --git a/dev/build/publication/license/Mcl.php b/dev/build/publication/license/Mcl.php deleted file mode 100644 index bfb8220c0c1b655d7da2cadef7101970a63e044b..0000000000000000000000000000000000000000 --- a/dev/build/publication/license/Mcl.php +++ /dev/null @@ -1,53 +0,0 @@ -<?php -/** - * {license_notice} - * - * @category build - * @package license - * @copyright {copyright} - * @license {license_link} - */ - -/** - * Magento Comercial License information class - * - */ -class Mcl extends LicenseAbstract -{ - /** - * Prepare short information about license - * - * @return string - */ - public function getNotice() - { - return <<<EOT - * Magento Commercial Edition - * - * NOTICE OF LICENSE - * - * This source file is subject to the Magento Commercial Edition License - * that is available at: http://www.magentocommerce.com/license/commercial-edition - * If you did not receive a copy of the license and are unable to - * obtain it through the world-wide-web, please send an email - * to license@magentocommerce.com so we can send you a copy immediately. - * - * DISCLAIMER - * - * Do not edit or add to this file if you wish to upgrade Magento to newer - * versions in the future. If you wish to customize Magento for your - * needs please refer to http://www.magentocommerce.com for more information. -EOT; - - } - - /** - * Prepare data for phpdoc attribute "license" - * - * @return string - */ - public function getLink() - { - return 'http://www.magentocommerce.com/license/commercial-edition'; - } -} diff --git a/dev/build/publication/license/Mel.php b/dev/build/publication/license/Mel.php deleted file mode 100644 index ada30cfe60e745f57c13dd9daa41e1e48f83a736..0000000000000000000000000000000000000000 --- a/dev/build/publication/license/Mel.php +++ /dev/null @@ -1,55 +0,0 @@ -<?php -/** - * {license_notice} - * - * @category build - * @package license - * @copyright {copyright} - * @license {license_link} - */ - -/** - * Magento Enterprise License information class - * - */ -class Mel extends LicenseAbstract -{ - /** - * Prepare short information about license - * - * @return string - */ - public function getNotice() - { - return <<<EOT - * Magento Enterprise Edition - * - * NOTICE OF LICENSE - * - * This source file is subject to the Magento Enterprise Edition License - * that is bundled with this package in the file LICENSE_EE.txt. - * It is also available through the world-wide-web at this URL: - * http://www.magentocommerce.com/license/enterprise-edition - * If you did not receive a copy of the license and are unable to - * obtain it through the world-wide-web, please send an email - * to license@magentocommerce.com so we can send you a copy immediately. - * - * DISCLAIMER - * - * Do not edit or add to this file if you wish to upgrade Magento to newer - * versions in the future. If you wish to customize Magento for your - * needs please refer to http://www.magentocommerce.com for more information. -EOT; - - } - - /** - * Prepare data for phpdoc attribute "license" - * - * @return string - */ - public function getLink() - { - return 'http://www.magentocommerce.com/license/enterprise-edition'; - } -} diff --git a/dev/build/publication/license/Phoenix.php b/dev/build/publication/license/Phoenix.php deleted file mode 100644 index 8bea39a4d5c7c3ce5f5af197294d4741a2f35447..0000000000000000000000000000000000000000 --- a/dev/build/publication/license/Phoenix.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php -/** - * {license_notice} - * - * @category build - * @package license - * @copyright {copyright} - * @license {license_link} - */ - -require_once dirname(__FILE__) . DIRECTORY_SEPARATOR . 'Osl.php'; -/** - * Phoenix OSL license information class - * - */ -class Phoenix extends Osl -{ - /** - * Prepare data for phpdoc attribute "copyright" - * - * @return string - */ - public function getCopyright() - { - $year = date('Y'); - return "Copyright (c) {$year} Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de)"; - } -} diff --git a/dev/build/publication/license/Routine.php b/dev/build/publication/license/Routine.php deleted file mode 100644 index 66cbca076cb1edca363120b2a654f6e225597d41..0000000000000000000000000000000000000000 --- a/dev/build/publication/license/Routine.php +++ /dev/null @@ -1,364 +0,0 @@ -<?php -/** - * {license_notice} - * - * @category build - * @package license - * @copyright {copyright} - * @license {license_link} - */ - -/** - * Service routines for license-tool command line script - * Routine run time functions - * - */ -class Routine -{ - /** - * List skipped directories - * - * @var null|array - */ - public static $skipDirectories = null; - - /** - * List skipped files - * - * @var null|array - */ - public static $skipFiles = null; - - /** - * Verbose output flag - * - * @var bool - */ - public static $isVerbose = false; - - /** - * Dry run flag - * - * @var bool - */ - public static $dryRun = false; - - /** - * File types - * - * @var array - */ - public static $fileTypes = array( - 'xml' => array( - '*.xml', '*.xml.template', '*.xml.additional', '*.xml.dist', '*.xml.sample', - '*.xsd', '*.mxml', '*.jmx', '*.jtl', - ), - 'php' => array('*.php', '*.php.dist', '*.php.sample'), - 'phtml' => array('*.phtml'), - 'html' => array('*.html', '*.htm'), - 'css' => array('*.css'), - 'js' => array('*.js'), - 'flex' => array('*.as'), - 'sql' => array('*.sql'), - ); - - /** - * Length of working directory - * - * @var int - */ - protected static $_workingDirLen = 0; - - /** - * @var int - */ - protected static $_errorsCount = 0; - - /** - * @var int - */ - protected static $_updatedCount = 0; - - /** - * @var int - */ - protected static $_skippedCount = 0; - - - /** - * Walk through all file inside folder and sub folder. Filter found files by pattern. - * - * @static - * @param string|array $paths - * @param string|array $fileMasks - * @param array $result - * @param bool $allowRecursion - * @return null - */ - public static function globSearch($paths, $fileMasks, &$result, $allowRecursion = true) - { - if (empty($paths)) { - return; - } - - if (!is_array($paths)) { - $paths = array($paths); - } - - if (!is_array($fileMasks)) { - $fileMasks = array($fileMasks); - } - - foreach ($paths as $resource) { - if (is_file($resource) && !self::_isFileSkipped($resource)) { - $result[] = $resource; - continue; - } - - if (self::_isDirectorySkipped($resource)) { - continue; - } - - if ($allowRecursion) { - self::globSearch(glob($resource . '/*', GLOB_ONLYDIR), $fileMasks, $result, true); - } - - self::_filterFilesByMask($resource, $fileMasks, $result); - } - } - - /** - * Filter directory by passed file mask. Results will be saved in $result variable. - * - * @static - * @param $directory - * @param $fileMasks - * @param $result - * @return null - */ - protected static function _filterFilesByMask($directory, $fileMasks, &$result) - { - foreach ($fileMasks as $filesMask) { - foreach (glob($directory . '/' . $filesMask) as $filename) { - if (is_file($filename) && !self::_isFileSkipped($filename)) { - $result[] = $filename; - } - } - } - } - - /** - * Filters passed array on skip path items marked by "!" sign - * - * @static - * @param string $workingDir - * @param array $list - */ - protected static function _setSkippedPaths($workingDir, $list) - { - $paths = array(); - foreach ($list as $globPattern) { - $path = $workingDir . DIRECTORY_SEPARATOR . $globPattern; - $subPaths = glob($path, GLOB_BRACE); - if (false === $subPaths) { - throw new Exception("No real paths found by glob pattern: {$path}"); - } - $paths = array_merge($paths, $subPaths); - } - $paths = array_unique($paths); - - foreach ($paths as $path) { - $real = realpath($path); - if (is_dir($real)) { - self::$skipDirectories[] = $real; - } elseif (is_file($real)) { - self::$skipFiles[] = $real; - } - } - } - - /** - * Analyzes passed directory should it be skipped or not. - * - * @static - * @param string $directory - * @return bool - */ - protected static function _isDirectorySkipped($directory) - { - $directory = realpath($directory) . DIRECTORY_SEPARATOR; - foreach (self::$skipDirectories as $skipDir) { - if (false !== strpos($directory, $skipDir . DIRECTORY_SEPARATOR)) { - return true; - } - } - - return false; - } - - /** - * Analyzes passed file should it be skipped or not. - * - * @static - * @param string $filename - * @return bool - */ - protected static function _isFileSkipped($filename) - { - return in_array(realpath($filename), self::$skipFiles); - } - - /** - * Updates files in passed directory using license rules. - * Could be run as validation process for files in dry run case. - * - * @static - * @param string|array $directories - * @param string|array $fileMasks - * @param AbstractLicense $license - * @param bool $recursive - * @return null - */ - public static function updateLicense($directories, $fileMasks, $license, $recursive = true) - { - $foundFiles = array(); - self::globSearch($directories, $fileMasks, $foundFiles, $recursive); - - foreach ($foundFiles as $filename) { - $path = substr($filename, self::$_workingDirLen + 1); - $contents = file_get_contents($filename); - preg_match('#/\*\*(.*)\*/.*#Us', $contents, $matches); - if (empty($contents) || !isset($matches[1])) { - self::printLog("E {$path}\n"); - self::$_errorsCount += 1; - continue; - } - - $placeholders = array( - ' * {license_notice}', - '{copyright}', - '{license_link}' - ); - - $changeset = array( - $license->getNotice(), - $license->getCopyright(), - $license->getLink() - ); - - $docBlock = str_replace($placeholders, $changeset, $matches[1]); - - $newContents = preg_replace('#(/\*\*).*(\*/.*)#Us', '$1'. $docBlock . '$2', $contents, 1); - - if ($contents !== $newContents) { - if (!self::$dryRun) { - file_put_contents($filename, $newContents); - } - self::printLog(". {$path}\n"); - self::$_updatedCount += 1; - } else { - self::printLog("S {$path}\n"); - self::$_skippedCount += 1; - } - } - } - - /** - * Prints logging messaged in case verbose mode enabled during run. - * - * @statict - * @param string $msg - * @return null - */ - public static function printLog($msg) - { - if (self::$isVerbose) { - echo $msg; - } - } - - /** - * Create instance of license class which contains information about license - * - * @static - * @throws Exception - * @param string $license - * @return AbstractLicense - */ - public static function createLicenseInstance($license) - { - $licenseClassName = ucfirst(strtolower($license)); - if (!class_exists($licenseClassName)) { - $licenseClassFile = dirname(__FILE__) . DIRECTORY_SEPARATOR . $licenseClassName . '.php'; - if (!file_exists($licenseClassFile) || !is_readable($licenseClassFile)) { - throw new Exception("Can't access license file: {$licenseClassFile}.\n"); - } - - include_once $licenseClassFile; - - if (!class_exists($licenseClassName)) { - throw new Exception("Can't find license class: {$licenseClassName}.\n"); - } - } - - $licenseObject = new $licenseClassName; - - if (!$licenseObject instanceof LicenseAbstract) { - throw new Exception("License class does not have correct interface: {$licenseClassName}.\n"); - } - - return $licenseObject; - } - - /** - * Entry point of routine work - * - * @static - * @param string $workingDir - * @param array $config - * @param array $blackList - * @return null - */ - public static function run($workingDir, $config, $blackList) - { - // various display parameters - $workingDir = realpath($workingDir); - self::$_workingDirLen = strlen($workingDir); - self::$_errorsCount = 0; - self::$_updatedCount = 0; - self::$_skippedCount = 0; - - // set black list - self::$skipFiles = array(); - self::$skipDirectories = array(); - self::_setSkippedPaths($workingDir, $blackList); - - $licenseInstances = array(); - foreach ($config as $path => $types) { - // whether to scan directory recursively - $recursive = (isset($types['_recursive']) ? $types['_recursive'] : true); - unset($types['_recursive']); - - // update licenses - foreach ($types as $fileType => $licenseType) { - if (!isset($licenseInstances[$licenseType])) { - $licenseInstances[$licenseType] = Routine::createLicenseInstance($licenseType); - } - Routine::updateLicense( - array($workingDir . ($path ? DIRECTORY_SEPARATOR . $path : '')), - Routine::$fileTypes[$fileType], - $licenseInstances[$licenseType], - $recursive - ); - } - } - - Routine::printLog(sprintf("\n" . 'Updated: %d; Skipped: %d; Errors: %d.' . "\n", - self::$_updatedCount, self::$_skippedCount, self::$_errorsCount - )); - if (self::$_errorsCount || self::$_skippedCount) { - throw new Exception('Failed: check skipped files or errors.' . "\n"); - } - Routine::printLog('Success.' . "\n"); - } -} diff --git a/dev/build/publication/license/conf/ce.php b/dev/build/publication/license/conf/ce.php deleted file mode 100644 index e6806e63c286258293564ed92c186905c3a9d869..0000000000000000000000000000000000000000 --- a/dev/build/publication/license/conf/ce.php +++ /dev/null @@ -1,63 +0,0 @@ -<?php -/** - * Configuration file used by licence-tool.php script to prepare Magento Community Edition - * - * {license_notice} - * - * @category build - * @package license - * @copyright {copyright} - * @license {license_link} - */ - -$magentoOslAfl = array( - 'xml' => 'AFL', - 'phtml' => 'AFL', - 'php' => 'OSL', - 'css' => 'AFL', - 'js' => 'AFL', -); -$magentoAfl = $magentoOslAfl; -unset($magentoAfl['php']); - -$phoenixOsl = array( - 'xml' => 'Phoenix', - 'phtml' => 'Phoenix', - 'php' => 'Phoenix', - 'css' => 'Phoenix', - 'js' => 'Phoenix' -); - -$config = array( - '' => array('php' => 'OSL', '_recursive' => false), - 'app' => array('php' => 'OSL', '_recursive' => false), - 'app/code/community/Find' => $magentoOslAfl, - 'app/code/community/Phoenix' => $phoenixOsl, - 'app/code/community/Social' => $magentoOslAfl, - 'app/code/core' => $magentoOslAfl, - 'app/code/local' => $magentoOslAfl, - 'app/design' => $magentoAfl, - 'app/etc' => array('xml' => 'AFL'), - 'dev' => array_merge($magentoOslAfl, array('sql' => 'OSL', 'html' => 'AFL')), - 'downloader' => $magentoOslAfl, - 'lib/flex' => array('xml' => 'AFL', 'flex' => 'AFL'), - 'lib/Mage' => $magentoOslAfl, - 'lib/Magento' => $magentoOslAfl, - 'lib/Varien' => $magentoOslAfl, - 'pub' => $magentoOslAfl, -); - -if (defined('EDITION_LICENSE')) { - foreach ($config as $path => $settings) { - foreach ($settings as $type => $license) { - if ('_params' == $type) { - continue; - } - if ('OSL' == $license || 'AFL' == $license) { - $config[$path][$type] = EDITION_LICENSE; - } - } - } -} - -return $config; diff --git a/dev/build/publication/license/conf/ee.php b/dev/build/publication/license/conf/ee.php deleted file mode 100644 index 7c79bde0bff5595431ece1ca34b4943a7ce1d303..0000000000000000000000000000000000000000 --- a/dev/build/publication/license/conf/ee.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php -/** - * Configuration file used by licence-tool.php script to prepare Magento Enterprise Edition - * - * {license_notice} - * - * @category build - * @package license - * @copyright {copyright} - * @license {license_link} - */ - -define('EDITION_LICENSE', 'MEL'); -$config = require __DIR__ . '/ce.php'; -return $config; diff --git a/dev/build/publication/license/conf/pe.php b/dev/build/publication/license/conf/pe.php deleted file mode 100644 index 2af536c9fa10f5dee64dd4831fce62fbbc3c057e..0000000000000000000000000000000000000000 --- a/dev/build/publication/license/conf/pe.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php -/** - * Configuration file used by licence-tool.php script to prepare Magento Professional Edition - * - * {license_notice} - * - * @category build - * @package license - * @copyright {copyright} - * @license {license_link} - */ - -define('EDITION_LICENSE', 'MCL'); -$config = require __DIR__ . '/ce.php'; -return $config; diff --git a/dev/build/publication/license/license-tool.php b/dev/build/publication/license/license-tool.php deleted file mode 100644 index ad7860f59b5c47692957329c8fee15d5bbc4937a..0000000000000000000000000000000000000000 --- a/dev/build/publication/license/license-tool.php +++ /dev/null @@ -1,63 +0,0 @@ -#!/usr/bin/php -<?php -/** - * {license_notice} - * - * @category build - * @package license - * @copyright {copyright} - * @license {license_link} - */ - -/** - * Command line tool for processing file docblock of Magento source code files. - */ - -require dirname(__FILE__) . '/Routine.php'; -require dirname(__FILE__) . '/LicenseAbstract.php'; - -define('USAGE', <<<USAGE -php -f license-tool.php -- -e <edition> [-w <dir>] [-v] [-d] [-0] - -e <edition> name of product edition (see "conf" directory relatively to this script) - -w <dir> use specified working dir instead of current - -v verbose output - -d dry run - -0 exit with a zero status even when not all replacements have succeeded - -USAGE -); - -$options = getopt('e:w:vd0'); - -if (!isset($options['e'])) { - print USAGE; - exit(1); -} - -if (isset($options['v'])) { - Routine::$isVerbose = true; -} - -$dryRun = false; -if (isset($options['d'])) { - Routine::$dryRun = true; -} - -$workingDir = '.'; -if (isset($options['w'])) { - $workingDir = rtrim($options['w'], DIRECTORY_SEPARATOR); -} -if (!is_dir($workingDir)) { - Routine::printLog("Directory '{$workingDir}' does not exist.\n"); - exit(1); -} - -$config = require __DIR__ . "/conf/{$options['e']}.php"; -$blackList = require __DIR__ . '/../../../../dev/tools/license_placeholder/blacklist.php'; - -try { - Routine::run($workingDir, $config, $blackList); -} catch(Exception $e) { - Routine::printLog($e->getMessage()); - exit(isset($options['0']) ? 0 : 1); -} diff --git a/dev/build/publication/publish.php b/dev/build/publication/publish.php deleted file mode 100644 index 68606f3e2f8741adcc27621e582a372086a725be..0000000000000000000000000000000000000000 --- a/dev/build/publication/publish.php +++ /dev/null @@ -1,174 +0,0 @@ -#!/usr/bin/php -<?php -/** - * Magento repository publishing script - * - * Magento - * - * NOTICE OF LICENSE - * - * This source file is subject to the Open Software License (OSL 3.0) - * that is bundled with this package in the file LICENSE.txt. - * It is also available through the world-wide-web at this URL: - * http://opensource.org/licenses/osl-3.0.php - * If you did not receive a copy of the license and are unable to - * obtain it through the world-wide-web, please send an email - * to license@magentocommerce.com so we can send you a copy immediately. - * - * DISCLAIMER - * - * Do not edit or add to this file if you wish to upgrade Magento to newer - * versions in the future. If you wish to customize Magento for your - * needs please refer to http://www.magentocommerce.com for more information. - * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) - * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) - */ - -// get CLI options, define variables -define('SYNOPSIS', <<<SYNOPSIS -php -f publish.php -- - --source="<repository>" --source-point="<branch name or commit ID>" - --target="<repository>" [--target-branch="<branch>"] [--target-dir="<directory>"] - --changelog-file="<markdown_file>" - [--no-push] - -SYNOPSIS -); -$options = getopt('', array( - 'source:', 'source-point:', 'target:', 'target-branch::', 'target-dir::', 'changelog-file:', 'no-push' -)); -if (empty($options['source']) || empty($options['source-point']) || empty($options['target']) - || empty($options['changelog-file'])) { - echo SYNOPSIS; - exit(1); -} - -$sourceRepository = $options['source']; -$targetRepository = $options['target']; -$sourcePoint = $options['source-point']; -$targetBranch = isset($options['target-branch']) ? $options['target-branch'] : 'master'; -$targetDir = (isset($options['target-dir']) ? $options['target-dir'] : __DIR__ . '/target'); -$changelogFile = $options['changelog-file']; -$canPush = !isset($options['no-push']); - -$gitCmd = sprintf('git --git-dir %s --work-tree %s', escapeshellarg("$targetDir/.git"), escapeshellarg($targetDir)); - -try { - // clone target repository and attach the source repo as a remote - execVerbose('git clone %s %s', $targetRepository, $targetDir); - execVerbose("$gitCmd remote add source %s", $sourceRepository); - execVerbose("$gitCmd fetch source"); - execVerbose("$gitCmd checkout $targetBranch"); - - // determine whether source-point is a branch name or a commit ID - try { - $sourceBranch = "source/$sourcePoint"; - execVerbose("$gitCmd rev-parse $sourceBranch"); - $sourcePoint = $sourceBranch; - } catch (Exception $e) { - echo "Assuming that 'source-point' is a commit ID." . PHP_EOL; - } - - $logFile = $targetDir . DIRECTORY_SEPARATOR . $changelogFile; - $targetLog = file_exists($logFile) ? file_get_contents($logFile) : ''; - - // copy new & override existing files in the working tree and index from the source repository - execVerbose("$gitCmd checkout $sourcePoint -- ."); - // remove files that don't exist in the source repository anymore - $files = execVerbose("$gitCmd diff --name-only $sourcePoint"); - foreach ($files as $file) { - execVerbose("$gitCmd rm -f %s", $file); - } - - // remove files that must not be published - $listsDir = __DIR__ . '/extruder'; - execVerbose( - 'php -f %s -- -w %s -l %s -l %s -v', - __DIR__ . '/../extruder.php', - $targetDir, - "$listsDir/common.txt", - "$listsDir/ce.txt", - "$listsDir/dev_build.txt" - ); - - // compare if changelog is different from the published one, compose the commit message - if (!file_exists($logFile)) { - throw new Exception("Changelog file '$logFile' does not exist."); - } - $sourceLog = file_get_contents($logFile); - if (!empty($targetLog) && $sourceLog == $targetLog) { - throw new Exception("Aborting attempt to publish with old changelog. '$logFile' is not updated."); - } - $commitMsg = trim(getTopMarkdownSection($sourceLog)); - if (empty($commitMsg)) { - throw new Exception("No commit message found in the changelog file '$logFile'."); - } - - // replace license notices - $licenseToolDir = __DIR__ . '/license'; - execVerbose( - 'php -f %s -- -w %s -e ce -v -0', - "$licenseToolDir/license-tool.php", - $targetDir - ); - - // composer.json - copy(__DIR__ . '/composer.json_', $targetDir . '/composer.json'); - execVerbose("$gitCmd add composer.json"); - - // commit and push - execVerbose("$gitCmd add --update"); - execVerbose("$gitCmd status"); - execVerbose("$gitCmd commit --message=%s", $commitMsg); - if ($canPush) { - execVerbose("$gitCmd push origin $targetBranch"); - } -} catch (Exception $exception) { - echo $exception->getMessage() . PHP_EOL; - exit(1); -} - -/** - * Execute a command with automatic escaping of arguments - * - * @param string $command - * @return array - * @throws Exception - */ -function execVerbose($command) -{ - $args = func_get_args(); - $args = array_map('escapeshellarg', $args); - $args[0] = $command; - $command = call_user_func_array('sprintf', $args); - echo $command . PHP_EOL; - exec($command, $output, $exitCode); - foreach ($output as $line) { - echo $line . PHP_EOL; - } - if (0 !== $exitCode) { - throw new Exception("Command has failed with exit code: $exitCode."); - } - return $output; -} - -/** - * Get the top section of a text in markdown format - * - * @param string $contents - * @return string - * @link http://daringfireball.net/projects/markdown/syntax - */ -function getTopMarkdownSection($contents) -{ - $parts = preg_split('/^[=\-]+\s*$/m', $contents); - if (!isset($parts[1])) { - return ''; - } - list($title, $body) = $parts; - $body = explode("\n", trim($body)); - array_pop($body); - $body = implode("\n", $body); - return $title . $body; -} diff --git a/dev/build/publication/sanity/SanityWordsFinder.php b/dev/build/publication/sanity/SanityWordsFinder.php deleted file mode 100644 index ed4233025732aaf07c571b737aa1785391b77400..0000000000000000000000000000000000000000 --- a/dev/build/publication/sanity/SanityWordsFinder.php +++ /dev/null @@ -1,83 +0,0 @@ -<?php -/** - * Service routines for sanity check command line script - * - * Magento - * - * NOTICE OF LICENSE - * - * This source file is subject to the Open Software License (OSL 3.0) - * that is bundled with this package in the file LICENSE.txt. - * It is also available through the world-wide-web at this URL: - * http://opensource.org/licenses/osl-3.0.php - * If you did not receive a copy of the license and are unable to - * obtain it through the world-wide-web, please send an email - * to license@magentocommerce.com so we can send you a copy immediately. - * - * DISCLAIMER - * - * Do not edit or add to this file if you wish to upgrade Magento to newer - * versions in the future. If you wish to customize Magento for your - * needs please refer to http://www.magentocommerce.com for more information. - * - * @category build - * @package sanity - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) - * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) - */ - -/** - * Extend words finder class, which is designed for sanity tests. The added functionality is method to search through - * directories and method to return words list for logging. - */ -class SanityWordsFinder extends Inspection_WordsFinder -{ - /** - * Get list of words, configured to be searched - * - * @return array - */ - public function getSearchedWords() - { - return $this->_words; - } - - /** - * Searche words in files content recursively within base directory tree - * - * @return array - */ - public function findWordsRecursively() - { - return $this->_findWordsRecursively($this->_baseDir); - } - - /** - * Search words in files content recursively within base directory tree - * - * @param string $currentDir Current dir to look in - * @return array - */ - protected function _findWordsRecursively($currentDir) - { - $result = array(); - - $entries = glob($currentDir . DIRECTORY_SEPARATOR . '*'); - $initialLength = strlen($this->_baseDir); - foreach ($entries as $entry) { - if (is_file($entry)) { - $foundWords = $this->findWords($entry); - if (!$foundWords) { - continue; - } - $relPath = substr($entry, $initialLength + 1); - $result[] = array('words' => $foundWords, 'file' => $relPath); - } else if (is_dir($entry)) { - $more = $this->_findWordsRecursively($entry); - $result = array_merge($result, $more); - } - } - - return $result; - } -} diff --git a/dev/build/publication/sanity/ce.xml b/dev/build/publication/sanity/ce.xml deleted file mode 100644 index ca22eae07d0ed9864994e19fcd9bc6d098a71f35..0000000000000000000000000000000000000000 --- a/dev/build/publication/sanity/ce.xml +++ /dev/null @@ -1,100 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- -/** - * Magento - * - * NOTICE OF LICENSE - * - * This source file is subject to the Academic Free License (AFL 3.0) - * that is bundled with this package in the file LICENSE_AFL.txt. - * It is also available through the world-wide-web at this URL: - * http://opensource.org/licenses/afl-3.0.php - * If you did not receive a copy of the license and are unable to - * obtain it through the world-wide-web, please send an email - * to license@magentocommerce.com so we can send you a copy immediately. - * - * DISCLAIMER - * - * Do not edit or add to this file if you wish to upgrade Magento to newer - * versions in the future. If you wish to customize Magento for your - * needs please refer to http://www.magentocommerce.com for more information. - * - * @category build - * @package sanity - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) - * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) - */ ---> -<config> - <words> - <word>{copyright}</word> - <word>{license_link}</word> - <word>{license_notice}</word> - <word>biz@magento.com</word> - <word>enterprise</word> - <word>mssql</word> - <word>oracle</word> - <word>petervarien</word> - <word>sqlsrv</word> - <word>ukpromerchant</word> - <word>pinba</word> - <word>saas</word> - </words> - <whitelist> - <item> - <path>app/Mage.php</path> - </item> - <item> - <word>oracle</word> - <path>app/code/core/Mage/Reports/Model/Resource/Report/Abstract.php</path> - </item> - <item> - <word>oracle</word> - <word>mssql</word> - <path>dev/tests/integration/framework/Magento/Test/Bootstrap.php</path> - </item> - <item> - <word>oracle</word> - <word>mssql</word> - <path>dev/tests/integration/framework/Magento/Test/Annotation/AppIsolation.php</path> - </item> - <item> - <word>mssql</word> - <word>sqlsrv</word> - <path>dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Bootstrap/_files/local-custom.xml</path> - </item> - <item> - <word>mssql</word> - <path>dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/BootstrapTest.php</path> - </item> - <item> - <word>enterprise</word> - <path>lib/Varien/Db/Helper.php</path> - </item> - <item> - <path>lib/Zend</path> - </item> - <item> - <path>dev/build</path> - </item> - <item> - <path>dev/tools/license_placeholder</path> - </item> - <item> - <word>enterprise</word> - <path>dev/tools/migration/Acl/log</path> - </item> - <item> - <word>enterprise</word> - <path>dev/tools/translate/config.inc.php</path> - </item> - <item> - <word>enterprise</word> - <path>dev/tools/translate/ModuleTranslations.php</path> - </item> - <item> - <word>enterprise</word> - <path>dev/tools/translate/generate_emailtemplates.php</path> - </item> - </whitelist> -</config> diff --git a/dev/build/publication/sanity/ee.xml b/dev/build/publication/sanity/ee.xml deleted file mode 100644 index 174ccdc7dfdbebcd7fde16691049ce54f78fa273..0000000000000000000000000000000000000000 --- a/dev/build/publication/sanity/ee.xml +++ /dev/null @@ -1,55 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- -/** - * Magento - * - * NOTICE OF LICENSE - * - * This source file is subject to the Academic Free License (AFL 3.0) - * that is bundled with this package in the file LICENSE_AFL.txt. - * It is also available through the world-wide-web at this URL: - * http://opensource.org/licenses/afl-3.0.php - * If you did not receive a copy of the license and are unable to - * obtain it through the world-wide-web, please send an email - * to license@magentocommerce.com so we can send you a copy immediately. - * - * DISCLAIMER - * - * Do not edit or add to this file if you wish to upgrade Magento to newer - * versions in the future. If you wish to customize Magento for your - * needs please refer to http://www.magentocommerce.com for more information. - * - * @category build - * @package sanity - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) - * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) - */ ---> -<config> - <words> - <word>{copyright}</word> - <word>{license_link}</word> - <word>{license_notice}</word> - <word>biz@magento.com</word> - <word>petervarien</word> - <word>ukpromerchant</word> - <word>saas</word> - </words> - <whitelist> - <item> - <path>dev/build</path> - </item> - <item> - <word>{copyright}</word> - <word>{license_link}</word> - <word>{license_notice}</word> - <path>dev/tests/unit/testsuite/tools/migration/Acl/GeneratorTest.php</path> - </item> - <item> - <word>{copyright}</word> - <word>{license_link}</word> - <word>{license_notice}</word> - <path>dev/tools/migration/Acl/Generator.php</path> - </item> - </whitelist> -</config> diff --git a/dev/build/publication/sanity/sanity.php b/dev/build/publication/sanity/sanity.php deleted file mode 100644 index 3a4df78c49a5950d2a27ad7c60537628de89f584..0000000000000000000000000000000000000000 --- a/dev/build/publication/sanity/sanity.php +++ /dev/null @@ -1,75 +0,0 @@ -#!/usr/bin/php -<?php -/** - * Magento - * - * NOTICE OF LICENSE - * - * This source file is subject to the Open Software License (OSL 3.0) - * that is bundled with this package in the file LICENSE.txt. - * It is also available through the world-wide-web at this URL: - * http://opensource.org/licenses/osl-3.0.php - * If you did not receive a copy of the license and are unable to - * obtain it through the world-wide-web, please send an email - * to license@magentocommerce.com so we can send you a copy immediately. - * - * DISCLAIMER - * - * Do not edit or add to this file if you wish to upgrade Magento to newer - * versions in the future. If you wish to customize Magento for your - * needs please refer to http://www.magentocommerce.com for more information. - * - * @category build - * @package sanity - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) - * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) - */ -require __DIR__ . '/../../../../app/autoload.php'; -Magento_Autoload_IncludePath::addIncludePath(array( - __DIR__, - realpath(__DIR__ . '/../../../tests/static/framework') -)); - -define('USAGE', <<<USAGE -php -f sanity.php -c <config_file> [-w <dir>] [-v] - -c <config_file> path to configuration file with rules and white list - [-w <dir>] use specified working dir instead of current - [-v] verbose mode -USAGE -); - -$shortOpts = 'c:w:v'; -$options = getopt($shortOpts); - -if (!isset($options['c'])) { - print USAGE; - exit(1); -} -$configFile = $options['c']; - -$workingDir = __DIR__; -if (isset($options['w'])) { - $workingDir = $options['w']; -} - -$wordsFinder = new SanityWordsFinder($configFile, $workingDir); - -$verbose = isset($options['v']) ? true : false; -if ($verbose) { - $words = $wordsFinder->getSearchedWords(); - printf('Searching for banned words: "%s"...', implode('", "', $words)); -} - -$found = $wordsFinder->findWordsRecursively(); -if ($found) { - echo "Found banned words in the following files:\n"; - foreach ($found as $info) { - echo $info['file'] . ' - "' . implode('", "', $info['words']) . "\"\n"; - } - exit(1); -} - -if ($verbose) { - echo "No banned words found in the source code.\n"; -} -exit(0); diff --git a/dev/build/report/.gitignore b/dev/build/report/.gitignore deleted file mode 100644 index 72e8ffc0db8aad71a934dd11e5968bd5109e54b4..0000000000000000000000000000000000000000 --- a/dev/build/report/.gitignore +++ /dev/null @@ -1 +0,0 @@ -* diff --git a/dev/shell/indexer.php b/dev/shell/indexer.php index fc8795acc33c1df309b22dab0bc20cf7705bb487..064bfa238bac57194faeaa31e6de39307b2f220a 100644 --- a/dev/shell/indexer.php +++ b/dev/shell/indexer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Shell - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/shell/install.php b/dev/shell/install.php index c668b3ffe9177405ab332ff76c30b7eb59d9ecac..e334f5a88afe3f5f8f1d776f2fede4d026721303 100644 --- a/dev/shell/install.php +++ b/dev/shell/install.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ @@ -60,6 +60,7 @@ if (empty($args)) { exit(1); } +define('BARE_BOOTSTRAP', 1); require_once __DIR__ . '/../../app/bootstrap.php'; $installer = new Mage_Install_Model_Installer_Console(); diff --git a/dev/shell/log.php b/dev/shell/log.php index e711fbe0297bf8e4ec812509fe04b33a275f2077..fd91696dd0a360e21df3336cfa1538cfbe0e0b02 100644 --- a/dev/shell/log.php +++ b/dev/shell/log.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Shell - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/etc/integration-tests-config.xml b/dev/tests/integration/etc/integration-tests-config.xml index 138dc0721a901242adf4217348a1e20f107270d2..c6650822b85433e904704c14535600d6cf02b3d5 100644 --- a/dev/tests/integration/etc/integration-tests-config.xml +++ b/dev/tests/integration/etc/integration-tests-config.xml @@ -22,7 +22,7 @@ * @category Magento * @package Magento * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/integration/etc/local-mysql.xml.dist b/dev/tests/integration/etc/local-mysql.xml.dist index 91461191bf8ab62682da1d606bb3fbc035da7b4d..7e7d2d42b829f226fd008730fb68563777259798 100644 --- a/dev/tests/integration/etc/local-mysql.xml.dist +++ b/dev/tests/integration/etc/local-mysql.xml.dist @@ -22,7 +22,7 @@ * @category Magento * @package Magento * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/integration/framework/Magento/Test/Annotation/AppIsolation.php b/dev/tests/integration/framework/Magento/Test/Annotation/AppIsolation.php index 5e1f89104ab7974ad07c04a28726b31eb6585e96..17e75d27f2c529e058202dd70d13088a0560866c 100644 --- a/dev/tests/integration/framework/Magento/Test/Annotation/AppIsolation.php +++ b/dev/tests/integration/framework/Magento/Test/Annotation/AppIsolation.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ @@ -136,6 +136,7 @@ class Magento_Test_Annotation_AppIsolation { if ($this->_hasNonIsolatedTests) { $this->_cleanupCache(); + $this->_resetWorkingDirectory(); Magento_Test_Bootstrap::getInstance()->reinitialize(); $this->_hasNonIsolatedTests = false; } @@ -156,6 +157,14 @@ class Magento_Test_Annotation_AppIsolation ); } + /** + * Reset current working directory (CWD) + */ + protected function _resetWorkingDirectory() + { + chdir(Magento_Test_Bootstrap::getInstance()->getTestsDir()); + } + /** * Isolate application before running test case */ diff --git a/dev/tests/integration/framework/Magento/Test/Annotation/ConfigFixture.php b/dev/tests/integration/framework/Magento/Test/Annotation/ConfigFixture.php index 6c229d1bf30ba5fcf581cb538f8613460167a8e9..4052e6c6e865f74d801d1364db9419d70a7402af 100644 --- a/dev/tests/integration/framework/Magento/Test/Annotation/ConfigFixture.php +++ b/dev/tests/integration/framework/Magento/Test/Annotation/ConfigFixture.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/framework/Magento/Test/Annotation/DataFixture.php b/dev/tests/integration/framework/Magento/Test/Annotation/DataFixture.php index 489cd601aa772dc6048dc786505d35c23d7cd726..631f2d4da9aea69c3fa97a9f449cdd3d78ce85a7 100644 --- a/dev/tests/integration/framework/Magento/Test/Annotation/DataFixture.php +++ b/dev/tests/integration/framework/Magento/Test/Annotation/DataFixture.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/framework/Magento/Test/Annotation/DbIsolation.php b/dev/tests/integration/framework/Magento/Test/Annotation/DbIsolation.php index 20ae305586fd38072938aa65189536fa090dffc8..07a6f59520d99eac12392c9f982ec4368505bdc6 100644 --- a/dev/tests/integration/framework/Magento/Test/Annotation/DbIsolation.php +++ b/dev/tests/integration/framework/Magento/Test/Annotation/DbIsolation.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/framework/Magento/Test/Bootstrap.php b/dev/tests/integration/framework/Magento/Test/Bootstrap.php index 6166f4820319940a3b261899480dee7a70e8af85..6f787cad3fc126cf879a75d89c8a438744d224d2 100644 --- a/dev/tests/integration/framework/Magento/Test/Bootstrap.php +++ b/dev/tests/integration/framework/Magento/Test/Bootstrap.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ require_once __DIR__ . '/../../../../../../lib/Varien/Simplexml/Element.php'; @@ -63,6 +63,13 @@ class Magento_Test_Bootstrap */ protected $_magentoDir; + /** + * Root directory of the Magento integration tests + * + * @var string + */ + protected $_testsDir; + /** * Application *.xml configuration files * @@ -174,6 +181,7 @@ class Magento_Test_Bootstrap * Initialize DB configuration, db vendor and install dir * * @param string $magentoDir + * @param string $testsDir * @param string $localXmlFile * @param string $globalEtcFiles * @param string $moduleEtcFiles @@ -183,17 +191,20 @@ class Magento_Test_Bootstrap * @param bool $isCleanupEnabled * @param bool $isDeveloperMode * @throws Magento_Exception + * + * @SuppressWarnings(PHPMD.ExcessiveParameterList) */ public function __construct( - $magentoDir, $localXmlFile, $globalEtcFiles, $moduleEtcFiles, $customXmlFile, $tmpDir, + $magentoDir, $testsDir, $localXmlFile, $globalEtcFiles, $moduleEtcFiles, $customXmlFile, $tmpDir, Magento_Shell $shell, $isCleanupEnabled = true, $isDeveloperMode = false ) { - $this->_magentoDir = $magentoDir; - $this->_localXmlFile = $localXmlFile; + $this->_magentoDir = $magentoDir; + $this->_testsDir = $testsDir; + $this->_localXmlFile = $localXmlFile; $this->_globalEtcFiles = $this->_exposeFiles($globalEtcFiles); $this->_moduleEtcFiles = $this->_exposeFiles($moduleEtcFiles); - $this->_customXmlFile = $customXmlFile; - $this->_tmpDir = $tmpDir; + $this->_customXmlFile = $customXmlFile; + $this->_tmpDir = $tmpDir; $this->_readLocalXml(); $this->_verifyDirectories(); @@ -584,4 +595,14 @@ class Magento_Test_Bootstrap { return $this->_tmpDir; } + + /** + * Returns path to integration tests root directory + * + * @return string + */ + public function getTestsDir() + { + return $this->_testsDir; + } } diff --git a/dev/tests/integration/framework/Magento/Test/ClearProperties.php b/dev/tests/integration/framework/Magento/Test/ClearProperties.php index b9fec70d6b8cfeea03ba55c6797e59f73c8a2d6f..0c01547dde314e9eb0133d6f13cd1dc02284b160 100644 --- a/dev/tests/integration/framework/Magento/Test/ClearProperties.php +++ b/dev/tests/integration/framework/Magento/Test/ClearProperties.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/framework/Magento/Test/Cookie.php b/dev/tests/integration/framework/Magento/Test/Cookie.php index 1e8ca1d09bda9bae52daa8d81d0219090540cfa1..2c62ca79707859e27d81beaf465db39c61e4e11e 100644 --- a/dev/tests/integration/framework/Magento/Test/Cookie.php +++ b/dev/tests/integration/framework/Magento/Test/Cookie.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/framework/Magento/Test/Db/Adapter/Mysql.php b/dev/tests/integration/framework/Magento/Test/Db/Adapter/Mysql.php index 692554ff7037b77663accf4a5a5edfec4ee6d92b..a8916c7922e44f24d5bbee53072a2dd4c40747e2 100644 --- a/dev/tests/integration/framework/Magento/Test/Db/Adapter/Mysql.php +++ b/dev/tests/integration/framework/Magento/Test/Db/Adapter/Mysql.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Test * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/framework/Magento/Test/Db/Adapter/TransactionInterface.php b/dev/tests/integration/framework/Magento/Test/Db/Adapter/TransactionInterface.php index c7e4c5368ee0058c0f7f4f327f9b3bd45db19be3..87cf7ac27c6ffc763b68a0da32f221764e1eb711 100644 --- a/dev/tests/integration/framework/Magento/Test/Db/Adapter/TransactionInterface.php +++ b/dev/tests/integration/framework/Magento/Test/Db/Adapter/TransactionInterface.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Test * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/framework/Magento/Test/Db/DbAbstract.php b/dev/tests/integration/framework/Magento/Test/Db/DbAbstract.php index 6141915ac80e04e3b90a862d2d5da47a225ea5c9..7ea16f5d3ef7b2f871f18ec97d278937e4facabc 100644 --- a/dev/tests/integration/framework/Magento/Test/Db/DbAbstract.php +++ b/dev/tests/integration/framework/Magento/Test/Db/DbAbstract.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/framework/Magento/Test/Db/Mysql.php b/dev/tests/integration/framework/Magento/Test/Db/Mysql.php index 3402e571bbc5d5ff8d7d66ac5c2facccd9766d03..a2a7ac9e49c75fa95328f71d858eb54f055c9383 100644 --- a/dev/tests/integration/framework/Magento/Test/Db/Mysql.php +++ b/dev/tests/integration/framework/Magento/Test/Db/Mysql.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/framework/Magento/Test/Entity.php b/dev/tests/integration/framework/Magento/Test/Entity.php index d202f19bd3a008596956896f4c106ed4248cdcdf..424f0096f766fd3f276e13c1c2132e602bd362f0 100644 --- a/dev/tests/integration/framework/Magento/Test/Entity.php +++ b/dev/tests/integration/framework/Magento/Test/Entity.php @@ -21,7 +21,7 @@ * @category Magento * @package Test * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/framework/Magento/Test/Event/Magento.php b/dev/tests/integration/framework/Magento/Test/Event/Magento.php index e0485006e3cd86234aed4150542751a3432d4cf3..2e4e5eadd77925d4987f89735ece147bc91e4a12 100644 --- a/dev/tests/integration/framework/Magento/Test/Event/Magento.php +++ b/dev/tests/integration/framework/Magento/Test/Event/Magento.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/framework/Magento/Test/Event/Param/Transaction.php b/dev/tests/integration/framework/Magento/Test/Event/Param/Transaction.php index 99c489adcf8a123883d33dd89f71215838bb05d9..ba0433dc5a0d966999a194eab2b3b20bb1f86ef8 100644 --- a/dev/tests/integration/framework/Magento/Test/Event/Param/Transaction.php +++ b/dev/tests/integration/framework/Magento/Test/Event/Param/Transaction.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/framework/Magento/Test/Event/PhpUnit.php b/dev/tests/integration/framework/Magento/Test/Event/PhpUnit.php index 379865b90ecc945b74ac3e4ecd76ecefd58ea9d4..3bccfc399eae5c5ff8b6809b6a064cc05731c80a 100644 --- a/dev/tests/integration/framework/Magento/Test/Event/PhpUnit.php +++ b/dev/tests/integration/framework/Magento/Test/Event/PhpUnit.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/framework/Magento/Test/Event/Transaction.php b/dev/tests/integration/framework/Magento/Test/Event/Transaction.php index 22727a9496e95e57b98b98113f1f080c21fe6d12..6fca305c8c53bf2dcf9816a808855a6527323ad0 100644 --- a/dev/tests/integration/framework/Magento/Test/Event/Transaction.php +++ b/dev/tests/integration/framework/Magento/Test/Event/Transaction.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/framework/Magento/Test/EventManager.php b/dev/tests/integration/framework/Magento/Test/EventManager.php index 7668bbddb3635b8814d60cf01c6d1ae58a5c3257..acff5a2a275002ae0d445a4daaafd318890a7897 100644 --- a/dev/tests/integration/framework/Magento/Test/EventManager.php +++ b/dev/tests/integration/framework/Magento/Test/EventManager.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/framework/Magento/Test/Helper/Config.php b/dev/tests/integration/framework/Magento/Test/Helper/Config.php index 8536184a1bb33741f838d19efe3764a311969f0b..11d00b26e28c44ac130c45bcfac5d24358c88b4b 100644 --- a/dev/tests/integration/framework/Magento/Test/Helper/Config.php +++ b/dev/tests/integration/framework/Magento/Test/Helper/Config.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Test * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/framework/Magento/Test/Helper/Factory.php b/dev/tests/integration/framework/Magento/Test/Helper/Factory.php index 4bfae016a91623b2b104755da8c9af6e89046ec2..1c16e082d341084229b6e4a820710ecb8f927445 100644 --- a/dev/tests/integration/framework/Magento/Test/Helper/Factory.php +++ b/dev/tests/integration/framework/Magento/Test/Helper/Factory.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Test * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/framework/Magento/Test/ObjectManager.php b/dev/tests/integration/framework/Magento/Test/ObjectManager.php index b07495bf2c346fcde69cb3811a1ecfd31913048b..2c049df6c16914d864fd7010ad3526fa23030095 100644 --- a/dev/tests/integration/framework/Magento/Test/ObjectManager.php +++ b/dev/tests/integration/framework/Magento/Test/ObjectManager.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ @@ -56,10 +56,13 @@ class Magento_Test_ObjectManager extends Magento_ObjectManager_Zend } } - $resource = $this->get('Mage_Core_Model_Resource'); - $this->_di->setInstanceManager(new Magento_Di_InstanceManager_Zend()); - $this->addSharedInstance($this, 'Magento_ObjectManager'); - $this->addSharedInstance($resource, 'Mage_Core_Model_Resource'); + $instanceManagerNew = new Magento_Di_InstanceManager_Zend(); + $instanceManagerNew->addSharedInstance($this, 'Magento_ObjectManager'); + if ($this->_di->instanceManager()->hasSharedInstance('Mage_Core_Model_Resource')) { + $resource = $this->_di->instanceManager()->getSharedInstance('Mage_Core_Model_Resource'); + $instanceManagerNew->addSharedInstance($resource, 'Mage_Core_Model_Resource'); + } + $this->_di->setInstanceManager($instanceManagerNew); return $this; } diff --git a/dev/tests/integration/framework/Magento/Test/Profiler/OutputBamboo.php b/dev/tests/integration/framework/Magento/Test/Profiler/OutputBamboo.php index 05fa0c2a12e156871ef13c8403f0c9a65823d836..493ba4dfdb32e712063b0d85f4e9cf554bba9393 100644 --- a/dev/tests/integration/framework/Magento/Test/Profiler/OutputBamboo.php +++ b/dev/tests/integration/framework/Magento/Test/Profiler/OutputBamboo.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Test * @subpackage integration_test - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/framework/Magento/Test/Request.php b/dev/tests/integration/framework/Magento/Test/Request.php index 460d2dc5a46a0f4b222cb85f4080721c196c1790..a811e99ebd85b64b830679eb6693fdc0b55ded18 100644 --- a/dev/tests/integration/framework/Magento/Test/Request.php +++ b/dev/tests/integration/framework/Magento/Test/Request.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/framework/Magento/Test/Response.php b/dev/tests/integration/framework/Magento/Test/Response.php index b66119c65a305a7b67be15fb8268bcf65d60cf39..f31355e698466eb2a35a5dfcea855342a02ef719 100644 --- a/dev/tests/integration/framework/Magento/Test/Response.php +++ b/dev/tests/integration/framework/Magento/Test/Response.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/framework/Magento/Test/TestCase/ControllerAbstract.php b/dev/tests/integration/framework/Magento/Test/TestCase/ControllerAbstract.php index 6fd27ce85ed3d8ebd4e86f00e83d928515c95b94..b63f1ab1f4e71547f1b8434732907c6b9c64ae71 100644 --- a/dev/tests/integration/framework/Magento/Test/TestCase/ControllerAbstract.php +++ b/dev/tests/integration/framework/Magento/Test/TestCase/ControllerAbstract.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/framework/Magento/Test/TestCase/IntegrityAbstract.php b/dev/tests/integration/framework/Magento/Test/TestCase/IntegrityAbstract.php index 3cbec5fb0b0aec29192ec0b030a25f9db909c4c3..4c84ee2cfcf4241f77d8bbb39fdd0ffdf22bc8b4 100644 --- a/dev/tests/integration/framework/Magento/Test/TestCase/IntegrityAbstract.php +++ b/dev/tests/integration/framework/Magento/Test/TestCase/IntegrityAbstract.php @@ -21,7 +21,7 @@ * @category Magento * @package Test * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/framework/bootstrap.php b/dev/tests/integration/framework/bootstrap.php index 9f20f5bf23c8eb9d614ef341276b3fd566460f4c..2c783a3eecac069a86e6f924ae0ff8d910aeb88c 100644 --- a/dev/tests/integration/framework/bootstrap.php +++ b/dev/tests/integration/framework/bootstrap.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ @@ -32,17 +32,9 @@ $testsBaseDir = dirname(__DIR__); $testsTmpDir = "$testsBaseDir/tmp"; $magentoBaseDir = realpath("$testsBaseDir/../../../"); -/* - * Setup include path for autoload purpose. - * Include path setup is intentionally moved out from the phpunit.xml to simplify maintenance of CI builds. - */ -set_include_path(implode( - PATH_SEPARATOR, - array( - "$testsBaseDir/framework", - "$testsBaseDir/testsuite", - get_include_path() - ) +Magento_Autoload_IncludePath::addIncludePath(array( + "$testsBaseDir/framework", + "$testsBaseDir/testsuite", )); if (defined('TESTS_LOCAL_CONFIG_FILE') && TESTS_LOCAL_CONFIG_FILE) { @@ -109,12 +101,12 @@ Magento_Test_Event_PhpUnit::setDefaultEventManager($eventManager); Magento_Test_Event_Magento::setDefaultEventManager($eventManager); /* Initialize object manager instance */ -Mage::setRoot(); Mage::initializeObjectManager(null, new Magento_Test_ObjectManager()); /* Bootstrap the application */ Magento_Test_Bootstrap::setInstance(new Magento_Test_Bootstrap( $magentoBaseDir, + $testsBaseDir, $localXmlFile, $globalEtcFiles, $moduleEtcFiles, diff --git a/dev/tests/integration/framework/tests/unit/framework/bootstrap.php b/dev/tests/integration/framework/tests/unit/framework/bootstrap.php index 354765255980f43619f48a527411869ebd6558d8..dcf132f1016d4cb2e3e8f7a885f31cb68bc236a2 100644 --- a/dev/tests/integration/framework/tests/unit/framework/bootstrap.php +++ b/dev/tests/integration/framework/tests/unit/framework/bootstrap.php @@ -21,19 +21,12 @@ * @category Magento * @package Magento * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ $rootDir = realpath(__DIR__ . '/../../../../../../../'); require_once $rootDir . '/app/bootstrap.php'; +Magento_Autoload_IncludePath::addIncludePath($rootDir . '/dev/tests/integration/framework'); -$codeDirs = array( - $rootDir . '/lib/', - $rootDir . '/app/code/core/', - $rootDir . '/dev/tests/integration/framework/', -); -set_include_path(implode(PATH_SEPARATOR, $codeDirs) . PATH_SEPARATOR . get_include_path()); - -Mage::setRoot(); Mage::initializeObjectManager(null, new Magento_Test_ObjectManager()); diff --git a/dev/tests/integration/framework/tests/unit/phpunit.xml.dist b/dev/tests/integration/framework/tests/unit/phpunit.xml.dist index eea196d1cc236fc981c69d73499c18e7cb539b95..b11ba3af29e5c38f42adb8973daeba76a4eada60 100644 --- a/dev/tests/integration/framework/tests/unit/phpunit.xml.dist +++ b/dev/tests/integration/framework/tests/unit/phpunit.xml.dist @@ -22,7 +22,7 @@ * @category Magento * @package Magento * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Annotation/AppIsolationTest.php b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Annotation/AppIsolationTest.php index 9102f01a1f4e204f7595e4db3e6511b0d4b96dce..ac18570616f8cd85e0a5e1056c9108e0ba8b6d89 100644 --- a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Annotation/AppIsolationTest.php +++ b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Annotation/AppIsolationTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Annotation/ConfigFixtureTest.php b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Annotation/ConfigFixtureTest.php index 9e36438e97f7f50783631505491f64d317c05038..a44c9804fc2f03efa1c5fcb316009b179edc43d7 100644 --- a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Annotation/ConfigFixtureTest.php +++ b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Annotation/ConfigFixtureTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Annotation/DataFixtureTest.php b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Annotation/DataFixtureTest.php index e0548b0c8de9ae289ac54e67d86617cfaf843e80..eba4a58bc6ef1bfbc62940889d553841e1478010 100644 --- a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Annotation/DataFixtureTest.php +++ b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Annotation/DataFixtureTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Annotation/DbIsolationTest.php b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Annotation/DbIsolationTest.php index b5e14b6b177803216beebda3589f13df52bb4636..7f245a82654d1be71f89d0f320772c8c686ea7e0 100644 --- a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Annotation/DbIsolationTest.php +++ b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Annotation/DbIsolationTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Annotation/_files/sample_fixture_two_rollback.php b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Annotation/_files/sample_fixture_two_rollback.php index 0276357984d043a03cc39a71a50737dba8129eea..1dcf8f923539d36b2f4e9c3b50932fe4ba24f069 100644 --- a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Annotation/_files/sample_fixture_two_rollback.php +++ b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Annotation/_files/sample_fixture_two_rollback.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Bootstrap/_files/local-custom.xml b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Bootstrap/_files/local-custom.xml index 8abb9836e2727f68ac22f7c87a573e90fccdb1cb..4b7b556e7157fac4bdb4d495d6e65fe3abd5b2c2 100644 --- a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Bootstrap/_files/local-custom.xml +++ b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Bootstrap/_files/local-custom.xml @@ -22,7 +22,7 @@ * @category Magento * @package Magento * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Bootstrap/_files/local-invalid.xml b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Bootstrap/_files/local-invalid.xml index b0f48d6f8536f2e80647a9ecaac169fab3b71d66..2a71e2a016f0d095001fa343be8fd4ac916cee5a 100644 --- a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Bootstrap/_files/local-invalid.xml +++ b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Bootstrap/_files/local-invalid.xml @@ -22,7 +22,7 @@ * @category Magento * @package Magento * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/BootstrapTest.php b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/BootstrapTest.php index d786ce1c98b37c38cdb508e42fe56f3b8338db6e..c5a1cd3e069103713489d323ede26e2406afa083 100644 --- a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/BootstrapTest.php +++ b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/BootstrapTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ @@ -34,6 +34,7 @@ class Magento_Test_BootstrapTest extends PHPUnit_Framework_TestCase * @var string */ protected static $_magentoDir; + protected static $_testsDir; protected static $_localXmlFile; protected static $_tmpDir; protected static $_globalEtcFiles; @@ -60,6 +61,7 @@ class Magento_Test_BootstrapTest extends PHPUnit_Framework_TestCase public static function setUpBeforeClass() { self::$_magentoDir = realpath(dirname(__FILE__) . '/../../../../../../../../..'); + self::$_testsDir = realpath(dirname(__FILE__) . '/../../../../../..'); self::$_localXmlFile = realpath(dirname(__FILE__) . '/../../../../../../etc/local-mysql.xml.dist'); self::$_globalEtcFiles = realpath(dirname(__FILE__) . '/../../../../../../../../../app/etc/*.xml'); self::$_moduleEtcFiles = realpath(dirname(__FILE__) . '/../../../../../../../../../app/etc/modules/*.xml'); @@ -118,6 +120,7 @@ class Magento_Test_BootstrapTest extends PHPUnit_Framework_TestCase { $this->_bootstrap->__construct( self::$_magentoDir, + self::$_testsDir, ($localXmlFile ? $localXmlFile : self::$_localXmlFile), self::$_globalEtcFiles, self::$_moduleEtcFiles, @@ -290,4 +293,9 @@ class Magento_Test_BootstrapTest extends PHPUnit_Framework_TestCase { $this->assertEquals(self::$_tmpDir, $this->_bootstrap->getTmpDir()); } + + public function testGetTestsDir() + { + $this->assertEquals(self::$_testsDir, $this->_bootstrap->getTestsDir()); + } } diff --git a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/ClearPropertiesTest.php b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/ClearPropertiesTest.php index 77db42b89e1ff47fafcc3a9cccd7f47bd04d3c63..737f1c5ac1f39f8dd01470627a2ed25f8c3ad2e2 100644 --- a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/ClearPropertiesTest.php +++ b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/ClearPropertiesTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/CookieTest.php b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/CookieTest.php index 4fac6ba5794af025a005ce9bb4fe520d26080a47..ecec4c0e71d16a45575008387bbebb6af23a143d 100644 --- a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/CookieTest.php +++ b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/CookieTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Db/Adapter/TransactionInterfaceTest.php b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Db/Adapter/TransactionInterfaceTest.php index 67dfcbbd01c945077179cb1f81315b5a1d4ae221..c784f230694aeffaef69927ce3d27d9012e4bc38 100644 --- a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Db/Adapter/TransactionInterfaceTest.php +++ b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Db/Adapter/TransactionInterfaceTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Test * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Db/MysqlTest.php b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Db/MysqlTest.php index a2975c50a4ad6f5c4339dcdec0ebf6fc8672a8e8..ef168d6a4454be2c0bb4deabb65840f6b6f03701 100644 --- a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Db/MysqlTest.php +++ b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Db/MysqlTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/EntityTest.php b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/EntityTest.php index b5f983a4550f5d97dd0692a1cc44d2165d91cf55..988e1f6ed750abb4c99ff414e9f2b9435b4199db 100644 --- a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/EntityTest.php +++ b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/EntityTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Event/MagentoTest.php b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Event/MagentoTest.php index 72d19fbb3e9f961d0e294b4c0da368e5b0895ab5..4ca34be84bd1c59e54afe79db75af3ad5dd9f702 100644 --- a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Event/MagentoTest.php +++ b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Event/MagentoTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Event/Param/TransactionTest.php b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Event/Param/TransactionTest.php index 283179324e251fd79f6c28acd5fbb24df1482d17..f6748ec04d4581f749ac37cdd95bc5955a51389a 100644 --- a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Event/Param/TransactionTest.php +++ b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Event/Param/TransactionTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Event/PhpUnitTest.php b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Event/PhpUnitTest.php index cbe1e18c137350c687f13e5affd8bde3607b0206..3d14be6f2f74ad50848f19bc9c3f35f7074e518c 100644 --- a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Event/PhpUnitTest.php +++ b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Event/PhpUnitTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Event/TransactionTest.php b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Event/TransactionTest.php index 57866deea75a0aba35da905704ec93404f0e75dc..d7110b37b6e7860dba36f73230871ad5af6417f7 100644 --- a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Event/TransactionTest.php +++ b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Event/TransactionTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/EventManagerTest.php b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/EventManagerTest.php index a331ed5e8e7417251ebcc4b094c8b719b11acbbe..d49c05cf79449f455be34788f06ec25b6e148e2e 100644 --- a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/EventManagerTest.php +++ b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/EventManagerTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Helper/FactoryTest.php b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Helper/FactoryTest.php index 036b572e8f0a0ef845c230719ea1ccf70dfcf875..22932b24dbc592cf93e6853956c9c15d81f902c3 100644 --- a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Helper/FactoryTest.php +++ b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Helper/FactoryTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/ObjectManagerTest.php b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/ObjectManagerTest.php index 067c3c0071f99df4d8da47ab00e43ad13f36619b..632e23019405ac76da85ee7079d9075cb49be401 100644 --- a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/ObjectManagerTest.php +++ b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/ObjectManagerTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ @@ -30,25 +30,6 @@ */ class Magento_Test_ObjectManagerTest extends PHPUnit_Framework_TestCase { - /** - * Test resource value - */ - const TEST_RESOURCE = 'test_resource'; - - /** - * ObjectManager mock for tests - * - * @var Magento_Test_ObjectManager - */ - protected $_model; - - /** - * List of classes to call __destruct() on - * - * @var array - */ - protected $_classesToDestruct = array(); - /** * Expected instance manager parametrized cache after clear * @@ -59,88 +40,37 @@ class Magento_Test_ObjectManagerTest extends PHPUnit_Framework_TestCase 'hashLong' => array() ); - protected function tearDown() + public function testClearCache() { - unset($this->_model); - unset($this->_classesToDestruct); - } + $object = $this->getMock('stdClass', array('__destruct')); + $object + ->expects($this->once()) + ->method('__destruct') + ; - /** - * @param bool $shared - * @dataProvider clearCacheDataProvider - */ - public function testClearCache($shared) - { - $this->_prepareObjectManagerForClearCache($shared); - $this->_model->clearCache(); - } + $resource = $this->getMock('stdClass', array('__destruct')); + $object + ->expects($this->once()) + ->method('__destruct') + ; - /** - * @return array - */ - public function clearCacheDataProvider() - { - return array( - 'noSharedInstances' => array(false), - 'withSharedInstances' => array(true), - ); - } - - /** - * Prepare all required mocks for clearCache - * @param $shared - */ - protected function _prepareObjectManagerForClearCache($shared) - { - $diInstance = $this->getMock('Magento_Di_Zend', array('get', 'instanceManager', 'setInstanceManager')); - $instanceManager = $this->getMock( - 'Magento_Di_InstanceManager_Zend', array('addSharedInstance', 'hasSharedInstance'), array(), '', false - ); + $instanceManager = new Magento_Di_InstanceManager_Zend(); + $instanceManager->addSharedInstance($object, 'sharedInstance'); + $instanceManager->addSharedInstance($resource, 'Mage_Core_Model_Resource'); - $diInstance->expects($this->exactly(7)) - ->method('instanceManager') - ->will($this->returnValue($instanceManager)); + $diInstance = new Magento_Di_Zend(); + $model = new Magento_Test_ObjectManager(null, $diInstance); - $instanceManager->expects($this->any()) - ->method('hasSharedInstance') - ->will($this->returnValue($shared)); + // Reflection is the only way to setup fixture input data in place of the hard-coded property value + $reflectionClass = new ReflectionProperty(get_class($model), '_classesToDestruct'); + $reflectionClass->setAccessible(true); + $reflectionClass->setValue($model, array('sharedInstance', 'nonRegisteredInstance')); - $getCallCount = $shared ? 5 : 1; - $diInstance->expects($this->exactly($getCallCount)) - ->method('get') - ->will($this->returnCallback(array($this, 'getCallback'))); - $diInstance->expects($this->any()) - ->method('setInstanceManager') - ->will($this->returnSelf()); - - $this->_model = new Magento_Test_ObjectManager(null, $diInstance); - - $instanceManager->expects($this->exactly(2)) - ->method('addSharedInstance'); - $instanceManager->expects($this->at(4)) - ->method('addSharedInstance') - ->with($this->_model, 'Magento_ObjectManager'); - $instanceManager->expects($this->at(5)) - ->method('addSharedInstance') - ->with(self::TEST_RESOURCE, 'Mage_Core_Model_Resource'); - } - - /** - * Callback method for Magento_Di_Zend::get - * - * @param string $className - * @return PHPUnit_Framework_MockObject_MockObject|string - */ - public function getCallback($className) - { - if ($className != 'Mage_Core_Model_Resource') { - $this->_classesToDestruct[] = $className; - $mock = $this->getMock($className, array('__destruct'), array(), '', false); - $mock->expects($this->once()) - ->method('__destruct'); - return $mock; - } else { - return self::TEST_RESOURCE; - } + $diInstance->setInstanceManager($instanceManager); + $this->assertSame($model, $model->clearCache()); + $this->assertNotSame($instanceManager, $diInstance->instanceManager()); + $this->assertSame($model, $diInstance->instanceManager()->getSharedInstance('Magento_ObjectManager')); + $this->assertSame($resource, $diInstance->instanceManager()->getSharedInstance('Mage_Core_Model_Resource')); + $this->assertFalse($diInstance->instanceManager()->hasSharedInstance('sharedInstance')); } } diff --git a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Profiler/OutputBambooTest.php b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Profiler/OutputBambooTest.php index 9fd232dbec46e1576b3ea3167cc6fa02da4bfa4d..73875bc491df50e7081f8cbe90bd1f8bd759a186 100644 --- a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Profiler/OutputBambooTest.php +++ b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Profiler/OutputBambooTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/RequestTest.php b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/RequestTest.php index 66d5790ece5acdee17b96eda75931b6332955c18..a1f70fb5cbbdec88311d7468eb3868f491f04b50 100644 --- a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/RequestTest.php +++ b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/RequestTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/ResponseTest.php b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/ResponseTest.php index 73c37a45985c7ad2c1122fad746bb770de5e915f..de63e8748943f721c0a4f372f82585698611fc51 100644 --- a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/ResponseTest.php +++ b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/ResponseTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/TestCase/ControllerAbstractTest.php b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/TestCase/ControllerAbstractTest.php index 63a9e54ddb3c51be5ef587209bc6e44852298b53..110ef985995e8ad2ac4fdc0eeca36c6f3ea015cb 100644 --- a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/TestCase/ControllerAbstractTest.php +++ b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/TestCase/ControllerAbstractTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/_files/DummyTestCase.php b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/_files/DummyTestCase.php index 0e19a1df95cca620bbcf76db1e4471b71b0b5bc7..0570d8d31f2cc61e683366064755ac4c9b72d865 100644 --- a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/_files/DummyTestCase.php +++ b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/_files/DummyTestCase.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/_files/Stub.php b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/_files/Stub.php index e423ccfbfe3e12fc7b087fd1d12d33d49fa0965d..cb26d2aa4f3f559f071bd1b0e46a1cb30e84a346 100644 --- a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/_files/Stub.php +++ b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/_files/Stub.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/phpunit.xml.dist b/dev/tests/integration/phpunit.xml.dist index 396bf6e49a66ad900b4fe5d87e1e2f9acda9ef3c..861219b3d48667367e001d0fb6ba790b1fc5f883 100644 --- a/dev/tests/integration/phpunit.xml.dist +++ b/dev/tests/integration/phpunit.xml.dist @@ -22,7 +22,7 @@ * @category Magento * @package Magento * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Catalog/Category/TreeTest.php b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Catalog/Category/TreeTest.php index ac8ad8e0c05b8cec67e748e984dd01ebb750d6cf..83598e82947ebdeb5e5a207217f3059874ae71bf 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Catalog/Category/TreeTest.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Catalog/Category/TreeTest.php @@ -21,7 +21,7 @@ * @category Mage * @package Mage_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Adminhtml_Block_Catalog_Category_TreeTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Catalog/Product/Attribute/Edit/Tab/MainTest.php b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Catalog/Product/Attribute/Edit/Tab/MainTest.php index 68af5a101320c700a2166893339dcbbbd2e7320e..32c8ebad0df3101333bef927bba90e7dca9a9fcd 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Catalog/Product/Attribute/Edit/Tab/MainTest.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Catalog/Product/Attribute/Edit/Tab/MainTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Catalog/Product/Attribute/Set/Toolbar/AddTest.php b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Catalog/Product/Attribute/Set/Toolbar/AddTest.php index 7d72d5086e2d419760f0b2d22e74fd83fe532277..63a4dc562ac0e28c79e77f6faea226d3dee8b688 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Catalog/Product/Attribute/Set/Toolbar/AddTest.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Catalog/Product/Attribute/Set/Toolbar/AddTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Options/OptionTest.php b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Options/OptionTest.php index 0d63e7e9362e9d1761d9489fe40e4641a8dc19c3..ed0bdd65c7edb28de6422d521023d7afcaf5f0f3 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Options/OptionTest.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Options/OptionTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Options/Type/SelectTest.php b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Options/Type/SelectTest.php index 99be79d8a74aa57ed30a7a5478f5c887b05dc4ef..93ac04af90bd605f0a347df4fdc78f0a3f47cf17 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Options/Type/SelectTest.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Options/Type/SelectTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Super/ConfigTest.php b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Super/ConfigTest.php index 5a81d4e583f8ffc83fd8a8b245924b095043a8a3..01d9dc0018f7724580aad7ccac53e4182029bd32 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Super/ConfigTest.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Super/ConfigTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Super/SettingsTest.php b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Super/SettingsTest.php index b199e47a3f3e777e9045deb5eb456658bf86ba7a..7f7b95e3e2e6d129d96e85f8fbefe32e0304b406 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Super/SettingsTest.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Super/SettingsTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Catalog/Product/Edit/TabsTest.php b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Catalog/Product/Edit/TabsTest.php index 8ca5bf8c6c3c31f0c1add662507f2f1d1b0be191..012dab5db9a3edc5ebd6a267e0b8f94b8066c489 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Catalog/Product/Edit/TabsTest.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Catalog/Product/Edit/TabsTest.php @@ -21,7 +21,7 @@ * @category Mage * @package Magento_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Adminhtml_Block_Catalog_Product_Edit_TabsTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Catalog/Product/EditTest.php b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Catalog/Product/EditTest.php index e3816dd84f058f240e03c0640861847479836d9e..02f1c94cb30c50420e632b13138dc04be6beef9f 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Catalog/Product/EditTest.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Catalog/Product/EditTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/Gallery/ContentTest.php b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/Gallery/ContentTest.php index 1b42eb196aada76ac11978b681323db4794ff941..4071546a4aa05d2eba80fcc7a6ba9f95b425d840 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/Gallery/ContentTest.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/Gallery/ContentTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/Weight/RendererTest.php b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/Weight/RendererTest.php index c5ff44b11869b01d5b482ecc6fa866e9fbd31aef..84cf8254a86edd756643f77b342566795ccaddb5 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/Weight/RendererTest.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/Weight/RendererTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Catalog/Product/Options/AjaxTest.php b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Catalog/Product/Options/AjaxTest.php index e8d681868fec71a6ba6e97d576f215fdbdaa4e26..96fa0f67d177738fa8348329b76daad01c9d9758 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Catalog/Product/Options/AjaxTest.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Catalog/Product/Options/AjaxTest.php @@ -21,7 +21,7 @@ * @category Mage * @package Magento_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Adminhtml_Block_Catalog_Product_Options_AjaxTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Cms/Page/Edit/Tab/DesignTest.php b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Cms/Page/Edit/Tab/DesignTest.php index 7aaae8edfbfa805a5d3f18cadcf264dd3050e754..e8589e890c3a1a7cb09c536b09eabf04e606d581 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Cms/Page/Edit/Tab/DesignTest.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Cms/Page/Edit/Tab/DesignTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Customer/Edit/Tab/View/AccordionTest.php b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Customer/Edit/Tab/View/AccordionTest.php index 7d3a592b982255a684ccdb0f6ca6fa6bc77fe852..cdced6bcf51f0c3fcb235319305239e5e055ee12 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Customer/Edit/Tab/View/AccordionTest.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Customer/Edit/Tab/View/AccordionTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Customer/OnlineTest.php b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Customer/OnlineTest.php index 81f656a606693ab654a0bfcb6ceede55fb3ceae7..c55507431f4c265b148f73305191a6b44d246236 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Customer/OnlineTest.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Customer/OnlineTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Dashboard/GraphTest.php b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Dashboard/GraphTest.php index 72ed2350cbeb630cb1d82b825ac0e39e58264cf0..0366e0980d445a413f9355e2c3c3ac0e737e69fd 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Dashboard/GraphTest.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Dashboard/GraphTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Newsletter/Queue/Edit/FormTest.php b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Newsletter/Queue/Edit/FormTest.php index d26a09da21b2d73b92972d47c0d670246523d011..320100eb51f0926b3947919838fe6d7a4a11166b 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Newsletter/Queue/Edit/FormTest.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Newsletter/Queue/Edit/FormTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Newsletter/SubscriberTest.php b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Newsletter/SubscriberTest.php index 1a909b3609bf049778df897472ac9cec9ea7bff7..4b229a23b7e97f952a75ea32cc2dfe2c32101bb4 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Newsletter/SubscriberTest.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Newsletter/SubscriberTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Page/HeaderTest.php b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Page/HeaderTest.php index caabb2ae2ebd5bcae4197e8707da30f585bf19ee..891c0cfbc815e2df17e7cd5c2d07bd5e6e52cb2d 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Page/HeaderTest.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Page/HeaderTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Poll/GridTest.php b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Poll/GridTest.php index c49641716b087cd08903b6a2c81078afeea0c0bc..e02ba87a267c06e57eb51d944bd0dd62bcc89ecf 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Poll/GridTest.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Poll/GridTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Promo/Catalog/Edit/Tab/MainTest.php b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Promo/Catalog/Edit/Tab/MainTest.php index f058935f8f577eca7018665370f775c221320271..cbeb45121627c25b8f547897d82a8cdaac4e4afa 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Promo/Catalog/Edit/Tab/MainTest.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Promo/Catalog/Edit/Tab/MainTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Promo/Quote/Edit/Tab/MainTest.php b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Promo/Quote/Edit/Tab/MainTest.php index 7203ddcd8595eab6251befc27d1fde4cb7f5c216..4644dc1a7e3484a071eea18a769ffd6913b76746 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Promo/Quote/Edit/Tab/MainTest.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Promo/Quote/Edit/Tab/MainTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Report/Filter/FormTest.php b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Report/Filter/FormTest.php index 4114622f9b5fbadf16c7c8d21be522d24dd2ce92..f49a8424136d261c5c19f352cf76e28d0ab36806 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Report/Filter/FormTest.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Report/Filter/FormTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Report/Sales/Bestsellers/GridTest.php b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Report/Sales/Bestsellers/GridTest.php index 0357cab9fc4442fab2ef42beea4df1b55eabce4f..e67940db10d2920ab1a5fb42b303e8fcfc023fc0 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Report/Sales/Bestsellers/GridTest.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Report/Sales/Bestsellers/GridTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Report/Sales/Coupons/GridTest.php b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Report/Sales/Coupons/GridTest.php index 4621eee1522d90a0e2bd04417a8ca0873f01f5a1..336704560f65315c857004ac5518b48356e92b8b 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Report/Sales/Coupons/GridTest.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Report/Sales/Coupons/GridTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Report/Sales/Invoiced/GridTest.php b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Report/Sales/Invoiced/GridTest.php index 00e45ffe517fcf2a0f040ac02963f25bfe2df2da..42285bd02b8c06e4ef0e9e47906a84137999ec68 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Report/Sales/Invoiced/GridTest.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Report/Sales/Invoiced/GridTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Report/Sales/Refunded/GridTest.php b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Report/Sales/Refunded/GridTest.php index 5154abe1852e754811f0d2355f62a5c9dafe16a8..98cb7ab2692dcd96c7980ad33a661d464749afcb 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Report/Sales/Refunded/GridTest.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Report/Sales/Refunded/GridTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Report/Sales/Sales/GridTest.php b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Report/Sales/Sales/GridTest.php index 172d71b1731ccf7f13e2355fd02454531a6c76ea..1998ae76a20086612cd6eb0f16f233ca92cac572 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Report/Sales/Sales/GridTest.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Report/Sales/Sales/GridTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Report/Sales/Shipping/GridTest.php b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Report/Sales/Shipping/GridTest.php index 66689e2ba5fe4fe5f1dd35ca6a7c899d5656a6fd..a4f96ba6a31173077bcd9b654f8f45893c453a64 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Report/Sales/Shipping/GridTest.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Report/Sales/Shipping/GridTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Report/Sales/Tax/GridTest.php b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Report/Sales/Tax/GridTest.php index 332675761ed92e29ca3dc1128aea1a264bae74e5..ef91e65f70c96f1ccdf9a2ac39e2a368d8e64711 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Report/Sales/Tax/GridTest.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Report/Sales/Tax/GridTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Sales/Items/AbstractTest.php b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Sales/Items/AbstractTest.php index 926353e804bc1e0ad068b628fdee429d34478bfa..8b0f94935cea66ce3e230815bdfb16352ea785b8 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Sales/Items/AbstractTest.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Sales/Items/AbstractTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Sales/Order/Create/Form/AbstractTest.php b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Sales/Order/Create/Form/AbstractTest.php index 43c11a5bbd434c986f77cf75619329477ac07e37..13a1c467ebd70334b6b6338f54eba2bd33279783 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Sales/Order/Create/Form/AbstractTest.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Sales/Order/Create/Form/AbstractTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/System/Design/Edit/Tab/GeneralTest.php b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/System/Design/Edit/Tab/GeneralTest.php index 165afaa29f91c7616839127e69d9c920e03bde62..2a39a17b0cfee3ca0287c36ebb65193bda25701d 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/System/Design/Edit/Tab/GeneralTest.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/System/Design/Edit/Tab/GeneralTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/System/Store/DeleteTest.php b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/System/Store/DeleteTest.php index 76b811bea3e5eaacf63187151ef4ad22734a2e60..10b30acdee61296b334c8d9e74146ece9d37f282 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/System/Store/DeleteTest.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/System/Store/DeleteTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/System/Store/Edit/Form/GroupTest.php b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/System/Store/Edit/Form/GroupTest.php index 8032f53950a0dcaefead0e23bf9cba5bca2b056a..9e1947c4bae30acc7c92aeebf95f77b4e3831a57 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/System/Store/Edit/Form/GroupTest.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/System/Store/Edit/Form/GroupTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/System/Store/Edit/Form/StoreTest.php b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/System/Store/Edit/Form/StoreTest.php index a28b315bb3ba48c391b805b8b5d47f3d7845a816..40d03ccc39eaedb4b5ad8e3bafcc83fa0d46ed2b 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/System/Store/Edit/Form/StoreTest.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/System/Store/Edit/Form/StoreTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/System/Store/Edit/Form/WebsiteTest.php b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/System/Store/Edit/Form/WebsiteTest.php index db49462747934c4d97e89a669360fa6f3f58050e..ee311d53ff495ba147960f7dff10313f45ac756b 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/System/Store/Edit/Form/WebsiteTest.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/System/Store/Edit/Form/WebsiteTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/System/Store/EditTest.php b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/System/Store/EditTest.php index b7c012293dc64433ab835137ca25a1bed7b37d71..8b9c081050e3cfa927d39d919a939e0e39c5489d 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/System/Store/EditTest.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/System/Store/EditTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/TemplateTest.php b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/TemplateTest.php index 0432ed0f49ad38e613e6adecf4522e6ad6606759..1a2ca74565eb1e79e23b6547d7bf4eb3bb4ee936 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/TemplateTest.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/TemplateTest.php @@ -21,13 +21,10 @@ * @category Magento * @package Mage_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ -/** - * @group module:Mage_Adminhtml - */ class Mage_Adminhtml_Block_TemplateTest extends PHPUnit_Framework_TestCase { public function testConstructor() diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Urlrewrite/Catalog/Category/EditTest.php b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Urlrewrite/Catalog/Category/EditTest.php index 1a5417f0a5e7f1b9232cba405bdc883c061b3879..e4dfc85ebe66f4a32e0f6ff6dbc21b761f1de803 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Urlrewrite/Catalog/Category/EditTest.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Urlrewrite/Catalog/Category/EditTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Urlrewrite/Catalog/Category/TreeTest.php b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Urlrewrite/Catalog/Category/TreeTest.php index 613eb84c4a69b34eab248dd50f05aee9b97d381a..b7083ff326f6fb70f4056ab2296bd9593aa59fbb 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Urlrewrite/Catalog/Category/TreeTest.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Urlrewrite/Catalog/Category/TreeTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Urlrewrite/Catalog/Edit/FormTest.php b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Urlrewrite/Catalog/Edit/FormTest.php index 7be4f89a5b6c43016fc77b6eebfc65474f2cbd12..02104d6d2e68fa67e5717734137653c21dff1e39 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Urlrewrite/Catalog/Edit/FormTest.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Urlrewrite/Catalog/Edit/FormTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Urlrewrite/Catalog/Product/EditTest.php b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Urlrewrite/Catalog/Product/EditTest.php index c2fadd4efcfa0945279ab4694858846b6a817f4d..c7269800722320531af43df06b20270452d9e8c9 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Urlrewrite/Catalog/Product/EditTest.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Urlrewrite/Catalog/Product/EditTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Urlrewrite/Catalog/Product/GridTest.php b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Urlrewrite/Catalog/Product/GridTest.php index 69e9aa8880eff170c4f2d8b81d1cd0528245250c..e81f9c3c4997982abbb06dc1747ab9ac75dd46a1 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Urlrewrite/Catalog/Product/GridTest.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Urlrewrite/Catalog/Product/GridTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Urlrewrite/Cms/Page/Edit/FormTest.php b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Urlrewrite/Cms/Page/Edit/FormTest.php index 0526169e71c979365a16de1c73554cee89b7db1f..0d1ea50b4e1a42ac8b6f3fd4c678aa5a80380f0e 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Urlrewrite/Cms/Page/Edit/FormTest.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Urlrewrite/Cms/Page/Edit/FormTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Urlrewrite/Cms/Page/EditTest.php b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Urlrewrite/Cms/Page/EditTest.php index a1c1c23adbf63f9b979eb1a68aab49bffc880653..664b2a4e209d0e5a2588f9c1f6740bdb680ad9b1 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Urlrewrite/Cms/Page/EditTest.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Urlrewrite/Cms/Page/EditTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Urlrewrite/Cms/Page/GridTest.php b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Urlrewrite/Cms/Page/GridTest.php index bf43f193b18d0f5e633fca86abee11e84708271d..588b0ed035114d3b6c7c577474a1b51e5a944681 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Urlrewrite/Cms/Page/GridTest.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Urlrewrite/Cms/Page/GridTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Urlrewrite/Edit/FormTest.php b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Urlrewrite/Edit/FormTest.php index 430015d10212da550665999f9cb1e96e3f0577b2..aeced04025029d2c2d7d71852eb1884ee1fab6dc 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Urlrewrite/Edit/FormTest.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Urlrewrite/Edit/FormTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Urlrewrite/EditTest.php b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Urlrewrite/EditTest.php index ee8dfbfa5d001bd3638c48f75ffdbe6f7e5c98e8..6087ce16e75cb69382c251ac941b25959f499b99 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Urlrewrite/EditTest.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Urlrewrite/EditTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Widget/ContainerTest.php b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Widget/ContainerTest.php index d2a049d72003e7103dc59b9353fcfcd6e30da307..b25a5d87916ca52db9db0baca63ce3ba7969a711 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Widget/ContainerTest.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Widget/ContainerTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Widget/Form/ContainerTest.php b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Widget/Form/ContainerTest.php index 0d3de04c5eb5b3b62b59be9494aec2ada6466d02..3740cd845c0977bfa8fe6b8ce14662a107b588f2 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Widget/Form/ContainerTest.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Widget/Form/ContainerTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Widget/Grid/Massaction/ItemTest.php b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Widget/Grid/Massaction/ItemTest.php index 6902c2f8009079c8d5f245a416dea2f3b967ac47..beba4c17026b8edb13029ec7b65bfaab47c159c5 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Widget/Grid/Massaction/ItemTest.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Widget/Grid/Massaction/ItemTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Widget/GridTest.php b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Widget/GridTest.php index 8f75e9808a7014774849095cda3279614a089f13..6333e0e771eb3d4d3ad79697572e359d51f82572 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Widget/GridTest.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Widget/GridTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Widget/TabsTest.php b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Widget/TabsTest.php index 3ecb101ba9680907736bf3deb4ee1edef9e1508a..31b1f2b36b051eca659d2a1de6dc0f927593feaa 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Widget/TabsTest.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/Block/Widget/TabsTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/Controller/ActionTest.php b/dev/tests/integration/testsuite/Mage/Adminhtml/Controller/ActionTest.php index da999139cb6bfa70ef8ab8a288f37519c4c063ae..7f323bdb8b7d0c1c8aae342a3f16807c667f5454 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/Controller/ActionTest.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/Controller/ActionTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/DashboardControllerTest.php b/dev/tests/integration/testsuite/Mage/Adminhtml/DashboardControllerTest.php index a731067321caa053213867e8283d7cf7bfb670e5..7ba80adf19762598bbe2ad19d443c67462fcfa2b 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/DashboardControllerTest.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/DashboardControllerTest.php @@ -18,13 +18,27 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Adminhtml_DashboardControllerTest extends Mage_Backend_Utility_Controller { public function testTunnelAction() { + $testUrl = Mage_Adminhtml_Block_Dashboard_Graph::API_URL . '?cht=p3&chd=t:60,40&chs=250x100&chl=Hello|World'; + $handle = curl_init(); + curl_setopt($handle, CURLOPT_URL, $testUrl); + curl_setopt($handle, CURLOPT_RETURNTRANSFER, true); + try { + if (false === curl_exec($handle)) { + $this->markTestSkipped('Third-party service is unavailable: ' . $testUrl); + } + curl_close($handle); + } catch (Exception $e) { + curl_close($handle); + throw $e; + } + $gaFixture = 'YTo5OntzOjM6ImNodCI7czoyOiJsYyI7czozOiJjaGYiO3M6Mzk6ImJnLHMsZjRmNGY0fGMsbGcsOTAsZmZmZmZ' . 'mLDAuMSxlZGVkZWQsMCI7czozOiJjaG0iO3M6MTQ6IkIsZjRkNGIyLDAsMCwwIjtzOjQ6ImNoY28iO3M6NjoiZGI0ODE0IjtzOjM6ImN' . 'oZCI7czoxNjoiZTpBQUFBQUFBQWYuQUFBQSI7czo0OiJjaHh0IjtzOjM6IngseSI7czo0OiJjaHhsIjtzOjc0OiIwOnwxMC8xMy8xMnw' diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/Helper/DataTest.php b/dev/tests/integration/testsuite/Mage/Adminhtml/Helper/DataTest.php index 67104e35aa0166d23cb042bfce13c0c0e0142949..1489f28f867d9c83d3dbeab7630f00051b0944a2 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/Helper/DataTest.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/Helper/DataTest.php @@ -21,13 +21,10 @@ * @category Magento * @package Mage_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ -/** - * @group module:Mage_Adminhtml - */ class Mage_Adminhtml_Helper_DataTest extends PHPUnit_Framework_TestCase { public function testConstructor() diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/Model/Sales/Order/CreateTest.php b/dev/tests/integration/testsuite/Mage/Adminhtml/Model/Sales/Order/CreateTest.php index 12cfda1092c0a4457224ccbeae42e8a1385f8822..84faede5e71102ed68fa5ed43d27f02482b14039 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/Model/Sales/Order/CreateTest.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/Model/Sales/Order/CreateTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/Model/SessionTest.php b/dev/tests/integration/testsuite/Mage/Adminhtml/Model/SessionTest.php index 4a524cd1aa6020c512072b7df4146729df4113ea..8f7e28e029e9eb7f3bb317b2117554b7bc96276c 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/Model/SessionTest.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/Model/SessionTest.php @@ -21,13 +21,10 @@ * @category Magento * @package Mage_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ -/** - * @group module:Mage_Adminhtml - */ class Mage_Adminhtml_Model_SessionTest extends PHPUnit_Framework_TestCase { public function testConstructor() diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/_files/form_key_disabled.php b/dev/tests/integration/testsuite/Mage/Adminhtml/_files/form_key_disabled.php index cb01c032e15fc215d54c6695d00321495dc47140..d24a33aaded7c4ac871c678ff7aa13b3f4d76f26 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/_files/form_key_disabled.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/_files/form_key_disabled.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/_files/form_key_disabled_rollback.php b/dev/tests/integration/testsuite/Mage/Adminhtml/_files/form_key_disabled_rollback.php index 2625b444d6383b956fbf3cc5b4ed9767b7527ec5..ade323563ffabf382e0d35dbd30ba378b3901341 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/_files/form_key_disabled_rollback.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/_files/form_key_disabled_rollback.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/_files/order_shipping_address_different_to_billing.php b/dev/tests/integration/testsuite/Mage/Adminhtml/_files/order_shipping_address_different_to_billing.php index 4f26d84f1c49115a51855daa87f40697507e335a..d1b87590e7463cfbedcf4b5a0991ee06f6da9860 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/_files/order_shipping_address_different_to_billing.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/_files/order_shipping_address_different_to_billing.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/_files/order_shipping_address_same_as_billing.php b/dev/tests/integration/testsuite/Mage/Adminhtml/_files/order_shipping_address_same_as_billing.php index 4d854b805369a886794922d9f176554feb94be8b..cfa44052130bace0853d9f1e4527e3a6d5e633c1 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/_files/order_shipping_address_same_as_billing.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/_files/order_shipping_address_same_as_billing.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/Catalog/CategoryControllerTest.php b/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/Catalog/CategoryControllerTest.php index 54b72bab586f3460b45f1f5c804ed28c7d225932..b7869eef1570c18a0fc0a354d0923578faa5f874 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/Catalog/CategoryControllerTest.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/Catalog/CategoryControllerTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/Catalog/Product/Action/AttributeControllerTest.php b/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/Catalog/Product/Action/AttributeControllerTest.php index 54aad594f45cd03deba0520fe02a4db083561efb..1ebb5785e74de6ab24c69ab9091ce47ae5be90ef 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/Catalog/Product/Action/AttributeControllerTest.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/Catalog/Product/Action/AttributeControllerTest.php @@ -21,7 +21,7 @@ * @category Mage * @package Mage_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/Catalog/Product/AttributeControllerTest.php b/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/Catalog/Product/AttributeControllerTest.php index 1dd1cf29dcd258ccc6fa5d5e39b979d66039a438..7efdbfcaa72f4028918ab459ae24eed676d368fc 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/Catalog/Product/AttributeControllerTest.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/Catalog/Product/AttributeControllerTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/Catalog/Product/ReviewControllerTest.php b/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/Catalog/Product/ReviewControllerTest.php index a7305fc5cb704b8a8336ec0a5c2c825f130daf99..4c5486b6868edd7f72564bda5e8eb38c334b5de3 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/Catalog/Product/ReviewControllerTest.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/Catalog/Product/ReviewControllerTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/Catalog/ProductControllerTest.php b/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/Catalog/ProductControllerTest.php index e89403317170693ccd955414745302e860cdb22c..327bcfcafdaa6e34281cdf65d224409d11c9db34 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/Catalog/ProductControllerTest.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/Catalog/ProductControllerTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/Customer/GroupControllerTest.php b/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/Customer/GroupControllerTest.php index 31faf7243369f659d29d029f598bd646c34ae67a..22e0a4fda82c8967c66294cb2184f652bd08c942 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/Customer/GroupControllerTest.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/Customer/GroupControllerTest.php @@ -21,7 +21,7 @@ * @category Mage * @package Mage_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/CustomerControllerTest.php b/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/CustomerControllerTest.php index 9425413c8099eba92f4078165fded0a042e7795a..2eda4f95b5a864fec7eda708e292d1d3c90dcd06 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/CustomerControllerTest.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/CustomerControllerTest.php @@ -21,7 +21,7 @@ * @category Mage * @package Mage_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/IndexControllerTest.php b/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/IndexControllerTest.php index b63c77099c4589aed8ebe6bcb1fb8347a93f5982..f45beee8383d6d57ce3e507f6a86057138a8ad2c 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/IndexControllerTest.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/IndexControllerTest.php @@ -21,13 +21,10 @@ * @category Mage * @package Mage_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ -/** - * @group module:Mage_Adminhtml - */ class Mage_Adminhtml_IndexControllerTest extends Mage_Backend_Utility_Controller { /** diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/NewsletterQueueControllerTest.php b/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/NewsletterQueueControllerTest.php index 8f556935f3b6282acae3803c391d385758c4a583..a03bdddf4d4e8a4d3effc42f411292517304a52a 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/NewsletterQueueControllerTest.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/NewsletterQueueControllerTest.php @@ -21,7 +21,7 @@ * @category Mage * @package Mage_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/NewsletterTemplateControllerTest.php b/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/NewsletterTemplateControllerTest.php index 528b6d9b669af230c0965ce2ffada4d0d56e229f..52ceb1d09be9dba8671f04b775bf15a34d251564 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/NewsletterTemplateControllerTest.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/NewsletterTemplateControllerTest.php @@ -21,7 +21,7 @@ * @category Mage * @package Mage_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/Sales/Order/CreateControllerTest.php b/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/Sales/Order/CreateControllerTest.php index 6555ed9c073a1428eae537a684bec1ceb8799167..131d6e84a57f03f786efa6e26cd2a2e229e2c65b 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/Sales/Order/CreateControllerTest.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/Sales/Order/CreateControllerTest.php @@ -21,7 +21,7 @@ * @category Mage * @package Mage_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/Sales/Order/CreditmemoControllerTest.php b/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/Sales/Order/CreditmemoControllerTest.php index 0e718be9af512ca11780ea1f0af62a455b3a2e62..59acba3ac67046bdeb86d981dfa0f209f7aa189d 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/Sales/Order/CreditmemoControllerTest.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/Sales/Order/CreditmemoControllerTest.php @@ -21,7 +21,7 @@ * @category Mage * @package Mage_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/Sales/OrderControllerTest.php b/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/Sales/OrderControllerTest.php index 0411d9b902aa9281ed7fe81c06e0ba0961541d2a..d0ea3cb582ab5875c626657515fbd1e17b9c553b 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/Sales/OrderControllerTest.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/Sales/OrderControllerTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/Sales/_files/address.php b/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/Sales/_files/address.php index 86bca1d1d0d74e95ea8057350c33efcf9bc8f647..6115ba262d26fb0d3dab876b695105f25af8ab91 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/Sales/_files/address.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/Sales/_files/address.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ /** @var $address Mage_Sales_Model_Order_Address */ diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/Sales/_files/address_data.php b/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/Sales/_files/address_data.php index 4f4be49a3a8bae9a5f2830755ad03ce577d5a0b8..f5c834f6973d663f3bc8fef784cc5e2c2a69c445 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/Sales/_files/address_data.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/Sales/_files/address_data.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/Sales/_files/order_info.php b/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/Sales/_files/order_info.php index 1b6be24aa4c7b0abe4c73275fcd99c6082d7c017..82a6eeb9c0af28d3d1965c0041e0262d0d3c7962 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/Sales/_files/order_info.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/Sales/_files/order_info.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/System/DesignControllerTest.php b/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/System/DesignControllerTest.php index 8ad83ee21b33676bba79ad61105599a674faad3d..b08ec2076ce95838b0fe28b1d3b24dfcb611aa20 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/System/DesignControllerTest.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/System/DesignControllerTest.php @@ -21,7 +21,7 @@ * @category Mage * @package Mage_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/System/VariableControllerTest.php b/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/System/VariableControllerTest.php index 67b045e0fcbfaff90fb7ae01650df579ffbfeb4b..5601935d2bab43c25ed86a5a7df261630cfa909a 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/System/VariableControllerTest.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/System/VariableControllerTest.php @@ -21,7 +21,7 @@ * @category Mage * @package Mage_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/_files/customer_sample.php b/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/_files/customer_sample.php index c30575b2294697e56e095ca387b8842417d7fe71..f516118f61a092b0ab26b36e1db8cd256c25f2b4 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/_files/customer_sample.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/_files/customer_sample.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ /** @var Mage_Customer_Model_Customer $customer */ diff --git a/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/_files/newsletter_sample.php b/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/_files/newsletter_sample.php index 6100ba477f32efc7876a6ed68852532b74b89ae9..cd36835463ca68300d54873abe6ae5b560dab3da 100644 --- a/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/_files/newsletter_sample.php +++ b/dev/tests/integration/testsuite/Mage/Adminhtml/controllers/_files/newsletter_sample.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ /** @var Mage_Newsletter_Model_Template $template */ diff --git a/dev/tests/integration/testsuite/Mage/Authorizenet/Block/Directpost/IframeTest.php b/dev/tests/integration/testsuite/Mage/Authorizenet/Block/Directpost/IframeTest.php index 3ed480252f5c92393e0b3838429983ef8b8702ed..d56f2c176e346b163294f0764593196b1815316c 100644 --- a/dev/tests/integration/testsuite/Mage/Authorizenet/Block/Directpost/IframeTest.php +++ b/dev/tests/integration/testsuite/Mage/Authorizenet/Block/Directpost/IframeTest.php @@ -21,13 +21,10 @@ * @category Magento * @package Magento_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ -/** - * @group module:Mage_Authorizenet - */ class Mage_Authorizenet_Block_Directpost_IframeTest extends PHPUnit_Framework_TestCase { /** diff --git a/dev/tests/integration/testsuite/Mage/Authorizenet/controllers/Directpost/PaymentControllerTest.php b/dev/tests/integration/testsuite/Mage/Authorizenet/controllers/Directpost/PaymentControllerTest.php index 588e3e87721ab2e7814670f8b11abff23b1364f0..9f936b87c88b52d298aad2a4b71abf0d05d77927 100644 --- a/dev/tests/integration/testsuite/Mage/Authorizenet/controllers/Directpost/PaymentControllerTest.php +++ b/dev/tests/integration/testsuite/Mage/Authorizenet/controllers/Directpost/PaymentControllerTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Authorizenet * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Backend/Block/System/Config/FormStub.php b/dev/tests/integration/testsuite/Mage/Backend/Block/System/Config/FormStub.php index 746fc31aaa3d01c09eee81c860366ced456aab29..5fc1f741733a0d8703ae8bb59bc54ef87fc3b488 100644 --- a/dev/tests/integration/testsuite/Mage/Backend/Block/System/Config/FormStub.php +++ b/dev/tests/integration/testsuite/Mage/Backend/Block/System/Config/FormStub.php @@ -21,7 +21,7 @@ * @category Mage * @package Mage_Backend * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Backend/Block/System/Config/FormTest.php b/dev/tests/integration/testsuite/Mage/Backend/Block/System/Config/FormTest.php index 5b6f80221cb14f5e449627d30b04385016c399b9..1803b2ff6810e4ba12773276d8d157594216cc7a 100644 --- a/dev/tests/integration/testsuite/Mage/Backend/Block/System/Config/FormTest.php +++ b/dev/tests/integration/testsuite/Mage/Backend/Block/System/Config/FormTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Backend * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ @@ -104,6 +104,14 @@ class Mage_Backend_Block_System_Config_FormTest extends PHPUnit_Framework_TestCa $configMock->expects($this->any())->method('getModuleConfigurationFiles') ->will($this->returnValue(array(__DIR__ . '/_files/test_section_config.xml'))); $configMock->expects($this->any())->method('getAreaConfig')->will($this->returnValue('adminhtml')); + $configMock->expects($this->any()) + ->method('getModuleDir') + ->with('etc', 'Mage_Backend') + ->will( + $this->returnValue( + realpath(__DIR__ . '/../../../../../../../../../app/code/core/Mage/Backend/etc') + ) + ); $structureReader = Mage::getSingleton('Mage_Backend_Model_Config_Structure_Reader', array('config' => $configMock) diff --git a/dev/tests/integration/testsuite/Mage/Backend/Block/System/Config/_files/test_section_config.xml b/dev/tests/integration/testsuite/Mage/Backend/Block/System/Config/_files/test_section_config.xml index 392af81cb97e7bb52d0bfb9a18c77e7ab08890ab..6f1240e13dddc6b1eab5575435631708efb795f3 100644 --- a/dev/tests/integration/testsuite/Mage/Backend/Block/System/Config/_files/test_section_config.xml +++ b/dev/tests/integration/testsuite/Mage/Backend/Block/System/Config/_files/test_section_config.xml @@ -22,7 +22,7 @@ * @category Mage * @package Mage_Backend * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/integration/testsuite/Mage/Backend/Block/TemplateTest.php b/dev/tests/integration/testsuite/Mage/Backend/Block/TemplateTest.php index ffe479c5ee0cfb09a262f1e25e284b4d0de4234a..8ce854ca5fd4a1dc384228c20638b4d2d631d98f 100644 --- a/dev/tests/integration/testsuite/Mage/Backend/Block/TemplateTest.php +++ b/dev/tests/integration/testsuite/Mage/Backend/Block/TemplateTest.php @@ -21,14 +21,12 @@ * @category Magento * @package Mage_Backend * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ /** * Test class for Mage_Backend_Block_Template. - * - * @group module:Mage_Backend */ class Mage_Backend_Block_TemplateTest extends PHPUnit_Framework_TestCase { diff --git a/dev/tests/integration/testsuite/Mage/Backend/Block/Widget/FormTest.php b/dev/tests/integration/testsuite/Mage/Backend/Block/Widget/FormTest.php index 9abe2a18f468f971ac91d39c75ee3c4af9e3d808..a87c831d4cb6b4a9c3f2a70c2bf5ad485fbfdb92 100644 --- a/dev/tests/integration/testsuite/Mage/Backend/Block/Widget/FormTest.php +++ b/dev/tests/integration/testsuite/Mage/Backend/Block/Widget/FormTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backend * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Backend/Block/Widget/Grid/ColumnSetTest.php b/dev/tests/integration/testsuite/Mage/Backend/Block/Widget/Grid/ColumnSetTest.php index fc4cc2ce3e0a01e0c4f574b1463e91849a0146f7..be07887c3ee52729664e3802c7980787dd2b62f2 100644 --- a/dev/tests/integration/testsuite/Mage/Backend/Block/Widget/Grid/ColumnSetTest.php +++ b/dev/tests/integration/testsuite/Mage/Backend/Block/Widget/Grid/ColumnSetTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backend * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Backend/Block/Widget/Grid/ExtendedTest.php b/dev/tests/integration/testsuite/Mage/Backend/Block/Widget/Grid/ExtendedTest.php index f4dcda5d560918fb9476a132bc623c5b7f2dd2d3..34a81dc30c0d9f628cf969203b76a3916f3043ab 100644 --- a/dev/tests/integration/testsuite/Mage/Backend/Block/Widget/Grid/ExtendedTest.php +++ b/dev/tests/integration/testsuite/Mage/Backend/Block/Widget/Grid/ExtendedTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backend * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Backend/Block/Widget/Grid/MassactionTest.php b/dev/tests/integration/testsuite/Mage/Backend/Block/Widget/Grid/MassactionTest.php index 311fdfb1b2e9c758b6fe0e8716602ced80378c62..d6591f9808c0ebbf4ccb4da68e8d7db341a69f0b 100644 --- a/dev/tests/integration/testsuite/Mage/Backend/Block/Widget/Grid/MassactionTest.php +++ b/dev/tests/integration/testsuite/Mage/Backend/Block/Widget/Grid/MassactionTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backend * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Backend/Block/Widget/GridTest.php b/dev/tests/integration/testsuite/Mage/Backend/Block/Widget/GridTest.php index 7fc417347b4b6aadbf2a4b117cecf4677f3a6694..ba82d8dde3dc5720c2d8e842ecf389fe74420aba 100644 --- a/dev/tests/integration/testsuite/Mage/Backend/Block/Widget/GridTest.php +++ b/dev/tests/integration/testsuite/Mage/Backend/Block/Widget/GridTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backend * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Backend/Block/WidgetTest.php b/dev/tests/integration/testsuite/Mage/Backend/Block/WidgetTest.php index fdf267fa11dea4323cc5e96f08e7094f429beb87..cd5a08530fcacdef1429ea2c8daa237880adbaa0 100644 --- a/dev/tests/integration/testsuite/Mage/Backend/Block/WidgetTest.php +++ b/dev/tests/integration/testsuite/Mage/Backend/Block/WidgetTest.php @@ -21,14 +21,12 @@ * @category Magento * @package Mage_Backend * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ /** * Test class for Mage_Backend_Block_Widget - * - * @group module:Mage_Backend */ class Mage_Backend_Block_WidgetTest extends PHPUnit_Framework_TestCase { diff --git a/dev/tests/integration/testsuite/Mage/Backend/Block/_files/design/adminhtml/test/default/Mage_Backend/layout.xml b/dev/tests/integration/testsuite/Mage/Backend/Block/_files/design/adminhtml/test/default/Mage_Backend/layout.xml index cc9e3b25b5e18ae374e8e1bdaca7f9759bf85d1b..36c58b8ab63128283d461fbbd70004a3d890f5fe 100644 --- a/dev/tests/integration/testsuite/Mage/Backend/Block/_files/design/adminhtml/test/default/Mage_Backend/layout.xml +++ b/dev/tests/integration/testsuite/Mage/Backend/Block/_files/design/adminhtml/test/default/Mage_Backend/layout.xml @@ -21,7 +21,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/integration/testsuite/Mage/Backend/Block/_files/design/adminhtml/test/default/theme.xml b/dev/tests/integration/testsuite/Mage/Backend/Block/_files/design/adminhtml/test/default/theme.xml index 639c6824fbf65919b2b1e234f7ef5b9e341f97c9..858e413d1cc701936a7938ca1b7041200889d9b4 100644 --- a/dev/tests/integration/testsuite/Mage/Backend/Block/_files/design/adminhtml/test/default/theme.xml +++ b/dev/tests/integration/testsuite/Mage/Backend/Block/_files/design/adminhtml/test/default/theme.xml @@ -21,7 +21,7 @@ * @category Magento * @package Design * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/integration/testsuite/Mage/Backend/Block/_files/theme_registration.php b/dev/tests/integration/testsuite/Mage/Backend/Block/_files/theme_registration.php index b20be409a2952deab7a3665e4a9d3b17632986e1..442ac438e62c855f7b821536f0827cb3f7e864bd 100644 --- a/dev/tests/integration/testsuite/Mage/Backend/Block/_files/theme_registration.php +++ b/dev/tests/integration/testsuite/Mage/Backend/Block/_files/theme_registration.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Backend/Controller/ActionAbstractTest.php b/dev/tests/integration/testsuite/Mage/Backend/Controller/ActionAbstractTest.php index f9344a0ea481720b7bf71fd304201d75f6de7ce1..64472064956d25d51c2e3f7d8684b550394b96da 100644 --- a/dev/tests/integration/testsuite/Mage/Backend/Controller/ActionAbstractTest.php +++ b/dev/tests/integration/testsuite/Mage/Backend/Controller/ActionAbstractTest.php @@ -21,7 +21,7 @@ * @category Mage * @package Mage_Backend * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Backend/Controller/Router/DefaultTest.php b/dev/tests/integration/testsuite/Mage/Backend/Controller/Router/DefaultTest.php index bae597808cd9ebd131aa6799b5459e5a63a292f2..7fc4be050f264b44f73016dc0bc4ecb51d1dd2f2 100644 --- a/dev/tests/integration/testsuite/Mage/Backend/Controller/Router/DefaultTest.php +++ b/dev/tests/integration/testsuite/Mage/Backend/Controller/Router/DefaultTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backend * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Backend/Controller/Router/Validator/DefaultTest.php b/dev/tests/integration/testsuite/Mage/Backend/Controller/Router/Validator/DefaultTest.php index 29d63a59556de2552547d52eb79c18f31967de51..2c4fc0457de771b415fe44a9ee00f4dee1c5e3f2 100644 --- a/dev/tests/integration/testsuite/Mage/Backend/Controller/Router/Validator/DefaultTest.php +++ b/dev/tests/integration/testsuite/Mage/Backend/Controller/Router/Validator/DefaultTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backend * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Backend/Helper/DataTest.php b/dev/tests/integration/testsuite/Mage/Backend/Helper/DataTest.php index 0f73083a09c201c025156057cc5d44097f9c8285..7ad09cdd928e891ee30452ca3865d78768b583b4 100644 --- a/dev/tests/integration/testsuite/Mage/Backend/Helper/DataTest.php +++ b/dev/tests/integration/testsuite/Mage/Backend/Helper/DataTest.php @@ -21,13 +21,10 @@ * @category Magento * @package Mage_Backend * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ -/** - * @group module:Mage_Backend - */ class Mage_Backend_Helper_DataTest extends PHPUnit_Framework_TestCase { /** diff --git a/dev/tests/integration/testsuite/Mage/Backend/Model/Auth/SessionTest.php b/dev/tests/integration/testsuite/Mage/Backend/Model/Auth/SessionTest.php index 5bf4065f518b949460d3ce3dbe16da0fb42f26cc..74397eb407e7c13d051223cee800455935c0a273 100644 --- a/dev/tests/integration/testsuite/Mage/Backend/Model/Auth/SessionTest.php +++ b/dev/tests/integration/testsuite/Mage/Backend/Model/Auth/SessionTest.php @@ -21,13 +21,10 @@ * @category Magento * @package Mage_Backend * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ -/** - * @group module:Mage_Backend - */ class Mage_Backend_Model_Auth_SessionTest extends PHPUnit_Framework_TestCase { /** diff --git a/dev/tests/integration/testsuite/Mage/Backend/Model/AuthTest.php b/dev/tests/integration/testsuite/Mage/Backend/Model/AuthTest.php index 839654f7fad74640250d80f6666bd68ff365de62..7ee5078cd9a019e71b4ba1c128a734b552192ceb 100644 --- a/dev/tests/integration/testsuite/Mage/Backend/Model/AuthTest.php +++ b/dev/tests/integration/testsuite/Mage/Backend/Model/AuthTest.php @@ -21,14 +21,12 @@ * @category Magento * @package Mage_Backend * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ /** * Test class for Mage_Backend_Model_Auth. - * - * @group module:Mage_Backend */ class Mage_Backend_Model_AuthTest extends PHPUnit_Framework_TestCase { diff --git a/dev/tests/integration/testsuite/Mage/Backend/Model/Config/Backend/Admin/RobotsTest.php b/dev/tests/integration/testsuite/Mage/Backend/Model/Config/Backend/Admin/RobotsTest.php index a491f863f90aefd31cfbd1e9eff9d6bb88487f6b..60bbaca990e287bb024f9da4c95538f942ff41b7 100644 --- a/dev/tests/integration/testsuite/Mage/Backend/Model/Config/Backend/Admin/RobotsTest.php +++ b/dev/tests/integration/testsuite/Mage/Backend/Model/Config/Backend/Admin/RobotsTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backend * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Backend/Model/Config/Source/Admin/PageTest.php b/dev/tests/integration/testsuite/Mage/Backend/Model/Config/Source/Admin/PageTest.php index 9be941540091063f4d3bd30fc8499cfe05737c06..8300bea328f4f532bdacb3ec7c64db89b9dbc8b8 100644 --- a/dev/tests/integration/testsuite/Mage/Backend/Model/Config/Source/Admin/PageTest.php +++ b/dev/tests/integration/testsuite/Mage/Backend/Model/Config/Source/Admin/PageTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backend * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Backend/Model/ConfigTest.php b/dev/tests/integration/testsuite/Mage/Backend/Model/ConfigTest.php index 1beca7f334db4d493b9e5f2b6fd4ef2219264f29..a5ab62029d262422110d74c0d06e1c7e3f1974f2 100644 --- a/dev/tests/integration/testsuite/Mage/Backend/Model/ConfigTest.php +++ b/dev/tests/integration/testsuite/Mage/Backend/Model/ConfigTest.php @@ -21,13 +21,10 @@ * @category Magento * @package Mage_Backend * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ -/** - * @group module:Mage_Backend - */ class Mage_Backend_Model_Config_DataTest extends PHPUnit_Framework_TestCase { /** diff --git a/dev/tests/integration/testsuite/Mage/Backend/Model/MenuTest.php b/dev/tests/integration/testsuite/Mage/Backend/Model/MenuTest.php index e2e0c628b71dd276934c728d3b2ef87b5dd66ec7..9d0849e59eceff420ef5d81238db42a8ec7ef9ab 100644 --- a/dev/tests/integration/testsuite/Mage/Backend/Model/MenuTest.php +++ b/dev/tests/integration/testsuite/Mage/Backend/Model/MenuTest.php @@ -21,14 +21,12 @@ * @category Magento * @package Mage_Backend * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ /** * Test class for Mage_Backend_Model_Auth. - * - * @group module:Mage_Backend */ class Mage_Backend_Model_MenuTest extends PHPUnit_Framework_TestCase { diff --git a/dev/tests/integration/testsuite/Mage/Backend/Model/ObserverTest.php b/dev/tests/integration/testsuite/Mage/Backend/Model/ObserverTest.php index c47085c33f087b577c0465fd1ce97f8ca140ee99..513ffd9e0836f419fcb076b3de0d82a05ca814d7 100644 --- a/dev/tests/integration/testsuite/Mage/Backend/Model/ObserverTest.php +++ b/dev/tests/integration/testsuite/Mage/Backend/Model/ObserverTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backend * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Backend/Model/SessionTest.php b/dev/tests/integration/testsuite/Mage/Backend/Model/SessionTest.php index a4b72d21e540dd72d2fbf23f28b51c1be510ae47..f0e4ab520bf0a58ca27aa2dab01647cdd8b0d369 100644 --- a/dev/tests/integration/testsuite/Mage/Backend/Model/SessionTest.php +++ b/dev/tests/integration/testsuite/Mage/Backend/Model/SessionTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Backend * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Backend/Model/UrlTest.php b/dev/tests/integration/testsuite/Mage/Backend/Model/UrlTest.php index 2716a1fd438e1c1d7b78bfb3747c3d6b6adea9e0..d86423d5b6d1397aa178d862e1abf19b8587d31a 100644 --- a/dev/tests/integration/testsuite/Mage/Backend/Model/UrlTest.php +++ b/dev/tests/integration/testsuite/Mage/Backend/Model/UrlTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Backend * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Backend/Model/_files/config_groups.php b/dev/tests/integration/testsuite/Mage/Backend/Model/_files/config_groups.php index 688ba49ba0c65f5ac346e77a2ba85f82f2b080e9..9a13c85b7b5311e12ced74a920ac8c496ae617c1 100644 --- a/dev/tests/integration/testsuite/Mage/Backend/Model/_files/config_groups.php +++ b/dev/tests/integration/testsuite/Mage/Backend/Model/_files/config_groups.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backend * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Backend/Model/_files/no_robots_txt.php b/dev/tests/integration/testsuite/Mage/Backend/Model/_files/no_robots_txt.php index 7700d8afafc578f14d9fbfaa3542943b3cc91216..fa934309ac05db898c6d6a02ad40a504add9af62 100644 --- a/dev/tests/integration/testsuite/Mage/Backend/Model/_files/no_robots_txt.php +++ b/dev/tests/integration/testsuite/Mage/Backend/Model/_files/no_robots_txt.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Backend/Model/_files/robots_txt.php b/dev/tests/integration/testsuite/Mage/Backend/Model/_files/robots_txt.php index c9e82941da85b2fad9a70ff0de86b99989915f45..4b1741686839d9ff3d7b523f9c40b6d524bc9f02 100644 --- a/dev/tests/integration/testsuite/Mage/Backend/Model/_files/robots_txt.php +++ b/dev/tests/integration/testsuite/Mage/Backend/Model/_files/robots_txt.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Backend/Utility/Controller.php b/dev/tests/integration/testsuite/Mage/Backend/Utility/Controller.php index 3c287f896d178180664a56570aaaffdcc54db97d..01cc6abc6b7bbde724d3880cf80d7bded0dffc35 100644 --- a/dev/tests/integration/testsuite/Mage/Backend/Utility/Controller.php +++ b/dev/tests/integration/testsuite/Mage/Backend/Utility/Controller.php @@ -21,7 +21,7 @@ * @category Mage * @package Mage_Backend * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Backend/controllers/Adminhtml/AuthControllerTest.php b/dev/tests/integration/testsuite/Mage/Backend/controllers/Adminhtml/AuthControllerTest.php index 81dd6fed501e64df9f46ef542aae8706dc4f4b19..5d290e6ed6b2035462daaab50d1331af7c19f3c8 100644 --- a/dev/tests/integration/testsuite/Mage/Backend/controllers/Adminhtml/AuthControllerTest.php +++ b/dev/tests/integration/testsuite/Mage/Backend/controllers/Adminhtml/AuthControllerTest.php @@ -21,7 +21,7 @@ * @category Mage * @package Mage_Backend * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Backend/controllers/Adminhtml/IndexControllerTest.php b/dev/tests/integration/testsuite/Mage/Backend/controllers/Adminhtml/IndexControllerTest.php index 73316b817019a6183f97abf6832371d0c7f5cc7d..0def7b315ac1e6872c1f25126422a514634a8063 100644 --- a/dev/tests/integration/testsuite/Mage/Backend/controllers/Adminhtml/IndexControllerTest.php +++ b/dev/tests/integration/testsuite/Mage/Backend/controllers/Adminhtml/IndexControllerTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Backend * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Backend/controllers/Adminhtml/System/ConfigControllerTest.php b/dev/tests/integration/testsuite/Mage/Backend/controllers/Adminhtml/System/ConfigControllerTest.php index 494086c21888d3b8d1cd24b65083e55ac0fb64ca..b254be846faf8be8bb9d2d617f852914ca1f8c39 100644 --- a/dev/tests/integration/testsuite/Mage/Backend/controllers/Adminhtml/System/ConfigControllerTest.php +++ b/dev/tests/integration/testsuite/Mage/Backend/controllers/Adminhtml/System/ConfigControllerTest.php @@ -21,7 +21,7 @@ * @category Mage * @package Mage_Backend * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/Option/Search/GridTest.php b/dev/tests/integration/testsuite/Mage/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/Option/Search/GridTest.php index c6a2ad2ec6fba7efe38d4423826a01d90c9fb7e8..d5e05143f6ef46763b8d97aef5f1731fac88b55b 100644 --- a/dev/tests/integration/testsuite/Mage/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/Option/Search/GridTest.php +++ b/dev/tests/integration/testsuite/Mage/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/Option/Search/GridTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Bundle * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/Option/SearchTest.php b/dev/tests/integration/testsuite/Mage/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/Option/SearchTest.php index 5502cfde859b7ab8df7a6a816e679296ed51a9e4..06b0599bf83acd7c69fba75676234449995ada8b 100644 --- a/dev/tests/integration/testsuite/Mage/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/Option/SearchTest.php +++ b/dev/tests/integration/testsuite/Mage/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/Option/SearchTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Bundle * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Bundle/Model/ProductTest.php b/dev/tests/integration/testsuite/Mage/Bundle/Model/ProductTest.php index 21edbc97a873ca299b1646bc2543a09d04301431..d061f8cfae23887ee1c7afdb3201e82b97049934 100644 --- a/dev/tests/integration/testsuite/Mage/Bundle/Model/ProductTest.php +++ b/dev/tests/integration/testsuite/Mage/Bundle/Model/ProductTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Bundle/_files/product.php b/dev/tests/integration/testsuite/Mage/Bundle/_files/product.php index 11bb6cd206539a37bece7b55e0d64d1fb992151b..d544f20d1553b8f4a0565cae6cb8e13148636759 100644 --- a/dev/tests/integration/testsuite/Mage/Bundle/_files/product.php +++ b/dev/tests/integration/testsuite/Mage/Bundle/_files/product.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Bundle * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Bundle/controllers/ProductControllerTest.php b/dev/tests/integration/testsuite/Mage/Bundle/controllers/ProductControllerTest.php index 07ca249bf7005482ccfe2991f84b251be6c049b4..04e7e2ab9f3df609c7f4de1ceecd06f18b7b080b 100644 --- a/dev/tests/integration/testsuite/Mage/Bundle/controllers/ProductControllerTest.php +++ b/dev/tests/integration/testsuite/Mage/Bundle/controllers/ProductControllerTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Bundle * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Captcha/Block/Captcha/ZendTest.php b/dev/tests/integration/testsuite/Mage/Captcha/Block/Captcha/ZendTest.php index 28656cbcdd46b4e718a25e1d772bb233c750997b..66f8d75995836cb9d64b1933b1538c1b4568a0f8 100644 --- a/dev/tests/integration/testsuite/Mage/Captcha/Block/Captcha/ZendTest.php +++ b/dev/tests/integration/testsuite/Mage/Captcha/Block/Captcha/ZendTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Captcha * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Captcha_Block_Captcha_ZendTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/integration/testsuite/Mage/Captcha/Model/ObserverTest.php b/dev/tests/integration/testsuite/Mage/Captcha/Model/ObserverTest.php index 8e66bffb054796f26f9b86d494ce5f8e38084cf1..3e0dfd76b43a2b400c79728f3fe6447e03dd191e 100644 --- a/dev/tests/integration/testsuite/Mage/Captcha/Model/ObserverTest.php +++ b/dev/tests/integration/testsuite/Mage/Captcha/Model/ObserverTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Captcha * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Captcha/_files/dummy_user.php b/dev/tests/integration/testsuite/Mage/Captcha/_files/dummy_user.php index 2f8b1cd57eb6513641ab2f65f26fa5997f130c70..bf1100bef9d76a6fbb9a15efbb5221ee3e46ec33 100644 --- a/dev/tests/integration/testsuite/Mage/Captcha/_files/dummy_user.php +++ b/dev/tests/integration/testsuite/Mage/Captcha/_files/dummy_user.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Captcha * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/Block/Layer/ViewTest.php b/dev/tests/integration/testsuite/Mage/Catalog/Block/Layer/ViewTest.php index fc740692ca955bc5300f9be26aa61f12c572328a..4746b7f03cc770187fd3f854bae49482688ce03e 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/Block/Layer/ViewTest.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/Block/Layer/ViewTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/Block/Product/AbstractTest.php b/dev/tests/integration/testsuite/Mage/Catalog/Block/Product/AbstractTest.php index fa3b8f5c580b9fd68084b18fced82a2725a948c8..0c7e873669527490f11d110a9baad054fd2410e4 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/Block/Product/AbstractTest.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/Block/Product/AbstractTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/Block/Product/Configurable/AssociatedSelector/Backend/Grid/ColumnSetTest.php b/dev/tests/integration/testsuite/Mage/Catalog/Block/Product/Configurable/AssociatedSelector/Backend/Grid/ColumnSetTest.php index 6ee75831ba153c894c5e54fdd8e61ea50ccf55e5..194a3d3b4461c574660603085e079a20826d4378 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/Block/Product/Configurable/AssociatedSelector/Backend/Grid/ColumnSetTest.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/Block/Product/Configurable/AssociatedSelector/Backend/Grid/ColumnSetTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/Block/Product/List/CrosssellTest.php b/dev/tests/integration/testsuite/Mage/Catalog/Block/Product/List/CrosssellTest.php index 6ad7130ce2b60f22b734026c39c72ad7069f2bd6..c8f9330579743fd3f187fc6e115dd34cd51329dc 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/Block/Product/List/CrosssellTest.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/Block/Product/List/CrosssellTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/Block/Product/List/RelatedTest.php b/dev/tests/integration/testsuite/Mage/Catalog/Block/Product/List/RelatedTest.php index ca2ab9a83e52011ceeed42d027d2c7c37ac19a20..a320d523cc3e0519d4f54b6bb7009a8e9f6c4f35 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/Block/Product/List/RelatedTest.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/Block/Product/List/RelatedTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/Block/Product/List/ToolbarTest.php b/dev/tests/integration/testsuite/Mage/Catalog/Block/Product/List/ToolbarTest.php index be40ee4095ce14805c335a6919b2e3350810345d..adf513db2bb86e58f3a50d23c917104a18b8a801 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/Block/Product/List/ToolbarTest.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/Block/Product/List/ToolbarTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/Block/Product/ListTest.php b/dev/tests/integration/testsuite/Mage/Catalog/Block/Product/ListTest.php index dfe43668f41c158163f2a0793cae6ccf06569771..c77d0f5394e4547d48933d5fb7edeba82d867837 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/Block/Product/ListTest.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/Block/Product/ListTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/Block/Product/NewTest.php b/dev/tests/integration/testsuite/Mage/Catalog/Block/Product/NewTest.php index 67d04335cf594f4cbdb5ecfda9e2e4cbd2298ef9..94fc866ebe62636860f023ec3c44cb93063d5c63 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/Block/Product/NewTest.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/Block/Product/NewTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/Block/Product/View/AdditionalTest.php b/dev/tests/integration/testsuite/Mage/Catalog/Block/Product/View/AdditionalTest.php index fa174e2314715a26768fdbf569516bf7cdcdb4a6..465a2ae3325d72e14908df1e41ba9497a8576c8a 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/Block/Product/View/AdditionalTest.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/Block/Product/View/AdditionalTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/Block/Product/View/OptionsTest.php b/dev/tests/integration/testsuite/Mage/Catalog/Block/Product/View/OptionsTest.php index 9663e840b63d545cbaa8a7129fd75a71fc2a52dd..d8455d29c021e0bf4e4cfb87756ee6d797398582 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/Block/Product/View/OptionsTest.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/Block/Product/View/OptionsTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/Block/Product/View/Type/ConfigurableTest.php b/dev/tests/integration/testsuite/Mage/Catalog/Block/Product/View/Type/ConfigurableTest.php index 160b1b7355417678863acae63d0f17c3076e7c49..8b053c8ace45a72b0b8c5d239e29490cd7e6e902 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/Block/Product/View/Type/ConfigurableTest.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/Block/Product/View/Type/ConfigurableTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/Block/Product/ViewTest.php b/dev/tests/integration/testsuite/Mage/Catalog/Block/Product/ViewTest.php index 7e1b162b0947d2703ca6fc00d8f2e9c6507fa15e..3e217d95b287b781b25057126ca0f39e4d77958b 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/Block/Product/ViewTest.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/Block/Product/ViewTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/Helper/Category/FlatTest.php b/dev/tests/integration/testsuite/Mage/Catalog/Helper/Category/FlatTest.php index 5f1ae0ea9e5826f3a308ba67c9991dcc9af6a13e..000469d231eb472e284797ade1d52121f2b42037 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/Helper/Category/FlatTest.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/Helper/Category/FlatTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/Helper/CategoryTest.php b/dev/tests/integration/testsuite/Mage/Catalog/Helper/CategoryTest.php index 5179cfed15e26d8aaaabd24098452c42524ed1d2..2f798e2616dd21bcb41fe108b9b53fb366099908 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/Helper/CategoryTest.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/Helper/CategoryTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/Helper/DataTest.php b/dev/tests/integration/testsuite/Mage/Catalog/Helper/DataTest.php index 112e441f8c6331c8f0f494de9d281891c800e838..fb63d06630e215ffe59167ff9bfb1e9c7e1a3c83 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/Helper/DataTest.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/Helper/DataTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/Helper/ImageTest.php b/dev/tests/integration/testsuite/Mage/Catalog/Helper/ImageTest.php index 9abf20ca102c65af395cfb488a14e890dc2cc54c..9342eb6ac9b7e62adb691dacf7bb545389e318f8 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/Helper/ImageTest.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/Helper/ImageTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/Helper/OutputTest.php b/dev/tests/integration/testsuite/Mage/Catalog/Helper/OutputTest.php index 121e33ad1e1940c8c69b6588086b9d780ab1427e..ec7301336a1332c045d1c1c6b35300febb430b1f 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/Helper/OutputTest.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/Helper/OutputTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/Helper/Product/CompareTest.php b/dev/tests/integration/testsuite/Mage/Catalog/Helper/Product/CompareTest.php index e5f18d22cfd1c12cb69ea95ca840305021a5297c..b62085c3135c938638e861092df11c9dc9595861 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/Helper/Product/CompareTest.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/Helper/Product/CompareTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/Helper/Product/FlatTest.php b/dev/tests/integration/testsuite/Mage/Catalog/Helper/Product/FlatTest.php index 95480e030f4994f3924d4bfc9a1285b9d0e75fac..285094b2332f3b9c025ba1f4b63d328c1a974ff9 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/Helper/Product/FlatTest.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/Helper/Product/FlatTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/Helper/Product/UrlTest.php b/dev/tests/integration/testsuite/Mage/Catalog/Helper/Product/UrlTest.php index 0e88c2c532ea6cb9fda49d1a7bfd93c8f64c7b54..3a783764cb3c0c34636538c94d97ea814f20e900 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/Helper/Product/UrlTest.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/Helper/Product/UrlTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/Helper/Product/ViewTest.php b/dev/tests/integration/testsuite/Mage/Catalog/Helper/Product/ViewTest.php index 4d3809411f2917f1411a6e10cd96df0fc861178f..f2fcb87183252565bf6e5913ea29076175a15eef 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/Helper/Product/ViewTest.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/Helper/Product/ViewTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/Helper/ProductTest.php b/dev/tests/integration/testsuite/Mage/Catalog/Helper/ProductTest.php index 4e14965d4de7cda1d567b57c163c3eacee8fc07d..c8d5ae045d1f8b6bf7b6db1834beca910b9811cb 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/Helper/ProductTest.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/Helper/ProductTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/Model/AbstractTest.php b/dev/tests/integration/testsuite/Mage/Catalog/Model/AbstractTest.php index c794b8658f5c8cc7daa1ec5d2d3b0dccf9ee4be4..3d307dc6659bf2da57b3d3cdc923e020189a721a 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/Model/AbstractTest.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/Model/AbstractTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/Model/Category/CategoryImageTest.php b/dev/tests/integration/testsuite/Mage/Catalog/Model/Category/CategoryImageTest.php index e45ae47b216df3605812a8dc56b2f51c2bba8ada..83614ff2485783cfbcf126ab9964e9bdc93ee762 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/Model/Category/CategoryImageTest.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/Model/Category/CategoryImageTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/Model/Category/_files/category_without_image.php b/dev/tests/integration/testsuite/Mage/Catalog/Model/Category/_files/category_without_image.php index a75b5cd9a007bb31f515c1d0f609a00bdeb1fa3e..a8d85b8b30ea553890ab6d2ef02cab1428a812d5 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/Model/Category/_files/category_without_image.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/Model/Category/_files/category_without_image.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/Model/Category/_files/stub_zend_log_writer_stream.php b/dev/tests/integration/testsuite/Mage/Catalog/Model/Category/_files/stub_zend_log_writer_stream.php index cc26cdd8f8be3867ca16b1204ae644eee065edf6..ff9f25c475188b042499a880830785f99a7716a1 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/Model/Category/_files/stub_zend_log_writer_stream.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/Model/Category/_files/stub_zend_log_writer_stream.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/Model/CategoryTest.php b/dev/tests/integration/testsuite/Mage/Catalog/Model/CategoryTest.php index c70f965d7f9393a910e9e54bfa97cf8a41ac5da1..0e5e9b2b971f194178d51666f757c8836872714a 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/Model/CategoryTest.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/Model/CategoryTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/Model/CategoryTreeTest.php b/dev/tests/integration/testsuite/Mage/Catalog/Model/CategoryTreeTest.php index 888d4baeb1acd7ccef9a5badb423d828a6ee2ca4..6e72418eb2edcb6bb5f837cc8c07ae1c8c80b3fa 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/Model/CategoryTreeTest.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/Model/CategoryTreeTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/Model/DesignTest.php b/dev/tests/integration/testsuite/Mage/Catalog/Model/DesignTest.php index 23a6ad77514137d8b677ba519dd184e040e940f7..2505e47e57d8e3db91dd50d072b9beff135f8271 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/Model/DesignTest.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/Model/DesignTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/Model/Layer/Filter/AttributeTest.php b/dev/tests/integration/testsuite/Mage/Catalog/Model/Layer/Filter/AttributeTest.php index 8f943a386d75ba025f07b726594f2ce6ff6674e2..446ec76432d70ac2565359615e4685384064eb55 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/Model/Layer/Filter/AttributeTest.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/Model/Layer/Filter/AttributeTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/Model/Layer/Filter/CategoryTest.php b/dev/tests/integration/testsuite/Mage/Catalog/Model/Layer/Filter/CategoryTest.php index fe2be0986c543740be7f84a50a3398f2c7d027b5..e1cab5571f55a06ab13fa3d25aa39a5a7258ea73 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/Model/Layer/Filter/CategoryTest.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/Model/Layer/Filter/CategoryTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/Model/Layer/Filter/DecimalTest.php b/dev/tests/integration/testsuite/Mage/Catalog/Model/Layer/Filter/DecimalTest.php index 3699cbc995cf9ca9694fc64f8fa749ca3bafc029..f531cc6506f30caf831d8a6fde727edefa667fcf 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/Model/Layer/Filter/DecimalTest.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/Model/Layer/Filter/DecimalTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/Model/Layer/Filter/ItemTest.php b/dev/tests/integration/testsuite/Mage/Catalog/Model/Layer/Filter/ItemTest.php index 9ba8a13f2440a26e0312b83e11a1ea83b12597e9..d8ff47f3c2b2f827d51a23f4dd1cf22e353aa835 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/Model/Layer/Filter/ItemTest.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/Model/Layer/Filter/ItemTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/Model/Layer/Filter/Price/AlgorithmAdvancedTest.php b/dev/tests/integration/testsuite/Mage/Catalog/Model/Layer/Filter/Price/AlgorithmAdvancedTest.php index 41d9139c0f0d71626fc9ca962c74cab7d725ddcf..356f3e4d4ee00aee310f16cfae62ea927a9dd06b 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/Model/Layer/Filter/Price/AlgorithmAdvancedTest.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/Model/Layer/Filter/Price/AlgorithmAdvancedTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/Model/Layer/Filter/Price/AlgorithmBaseTest.php b/dev/tests/integration/testsuite/Mage/Catalog/Model/Layer/Filter/Price/AlgorithmBaseTest.php index 5e811ef89dba72fc0cdae82085908df84bbdc4fb..874bfcaed6730a336ab322de256096e3e911367c 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/Model/Layer/Filter/Price/AlgorithmBaseTest.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/Model/Layer/Filter/Price/AlgorithmBaseTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/Model/Layer/Filter/Price/_files/_algorithm_base_data.php b/dev/tests/integration/testsuite/Mage/Catalog/Model/Layer/Filter/Price/_files/_algorithm_base_data.php index cb067a97d19412a08beb77ca25f95b5332b01bb3..6c40fab382d4fea23d8881fb57a77dd66ec66595 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/Model/Layer/Filter/Price/_files/_algorithm_base_data.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/Model/Layer/Filter/Price/_files/_algorithm_base_data.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/Model/Layer/Filter/Price/_files/products_advanced.php b/dev/tests/integration/testsuite/Mage/Catalog/Model/Layer/Filter/Price/_files/products_advanced.php index 0f5bf89fd19ccf88e21a4655ff679ab2efdb2797..6fa89b03dfde7fe3eb5dfa6518924ec70c445b00 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/Model/Layer/Filter/Price/_files/products_advanced.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/Model/Layer/Filter/Price/_files/products_advanced.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/Model/Layer/Filter/Price/_files/products_base.php b/dev/tests/integration/testsuite/Mage/Catalog/Model/Layer/Filter/Price/_files/products_base.php index c2b602b29c6a2e2a156313cb47179a5e3237f1c0..4dc27b770096d7e849bea6f957731f97f0299287 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/Model/Layer/Filter/Price/_files/products_base.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/Model/Layer/Filter/Price/_files/products_base.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/Model/Layer/Filter/PriceTest.php b/dev/tests/integration/testsuite/Mage/Catalog/Model/Layer/Filter/PriceTest.php index 14ed35ab1d2428e3073ca4a20d5d2667d53b2fe0..bf37325600d8ac5f8ed71c7cfe0aee405d191e1a 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/Model/Layer/Filter/PriceTest.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/Model/Layer/Filter/PriceTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/Model/Layer/Filter/_files/attribute_weight_filterable.php b/dev/tests/integration/testsuite/Mage/Catalog/Model/Layer/Filter/_files/attribute_weight_filterable.php index 084a7f29252a05df7b0fb10fa127775e1b6fb33d..015c18035e6f89b04cb89632e61e36a936d73266 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/Model/Layer/Filter/_files/attribute_weight_filterable.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/Model/Layer/Filter/_files/attribute_weight_filterable.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/Model/Layer/Filter/_files/attribute_with_option.php b/dev/tests/integration/testsuite/Mage/Catalog/Model/Layer/Filter/_files/attribute_with_option.php index 9adc76939cd6097bee78db95f00402bc4bb8f9a5..1d5934a026c978113656b66be285360a93d9aab5 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/Model/Layer/Filter/_files/attribute_with_option.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/Model/Layer/Filter/_files/attribute_with_option.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/Model/LayerTest.php b/dev/tests/integration/testsuite/Mage/Catalog/Model/LayerTest.php index 5a7046cd2e8cdf6f88356e01683a24b46c6ef31e..8d4656f5ef0c08289842331f2db8bd156cb393dd 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/Model/LayerTest.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/Model/LayerTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/Model/Product/Attribute/Backend/MediaTest.php b/dev/tests/integration/testsuite/Mage/Catalog/Model/Product/Attribute/Backend/MediaTest.php index 3ea23c8b410adea3a57a56dab1ecf9a939d877ac..430948976d69dfb386c863580d24aa1a2360c51f 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/Model/Product/Attribute/Backend/MediaTest.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/Model/Product/Attribute/Backend/MediaTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/Model/Product/Attribute/Backend/PriceTest.php b/dev/tests/integration/testsuite/Mage/Catalog/Model/Product/Attribute/Backend/PriceTest.php index 5155b92d99be01ac0856618fce31de32030fc555..cd60d57066a150537615631c26081b02d82eeba7 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/Model/Product/Attribute/Backend/PriceTest.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/Model/Product/Attribute/Backend/PriceTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/Model/Product/Attribute/Backend/SkuTest.php b/dev/tests/integration/testsuite/Mage/Catalog/Model/Product/Attribute/Backend/SkuTest.php index 0cc1701473c700f01ee4947c39b38a05b03502e7..5da029cf4ff855b19ee25320d273ca4bafe607d4 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/Model/Product/Attribute/Backend/SkuTest.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/Model/Product/Attribute/Backend/SkuTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/Model/Product/Attribute/Backend/TierpriceTest.php b/dev/tests/integration/testsuite/Mage/Catalog/Model/Product/Attribute/Backend/TierpriceTest.php index b71d600f76c7858df2a98a067473db1ccfe6f71b..b4fbb51bc61ca6fa98d5ed32d0f758cf5346393a 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/Model/Product/Attribute/Backend/TierpriceTest.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/Model/Product/Attribute/Backend/TierpriceTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/Model/Product/ImageTest.php b/dev/tests/integration/testsuite/Mage/Catalog/Model/Product/ImageTest.php index 5c17514d69ecb9cf8a0e4edc4d69a50afb2eb66b..b58816c861e899c72d88b5c6602eb433bed31434 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/Model/Product/ImageTest.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/Model/Product/ImageTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/Model/Product/Type/AbstractTest.php b/dev/tests/integration/testsuite/Mage/Catalog/Model/Product/Type/AbstractTest.php index 2bb839978e66dbefa17e53c574bc9fd58a154fb7..f2f7ef6e16e7c62e20388039ae0494fc86a4d7ae 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/Model/Product/Type/AbstractTest.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/Model/Product/Type/AbstractTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/Model/Product/Type/Configurable/AttributeTest.php b/dev/tests/integration/testsuite/Mage/Catalog/Model/Product/Type/Configurable/AttributeTest.php index ecd19f89f3cd82685595180418738aa86c7a58a5..6eef2cbe8d5f329649aca74caa4d407c6663a941 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/Model/Product/Type/Configurable/AttributeTest.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/Model/Product/Type/Configurable/AttributeTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/Model/Product/Type/Configurable/PriceTest.php b/dev/tests/integration/testsuite/Mage/Catalog/Model/Product/Type/Configurable/PriceTest.php index 6b3dba5755e576a8e87f426c4f5cd00b5594127a..74e1454e5350963dc9dfca5d9ce57a57713a016f 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/Model/Product/Type/Configurable/PriceTest.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/Model/Product/Type/Configurable/PriceTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/Model/Product/Type/ConfigurableTest.php b/dev/tests/integration/testsuite/Mage/Catalog/Model/Product/Type/ConfigurableTest.php index 30c75daa9bd482c9b89a35276752f9374f5dde49..cdd90d6417d2dea001cdf21ef3212e25b3641dfd 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/Model/Product/Type/ConfigurableTest.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/Model/Product/Type/ConfigurableTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/Model/Product/Type/PriceTest.php b/dev/tests/integration/testsuite/Mage/Catalog/Model/Product/Type/PriceTest.php index 6b163d61652a7c03da87b87a5dbbd00e2b63faf5..a0a7997a82f302309ef202110007708f55ff5a73 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/Model/Product/Type/PriceTest.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/Model/Product/Type/PriceTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/Model/Product/Type/VirtualTest.php b/dev/tests/integration/testsuite/Mage/Catalog/Model/Product/Type/VirtualTest.php index dabfe0f0fb36922c72b31fb1f07a5e2db84318cf..d0b59aa0860486b26b171243881b4b590f54d56a 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/Model/Product/Type/VirtualTest.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/Model/Product/Type/VirtualTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/Model/Product/TypeTest.php b/dev/tests/integration/testsuite/Mage/Catalog/Model/Product/TypeTest.php index 4f69b98f48ef83edcf66037d80180d1669d6a69d..c444319441818145fb73c95afddbf96b11b9dbff 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/Model/Product/TypeTest.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/Model/Product/TypeTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/Model/Product/UrlTest.php b/dev/tests/integration/testsuite/Mage/Catalog/Model/Product/UrlTest.php index 3749c4601cf65f54271fa8d074b199389318fd9b..add8f0bba1b6865c004c28922271fab2aa302b41 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/Model/Product/UrlTest.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/Model/Product/UrlTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/Model/ProductExternalTest.php b/dev/tests/integration/testsuite/Mage/Catalog/Model/ProductExternalTest.php index 494aa9bd33fae9daf06e9aa8a082d0bca89d45e6..8d2d6a7d96ea84e53cead3a90465b4195363c141 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/Model/ProductExternalTest.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/Model/ProductExternalTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/Model/ProductGettersTest.php b/dev/tests/integration/testsuite/Mage/Catalog/Model/ProductGettersTest.php index c03611bc3b8aec878a456a1ff1516fa43668c433..b4f4d07cbd34964d291c90ea990be9a0b3f762e8 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/Model/ProductGettersTest.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/Model/ProductGettersTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/Model/ProductPriceTest.php b/dev/tests/integration/testsuite/Mage/Catalog/Model/ProductPriceTest.php index aad8f8f35a3cb345e901a0f3d63ddc509f8cbf5d..d1b286fbb965f71f180d0a218d389311c9e1ee3a 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/Model/ProductPriceTest.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/Model/ProductPriceTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/Model/ProductTest.php b/dev/tests/integration/testsuite/Mage/Catalog/Model/ProductTest.php index c647cb8878bfdcf3036910db36bb508150fd6121..e06787fe0d7468416961bb69ae803de349a3b0d1 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/Model/ProductTest.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/Model/ProductTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/Model/Resource/Eav/AttributeTest.php b/dev/tests/integration/testsuite/Mage/Catalog/Model/Resource/Eav/AttributeTest.php index 68b55df1ce3abc1c0f3d05f28f565baa21c1ad6b..127b188b14d9af971044f5a79f988d6cae88e670 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/Model/Resource/Eav/AttributeTest.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/Model/Resource/Eav/AttributeTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/Model/Resource/Product/Collection/AssociatedProductTest.php b/dev/tests/integration/testsuite/Mage/Catalog/Model/Resource/Product/Collection/AssociatedProductTest.php index 8852565897334f933f9b01f704ac148e1f395fd2..0021d4a2b108f3b15315fc59386f424fb797e8e9 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/Model/Resource/Product/Collection/AssociatedProductTest.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/Model/Resource/Product/Collection/AssociatedProductTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/Model/Resource/Product/CollectionTest.php b/dev/tests/integration/testsuite/Mage/Catalog/Model/Resource/Product/CollectionTest.php index 9e62b41ee2d43531e5a6334e8dffb80b470731c5..28cf976163107958a266eb4b4f12482669a125a1 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/Model/Resource/Product/CollectionTest.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/Model/Resource/Product/CollectionTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/Model/Resource/UrlTest.php b/dev/tests/integration/testsuite/Mage/Catalog/Model/Resource/UrlTest.php index 5e0a928971264040473be7ae797b9e4c1868e234..38c608294765e5c1c75c96036b11b07ce9583bd1 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/Model/Resource/UrlTest.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/Model/Resource/UrlTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/Model/Resource/_files/url_rewrites.php b/dev/tests/integration/testsuite/Mage/Catalog/Model/Resource/_files/url_rewrites.php index 350a0df15b0883a8af6787f7b965573ccd19e900..e247376567e7f440f51d556779f321a38a972ada 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/Model/Resource/_files/url_rewrites.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/Model/Resource/_files/url_rewrites.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/Model/UrlTest.php b/dev/tests/integration/testsuite/Mage/Catalog/Model/UrlTest.php index c9acfb0fe5fc1740b629e3520c7f990fad2d9c01..347ead3efeac8af486a3a48f48051d9fbc7a4ccf 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/Model/UrlTest.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/Model/UrlTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/WidgetTest.php b/dev/tests/integration/testsuite/Mage/Catalog/WidgetTest.php index 362bc8b09f43b09226400306bb487fa3bbdb58ac..9088ebf6d341ff0c3ae23711606ad1b6493b1203 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/WidgetTest.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/WidgetTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/_files/categories.php b/dev/tests/integration/testsuite/Mage/Catalog/_files/categories.php index aa73329391914728633da6890f7b4801c942ee1f..81b9e237d301bef0d1fe1d7bcc40a05a56e5e98b 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/_files/categories.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/_files/categories.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/_files/filterable_attributes.php b/dev/tests/integration/testsuite/Mage/Catalog/_files/filterable_attributes.php index dd63cdf76ec59dbff27a08b35d69ab311e751bd3..98ade0c677bb3efa752b6fa38c96616365070acc 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/_files/filterable_attributes.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/_files/filterable_attributes.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/_files/multiple_products.php b/dev/tests/integration/testsuite/Mage/Catalog/_files/multiple_products.php index 1fe59075d073dda0461f9798a3f69b0b2b00dada..f00f3b4549079b50dc0cf4b650afcada1667cf8a 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/_files/multiple_products.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/_files/multiple_products.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/_files/product_associated.php b/dev/tests/integration/testsuite/Mage/Catalog/_files/product_associated.php index 8755a943acda4674e79894f872ead03a8a2c7e5c..ed9f2b9555510d9b0c8960b50cb3180d5e982290 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/_files/product_associated.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/_files/product_associated.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/_files/product_configurable.php b/dev/tests/integration/testsuite/Mage/Catalog/_files/product_configurable.php index 0d6369588377c5b29b3db3cd276744eba400d61e..3d1aa8cf30936900208fa86919995a8bdb979712 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/_files/product_configurable.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/_files/product_configurable.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/_files/product_image.php b/dev/tests/integration/testsuite/Mage/Catalog/_files/product_image.php index 7544540c82e5775ad7873c7b39c1225fd541d001..1639a4eee0ff4a4e7ac90f2f2c67c431ae9b47c4 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/_files/product_image.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/_files/product_image.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/_files/product_image_rollback.php b/dev/tests/integration/testsuite/Mage/Catalog/_files/product_image_rollback.php index fb451ee9267604ed6275ed8abbb07b1b144b00af..751859dd258b6e96fb43ce376ffc7b507adddd98 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/_files/product_image_rollback.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/_files/product_image_rollback.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/_files/product_simple.php b/dev/tests/integration/testsuite/Mage/Catalog/_files/product_simple.php index 3237c092f2e0fa54bba1f01bc34fc41649a9de8a..6d468eb3466d8f5cd0ca522624a756dd21e579fa 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/_files/product_simple.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/_files/product_simple.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/_files/product_simple_duplicated.php b/dev/tests/integration/testsuite/Mage/Catalog/_files/product_simple_duplicated.php index 00bab5480b7ff566bcefbc00b6182626f6036c3c..2be6d18ec18fe44183f431833fef6bb189ec71e4 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/_files/product_simple_duplicated.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/_files/product_simple_duplicated.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/_files/product_simple_xss.php b/dev/tests/integration/testsuite/Mage/Catalog/_files/product_simple_xss.php index 0b9c3792e121f415699b578adfadda8748a5509b..950ef7a8d855861aacda2a2e4ad197b9b42ea79d 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/_files/product_simple_xss.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/_files/product_simple_xss.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/_files/product_special_price.php b/dev/tests/integration/testsuite/Mage/Catalog/_files/product_special_price.php index b55c8ef0b790450d5f868e9fd468d2110deb52b0..33edd77c2e0c8f972bb6ca01b4f56a1c44bb6ca1 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/_files/product_special_price.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/_files/product_special_price.php @@ -21,7 +21,7 @@ * @category Mage * @package Mage_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/_files/product_virtual.php b/dev/tests/integration/testsuite/Mage/Catalog/_files/product_virtual.php index 8c97351f4c0c498e451b00fe2518b24cc0bbaba9..008cd253ab0c35112f55bd0a1b50b862838ad848 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/_files/product_virtual.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/_files/product_virtual.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/_files/product_with_image.php b/dev/tests/integration/testsuite/Mage/Catalog/_files/product_with_image.php index e818ad74de01142c771718ba0b15f52bf3d2443d..156225c3b3d325731eb779314c964285d96f0a03 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/_files/product_with_image.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/_files/product_with_image.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/_files/product_with_image_rollback.php b/dev/tests/integration/testsuite/Mage/Catalog/_files/product_with_image_rollback.php index 69a616753951f660232e723003f1d85dedf324de..23bcb30bebf95a13d9801a24c70ef76a123c94a5 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/_files/product_with_image_rollback.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/_files/product_with_image_rollback.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/_files/product_with_options.php b/dev/tests/integration/testsuite/Mage/Catalog/_files/product_with_options.php index 373bbea531a9049b1944908386a3173a57e18d8d..b990d646241fc7db5254cd9c5f63692df5e81fb4 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/_files/product_with_options.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/_files/product_with_options.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/_files/products.php b/dev/tests/integration/testsuite/Mage/Catalog/_files/products.php index 791db1d314e5f4653e5f626733a23e65ae9641bb..f61094ee20898bb864342dd417019c17d335b3a0 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/_files/products.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/_files/products.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/_files/products_crosssell.php b/dev/tests/integration/testsuite/Mage/Catalog/_files/products_crosssell.php index c13e6f20794a16e2049f3a2e4b44d0d8b6e7afca..6f3bd256b16fa3e29c76128bc6c03c1ce0987ed8 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/_files/products_crosssell.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/_files/products_crosssell.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/_files/products_new.php b/dev/tests/integration/testsuite/Mage/Catalog/_files/products_new.php index c37174f1cc07a4f23db57560b73749e3961a5adc..9d432f33ad9f92789b764571b369ab7b562bfe17 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/_files/products_new.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/_files/products_new.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/_files/products_related.php b/dev/tests/integration/testsuite/Mage/Catalog/_files/products_related.php index 12c7a8cdd202e3df24a16e6900c6ef4d8ea4f7ac..15f12a4735ade8f82262291c4bfbce9718806e5a 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/_files/products_related.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/_files/products_related.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/_files/url_rewrites.php b/dev/tests/integration/testsuite/Mage/Catalog/_files/url_rewrites.php index e8c2b1e9c1134e7434f518933a616a87632a1860..bee2388081a805c05a798498b9d49f2a47a0dcff 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/_files/url_rewrites.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/_files/url_rewrites.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/_files/url_rewrites_invalid.php b/dev/tests/integration/testsuite/Mage/Catalog/_files/url_rewrites_invalid.php index f9df85a2352af52c9c6368787189e3a6314aaa80..4bd03ea6b0324f658f52528a102ce76e628885a2 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/_files/url_rewrites_invalid.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/_files/url_rewrites_invalid.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/controllers/CategoryControllerTest.php b/dev/tests/integration/testsuite/Mage/Catalog/controllers/CategoryControllerTest.php index 653c82be6d8570b7b9429632077d8b5d8b3e37dd..06e0fb0def90b4a7c268a369b9d85a23255cd371 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/controllers/CategoryControllerTest.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/controllers/CategoryControllerTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/controllers/IndexControllerTest.php b/dev/tests/integration/testsuite/Mage/Catalog/controllers/IndexControllerTest.php index 703425751b22febd0c121543931d671d13e3682e..9c30a64611ded6e2f28613d698005c268883ab01 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/controllers/IndexControllerTest.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/controllers/IndexControllerTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/controllers/Product/CompareControllerTest.php b/dev/tests/integration/testsuite/Mage/Catalog/controllers/Product/CompareControllerTest.php index 79ab75bc13327f52345cd99bd8d1e42720861177..42e36639e9c4b5975e74ee266ccb954d876a41cb 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/controllers/Product/CompareControllerTest.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/controllers/Product/CompareControllerTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/controllers/ProductControllerTest.php b/dev/tests/integration/testsuite/Mage/Catalog/controllers/ProductControllerTest.php index 3339c245a7f5f530860af7ef603eb8646b7112ea..4920659f32e07c48b8dc280129f44ec378d2ec27 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/controllers/ProductControllerTest.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/controllers/ProductControllerTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/controllers/_files/attribute_system.php b/dev/tests/integration/testsuite/Mage/Catalog/controllers/_files/attribute_system.php index 8ab6f16cb550d66ec9e01cc816a6c28fb7c359d6..3346813b313619e3d0efaafa6ea904932491bddd 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/controllers/_files/attribute_system.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/controllers/_files/attribute_system.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/controllers/_files/attribute_system_with_applyto_data.php b/dev/tests/integration/testsuite/Mage/Catalog/controllers/_files/attribute_system_with_applyto_data.php index 029aea37338380030463c326f2bd5292af036213..118200afc08802ae3903ed4104579e59d51206e4 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/controllers/_files/attribute_system_with_applyto_data.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/controllers/_files/attribute_system_with_applyto_data.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/controllers/_files/attribute_user_defined.php b/dev/tests/integration/testsuite/Mage/Catalog/controllers/_files/attribute_user_defined.php index 3c4fc82f0449221f77c85173b5be62fc48b4bc69..3d1476a02be798fcd738df3b6b306c50655d4099 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/controllers/_files/attribute_user_defined.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/controllers/_files/attribute_user_defined.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Catalog/controllers/_files/products.php b/dev/tests/integration/testsuite/Mage/Catalog/controllers/_files/products.php index c38a301b144528e2ad4836c05d2f067a3cd5a68b..014db8bae63b6ef8f680e05a24dde1ea88248dc5 100644 --- a/dev/tests/integration/testsuite/Mage/Catalog/controllers/_files/products.php +++ b/dev/tests/integration/testsuite/Mage/Catalog/controllers/_files/products.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Catalog * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/CatalogInventory/Model/Stock/ItemTest.php b/dev/tests/integration/testsuite/Mage/CatalogInventory/Model/Stock/ItemTest.php index ce6d40274969064d61adb475193fb88867b4e667..5973b0fc7bf25061c956777c0e2288b9c42cc107 100644 --- a/dev/tests/integration/testsuite/Mage/CatalogInventory/Model/Stock/ItemTest.php +++ b/dev/tests/integration/testsuite/Mage/CatalogInventory/Model/Stock/ItemTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_CatalogInventory * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/CatalogRule/Model/RuleTest.php b/dev/tests/integration/testsuite/Mage/CatalogRule/Model/RuleTest.php index 724261e027e3d5e156a2540a53a10a2e93c39e96..757c914d252b57e8b7fd160b909d639158e03bf3 100644 --- a/dev/tests/integration/testsuite/Mage/CatalogRule/Model/RuleTest.php +++ b/dev/tests/integration/testsuite/Mage/CatalogRule/Model/RuleTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_CatalogRule * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_CatalogRule_Model_RuleTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/integration/testsuite/Mage/CatalogSearch/Block/Advanced/ResultTest.php b/dev/tests/integration/testsuite/Mage/CatalogSearch/Block/Advanced/ResultTest.php index acc3fcf86a1b90fe324e14a862939e9d03b6f05d..c42d920727be076723dc55ace31783f95b340ff6 100644 --- a/dev/tests/integration/testsuite/Mage/CatalogSearch/Block/Advanced/ResultTest.php +++ b/dev/tests/integration/testsuite/Mage/CatalogSearch/Block/Advanced/ResultTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_CatalogSearch * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/CatalogSearch/Block/ResultTest.php b/dev/tests/integration/testsuite/Mage/CatalogSearch/Block/ResultTest.php index 9050cc6ec1966c187918a36344743d8d42b8847f..be6e257ddeccd91a4483bf3072d555896407987a 100644 --- a/dev/tests/integration/testsuite/Mage/CatalogSearch/Block/ResultTest.php +++ b/dev/tests/integration/testsuite/Mage/CatalogSearch/Block/ResultTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_CatalogSearch * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/CatalogSearch/Block/TermTest.php b/dev/tests/integration/testsuite/Mage/CatalogSearch/Block/TermTest.php index 86ee88c3d65bba0e9dbb3e84b0bd010344cc0b8f..b4959dcc3661e8a034a9a5a633f461ec09916027 100644 --- a/dev/tests/integration/testsuite/Mage/CatalogSearch/Block/TermTest.php +++ b/dev/tests/integration/testsuite/Mage/CatalogSearch/Block/TermTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_CatalogSearch * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/CatalogSearch/Helper/DataTest.php b/dev/tests/integration/testsuite/Mage/CatalogSearch/Helper/DataTest.php index c6977b0cb22f1e3559414bae9dd2f36f662ebc1a..9278bb2ce8ae974929c4345f8fcc03caa3b1cc68 100644 --- a/dev/tests/integration/testsuite/Mage/CatalogSearch/Helper/DataTest.php +++ b/dev/tests/integration/testsuite/Mage/CatalogSearch/Helper/DataTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_CatalogSearch * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/CatalogSearch/_files/query.php b/dev/tests/integration/testsuite/Mage/CatalogSearch/_files/query.php index bf602120546cd751b03e7557fc10376328529e65..d0aebe6b93756c7415775ffd1cd74984905f95a8 100644 --- a/dev/tests/integration/testsuite/Mage/CatalogSearch/_files/query.php +++ b/dev/tests/integration/testsuite/Mage/CatalogSearch/_files/query.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_CatalogSearch * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/CatalogSearch/controllers/AjaxControllerTest.php b/dev/tests/integration/testsuite/Mage/CatalogSearch/controllers/AjaxControllerTest.php index 7b8b688df8ffe35b7c34113eb8ef0abb9f085fe1..8dc89ee1e7ba4809c9efdd443bd18f99d94b7c9a 100644 --- a/dev/tests/integration/testsuite/Mage/CatalogSearch/controllers/AjaxControllerTest.php +++ b/dev/tests/integration/testsuite/Mage/CatalogSearch/controllers/AjaxControllerTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_CatalogSearch * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/CatalogSearch/controllers/ResultControllerTest.php b/dev/tests/integration/testsuite/Mage/CatalogSearch/controllers/ResultControllerTest.php index 3dcf3439f9ab1366a2efda6b69571fd6168d4230..b45f3e28d304ca9589bee95279de18a6390245da 100644 --- a/dev/tests/integration/testsuite/Mage/CatalogSearch/controllers/ResultControllerTest.php +++ b/dev/tests/integration/testsuite/Mage/CatalogSearch/controllers/ResultControllerTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_CatalogSearch * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Centinel/CreateOrderTest.php b/dev/tests/integration/testsuite/Mage/Centinel/CreateOrderTest.php index 57e41a57ed10ead1e5049b99295cfbb2e2f33a84..6d1bcf65ff3e39c07f5ba0943de3689de98caed8 100644 --- a/dev/tests/integration/testsuite/Mage/Centinel/CreateOrderTest.php +++ b/dev/tests/integration/testsuite/Mage/Centinel/CreateOrderTest.php @@ -21,7 +21,7 @@ * @category Mage * @package Mage_Centinel * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Centinel/Helper/DataTest.php b/dev/tests/integration/testsuite/Mage/Centinel/Helper/DataTest.php index 7c2ecc7fa044f3eeab41344c832d49b224561a51..683e7a0212c9e20f264bddc0cf07dd3700b36947 100644 --- a/dev/tests/integration/testsuite/Mage/Centinel/Helper/DataTest.php +++ b/dev/tests/integration/testsuite/Mage/Centinel/Helper/DataTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Centinel * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Checkout/Block/Cart/Item/RendererTest.php b/dev/tests/integration/testsuite/Mage/Checkout/Block/Cart/Item/RendererTest.php index caf20f12007487b779072632db3e372f6eff58b4..910a21cba7a7a4e8c4b3985c0cf11505f099dad7 100644 --- a/dev/tests/integration/testsuite/Mage/Checkout/Block/Cart/Item/RendererTest.php +++ b/dev/tests/integration/testsuite/Mage/Checkout/Block/Cart/Item/RendererTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Checkout * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Checkout/Block/CartTest.php b/dev/tests/integration/testsuite/Mage/Checkout/Block/CartTest.php index b6815f7167ced9b9ed7a8ee27fc9d529bc02941e..ccb4b4313a566943a7a51c42adf80a8b703f6b36 100644 --- a/dev/tests/integration/testsuite/Mage/Checkout/Block/CartTest.php +++ b/dev/tests/integration/testsuite/Mage/Checkout/Block/CartTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Checkout * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Checkout/Block/Onepage/Payment/MethodsTest.php b/dev/tests/integration/testsuite/Mage/Checkout/Block/Onepage/Payment/MethodsTest.php index 635f667631162ad478065bfcbb49969914e35195..4cb855815a324bbe62af6be0103d003f8c01309f 100644 --- a/dev/tests/integration/testsuite/Mage/Checkout/Block/Onepage/Payment/MethodsTest.php +++ b/dev/tests/integration/testsuite/Mage/Checkout/Block/Onepage/Payment/MethodsTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Checkout * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Checkout/_files/cart.php b/dev/tests/integration/testsuite/Mage/Checkout/_files/cart.php index c286e444e40b4712755d023aedc8f1c2c22a674f..03f6a539e51f70487654bc38f008e0eed0bca353 100644 --- a/dev/tests/integration/testsuite/Mage/Checkout/_files/cart.php +++ b/dev/tests/integration/testsuite/Mage/Checkout/_files/cart.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Checkout * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Checkout/_files/product_bundle.php b/dev/tests/integration/testsuite/Mage/Checkout/_files/product_bundle.php index ae90dfc0226372cfef4ab6c5bc35c7fabcecf528..46b429cc7404197353f0c1a543555302543fab3c 100644 --- a/dev/tests/integration/testsuite/Mage/Checkout/_files/product_bundle.php +++ b/dev/tests/integration/testsuite/Mage/Checkout/_files/product_bundle.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Checkout * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Checkout/_files/product_with_custom_option.php b/dev/tests/integration/testsuite/Mage/Checkout/_files/product_with_custom_option.php index 679ea23fe16c2b1c798f7a9f0a1f574f0604822c..80966ec3a878c1badce884d03cbc20f05cbcef01 100644 --- a/dev/tests/integration/testsuite/Mage/Checkout/_files/product_with_custom_option.php +++ b/dev/tests/integration/testsuite/Mage/Checkout/_files/product_with_custom_option.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Checkout * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Checkout/_files/quote_with_bundle_product.php b/dev/tests/integration/testsuite/Mage/Checkout/_files/quote_with_bundle_product.php index 774c2a51acab6e3ecb5087fb772cbdf91565918b..439f97b6334bfb12c0a352508e10ddae9c66c3d1 100644 --- a/dev/tests/integration/testsuite/Mage/Checkout/_files/quote_with_bundle_product.php +++ b/dev/tests/integration/testsuite/Mage/Checkout/_files/quote_with_bundle_product.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Checkout * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Checkout/_files/quote_with_configurable_product.php b/dev/tests/integration/testsuite/Mage/Checkout/_files/quote_with_configurable_product.php index b700f5739d1dec1948c68fa37a1dc038b2ed9ca8..4668d6e3de014e668332a277a09c9867ff0f0d69 100644 --- a/dev/tests/integration/testsuite/Mage/Checkout/_files/quote_with_configurable_product.php +++ b/dev/tests/integration/testsuite/Mage/Checkout/_files/quote_with_configurable_product.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Checkout * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Checkout/_files/quote_with_downloadable_product.php b/dev/tests/integration/testsuite/Mage/Checkout/_files/quote_with_downloadable_product.php index 7dcf89af517de6b6d374706156d618b5fcb18933..3d2d5c4215a18b88f635c2bc23d9db82e6a41a61 100644 --- a/dev/tests/integration/testsuite/Mage/Checkout/_files/quote_with_downloadable_product.php +++ b/dev/tests/integration/testsuite/Mage/Checkout/_files/quote_with_downloadable_product.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Checkout * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Checkout/_files/quote_with_simple_product.php b/dev/tests/integration/testsuite/Mage/Checkout/_files/quote_with_simple_product.php index d20b2d63801334c24e938131faea8d8c36d7a5c5..60b9640d97ee29a1506f1f3ccc84eaa7063084b3 100644 --- a/dev/tests/integration/testsuite/Mage/Checkout/_files/quote_with_simple_product.php +++ b/dev/tests/integration/testsuite/Mage/Checkout/_files/quote_with_simple_product.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Checkout * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Checkout/_files/quote_with_simple_product_and_custom_option.php b/dev/tests/integration/testsuite/Mage/Checkout/_files/quote_with_simple_product_and_custom_option.php index 045b4c3cb76b3c6b217a29881af76e33e6ae07fc..a9182c12e78919b58b48f05b4a89652a12be136c 100644 --- a/dev/tests/integration/testsuite/Mage/Checkout/_files/quote_with_simple_product_and_custom_option.php +++ b/dev/tests/integration/testsuite/Mage/Checkout/_files/quote_with_simple_product_and_custom_option.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Checkout * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Checkout/_files/simple_product.php b/dev/tests/integration/testsuite/Mage/Checkout/_files/simple_product.php index 41179d6c447233ae390f4a297d96c99c577f79bc..8e08c5b8489179fb529ec1ed1685e13a01fcd948 100644 --- a/dev/tests/integration/testsuite/Mage/Checkout/_files/simple_product.php +++ b/dev/tests/integration/testsuite/Mage/Checkout/_files/simple_product.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Checkout * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Checkout/controllers/CartControllerTest.php b/dev/tests/integration/testsuite/Mage/Checkout/controllers/CartControllerTest.php index afb8a3a1e41d21e59bcc5d91aa828dcbee3c9e7d..ce0d3ed2937cac852f2134af1d952efed1900721 100644 --- a/dev/tests/integration/testsuite/Mage/Checkout/controllers/CartControllerTest.php +++ b/dev/tests/integration/testsuite/Mage/Checkout/controllers/CartControllerTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Checkout * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Checkout/controllers/MultishippingControllerTest.php b/dev/tests/integration/testsuite/Mage/Checkout/controllers/MultishippingControllerTest.php index 98d478a529e28599ac8c2bf898955ef2a966c763..714406037db9a6c2475269311b1794f5442dfe7f 100644 --- a/dev/tests/integration/testsuite/Mage/Checkout/controllers/MultishippingControllerTest.php +++ b/dev/tests/integration/testsuite/Mage/Checkout/controllers/MultishippingControllerTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Checkout * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Checkout/controllers/OnepageControllerTest.php b/dev/tests/integration/testsuite/Mage/Checkout/controllers/OnepageControllerTest.php index d976d246cdfe99b00a96338e033cf60700353842..8d78234e4be8290881d3774dc67c5ed008d7f485 100644 --- a/dev/tests/integration/testsuite/Mage/Checkout/controllers/OnepageControllerTest.php +++ b/dev/tests/integration/testsuite/Mage/Checkout/controllers/OnepageControllerTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Checkout * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Cms/Block/BlockTest.php b/dev/tests/integration/testsuite/Mage/Cms/Block/BlockTest.php index 12b9eeaca1ed147ddb166c9a86cc393a614f741a..fe4040b4521e6facb9ba7046e42287eb19850000 100644 --- a/dev/tests/integration/testsuite/Mage/Cms/Block/BlockTest.php +++ b/dev/tests/integration/testsuite/Mage/Cms/Block/BlockTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Cms * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Cms/Block/Widget/BlockTest.php b/dev/tests/integration/testsuite/Mage/Cms/Block/Widget/BlockTest.php index 8183d03ac5e36a1a26f03d1d6df0167f996a5048..ccedaf23d7a463a3d872caac95359d8116aad8d8 100644 --- a/dev/tests/integration/testsuite/Mage/Cms/Block/Widget/BlockTest.php +++ b/dev/tests/integration/testsuite/Mage/Cms/Block/Widget/BlockTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Cms * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Cms/Controller/RouterTest.php b/dev/tests/integration/testsuite/Mage/Cms/Controller/RouterTest.php index 560a4e21e60905cf760a99de6b5fe6c064a73af8..f90b1acf4c42eca6ac9ddb7636cf2d1cf50d4399 100644 --- a/dev/tests/integration/testsuite/Mage/Cms/Controller/RouterTest.php +++ b/dev/tests/integration/testsuite/Mage/Cms/Controller/RouterTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Cms/Helper/PageTest.php b/dev/tests/integration/testsuite/Mage/Cms/Helper/PageTest.php index c528f51f2ac783d2c930a2e2a20657c988a39185..95a7a1e0b2a13e0fe995c328cfa66dbb354de398 100644 --- a/dev/tests/integration/testsuite/Mage/Cms/Helper/PageTest.php +++ b/dev/tests/integration/testsuite/Mage/Cms/Helper/PageTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Cms * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Cms/Model/Wysiwyg/ConfigTest.php b/dev/tests/integration/testsuite/Mage/Cms/Model/Wysiwyg/ConfigTest.php index d207b4cef27b89d700233e463c1b7793a75c4275..2eb1b5557838bc2dfb1abb35c6ce4b236145ba3b 100644 --- a/dev/tests/integration/testsuite/Mage/Cms/Model/Wysiwyg/ConfigTest.php +++ b/dev/tests/integration/testsuite/Mage/Cms/Model/Wysiwyg/ConfigTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Cms/Model/Wysiwyg/Images/StorageTest.php b/dev/tests/integration/testsuite/Mage/Cms/Model/Wysiwyg/Images/StorageTest.php index 76ff13afc8ddcd6e25ad9f400fa9470e35312990..38f91035eb65ef2e26a2a5de7e4e967ca0193005 100644 --- a/dev/tests/integration/testsuite/Mage/Cms/Model/Wysiwyg/Images/StorageTest.php +++ b/dev/tests/integration/testsuite/Mage/Cms/Model/Wysiwyg/Images/StorageTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Cms * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Cms/_files/block.php b/dev/tests/integration/testsuite/Mage/Cms/_files/block.php index 2cd49d63d79181e19f42f007afb17d3bc61aa580..93a1805d00b6c6584e2253a6fe369a2a3dcbad2b 100644 --- a/dev/tests/integration/testsuite/Mage/Cms/_files/block.php +++ b/dev/tests/integration/testsuite/Mage/Cms/_files/block.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Cms * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Cms/_files/pages.php b/dev/tests/integration/testsuite/Mage/Cms/_files/pages.php index 556dd1a667c6055078bff6f7f106a7d6007d313a..fe71469d85834a8424522490ee5dad83956663a5 100644 --- a/dev/tests/integration/testsuite/Mage/Cms/_files/pages.php +++ b/dev/tests/integration/testsuite/Mage/Cms/_files/pages.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Cms * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Cms/controllers/PageControllerTest.php b/dev/tests/integration/testsuite/Mage/Cms/controllers/PageControllerTest.php index 00a9b01bb0351d640294dc9948670ed6383ad830..adc3361fbd35cde33611a1afe5b669e8a4b9e9ec 100644 --- a/dev/tests/integration/testsuite/Mage/Cms/controllers/PageControllerTest.php +++ b/dev/tests/integration/testsuite/Mage/Cms/controllers/PageControllerTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Cms * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Connect/controllers/Adminhtml/Extension/LocalControllerTest.php b/dev/tests/integration/testsuite/Mage/Connect/controllers/Adminhtml/Extension/LocalControllerTest.php index 095876217d5426137ad893a28b084499de17df65..de9b246292c5c6d4ed5aa9fb8664e8c2f92a8bdc 100644 --- a/dev/tests/integration/testsuite/Mage/Connect/controllers/Adminhtml/Extension/LocalControllerTest.php +++ b/dev/tests/integration/testsuite/Mage/Connect/controllers/Adminhtml/Extension/LocalControllerTest.php @@ -21,7 +21,7 @@ * @category Mage * @package Mage_Connect * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Block/AbstractTest.php b/dev/tests/integration/testsuite/Mage/Core/Block/AbstractTest.php index 5339cb78c13dbd1c558fa56be44cfdbec153869d..aabe61c4641958beeabc8832d516102ba5d5208b 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Block/AbstractTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Block/AbstractTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ /** diff --git a/dev/tests/integration/testsuite/Mage/Core/Block/TemplateTest.php b/dev/tests/integration/testsuite/Mage/Core/Block/TemplateTest.php index 2918d1d34ac1b14804dc71b06ea09bd8c0c47c2b..9e5660154e7b0e9f5bc2dfab5f28db36c997342b 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Block/TemplateTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Block/TemplateTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Block/Text/ListTest.php b/dev/tests/integration/testsuite/Mage/Core/Block/Text/ListTest.php index 133fe117d62956f69a0c2f594870f8f7c22b75fa..5c49709a435cd9c60fe1db1322c8b4aa652548af 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Block/Text/ListTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Block/Text/ListTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Block/TextTest.php b/dev/tests/integration/testsuite/Mage/Core/Block/TextTest.php index 79e6982bf1d8ece32797cb0c7e218fa82f31dbad..0004480c8ea690e138da03a86248d83a4a9e1bc4 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Block/TextTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Block/TextTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Block/_files/adminhtml/default/basic/Mage_Core/dummy.phtml b/dev/tests/integration/testsuite/Mage/Core/Block/_files/adminhtml/default/basic/Mage_Core/dummy.phtml index a9dfe98ae4e3410c74aa2da5f30db44b7912d43a..d66d2b3fc0e92a6b4e90b40b0f4e9327350e8db5 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Block/_files/adminhtml/default/basic/Mage_Core/dummy.phtml +++ b/dev/tests/integration/testsuite/Mage/Core/Block/_files/adminhtml/default/basic/Mage_Core/dummy.phtml @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/dev/tests/integration/testsuite/Mage/Core/Block/_files/adminhtml/default/basic/theme.xml b/dev/tests/integration/testsuite/Mage/Core/Block/_files/adminhtml/default/basic/theme.xml index 22d76924eda1433ecab0502ca8202735b9427690..5707aed823d3ad368ffe9a0483c44d462d096332 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Block/_files/adminhtml/default/basic/theme.xml +++ b/dev/tests/integration/testsuite/Mage/Core/Block/_files/adminhtml/default/basic/theme.xml @@ -21,7 +21,7 @@ * @category Magento * @package Design * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/integration/testsuite/Mage/Core/Block/_files/frontend/default/demo/Mage_Core/dummy.phtml b/dev/tests/integration/testsuite/Mage/Core/Block/_files/frontend/default/demo/Mage_Core/dummy.phtml index a9dfe98ae4e3410c74aa2da5f30db44b7912d43a..d66d2b3fc0e92a6b4e90b40b0f4e9327350e8db5 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Block/_files/frontend/default/demo/Mage_Core/dummy.phtml +++ b/dev/tests/integration/testsuite/Mage/Core/Block/_files/frontend/default/demo/Mage_Core/dummy.phtml @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/dev/tests/integration/testsuite/Mage/Core/Block/_files/frontend/default/demo/theme.xml b/dev/tests/integration/testsuite/Mage/Core/Block/_files/frontend/default/demo/theme.xml index 89d9404607a170af664c452d0464a6adcf50d860..454f1534ae86932509a6112b50f96595e47cc658 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Block/_files/frontend/default/demo/theme.xml +++ b/dev/tests/integration/testsuite/Mage/Core/Block/_files/frontend/default/demo/theme.xml @@ -21,7 +21,7 @@ * @category Magento * @package Design * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/integration/testsuite/Mage/Core/Block/_files/template_test_assign.phtml b/dev/tests/integration/testsuite/Mage/Core/Block/_files/template_test_assign.phtml index 757461524aa766fe4ed8f83059ed121323ef7047..c64f82e2a4816ad7f7eb8613d51d57810819d3c2 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Block/_files/template_test_assign.phtml +++ b/dev/tests/integration/testsuite/Mage/Core/Block/_files/template_test_assign.phtml @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/dev/tests/integration/testsuite/Mage/Core/Controller/RequestHttpTest.php b/dev/tests/integration/testsuite/Mage/Core/Controller/RequestHttpTest.php index 90d2d5e137ef430592a2d5f94422eee514121834..af7170b7de1e628a474b9bc4b3b56c1fcd9858c1 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Controller/RequestHttpTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Controller/RequestHttpTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Controller/Varien/ActionTest.php b/dev/tests/integration/testsuite/Mage/Core/Controller/Varien/ActionTest.php index a8d0efa8f65f92c5ba1bc7eaf9decb79283851d5..9a9fbde137b208ba0131b4d3ea176332d09f10c7 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Controller/Varien/ActionTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Controller/Varien/ActionTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ @@ -287,7 +287,6 @@ class Mage_Core_Controller_Varien_ActionTest extends PHPUnit_Framework_TestCase * @param string $expectedArea * @param string $expectedStore * @param string $expectedDesign - * @group one */ public function testPreDispatch($controllerClass, $expectedArea, $expectedStore, $expectedDesign) { diff --git a/dev/tests/integration/testsuite/Mage/Core/Controller/Varien/FrontTest.php b/dev/tests/integration/testsuite/Mage/Core/Controller/Varien/FrontTest.php index 1e64b65412a2f10bcc70197b3c393e3de6b76399..088dd339aab662292083efb84cad5c6754fb8b5b 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Controller/Varien/FrontTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Controller/Varien/FrontTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Controller/Varien/Router/AbstractTest.php b/dev/tests/integration/testsuite/Mage/Core/Controller/Varien/Router/AbstractTest.php index f89ba0683f2660355115184581c4d72dca772f73..143daefd5aa82b405eb0dc7f64d66433d8a8e969 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Controller/Varien/Router/AbstractTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Controller/Varien/Router/AbstractTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Controller/Varien/Router/BaseTest.php b/dev/tests/integration/testsuite/Mage/Core/Controller/Varien/Router/BaseTest.php index d280723eff62eca5e281f8bda29f38e93b6019fc..e3606efa0b84f74c17f02f1b54534def0b7fcce0 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Controller/Varien/Router/BaseTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Controller/Varien/Router/BaseTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Helper/AbstractTest.php b/dev/tests/integration/testsuite/Mage/Core/Helper/AbstractTest.php index 963bc355b1210e31e1706449c94efb80decbdb61..10a93691ef29abf098e2e65d864399eeb406f57d 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Helper/AbstractTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Helper/AbstractTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Helper/DataTest.php b/dev/tests/integration/testsuite/Mage/Core/Helper/DataTest.php index 28a9797fa75bd5ed4e7a1a0eeb0281b0cc4919e0..72a825eaf9a1b2657e4d23067f63e13f48806812 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Helper/DataTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Helper/DataTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Helper/File/StorageTest.php b/dev/tests/integration/testsuite/Mage/Core/Helper/File/StorageTest.php index 072e1dcbb6837486bfb76789ff7314c838bb5d84..842b796faaf9d16b4a6827ea48e86d022691f57e 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Helper/File/StorageTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Helper/File/StorageTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Helper/HttpTest.php b/dev/tests/integration/testsuite/Mage/Core/Helper/HttpTest.php index d91e7d495f98dca05ab024e97bde9fbb7896b0c5..7b122424df7a6ce6de3df064f0bded55f4172619 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Helper/HttpTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Helper/HttpTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Helper/JsTest.php b/dev/tests/integration/testsuite/Mage/Core/Helper/JsTest.php index 9338a84769578219780d17c4c1e0835d821797db..bcea0a8e3f216fda53c0a751a25e4309237d95fd 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Helper/JsTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Helper/JsTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Helper/StringTest.php b/dev/tests/integration/testsuite/Mage/Core/Helper/StringTest.php index bf286d6498fe32d254ce8515e321bfc9f6f7d7b6..ce9c2bbe286899bfb915bdc4e85378e711bf63ed 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Helper/StringTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Helper/StringTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Helper/Url/RewriteTest.php b/dev/tests/integration/testsuite/Mage/Core/Helper/Url/RewriteTest.php index d259031e26a9b9c32e91076820c8f879f983ca82..e59b4414d9e7fffd604d949c051a5aac91ff4795 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Helper/Url/RewriteTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Helper/Url/RewriteTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Helper/UrlTest.php b/dev/tests/integration/testsuite/Mage/Core/Helper/UrlTest.php index ac1a0c685389c5e6d8e9c9ad290c44d431845920..b5677dbdea26af1a62ef778718bbcce28e706bb1 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Helper/UrlTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Helper/UrlTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/App/AreaTest.php b/dev/tests/integration/testsuite/Mage/Core/Model/App/AreaTest.php index 42a6198f77d1d08ac391a6ac8d9ff5a4c28de35d..9eb4c5facdc47c58050dfdb12099317dff715110 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/App/AreaTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Model/App/AreaTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/App/EmulationTest.php b/dev/tests/integration/testsuite/Mage/Core/Model/App/EmulationTest.php index de49bfb03a79e70f0d38f75aff1dc18950a88382..3fdcaf4aff58d4438124a11d8aa41ed4bbad41e7 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/App/EmulationTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Model/App/EmulationTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/AppTest.php b/dev/tests/integration/testsuite/Mage/Core/Model/AppTest.php index 2682f57e0d8158656a7599992792e0a4e098eb6b..e11ef31507f1a763bb6185dc2db6c322c940458a 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/AppTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Model/AppTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ @@ -83,6 +83,25 @@ class Mage_Core_Model_AppTest extends PHPUnit_Framework_TestCase $this->assertTrue($this->_mageModel->getRequest()->isDispatched()); } + public function testIsInstalled() + { + $this->assertTrue($this->_mageModel->isInstalled()); + } + + /** + * @magentoAppIsolation enabled + * @expectedException Magento_Exception + * @expectedExceptionMessage Application is not installed yet, please complete the installation first. + */ + public function testRequireInstalledInstance() + { + $this->_model->baseInit(array( + Mage_Core_Model_Config::OPTION_LOCAL_CONFIG_EXTRA_DATA + => sprintf(Mage_Core_Model_Config::CONFIG_TEMPLATE_INSTALL_DATE, 'invalid') + )); + $this->_model->requireInstalledInstance(); + } + public function testGetCookie() { $this->assertInstanceOf('Mage_Core_Model_Cookie', $this->_model->getCookie()); diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/CacheTest.php b/dev/tests/integration/testsuite/Mage/Core/Model/CacheTest.php index e9108e062f9ae2b6064872c5d1dfdaa067c266e6..46701ecc8bd13e4fad1011595e7ab3019d788c1c 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/CacheTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Model/CacheTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/Config/BaseTest.php b/dev/tests/integration/testsuite/Mage/Core/Model/Config/BaseTest.php index 7bc51f6ea908825dbfc159e63aed4e8885b129f1..251d661fedf5c535dd6dcef88c562d16ba6a56cf 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/Config/BaseTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Model/Config/BaseTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/Config/DataTest.php b/dev/tests/integration/testsuite/Mage/Core/Model/Config/DataTest.php index 11eaf1ddc95e370ad21fd4552a1717e62695c1f3..e6c19c24ca0458f4431ec667e8c5f88f2108f979 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/Config/DataTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Model/Config/DataTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/Config/ElementTest.php b/dev/tests/integration/testsuite/Mage/Core/Model/Config/ElementTest.php index dd664712825a45f5cc0278c9a7b4a3d6e4a0f119..0af07dc09a0f535f340e553e7c4c8484918d5ebf 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/Config/ElementTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Model/Config/ElementTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/Config/FieldsetTest.php b/dev/tests/integration/testsuite/Mage/Core/Model/Config/FieldsetTest.php index 0bd5029a9e81be3ebb1b43dce4c92bcd93425268..81ace5c525b03cc56ca52fa61479875869874cae 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/Config/FieldsetTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Model/Config/FieldsetTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/Config/OptionsTest.php b/dev/tests/integration/testsuite/Mage/Core/Model/Config/OptionsTest.php index 10641d6d3e87bed3adb1cc7333831a68237a248f..eb0b2b8c92a044aefab6c9562f27eb44d1eab90b 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/Config/OptionsTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Model/Config/OptionsTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ @@ -95,7 +95,6 @@ class Mage_Core_Model_Config_OptionsTest extends PHPUnit_Framework_TestCase * @covers Mage_Core_Model_Config_Options::getEtcDir * @covers Mage_Core_Model_Config_Options::getLibDir * @covers Mage_Core_Model_Config_Options::getMediaDir - * @covers Mage_Core_Model_Config_Options::getSysTmpDir * @covers Mage_Core_Model_Config_Options::getVarDir * @covers Mage_Core_Model_Config_Options::getTmpDir * @covers Mage_Core_Model_Config_Options::getCacheDir @@ -105,11 +104,11 @@ class Mage_Core_Model_Config_OptionsTest extends PHPUnit_Framework_TestCase * @covers Mage_Core_Model_Config_Options::getExportDir * @dataProvider getGettersDataProvider * @param string $method - * @param string $message */ - public function testGetters($method, $message) + public function testGetters($method) { - $this->assertTrue(is_dir($this->_model->$method()), sprintf($message, $this->_model->$method())); + $dir = $this->_model->$method(); + $this->assertFileExists($dir, "Method '{$method}()' returned directory that doesn't exist: '{$dir}'"); } /** @@ -118,21 +117,20 @@ class Mage_Core_Model_Config_OptionsTest extends PHPUnit_Framework_TestCase public function getGettersDataProvider() { return array( - array('getAppDir', 'App directory %s does not exist.'), - array('getBaseDir', 'Base directory %s does not exist.'), - array('getCodeDir', 'Code directory %s does not exist.'), - array('getDesignDir', 'Design directory %s does not exist.'), - array('getEtcDir', 'Etc directory %s does not exist.'), - array('getLibDir', 'Lib directory %s does not exist.'), - array('getMediaDir', 'Media directory %s does not exist.'), - array('getSysTmpDir', 'System temporary directory %s does not exist.'), - array('getVarDir', 'Var directory %s does not exist.'), - array('getTmpDir', 'Temporary directory %s does not exist.'), - array('getCacheDir', 'Cache directory %s does not exist.'), - array('getLogDir', 'Log directory does %s not exist.'), - array('getSessionDir', 'Session directory %s does not exist.'), - array('getUploadDir', 'Upload directory %s does not exist.'), - array('getExportDir', 'Export directory %s does not exist.'), + array('getAppDir'), + array('getBaseDir'), + array('getCodeDir'), + array('getDesignDir'), + array('getEtcDir'), + array('getLibDir'), + array('getMediaDir'), + array('getVarDir'), + array('getTmpDir'), + array('getCacheDir'), + array('getLogDir'), + array('getSessionDir'), + array('getUploadDir'), + array('getExportDir'), ); } diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/ConfigFactoryTest.php b/dev/tests/integration/testsuite/Mage/Core/Model/ConfigFactoryTest.php index 8b13310cd7ad10439c0164752749748c482c4a85..a61dbfb6cc720322f29c449708fb34c1ec518e70 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/ConfigFactoryTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Model/ConfigFactoryTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/ConfigTest.php b/dev/tests/integration/testsuite/Mage/Core/Model/ConfigTest.php index a5a6442291c522c32406adf0f5428371aeea819c..8241dc7adf884be4e3fd534ceec1e7e558db1d7f 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/ConfigTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Model/ConfigTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ @@ -29,6 +29,8 @@ * - general behaviour is tested * * @see Mage_Core_Model_ConfigFactoryTest + * + * @SuppressWarnings(PHPMD.ExcessivePublicCount) */ class Mage_Core_Model_ConfigTest extends PHPUnit_Framework_TestCase { @@ -76,15 +78,17 @@ class Mage_Core_Model_ConfigTest extends PHPUnit_Framework_TestCase /** * @param string $etcDir - * @param string $option + * @param array $configOptions * @param string $expectedNode * @param string $expectedValue * @dataProvider loadBaseLocalConfigDataProvider */ - public function testLoadBaseLocalConfig($etcDir, $option, $expectedNode, $expectedValue) + public function testLoadBaseLocalConfig($etcDir, array $configOptions, $expectedNode, $expectedValue) { + $configOptions['etc_dir'] = __DIR__ . "/_files/local_config/{$etcDir}"; + /** @var $model Mage_Core_Model_Config */ $model = Mage::getModel('Mage_Core_Model_Config'); - $model->setOptions(array('etc_dir' => __DIR__ . "/_files/local_config/{$etcDir}", 'local_config' => $option)); + $model->setOptions($configOptions); $model->loadBase(); $this->assertInstanceOf('Varien_Simplexml_Element', $model->getNode($expectedNode)); $this->assertEquals($expectedValue, (string)$model->getNode($expectedNode)); @@ -96,14 +100,84 @@ class Mage_Core_Model_ConfigTest extends PHPUnit_Framework_TestCase public function loadBaseLocalConfigDataProvider() { return array( - array('no_local_config_no_custom_config', '', 'a/value', 'b'), - array('no_local_config_custom_config', 'custom/local.xml', 'a', ''), - array('local_config_no_custom_config', '', 'value', 'local'), - array('local_config_custom_config', 'custom/local.xml', 'value', 'custom'), - array('local_config_custom_config', 'custom/invalid.pattern.xml', 'value', 'local'), + 'no local config file & no custom config file' => array( + 'no_local_config_no_custom_config', + array(Mage_Core_Model_Config::OPTION_LOCAL_CONFIG_EXTRA_FILE => ''), + 'a/value', + 'b', + ), + 'no local config file & custom config file' => array( + 'no_local_config_custom_config', + array(Mage_Core_Model_Config::OPTION_LOCAL_CONFIG_EXTRA_FILE => 'custom/local.xml'), + 'a', + '', + ), + 'no local config file & custom config data' => array( + 'no_local_config_no_custom_config', + array( + Mage_Core_Model_Config::OPTION_LOCAL_CONFIG_EXTRA_DATA + => '<root><a><value>overridden</value></a></root>' + ), + 'a/value', + 'overridden', + ), + 'local config file & no custom config file' => array( + 'local_config_no_custom_config', + array(Mage_Core_Model_Config::OPTION_LOCAL_CONFIG_EXTRA_FILE => ''), + 'value', + 'local', + ), + 'local config file & custom config file' => array( + 'local_config_custom_config', + array(Mage_Core_Model_Config::OPTION_LOCAL_CONFIG_EXTRA_FILE => 'custom/local.xml'), + 'value', + 'custom', + ), + 'local config file & invalid custom config file' => array( + 'local_config_custom_config', + array(Mage_Core_Model_Config::OPTION_LOCAL_CONFIG_EXTRA_FILE => 'custom/invalid.pattern.xml'), + 'value', + 'local', + ), + 'local config file & custom config data' => array( + 'local_config_custom_config', + array( + Mage_Core_Model_Config::OPTION_LOCAL_CONFIG_EXTRA_FILE => 'custom/local.xml', + Mage_Core_Model_Config::OPTION_LOCAL_CONFIG_EXTRA_DATA => '<root><value>overridden</value></root>', + ), + 'value', + 'overridden', + ), ); } + public function testLoadBaseInstallDate() + { + if (date_default_timezone_get() != 'UTC') { + $this->markTestSkipped('Test requires "UTC" to be the default timezone.'); + } + /** @var $model Mage_Core_Model_Config */ + $model = Mage::getModel('Mage_Core_Model_Config'); + $model->setOptions(array( + Mage_Core_Model_Config::OPTION_LOCAL_CONFIG_EXTRA_DATA + => sprintf(Mage_Core_Model_Config::CONFIG_TEMPLATE_INSTALL_DATE, 'Fri, 21 Dec 2012 00:00:00 +0000') + )); + $model->loadBase(); + $this->assertEquals(1356048000, $model->getInstallDate()); + } + + public function testLoadBaseInstallDateInvalid() + { + /** @var $model Mage_Core_Model_Config */ + $model = Mage::getModel('Mage_Core_Model_Config'); + $model->setOptions(array( + Mage_Core_Model_Config::OPTION_LOCAL_CONFIG_EXTRA_DATA + => sprintf(Mage_Core_Model_Config::CONFIG_TEMPLATE_INSTALL_DATE, 'invalid') + )); + $model->loadBase(); + $this->assertEmpty($model->getInstallDate()); + } + public function testLoadLocales() { $model = Mage::getModel('Mage_Core_Model_Config'); @@ -117,6 +191,11 @@ class Mage_Core_Model_ConfigTest extends PHPUnit_Framework_TestCase public function testLoadModulesCache() { $model = $this->_createModel(); + $model->setOptions(array( + Mage_Core_Model_Config::OPTION_LOCAL_CONFIG_EXTRA_DATA + => sprintf(Mage_Core_Model_Config::CONFIG_TEMPLATE_INSTALL_DATE, 'Wed, 21 Nov 2012 03:26:00 +0000') + )); + $model->loadBase(); $this->assertTrue($model->loadModulesCache()); $this->assertInstanceOf('Mage_Core_Model_Config_Element', $model->getNode()); } @@ -128,7 +207,24 @@ class Mage_Core_Model_ConfigTest extends PHPUnit_Framework_TestCase $model->loadBase(); $this->assertFalse($model->getNode('modules')); $model->loadModules(); - $this->assertInstanceOf('Mage_Core_Model_Config_Element', $model->getNode('modules')); + $moduleNode = $model->getNode('modules/Mage_Core'); + $this->assertInstanceOf('Mage_Core_Model_Config_Element', $moduleNode); + $this->assertTrue($moduleNode->is('active')); + } + + public function testLoadModulesLocalConfigPrevails() + { + $model = $this->_createModel(); + $model->setOptions(array( + Mage_Core_Model_Config::OPTION_LOCAL_CONFIG_EXTRA_DATA + => '<config><modules><Mage_Core><active>false</active></Mage_Core></modules></config>' + )); + $model->loadBase(); + $model->loadModules(); + + $moduleNode = $model->getNode('modules/Mage_Core'); + $this->assertInstanceOf('Mage_Core_Model_Config_Element', $moduleNode); + $this->assertFalse($moduleNode->is('active'), 'Local configuration must prevail over modules configuration.'); } public function testIsLocalConfigLoaded() @@ -164,6 +260,21 @@ class Mage_Core_Model_ConfigTest extends PHPUnit_Framework_TestCase } } + public function testReinitBaseConfig() + { + $model = $this->_createModel(); + $options = self::$_options; + $options[Mage_Core_Model_Config::OPTION_LOCAL_CONFIG_EXTRA_DATA] = '<config><test>old_value</test></config>'; + $model->setOptions($options); + $model->loadBase(); + $this->assertEquals('old_value', $model->getNode('test')); + + $options[Mage_Core_Model_Config::OPTION_LOCAL_CONFIG_EXTRA_DATA] = '<config><test>new_value</test></config>'; + $model->setOptions($options); + $model->reinit(); + $this->assertEquals('new_value', $model->getNode('test')); + } + public function testGetCache() { $this->assertInstanceOf('Varien_Cache_Core', $this->_createModel()->getCache()); diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/Design/Backend/ExceptionsTest.php b/dev/tests/integration/testsuite/Mage/Core/Model/Design/Backend/ExceptionsTest.php index 0c1c88c608c1fdc1f1c91b907644da03417cdeb6..e7bab153622a04772631e942edb9b2f0779f9596 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/Design/Backend/ExceptionsTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Model/Design/Backend/ExceptionsTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/Design/FallbackTest.php b/dev/tests/integration/testsuite/Mage/Core/Model/Design/FallbackTest.php index 51c2fb0119aa8cc79e7911b49edcf613a291313d..126b6a1e72d0f1fc0e1ac286b312a2471b4e03bb 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/Design/FallbackTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Model/Design/FallbackTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/Design/PackageFallbackTest.php b/dev/tests/integration/testsuite/Mage/Core/Model/Design/PackageFallbackTest.php index 398ebcfc3506c1ed3b883c5dace14164e240c5e8..66d9b67199d1629541a87f2cb76de34a11a52b34 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/Design/PackageFallbackTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Model/Design/PackageFallbackTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/Design/PackageMergingTest.php b/dev/tests/integration/testsuite/Mage/Core/Model/Design/PackageMergingTest.php index 7ba4bb8ea445097624ed887b213a0e09ef553abc..25dc550acdd9fc8f82db3a83cbd5dc4659a666c9 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/Design/PackageMergingTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Model/Design/PackageMergingTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/Design/PackagePublicationTest.php b/dev/tests/integration/testsuite/Mage/Core/Model/Design/PackagePublicationTest.php index 19fde874cf6bd97822a8a0614da3235d4c4c75e7..bb91676a835e51c55f037e5e5603097dca91bb1a 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/Design/PackagePublicationTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Model/Design/PackagePublicationTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/Design/PackageTest.php b/dev/tests/integration/testsuite/Mage/Core/Model/Design/PackageTest.php index 1947c0b61ecd840917ce7d082d87f50abb428f5a..6cfe2b1eb93412e6491bae4e5ffb4e07ec3bc759 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/Design/PackageTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Model/Design/PackageTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/Design/Source/DesignTest.php b/dev/tests/integration/testsuite/Mage/Core/Model/Design/Source/DesignTest.php index c1ed230767fee913dd654ac14a7fa86e216bc412..f1bc5e0cb2eb3cb7a6e700c1797a650947e450e4 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/Design/Source/DesignTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Model/Design/Source/DesignTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/Design/Source/_files/design/frontend/a/d/theme.xml b/dev/tests/integration/testsuite/Mage/Core/Model/Design/Source/_files/design/frontend/a/d/theme.xml index c391fa2e1b6f106c2b554589dbf8c8f02f5f7ae0..57ba2ce20eadbf4ee9a8a59e275a2a392fdc5baf 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/Design/Source/_files/design/frontend/a/d/theme.xml +++ b/dev/tests/integration/testsuite/Mage/Core/Model/Design/Source/_files/design/frontend/a/d/theme.xml @@ -22,7 +22,7 @@ * @category Magento * @package Magento_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/Design/Source/_files/design/frontend/b/e/theme.xml b/dev/tests/integration/testsuite/Mage/Core/Model/Design/Source/_files/design/frontend/b/e/theme.xml index 960f31cb499f9017e823ed7f395ee6e934f7bff0..5898d2ed16575c81691bd4808aea47e64e2a89fb 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/Design/Source/_files/design/frontend/b/e/theme.xml +++ b/dev/tests/integration/testsuite/Mage/Core/Model/Design/Source/_files/design/frontend/b/e/theme.xml @@ -22,7 +22,7 @@ * @category Magento * @package Magento_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/Design/Source/_files/design/frontend/default/default/theme.xml b/dev/tests/integration/testsuite/Mage/Core/Model/Design/Source/_files/design/frontend/default/default/theme.xml index af7d75cf07036ba28b2514fa461da6af1ebd6c25..373b6d532a5f5659c50622b3310b1eeffade11d4 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/Design/Source/_files/design/frontend/default/default/theme.xml +++ b/dev/tests/integration/testsuite/Mage/Core/Model/Design/Source/_files/design/frontend/default/default/theme.xml @@ -22,7 +22,7 @@ * @category Magento * @package Magento_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/Design/Source/_files/design/frontend/default/g/theme.xml b/dev/tests/integration/testsuite/Mage/Core/Model/Design/Source/_files/design/frontend/default/g/theme.xml index 99bc1503ff2cf3a8037b2fa5feabf6950ed98e3e..2d7b71c834a5579c56f6615e224aeb36992bbebd 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/Design/Source/_files/design/frontend/default/g/theme.xml +++ b/dev/tests/integration/testsuite/Mage/Core/Model/Design/Source/_files/design/frontend/default/g/theme.xml @@ -22,7 +22,7 @@ * @category Magento * @package Magento_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/DesignTest.php b/dev/tests/integration/testsuite/Mage/Core/Model/DesignTest.php index 21bacba7b3a6e1df45bd83a79341ea2265b4ee33..cae63d0b885eb752ccc24ed4eaf6206229658ff4 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/DesignTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Model/DesignTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/Email/Template/FilterTest.php b/dev/tests/integration/testsuite/Mage/Core/Model/Email/Template/FilterTest.php index 46e43627afcbaa323a60cb8ee2248b05bfd6daac..a3722622e66d4142820f029019373047b38f319f 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/Email/Template/FilterTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Model/Email/Template/FilterTest.php @@ -21,13 +21,10 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ -/** - * @group module::Mage_Layout_Merge - */ class Mage_Core_Model_Email_Template_FilterTest extends PHPUnit_Framework_TestCase { /** diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/Email/TemplateTest.php b/dev/tests/integration/testsuite/Mage/Core/Model/Email/TemplateTest.php index 6037e00e2117b28688258f068bd3d34d7942a830..6cbbb5f1a8c90b79bb381c8c0983ca213a009d6e 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/Email/TemplateTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Model/Email/TemplateTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/Email/_files/design/adminhtml/test/default/Mage_Core/sample_email_content.phtml b/dev/tests/integration/testsuite/Mage/Core/Model/Email/_files/design/adminhtml/test/default/Mage_Core/sample_email_content.phtml index 1de626d94cc1b5a15f948f84a77f00e0a27794b0..ac058097b70cd78cdf717b065c215dd50c3a2163 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/Email/_files/design/adminhtml/test/default/Mage_Core/sample_email_content.phtml +++ b/dev/tests/integration/testsuite/Mage/Core/Model/Email/_files/design/adminhtml/test/default/Mage_Core/sample_email_content.phtml @@ -21,7 +21,7 @@ * @category Magento * @package design * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/Email/_files/design/adminhtml/test/default/local.xml b/dev/tests/integration/testsuite/Mage/Core/Model/Email/_files/design/adminhtml/test/default/local.xml index 263a9735d75968bf8751cdf798b1dbd9e81b87ba..b18d6b5651438ac23e26d330fc5bf75dc2204577 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/Email/_files/design/adminhtml/test/default/local.xml +++ b/dev/tests/integration/testsuite/Mage/Core/Model/Email/_files/design/adminhtml/test/default/local.xml @@ -22,7 +22,7 @@ * @category Magento * @package design * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/Email/_files/design/adminhtml/test/default/theme.xml b/dev/tests/integration/testsuite/Mage/Core/Model/Email/_files/design/adminhtml/test/default/theme.xml index 2c9b9530b41512a29700a81c1fbba0450cfbeedf..d2f9f764dade611ec510ecfc7384679cf14a0550 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/Email/_files/design/adminhtml/test/default/theme.xml +++ b/dev/tests/integration/testsuite/Mage/Core/Model/Email/_files/design/adminhtml/test/default/theme.xml @@ -22,7 +22,7 @@ * @category Magento * @package Magento_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/Email/_files/design/frontend/test/default/Mage_Core/sample_email_content.phtml b/dev/tests/integration/testsuite/Mage/Core/Model/Email/_files/design/frontend/test/default/Mage_Core/sample_email_content.phtml index d79b514e8ab9a2e7589c9a074152abcf6d2d59c2..ce757c629b2e74dd0a12e16f23aaa18770d86bcb 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/Email/_files/design/frontend/test/default/Mage_Core/sample_email_content.phtml +++ b/dev/tests/integration/testsuite/Mage/Core/Model/Email/_files/design/frontend/test/default/Mage_Core/sample_email_content.phtml @@ -21,7 +21,7 @@ * @category Magento * @package design * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/Email/_files/design/frontend/test/default/Mage_Core/sample_email_content_custom.phtml b/dev/tests/integration/testsuite/Mage/Core/Model/Email/_files/design/frontend/test/default/Mage_Core/sample_email_content_custom.phtml index 01a2d72980541fddf3fabe9c2929ff677af69119..67eb951053f21e55b813eff0f534970b7d806d72 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/Email/_files/design/frontend/test/default/Mage_Core/sample_email_content_custom.phtml +++ b/dev/tests/integration/testsuite/Mage/Core/Model/Email/_files/design/frontend/test/default/Mage_Core/sample_email_content_custom.phtml @@ -21,7 +21,7 @@ * @category Magento * @package design * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/Email/_files/design/frontend/test/default/local.xml b/dev/tests/integration/testsuite/Mage/Core/Model/Email/_files/design/frontend/test/default/local.xml index d810f9be1dfabc04c4119fac1e38903a74087543..6487f2dbac950bb3f38d42cc15d544803e55c066 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/Email/_files/design/frontend/test/default/local.xml +++ b/dev/tests/integration/testsuite/Mage/Core/Model/Email/_files/design/frontend/test/default/local.xml @@ -22,7 +22,7 @@ * @category Magento * @package design * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/Email/_files/design/frontend/test/default/theme.xml b/dev/tests/integration/testsuite/Mage/Core/Model/Email/_files/design/frontend/test/default/theme.xml index 2c9b9530b41512a29700a81c1fbba0450cfbeedf..d2f9f764dade611ec510ecfc7384679cf14a0550 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/Email/_files/design/frontend/test/default/theme.xml +++ b/dev/tests/integration/testsuite/Mage/Core/Model/Email/_files/design/frontend/test/default/theme.xml @@ -22,7 +22,7 @@ * @category Magento * @package Magento_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/Email/_files/theme_registration.php b/dev/tests/integration/testsuite/Mage/Core/Model/Email/_files/theme_registration.php index 15d20d22664f87a60b1d8484c095673e2e27c256..0c4e5ba261bd36d147e6420ee47be25ffc136049 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/Email/_files/theme_registration.php +++ b/dev/tests/integration/testsuite/Mage/Core/Model/Email/_files/theme_registration.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/EncryptionTest.php b/dev/tests/integration/testsuite/Mage/Core/Model/EncryptionTest.php index 3a6806fbac697139b745adc3f3c2871896dae3ae..26e497accb4e88bbeeabdbc75c884d515d903c2b 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/EncryptionTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Model/EncryptionTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/File/StorageTest.php b/dev/tests/integration/testsuite/Mage/Core/Model/File/StorageTest.php index 4e1fe4c45a14c341ac37ad2b0ba2703f58dbbf3e..358457d1ca6f5801468c9433f2b5a00e4ff00955 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/File/StorageTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Model/File/StorageTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/Layout/ElementTest.php b/dev/tests/integration/testsuite/Mage/Core/Model/Layout/ElementTest.php index f42e6d06fc5b619f78c113cee5b8385b70894e62..1bbb154fd8e30a6d6f84bf509d90f02c594bec72 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/Layout/ElementTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Model/Layout/ElementTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/Layout/MergeTest.php b/dev/tests/integration/testsuite/Mage/Core/Model/Layout/MergeTest.php index 3c060317fe6be4c22a68b965cc98b1150d2aafe5..c1e901dd57041c5f1290753ee8df89402e4fbc70 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/Layout/MergeTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Model/Layout/MergeTest.php @@ -21,13 +21,12 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ /** * @magentoDbIsolation enabled - * @group module::Mage_Layout_Merge */ class Mage_Core_Model_Layout_MergeTest extends PHPUnit_Framework_TestCase { diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/Layout/UpdateTest.php b/dev/tests/integration/testsuite/Mage/Core/Model/Layout/UpdateTest.php index 98e53a3e1044670056b6d4051bf4c927f24fd60b..eca94863c59052c7580d8f41016b596059a5d53b 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/Layout/UpdateTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Model/Layout/UpdateTest.php @@ -21,13 +21,10 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ -/** - * @group module::Mage_Layout_Merge - */ class Mage_Core_Model_Layout_UpdateTest extends PHPUnit_Framework_TestCase { /** diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/Layout/_files/_handles.xml b/dev/tests/integration/testsuite/Mage/Core/Model/Layout/_files/_handles.xml index 89010e41a00aff9eb940104476a8e09bc1556337..b64bd040cf204590d7308a7e1ebfb39d21b86e70 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/Layout/_files/_handles.xml +++ b/dev/tests/integration/testsuite/Mage/Core/Model/Layout/_files/_handles.xml @@ -22,7 +22,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/Layout/_files/_handles_hierarchy.php b/dev/tests/integration/testsuite/Mage/Core/Model/Layout/_files/_handles_hierarchy.php index ecbf975006e490fc6cc8dd3cc1689b86f3bf8947..c5190f76c361e9abef3426c52cbd7da05a2de715 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/Layout/_files/_handles_hierarchy.php +++ b/dev/tests/integration/testsuite/Mage/Core/Model/Layout/_files/_handles_hierarchy.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ ?> diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/LayoutArgumentObjectUpdater.php b/dev/tests/integration/testsuite/Mage/Core/Model/LayoutArgumentObjectUpdater.php index ad9f1feca64292214fd054d5195228d2eb795172..38c1f25e21f046da2b5dcd60767afcd8672171b5 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/LayoutArgumentObjectUpdater.php +++ b/dev/tests/integration/testsuite/Mage/Core/Model/LayoutArgumentObjectUpdater.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/LayoutArgumentSimpleUpdater.php b/dev/tests/integration/testsuite/Mage/Core/Model/LayoutArgumentSimpleUpdater.php index 37b7dd90204a12103a848307607d9914f131592b..f871e725ae086dbce129bdd6f6e0e27059842868 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/LayoutArgumentSimpleUpdater.php +++ b/dev/tests/integration/testsuite/Mage/Core/Model/LayoutArgumentSimpleUpdater.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/LayoutArgumentTest.php b/dev/tests/integration/testsuite/Mage/Core/Model/LayoutArgumentTest.php index 949dc10da51abfe5a919cdf1b81ac5bd8366877c..4472b384276fadb54f93d7f713afdf7c22b5ec00 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/LayoutArgumentTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Model/LayoutArgumentTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ @@ -29,7 +29,6 @@ * Layout integration tests * * @magentoDbIsolation enabled - * @group module::Mage_Layout_Merge */ class Mage_Core_Model_LayoutArgumentTest extends Mage_Core_Model_LayoutTestBase { diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/LayoutTest.php b/dev/tests/integration/testsuite/Mage/Core/Model/LayoutTest.php index fd67a8d8b6f1a63d808de00a35530b4b5f30c32d..c2b7f5503530d2bc1ea4eb932746636cf5a90b30 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/LayoutTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Model/LayoutTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ @@ -29,7 +29,6 @@ * Layout integration tests * * @magentoDbIsolation enabled - * @group module::Mage_Layout_Merge */ class Mage_Core_Model_LayoutTest extends Mage_Core_Model_LayoutTestBase { diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/LayoutTestBase.php b/dev/tests/integration/testsuite/Mage/Core/Model/LayoutTestBase.php index b21480307a0a0a5a84fac06c8c6a8a87d89ff329..ec8e60fa7cc2d9e4dfd6389cf6b1a93115a2ef0c 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/LayoutTestBase.php +++ b/dev/tests/integration/testsuite/Mage/Core/Model/LayoutTestBase.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/ObserverTest.php b/dev/tests/integration/testsuite/Mage/Core/Model/ObserverTest.php index 42be0319adbae3efa06f303aa62cd7b07b0cae90..4d0332d312854036a7e1142a3f3bad730c13a29f 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/ObserverTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Model/ObserverTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/Resource/CacheTest.php b/dev/tests/integration/testsuite/Mage/Core/Model/Resource/CacheTest.php index afd02ac4a82d1dfac9dfeec5fb942b7d17ebc608..d84023c3ad4cf7ff3213e274605eb8a6797ee316 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/Resource/CacheTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Model/Resource/CacheTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/Resource/ConfigTest.php b/dev/tests/integration/testsuite/Mage/Core/Model/Resource/ConfigTest.php index 05043acee2d799fe769caf3278cca94da2fb33ec..d57e35c1e88c82ad775c1ee548ffb32bb508b578 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/Resource/ConfigTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Model/Resource/ConfigTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/Resource/Db/AbstractTest.php b/dev/tests/integration/testsuite/Mage/Core/Model/Resource/Db/AbstractTest.php index fcd9ffe7a595b9b9d1b6d3a049c99ce5c7652450..e662e65d15681f52984fe94c6436c0964286b6fd 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/Resource/Db/AbstractTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Model/Resource/Db/AbstractTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/Resource/Db/Collection/AbstractTest.php b/dev/tests/integration/testsuite/Mage/Core/Model/Resource/Db/Collection/AbstractTest.php index 4600ffe2264d09cb4f9703892596188e66575205..59b6168f0f4025c99aa65c08551ddd5e6021b19c 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/Resource/Db/Collection/AbstractTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Model/Resource/Db/Collection/AbstractTest.php @@ -18,7 +18,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/Resource/Db/ProfilerTest.php b/dev/tests/integration/testsuite/Mage/Core/Model/Resource/Db/ProfilerTest.php index 45a31a05ac40072131e5cef74363a805db59ac7c..e4d3033adbf934956f38c8fe9e64eb2f3368e62d 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/Resource/Db/ProfilerTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Model/Resource/Db/ProfilerTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Core_Model_Resource_Db_ProfilerTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/Resource/Entity/TableTest.php b/dev/tests/integration/testsuite/Mage/Core/Model/Resource/Entity/TableTest.php index 63e5745a13a9490e2bfb9593b15f416c67f65a1f..ed364e3cb43727e0d7d83b7fea07794a9b204839 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/Resource/Entity/TableTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Model/Resource/Entity/TableTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/Resource/Helper/Mysql4Test.php b/dev/tests/integration/testsuite/Mage/Core/Model/Resource/Helper/Mysql4Test.php index 8128e44df28c9c3d5b3f89d3f5b3325ecf06f4cf..2af66b2bbd21311143b39b1b658cacd88ab4d54d 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/Resource/Helper/Mysql4Test.php +++ b/dev/tests/integration/testsuite/Mage/Core/Model/Resource/Helper/Mysql4Test.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/Resource/IteratorTest.php b/dev/tests/integration/testsuite/Mage/Core/Model/Resource/IteratorTest.php index bcdd15a09837b31363fb517c7fec25d650b388bd..624d42c61e147489d3c1c93415a46c204cac409d 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/Resource/IteratorTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Model/Resource/IteratorTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/Resource/LayoutTest.php b/dev/tests/integration/testsuite/Mage/Core/Model/Resource/LayoutTest.php index daef5528f0eea6fd442e3138a1d3f796fdda7606..50f3b998a24cf3db943c1e0b87b310f292ce3a79 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/Resource/LayoutTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Model/Resource/LayoutTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/Resource/SessionTest.php b/dev/tests/integration/testsuite/Mage/Core/Model/Resource/SessionTest.php index ba052317377f007f7e5ae7b0a110ed4b3609f685..99d8c4182a9e622e92d98d02789d5fe527300962 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/Resource/SessionTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Model/Resource/SessionTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/Resource/SetupTest.php b/dev/tests/integration/testsuite/Mage/Core/Model/Resource/SetupTest.php index 04aa417645eb09b5489e38b19f0c3740be9ff57f..b1a2f7fc9240ca3b3e18f1a467850983b1dca5de 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/Resource/SetupTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Model/Resource/SetupTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/Resource/Store/CollectionTest.php b/dev/tests/integration/testsuite/Mage/Core/Model/Resource/Store/CollectionTest.php index 5d06efa250aee16209896e1b51faee7fc8264361..26bd36f8aad6b507bd33bddcb8ef6128c513ecd7 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/Resource/Store/CollectionTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Model/Resource/Store/CollectionTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/Resource/Theme/CollectionTest.php b/dev/tests/integration/testsuite/Mage/Core/Model/Resource/Theme/CollectionTest.php index a8e1e08562b3d7f6e923ace7c3d60c992b634162..9ad08ba0cdd8a27193628e118a99e20262418daa 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/Resource/Theme/CollectionTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Model/Resource/Theme/CollectionTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/Resource/TransactionTest.php b/dev/tests/integration/testsuite/Mage/Core/Model/Resource/TransactionTest.php index c5417aaa2313dfb20e6a7e58150b97be680fa71b..ea400edce254ca91f544bd5a747f3f59320607fd 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/Resource/TransactionTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Model/Resource/TransactionTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/ResourceMysqlTest.php b/dev/tests/integration/testsuite/Mage/Core/Model/ResourceMysqlTest.php index 4acba4839814719c27d712db8e08636c56022a4a..ff03a1b2a75ec91a3034e90ad1dc158a806028d9 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/ResourceMysqlTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Model/ResourceMysqlTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/ResourceTest.php b/dev/tests/integration/testsuite/Mage/Core/Model/ResourceTest.php index b8381bc0162998128914ec3c71376c3bc294ca67..c07b9fefa88756aa6f22b5f30b49de1209436a9e 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/ResourceTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Model/ResourceTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Core_Model_ResourceTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/Session/Abstract/VarienTest.php b/dev/tests/integration/testsuite/Mage/Core/Model/Session/Abstract/VarienTest.php index 6fc7bd05f7862d1ac87b70c65634aa23a81f6b05..792b4973eb4b35e53cde17ba1b143011dfb9c186 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/Session/Abstract/VarienTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Model/Session/Abstract/VarienTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/Session/AbstractTest.php b/dev/tests/integration/testsuite/Mage/Core/Model/Session/AbstractTest.php index 33468564a4ba37f665bda55df8ae4257c907d101..53bdd18570dba165397d939c5b3eb01df7306058 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/Session/AbstractTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Model/Session/AbstractTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/StoreTest.php b/dev/tests/integration/testsuite/Mage/Core/Model/StoreTest.php index 60755b84bb1b4583ee52e2d72bdeb947788230b0..379a1b038cf964b1e39abf2120824d8f562970da 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/StoreTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Model/StoreTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/TemplateTest.php b/dev/tests/integration/testsuite/Mage/Core/Model/TemplateTest.php index bd08b25ffbcda3c7e9900588dc226d37be37b1b1..80550539dab7ac7330f36b5e741f3d3c95aa1888 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/TemplateTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Model/TemplateTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/Theme/CollectionTest.php b/dev/tests/integration/testsuite/Mage/Core/Model/Theme/CollectionTest.php index 5b5ceb7cbd04a031d6d0359159cdee2cad9489ef..7bde809519253c04e73e6c8751151207c6488214 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/Theme/CollectionTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Model/Theme/CollectionTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/Theme/ServiceTest.php b/dev/tests/integration/testsuite/Mage/Core/Model/Theme/ServiceTest.php index 866bbb46bb6ee01d7b40e88a7017656c86af5c77..cbed9dda70af1e67b097f59f17e15a2a5056d342 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/Theme/ServiceTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Model/Theme/ServiceTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/Theme/ValidatorTest.php b/dev/tests/integration/testsuite/Mage/Core/Model/Theme/ValidatorTest.php index 8a43f2af8a351d041e3c0582a50794d192b515a8..5e5fc839d6ffb93e9eb4480df6e31acd372a2715 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/Theme/ValidatorTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Model/Theme/ValidatorTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/ThemeTest.php b/dev/tests/integration/testsuite/Mage/Core/Model/ThemeTest.php index aa235c09609af0e9ac1a72121fb125c36740967a..67b1d204fc8734772d8d9c6705ced0abfe7ae5fe 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/ThemeTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Model/ThemeTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/Translate/ExprTest.php b/dev/tests/integration/testsuite/Mage/Core/Model/Translate/ExprTest.php index 726c04b2a2c86aa1f81f7a34d56fff7e1b593634..3c7bfcae2277ea84f0b6fb949f1d3a9c682c5ce1 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/Translate/ExprTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Model/Translate/ExprTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/Translate/InlineTest.php b/dev/tests/integration/testsuite/Mage/Core/Model/Translate/InlineTest.php index c03b40c672e61c282ce9beca5f889da1ccf5c6d4..b89f241b6981180e275675a94cf2540ca062eae6 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/Translate/InlineTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Model/Translate/InlineTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/Translate/StringTest.php b/dev/tests/integration/testsuite/Mage/Core/Model/Translate/StringTest.php index 2c773ba9673ca4360b3588e31cd1b94026036fb6..1c656cbaa0a0e9b56a0dec3fe5bc6d14ab87eed1 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/Translate/StringTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Model/Translate/StringTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/Translate/_files/_inline_page_expected.html b/dev/tests/integration/testsuite/Mage/Core/Model/Translate/_files/_inline_page_expected.html index 2655f9752aee3017e766d19a008eeaa039333589..344fe7f8be96caa386c95ab27db573ad12c1cafe 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/Translate/_files/_inline_page_expected.html +++ b/dev/tests/integration/testsuite/Mage/Core/Model/Translate/_files/_inline_page_expected.html @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/Translate/_files/_inline_page_original.html b/dev/tests/integration/testsuite/Mage/Core/Model/Translate/_files/_inline_page_original.html index 868c70806f623cbbec66070ab15d3314de6ccc39..760bd91f229418110d936a5aa403fa7b1dcdd7ac 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/Translate/_files/_inline_page_original.html +++ b/dev/tests/integration/testsuite/Mage/Core/Model/Translate/_files/_inline_page_original.html @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/Translate/_files/_translation_data.php b/dev/tests/integration/testsuite/Mage/Core/Model/Translate/_files/_translation_data.php index 9e2d8c7eaf8de09bb39282f91e0488bb0a1c902f..c62e1682f477cea46dae44156ca10bba236fc9f4 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/Translate/_files/_translation_data.php +++ b/dev/tests/integration/testsuite/Mage/Core/Model/Translate/_files/_translation_data.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ ?> diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/TranslateTest.php b/dev/tests/integration/testsuite/Mage/Core/Model/TranslateTest.php index bd263a759684c52811c7519d4c724cee64bbe3e6..dfbff8d3d9372577a80ba3171111288737a05862 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/TranslateTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Model/TranslateTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/Url/RewriteTest.php b/dev/tests/integration/testsuite/Mage/Core/Model/Url/RewriteTest.php index cb1ccd2c8295aee08355e4db2e0b47783fdc022b..973f677a6fa5f2a00c86d7f1d175818b0858fb31 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/Url/RewriteTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Model/Url/RewriteTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/UrlTest.php b/dev/tests/integration/testsuite/Mage/Core/Model/UrlTest.php index 497b97d73ef40bbde88e3bc7055d215b95469fe3..47df06849bc60da16bc12a47a72efa4afdb84e1e 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/UrlTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Model/UrlTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/Validator/FactoryTest.php b/dev/tests/integration/testsuite/Mage/Core/Model/Validator/FactoryTest.php index 7bc66615bfac967bedfa2df92feb624d72c40eef..54319a4a0f43463dc0679e8d67c1ae2d6a4e4515 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/Validator/FactoryTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Model/Validator/FactoryTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Core_Model_Validator_FactoryTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/Variable/ConfigTest.php b/dev/tests/integration/testsuite/Mage/Core/Model/Variable/ConfigTest.php index 19da5b48402ef8322fba84cc91b631cea032a5ba..54dc4513e56d9c979c996eb4c73472624574ec9d 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/Variable/ConfigTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Model/Variable/ConfigTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/VariableTest.php b/dev/tests/integration/testsuite/Mage/Core/Model/VariableTest.php index 58ccfad5a491c2e1d0901d81a9fc048cc7d3f231..3ad9bab7be85ae11f481c49d8131fa03aad1f7ed 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/VariableTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Model/VariableTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/WebsiteTest.php b/dev/tests/integration/testsuite/Mage/Core/Model/WebsiteTest.php index 574d117eb46f3d27637cfed6187faddc0fdd505a..a129faffa9c319beb16df1bf5762e5719e1a8f99 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/WebsiteTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Model/WebsiteTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/_files/_layout_update.xml b/dev/tests/integration/testsuite/Mage/Core/Model/_files/_layout_update.xml index 6d39632cc0b73d88f43bcef3ec61b306fce1eda8..14283b323e50b4e98fa0244a3d4dbbefdbee95ce 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/_files/_layout_update.xml +++ b/dev/tests/integration/testsuite/Mage/Core/Model/_files/_layout_update.xml @@ -22,7 +22,7 @@ * @category Magento * @package Magento_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/adminhtml/package/test/theme.xml b/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/adminhtml/package/test/theme.xml index 21177eacc130375f1f7af6b9872daa428d39b4f2..e0a72bbdf307c9ad0522c5915406429237f1a8b4 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/adminhtml/package/test/theme.xml +++ b/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/adminhtml/package/test/theme.xml @@ -20,7 +20,7 @@ * * @category Magento * @package Design - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/area_two/package_one/theme_one/theme.xml b/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/area_two/package_one/theme_one/theme.xml index acf1c3d1d19453bc1e59efafb6b700e2e0f93429..1dde6bf3ed1455fc639a7cb031b3eeb8dd7040a3 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/area_two/package_one/theme_one/theme.xml +++ b/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/area_two/package_one/theme_one/theme.xml @@ -21,7 +21,7 @@ * @category Magento * @package Design * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/design_area/package_one/theme_one/theme.xml b/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/design_area/package_one/theme_one/theme.xml index acf1c3d1d19453bc1e59efafb6b700e2e0f93429..1dde6bf3ed1455fc639a7cb031b3eeb8dd7040a3 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/design_area/package_one/theme_one/theme.xml +++ b/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/design_area/package_one/theme_one/theme.xml @@ -21,7 +21,7 @@ * @category Magento * @package Design * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/default/default/theme.xml b/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/default/default/theme.xml index 3be23fc3f214eaaabae6bf6e86cb95c736672cad..652ce2541bf48849e54953060cfd32565f565c16 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/default/default/theme.xml +++ b/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/default/default/theme.xml @@ -21,7 +21,7 @@ * @category Magento * @package Design * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/default/default_iphone/theme.xml b/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/default/default_iphone/theme.xml index c1b766e6c6aff3cdac8f25cb81bbae64ad039282..583a19a15f5f879820a98d37a4d6ecbd2d6c7530 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/default/default_iphone/theme.xml +++ b/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/default/default_iphone/theme.xml @@ -21,7 +21,7 @@ * @category Magento * @package Design * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/package/access_violation.php b/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/package/access_violation.php index 87245e4ed97ba42c88d1093e5c843c798b2a6c18..ed6fcff27216529c60903577c3be85fef86d3527 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/package/access_violation.php +++ b/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/package/access_violation.php @@ -21,6 +21,6 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/package/custom_theme/Fixture_Module/fixture_script.js b/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/package/custom_theme/Fixture_Module/fixture_script.js index 3a2f184a8097e8553dbd2ac5a1fe5159b0bd7a0e..4cc8b3b1db898b1c8fc363442ce31bfda34860eb 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/package/custom_theme/Fixture_Module/fixture_script.js +++ b/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/package/custom_theme/Fixture_Module/fixture_script.js @@ -20,7 +20,7 @@ * @category Magento * @package Magento_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /* modular fixture view file located inside the nested view of the custom theme */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/package/custom_theme/theme.xml b/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/package/custom_theme/theme.xml index 3affecf44dfda3214c17f8503bab1904effa017e..38d2fab60f8c6ffc9e13a580021562ecc7aa2cbd 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/package/custom_theme/theme.xml +++ b/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/package/custom_theme/theme.xml @@ -21,7 +21,7 @@ * @category Magento * @package Design * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/package/default/access_violation.php b/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/package/default/access_violation.php index 87245e4ed97ba42c88d1093e5c843c798b2a6c18..ed6fcff27216529c60903577c3be85fef86d3527 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/package/default/access_violation.php +++ b/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/package/default/access_violation.php @@ -21,6 +21,6 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/package/default/css/deep/recursive.css b/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/package/default/css/deep/recursive.css index ff49f890d726819c980a60fddab546bc5d0d5e19..ca8741e84936d06c4b3acae7cd0309c4a70d2697 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/package/default/css/deep/recursive.css +++ b/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/package/default/css/deep/recursive.css @@ -20,7 +20,7 @@ * @category design * @package default_default * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ dt {background: url('../../recursive2.gif')} diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/package/default/css/exception.css b/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/package/default/css/exception.css index 23b33fb8e36b1a9c743b50e594fd87afb62491e4..0ddc9237ed335491fc88a926fe5860b58574d575 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/package/default/css/exception.css +++ b/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/package/default/css/exception.css @@ -20,7 +20,7 @@ * @category design * @package default_default * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ li.rogue {background: url(../../access_violation.php);} diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/package/default/css/file.css b/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/package/default/css/file.css index baa589a302460e58fac2afe0203f6a9621333f8a..260abe44057f5d2525f4d452e6a7caf439404bd2 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/package/default/css/file.css +++ b/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/package/default/css/file.css @@ -20,7 +20,7 @@ * @category design * @package default_default * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ @import url(../recursive.css); diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/package/default/recursive.css b/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/package/default/recursive.css index 99880abbfcbd72f492610e82ea8192e19d8d7c54..4d59e4d69dd6337a2b10c8b2e685037f5483844f 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/package/default/recursive.css +++ b/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/package/default/recursive.css @@ -20,7 +20,7 @@ * @category design * @package default_default * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ dl {background: url(recursive.gif)} diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/package/default/scripts.js b/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/package/default/scripts.js index f3012a12e23c12eb307edfb2e235fb9450172221..595b459369a84ffce81e568892fc55a2827fcacc 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/package/default/scripts.js +++ b/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/package/default/scripts.js @@ -20,7 +20,7 @@ * @category Magento * @package Magento_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /* scripts.js */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/package/default/theme.xml b/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/package/default/theme.xml index bd419c3350d91a0f091da4f3c1721fb2ca9d8654..db7cce1b04b54a05fcd46352c80cf8e9e8115996 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/package/default/theme.xml +++ b/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/package/default/theme.xml @@ -21,7 +21,7 @@ * @category Magento * @package Design * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/test/cache_test_theme/local.xml b/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/test/cache_test_theme/local.xml index b88272efeb5e737faadbf3f53da068a98e5069a4..875df5576b1e40f1813cd2fc280c5e13336ee050 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/test/cache_test_theme/local.xml +++ b/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/test/cache_test_theme/local.xml @@ -22,7 +22,7 @@ * @category Magento * @package design * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/test/cache_test_theme/theme.xml b/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/test/cache_test_theme/theme.xml index 9f13fac272cc5cbb373c6d721d2b19527bd19763..abc65e91a9d50208c22fcd1c936489470ff5bfa6 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/test/cache_test_theme/theme.xml +++ b/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/test/cache_test_theme/theme.xml @@ -21,7 +21,7 @@ * @category Magento * @package Design * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/test/default/Mage_Catalog/layout.xml b/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/test/default/Mage_Catalog/layout.xml index 3a32615d132b6c36ddbe2a1e15cde5b867f3abfa..e0a0d95e09c98ff2f141c777bcda2133c3ceb717 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/test/default/Mage_Catalog/layout.xml +++ b/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/test/default/Mage_Catalog/layout.xml @@ -22,7 +22,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/test/default/Mage_Catalog/theme_template.phtml b/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/test/default/Mage_Catalog/theme_template.phtml index 406683b801d04d40c25db88d1392060743d42fcc..e86d3d31b3a3738a269f531498eecd25a3c03e3e 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/test/default/Mage_Catalog/theme_template.phtml +++ b/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/test/default/Mage_Catalog/theme_template.phtml @@ -21,6 +21,6 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/test/default/Mage_Cms/layout.xml b/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/test/default/Mage_Cms/layout.xml index 5950cb9c57e2ae37d516004e39efa14447ffaf06..d2b711c337eeb0ecc24580936e85e1bde21634ae 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/test/default/Mage_Cms/layout.xml +++ b/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/test/default/Mage_Cms/layout.xml @@ -22,7 +22,7 @@ * @category Magento * @package Magento_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/test/default/Mage_Core/layout.xml b/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/test/default/Mage_Core/layout.xml index 355b3ff4338ce18458a89c93ea03d91971ee83bf..16875f3bfc6ae042bd916a311af3a51f7f6eeec8 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/test/default/Mage_Core/layout.xml +++ b/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/test/default/Mage_Core/layout.xml @@ -22,7 +22,7 @@ * @category Magento * @package Magento_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/test/default/Mage_Core/test.phtml b/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/test/default/Mage_Core/test.phtml index eb2908aeab4f24808635207a0bfcea52851503b8..992c4c873b3b2dc4d756fe5d8408072c8ca1d99d 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/test/default/Mage_Core/test.phtml +++ b/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/test/default/Mage_Core/test.phtml @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ echo "Value: {$this->getTestValue()} Reference: {$this->getReferenceValue()}\n"; diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/test/default/css/styles.css b/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/test/default/css/styles.css index 368b703748d9166f8aff611652b0be3db53c1d4f..1680dac037a3e78cec3f307afa9f4131ac1e2cb8 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/test/default/css/styles.css +++ b/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/test/default/css/styles.css @@ -20,6 +20,6 @@ * @category design * @package default_default * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/test/default/js/tabs.js b/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/test/default/js/tabs.js index 37b1ed00d9fb1fe33b746db384b363e6fe39cb60..1906afb22d31d3321c81adf5cefc09725fdd09a0 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/test/default/js/tabs.js +++ b/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/test/default/js/tabs.js @@ -20,6 +20,6 @@ * @category Magento * @package Magento_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/test/default/theme.xml b/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/test/default/theme.xml index 639c6824fbf65919b2b1e234f7ef5b9e341f97c9..858e413d1cc701936a7938ca1b7041200889d9b4 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/test/default/theme.xml +++ b/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/test/default/theme.xml @@ -21,7 +21,7 @@ * @category Magento * @package Design * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/test/default/view.xml b/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/test/default/view.xml index 191a3e4f5f834946ab708f2dcb0ad9f5b1121070..0e2919e15355428266f7659cfa7c6b5730e1d59e 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/test/default/view.xml +++ b/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/test/default/view.xml @@ -22,7 +22,7 @@ * @category Magento * @package Magento_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/test/publication/style.css b/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/test/publication/style.css index 8601da7d617cd604ea8319c510ef80e1d329691d..a4061ee04b1fb3cba0032229cecc27b79b1823d0 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/test/publication/style.css +++ b/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/test/publication/style.css @@ -20,7 +20,7 @@ * @category design * @package default_default * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ @import url(sub.css); diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/test/publication/sub.css b/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/test/publication/sub.css index 910e490db269f9752f64b642420c446e89f45388..ad5b982cab36571b4106b0b0a0ff724ab94d7a19 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/test/publication/sub.css +++ b/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/test/publication/sub.css @@ -20,7 +20,7 @@ * @category design * @package default_default * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ .sub {font-size: 100px} diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/test/publication/theme.xml b/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/test/publication/theme.xml index 4ab0671559f6f4d8a49fb05bfc451d457dff9880..bb2a34d0bfeb616ca9f8b66924ef0655476fcf22 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/test/publication/theme.xml +++ b/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/test/publication/theme.xml @@ -21,7 +21,7 @@ * @category Magento * @package Design * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/test/test_theme/local.xml b/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/test/test_theme/local.xml index 5d6e5f0af710e5538c31482cb0605fe307462885..3738fe4699c24a8016622444f35c8e9adab5b122 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/test/test_theme/local.xml +++ b/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/test/test_theme/local.xml @@ -22,7 +22,7 @@ * @category Magento * @package design * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/test/test_theme/theme.xml b/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/test/test_theme/theme.xml index 0559aaaa47e105a1acc4276297895e80da4c727b..f823e70a33d28610e3b047ed2cef4397666a8528 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/test/test_theme/theme.xml +++ b/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/test/test_theme/theme.xml @@ -21,7 +21,7 @@ * @category Magento * @package Design * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/package/custom_theme/fixture_script_two.js b/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/package/custom_theme/fixture_script_two.js index 247f276c8f588720ac4b7fd75b095e727a464113..4363bdacd3a7a2d7e274ea8bd2b0bdd61896d104 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/package/custom_theme/fixture_script_two.js +++ b/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/package/custom_theme/fixture_script_two.js @@ -20,7 +20,7 @@ * @category Magento * @package Mage_Core * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /* fixture skin file located inside the default skin of the custom theme */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/package/custom_theme/fixture_template_two.phtml b/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/package/custom_theme/fixture_template_two.phtml index 1d350cf458d3fca2088b1821e0256cc3a9f3c21f..12a113e188778e251a71fe9fd16fccd7bbe30499 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/package/custom_theme/fixture_template_two.phtml +++ b/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/package/custom_theme/fixture_template_two.phtml @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/package/custom_theme/theme.xml b/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/package/custom_theme/theme.xml index 7f7c0b6761dfd21867da10738b52ebfbaad77b65..f3ccddae6e76946d9d68917b8d8a91845fb3e719 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/package/custom_theme/theme.xml +++ b/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/package/custom_theme/theme.xml @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/package/custom_theme2/Fixture_Module/fixture_script.js b/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/package/custom_theme2/Fixture_Module/fixture_script.js index 216d9c9457afe2025f6f60d8f65e26ec52320099..6475eb986ab697a39e647c87735531af6c57f688 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/package/custom_theme2/Fixture_Module/fixture_script.js +++ b/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/package/custom_theme2/Fixture_Module/fixture_script.js @@ -20,7 +20,7 @@ * @category Magento * @package Mage_Core * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /* modular fixture skin file located inside the nested skin of the custom theme */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/package/custom_theme2/fixture_script.js b/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/package/custom_theme2/fixture_script.js index 582f8e72f6fe40bed4b6def3ba65fd9611808935..43f9640b7bf0d7b4b4e5b1fead108aaec846ee9b 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/package/custom_theme2/fixture_script.js +++ b/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/package/custom_theme2/fixture_script.js @@ -20,7 +20,7 @@ * @category Magento * @package Mage_Core * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /* fixture skin file located inside the nested skin of the custom theme */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/package/custom_theme2/locale/ru_RU/Fixture_Module/fixture_script.js b/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/package/custom_theme2/locale/ru_RU/Fixture_Module/fixture_script.js index 3977ca72fe484f1758d527a8c4035560d377db87..2e37a52317cc4dcdf8fbfa8931a6bb0de8286560 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/package/custom_theme2/locale/ru_RU/Fixture_Module/fixture_script.js +++ b/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/package/custom_theme2/locale/ru_RU/Fixture_Module/fixture_script.js @@ -20,7 +20,7 @@ * @category Magento * @package Mage_Core * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /* localized modular fixture skin file located inside the nested skin of the custom theme */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/package/custom_theme2/locale/ru_RU/fixture_script.js b/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/package/custom_theme2/locale/ru_RU/fixture_script.js index 4facde7dbb785df62ba7811a39df20ab1deefbc5..e10bc80fa2e6cc9b1581d95b9beefd2cdc408cf9 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/package/custom_theme2/locale/ru_RU/fixture_script.js +++ b/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/package/custom_theme2/locale/ru_RU/fixture_script.js @@ -20,7 +20,7 @@ * @category Magento * @package Mage_Core * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /* localized fixture skin file located inside the nested skin of the custom theme */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/package/custom_theme2/mage/script.js b/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/package/custom_theme2/mage/script.js index 509a51d14b4fbc1f0f3d8f28b469e7db545ad18a..e8cfd776ab2e2ae2c06e650e3fbef2eb2e3aa257 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/package/custom_theme2/mage/script.js +++ b/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/package/custom_theme2/mage/script.js @@ -20,7 +20,7 @@ * @category Magento * @package Mage_Core * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /* fixture skin file located inside the folder of the nested skin of the custom theme */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/package/custom_theme2/theme.xml b/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/package/custom_theme2/theme.xml index 618a845956b9feca417b752b0641268cb35947e1..10ac0f32f7336140d544f38ae856e910298ec587 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/package/custom_theme2/theme.xml +++ b/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/package/custom_theme2/theme.xml @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/package/custom_theme3/theme.xml b/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/package/custom_theme3/theme.xml index 574fddb2c959c42c14828ae3da8d7be470deba91..07f78fda26797d06fb6d54ea0c364d3fc516ecb6 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/package/custom_theme3/theme.xml +++ b/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/package/custom_theme3/theme.xml @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/package/default/fixture_script_four.js b/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/package/default/fixture_script_four.js index 4ed3e2711f06434d81bc6513bf7f90cb5ca3d1cd..c3779be927d0a655993f8edfe42304d73091d123 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/package/default/fixture_script_four.js +++ b/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/package/default/fixture_script_four.js @@ -20,7 +20,7 @@ * @category Magento * @package Mage_Core * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /* fixture skin file located inside the default skin of the default theme */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/package/default/fixture_template.phtml b/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/package/default/fixture_template.phtml index 4fb22d7244a8b540205d8f6caba06d98200a4388..437b4d0ca294f68130285c949cbfe973c0537d11 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/package/default/fixture_template.phtml +++ b/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/package/default/fixture_template.phtml @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/package/default/theme.xml b/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/package/default/theme.xml index 504631f447d54b57805eff521e657be8c8e7f306..fb460ce97fa754b076407c0d1880f2fac88f5878 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/package/default/theme.xml +++ b/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/package/default/theme.xml @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/package/default2/fixture_script_three.js b/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/package/default2/fixture_script_three.js index a88c7169e9dd24171bb017b3af6f8973e71d3ce1..bbc75fd748d99b5abc548729daa15793bef0dc8d 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/package/default2/fixture_script_three.js +++ b/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/package/default2/fixture_script_three.js @@ -20,7 +20,7 @@ * @category Magento * @package Mage_Core * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /* fixture skin file located inside the nested skin of the default theme */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/package/default2/theme.xml b/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/package/default2/theme.xml index d9ed6473679ee5cbc5b5c47f8d1d41664b6fe7a9..c9b7d11b81fb0d42a8d56e9a1ce270c36352d873 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/package/default2/theme.xml +++ b/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/package/default2/theme.xml @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/package/standalone_theme/theme.xml b/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/package/standalone_theme/theme.xml index dac877fb35b822f7de9817d10a49fc59c2681134..ba86dd11c9ded5fe773755a4ca57d9deb1d04b72 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/package/standalone_theme/theme.xml +++ b/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/package/standalone_theme/theme.xml @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/test/default/Mage_Catalog/theme_template.phtml b/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/test/default/Mage_Catalog/theme_template.phtml index 8c16d166405a9d2e7b7a8639a4934269d3b55ecc..342137fd78fc3e45b929898383777b1a3f527ccb 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/test/default/Mage_Catalog/theme_template.phtml +++ b/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/test/default/Mage_Catalog/theme_template.phtml @@ -21,6 +21,6 @@ * @category Magento * @package Mage_Core * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/test/default/theme.xml b/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/test/default/theme.xml index fc8a6d6057f05603ba417a31304ebb7e9c96c516..4c0cde684f6779c9c6e4b2eb5591d37969496385 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/test/default/theme.xml +++ b/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/test/default/theme.xml @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/test/external_package_descendant/theme.xml b/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/test/external_package_descendant/theme.xml index 82d22b9b5ca83b3ad2dd49b597925dc882d9e008..138fc3a2edb50d834292cf69094e1180f6f3254a 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/test/external_package_descendant/theme.xml +++ b/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/test/external_package_descendant/theme.xml @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/test/test_theme/theme.xml b/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/test/test_theme/theme.xml index ad71734e740a69a56df38b90b5e5dc0bd65ebb61..2570ffd61ce863beac71673559a8b1451ef8c7c3 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/test/test_theme/theme.xml +++ b/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/design/frontend/test/test_theme/theme.xml @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/pub/js/mage/script.js b/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/pub/js/mage/script.js index 29d610410152eb5b67f1b250bc05c611260936f6..b289e44c271fe2247b3c80366a1650624ad70310 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/pub/js/mage/script.js +++ b/dev/tests/integration/testsuite/Mage/Core/Model/_files/fallback/pub/js/mage/script.js @@ -20,7 +20,7 @@ * @category Magento * @package Mage_Core * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /* fixture skin file located inside the library folder */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/_files/local_config/local_config_custom_config/custom/invalid.pattern.xml b/dev/tests/integration/testsuite/Mage/Core/Model/_files/local_config/local_config_custom_config/custom/invalid.pattern.xml index cb683f4b7435ce59848d5dd0b4749286efcaa0fd..1430dc32c059e5c8ea20f258ce64f5f300ce3302 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/_files/local_config/local_config_custom_config/custom/invalid.pattern.xml +++ b/dev/tests/integration/testsuite/Mage/Core/Model/_files/local_config/local_config_custom_config/custom/invalid.pattern.xml @@ -22,7 +22,7 @@ * @category Magento * @package Magento_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/_files/local_config/local_config_custom_config/custom/local.xml b/dev/tests/integration/testsuite/Mage/Core/Model/_files/local_config/local_config_custom_config/custom/local.xml index edf67dc69cd05658fa42a6fa341bcfe264bdec2d..ddf145258c08fa65f3946587ad703b18d860b2ea 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/_files/local_config/local_config_custom_config/custom/local.xml +++ b/dev/tests/integration/testsuite/Mage/Core/Model/_files/local_config/local_config_custom_config/custom/local.xml @@ -22,7 +22,7 @@ * @category Magento * @package Magento_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/_files/local_config/local_config_custom_config/local.xml b/dev/tests/integration/testsuite/Mage/Core/Model/_files/local_config/local_config_custom_config/local.xml index 0f5e3a3bc153f67d511aa152ab16bf41851ff3ac..648546d88c13eabd7b4d4daeed15542367584c14 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/_files/local_config/local_config_custom_config/local.xml +++ b/dev/tests/integration/testsuite/Mage/Core/Model/_files/local_config/local_config_custom_config/local.xml @@ -22,7 +22,7 @@ * @category Magento * @package Magento_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/_files/local_config/local_config_no_custom_config/local.xml b/dev/tests/integration/testsuite/Mage/Core/Model/_files/local_config/local_config_no_custom_config/local.xml index 0f5e3a3bc153f67d511aa152ab16bf41851ff3ac..648546d88c13eabd7b4d4daeed15542367584c14 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/_files/local_config/local_config_no_custom_config/local.xml +++ b/dev/tests/integration/testsuite/Mage/Core/Model/_files/local_config/local_config_no_custom_config/local.xml @@ -22,7 +22,7 @@ * @category Magento * @package Magento_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/_files/local_config/local_config_no_custom_config/z.xml b/dev/tests/integration/testsuite/Mage/Core/Model/_files/local_config/local_config_no_custom_config/z.xml index 7921e49d6095166e6f4b61f27d770ceaf82437f0..ef72118fde4a9bea5a5977d86365d72205f5d315 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/_files/local_config/local_config_no_custom_config/z.xml +++ b/dev/tests/integration/testsuite/Mage/Core/Model/_files/local_config/local_config_no_custom_config/z.xml @@ -22,7 +22,7 @@ * @category Magento * @package Magento_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/_files/local_config/no_local_config_custom_config/a.xml b/dev/tests/integration/testsuite/Mage/Core/Model/_files/local_config/no_local_config_custom_config/a.xml index 8e8f04c4633725f39b4537a76870a95aa3f48750..64c1d4b50d43ef8f9212ae647d893fb5f74680fc 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/_files/local_config/no_local_config_custom_config/a.xml +++ b/dev/tests/integration/testsuite/Mage/Core/Model/_files/local_config/no_local_config_custom_config/a.xml @@ -22,7 +22,7 @@ * @category Magento * @package Magento_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/_files/local_config/no_local_config_custom_config/custom/local.xml b/dev/tests/integration/testsuite/Mage/Core/Model/_files/local_config/no_local_config_custom_config/custom/local.xml index cb683f4b7435ce59848d5dd0b4749286efcaa0fd..1430dc32c059e5c8ea20f258ce64f5f300ce3302 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/_files/local_config/no_local_config_custom_config/custom/local.xml +++ b/dev/tests/integration/testsuite/Mage/Core/Model/_files/local_config/no_local_config_custom_config/custom/local.xml @@ -22,7 +22,7 @@ * @category Magento * @package Magento_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/_files/local_config/no_local_config_no_custom_config/a.xml b/dev/tests/integration/testsuite/Mage/Core/Model/_files/local_config/no_local_config_no_custom_config/a.xml index d2d1acd82360ff02dc29b0335ffe09ece59ceb00..781197f9e2a865e8747c0b1d1acd8ac9164b9a18 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/_files/local_config/no_local_config_no_custom_config/a.xml +++ b/dev/tests/integration/testsuite/Mage/Core/Model/_files/local_config/no_local_config_no_custom_config/a.xml @@ -22,7 +22,7 @@ * @category Magento * @package Magento_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/_files/local_config/no_local_config_no_custom_config/b.xml b/dev/tests/integration/testsuite/Mage/Core/Model/_files/local_config/no_local_config_no_custom_config/b.xml index 044fd8a9b935bb26e9f45c479c1377cf7edd66a7..27130671a08eb068275df07ca500839a45dabe2c 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/_files/local_config/no_local_config_no_custom_config/b.xml +++ b/dev/tests/integration/testsuite/Mage/Core/Model/_files/local_config/no_local_config_no_custom_config/b.xml @@ -22,7 +22,7 @@ * @category Magento * @package Magento_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/_files/locale/en_AU/config.xml b/dev/tests/integration/testsuite/Mage/Core/Model/_files/locale/en_AU/config.xml index a23e43e0d948768eba3ceefe32e36a100d45dd99..b878f4b9dbd0036a4df24f6f75877792ceec8779 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/_files/locale/en_AU/config.xml +++ b/dev/tests/integration/testsuite/Mage/Core/Model/_files/locale/en_AU/config.xml @@ -22,7 +22,7 @@ * @category Magento * @package Locale * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/_files/sort_special_cases.xml b/dev/tests/integration/testsuite/Mage/Core/Model/_files/sort_special_cases.xml index 2a8068689efe3262e4cae3233a9d51bc95ff49c5..4829969301fc4709e7e1e7913e6e96d6b521238c 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/_files/sort_special_cases.xml +++ b/dev/tests/integration/testsuite/Mage/Core/Model/_files/sort_special_cases.xml @@ -22,7 +22,7 @@ * @category Magento * @package Magento_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/integration/testsuite/Mage/Core/Model/_files/valid_layout_updates.xml b/dev/tests/integration/testsuite/Mage/Core/Model/_files/valid_layout_updates.xml index 6ee3d8d574868d83557db802d232ebbb90b2cd75..90693d68ad3d55dd32cc5d02281779fb55d7208a 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Model/_files/valid_layout_updates.xml +++ b/dev/tests/integration/testsuite/Mage/Core/Model/_files/valid_layout_updates.xml @@ -22,7 +22,7 @@ * @category Magento * @package Magento_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/integration/testsuite/Mage/Core/Utility/Layout.php b/dev/tests/integration/testsuite/Mage/Core/Utility/Layout.php index de8ff90e7df4690ca8232d8e2065f5d095f57545..22af5c68a1e11a0afd828c1c532f8e22e04a8ff9 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Utility/Layout.php +++ b/dev/tests/integration/testsuite/Mage/Core/Utility/Layout.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Utility/LayoutTest.php b/dev/tests/integration/testsuite/Mage/Core/Utility/LayoutTest.php index e0c391cbd955c9a67f6ba9d70fc86407dd293e0f..9698e9381b27ace6a65bbd1508557182d65e4291 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Utility/LayoutTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/Utility/LayoutTest.php @@ -21,13 +21,10 @@ * @category Magento * @package Magento * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ -/** - * @group module::Mage_Layout_Merge - */ class Mage_Core_Utility_LayoutTest extends PHPUnit_Framework_TestCase { /** diff --git a/dev/tests/integration/testsuite/Mage/Core/Utility/Theme.php b/dev/tests/integration/testsuite/Mage/Core/Utility/Theme.php index 7809d33353a570a2c6c7a5f8a5e4052e28a5bbaa..244f54035031b0e970bc652e0b0b06c2a31e8832 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Utility/Theme.php +++ b/dev/tests/integration/testsuite/Mage/Core/Utility/Theme.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/Utility/_files/_layout_update.xml b/dev/tests/integration/testsuite/Mage/Core/Utility/_files/_layout_update.xml index 5c77ab75f13b8f62778d12a396c44b53e965419e..4fac76d137397ca1f805d922ef5052a80549eb5e 100644 --- a/dev/tests/integration/testsuite/Mage/Core/Utility/_files/_layout_update.xml +++ b/dev/tests/integration/testsuite/Mage/Core/Utility/_files/_layout_update.xml @@ -22,7 +22,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/integration/testsuite/Mage/Core/_files/design_change.php b/dev/tests/integration/testsuite/Mage/Core/_files/design_change.php index 9a1ade8544f8d384a13d3e8eb2ffcbe458af73d4..ba4e6c9c795222e8a4745ece2049c0a1f676f998 100644 --- a/dev/tests/integration/testsuite/Mage/Core/_files/design_change.php +++ b/dev/tests/integration/testsuite/Mage/Core/_files/design_change.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/_files/design_change_timezone.php b/dev/tests/integration/testsuite/Mage/Core/_files/design_change_timezone.php index 7309bfc83d377076359748e544b1981225c2de71..c6e016db8c35b2dc3572dc14d1297fc35947b3f1 100644 --- a/dev/tests/integration/testsuite/Mage/Core/_files/design_change_timezone.php +++ b/dev/tests/integration/testsuite/Mage/Core/_files/design_change_timezone.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/_files/etc/config.xml b/dev/tests/integration/testsuite/Mage/Core/_files/etc/config.xml index 9b6e69dedccc706a41e3cb8f79081c1f14106305..8613753e1cb3dd974d46fc7467892ac796ab559c 100644 --- a/dev/tests/integration/testsuite/Mage/Core/_files/etc/config.xml +++ b/dev/tests/integration/testsuite/Mage/Core/_files/etc/config.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/integration/testsuite/Mage/Core/_files/init_adminhtml_design.php b/dev/tests/integration/testsuite/Mage/Core/_files/init_adminhtml_design.php index 40d9e93abd496c1557afdff61616e200ffd5bf9e..d001e304a1d17ff16b1adf9eca1e697ac8781d07 100644 --- a/dev/tests/integration/testsuite/Mage/Core/_files/init_adminhtml_design.php +++ b/dev/tests/integration/testsuite/Mage/Core/_files/init_adminhtml_design.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/_files/load_configuration.php b/dev/tests/integration/testsuite/Mage/Core/_files/load_configuration.php index 4a532514f515c36fb6026d50fb0dca8590fa0d74..b6f8c24ac67bc308807d8ebf01d92797462c0876 100644 --- a/dev/tests/integration/testsuite/Mage/Core/_files/load_configuration.php +++ b/dev/tests/integration/testsuite/Mage/Core/_files/load_configuration.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/_files/store.php b/dev/tests/integration/testsuite/Mage/Core/_files/store.php index e8add295190c48cef24b9218901316911a15664b..6585a34ff582016a108653ef6cbba3289633fdc6 100644 --- a/dev/tests/integration/testsuite/Mage/Core/_files/store.php +++ b/dev/tests/integration/testsuite/Mage/Core/_files/store.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/_files/url_rewrite.php b/dev/tests/integration/testsuite/Mage/Core/_files/url_rewrite.php index 8bf000801cd76643e30d3d4c0f23d5a992e35bc0..4d3bc49c09ffa93e86840710a0d37b8fc9e4508a 100644 --- a/dev/tests/integration/testsuite/Mage/Core/_files/url_rewrite.php +++ b/dev/tests/integration/testsuite/Mage/Core/_files/url_rewrite.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/_files/variable.php b/dev/tests/integration/testsuite/Mage/Core/_files/variable.php index 602d193b62cd1925413e5349643e47ab34379857..63bd9cdf0474840fb25d263bbbff62c207161b47 100644 --- a/dev/tests/integration/testsuite/Mage/Core/_files/variable.php +++ b/dev/tests/integration/testsuite/Mage/Core/_files/variable.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/controllers/AjaxControllerTest.php b/dev/tests/integration/testsuite/Mage/Core/controllers/AjaxControllerTest.php index e9956443cf950594d56eb1324fa0bfcec6d546bb..44ea5393cd5aa913658180baca41771c49821f95 100644 --- a/dev/tests/integration/testsuite/Mage/Core/controllers/AjaxControllerTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/controllers/AjaxControllerTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Core/controllers/IndexControllerTest.php b/dev/tests/integration/testsuite/Mage/Core/controllers/IndexControllerTest.php index 5be525806657c11c6384f48a294d305de841bc8c..759902c05f75724e2b0f25211d41c6d1ebc54e40 100644 --- a/dev/tests/integration/testsuite/Mage/Core/controllers/IndexControllerTest.php +++ b/dev/tests/integration/testsuite/Mage/Core/controllers/IndexControllerTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Cron/Model/ObserverTest.php b/dev/tests/integration/testsuite/Mage/Cron/Model/ObserverTest.php index a0e6334cb2add3ee3c7af0125bb3f94c2d6eb15b..219c7d58d8b6287e3bd67fc8839588ad3b137bd1 100644 --- a/dev/tests/integration/testsuite/Mage/Cron/Model/ObserverTest.php +++ b/dev/tests/integration/testsuite/Mage/Cron/Model/ObserverTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Cron * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Customer/Block/Account/Dashboard/InfoTest.php b/dev/tests/integration/testsuite/Mage/Customer/Block/Account/Dashboard/InfoTest.php index d008fc9a67f7d190db838572623354b7615083ed..fb525c4ca1443721d49ab58683624c4b30a49050 100644 --- a/dev/tests/integration/testsuite/Mage/Customer/Block/Account/Dashboard/InfoTest.php +++ b/dev/tests/integration/testsuite/Mage/Customer/Block/Account/Dashboard/InfoTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Customer * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Customer/Block/Account/LinkTest.php b/dev/tests/integration/testsuite/Mage/Customer/Block/Account/LinkTest.php index 2ccb56484cc1a5d8e401b63416dd9bbed2745cc4..0a657fa1c0619f3813e9520dd45eb640468cb7bf 100644 --- a/dev/tests/integration/testsuite/Mage/Customer/Block/Account/LinkTest.php +++ b/dev/tests/integration/testsuite/Mage/Customer/Block/Account/LinkTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Customer * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Customer/Block/Account/NavigationTest.php b/dev/tests/integration/testsuite/Mage/Customer/Block/Account/NavigationTest.php index 6a77e8896e6c86f72965fc63595a5168217d443e..82c7adc897eff056d912b4f61eb62cb7d2bc122e 100644 --- a/dev/tests/integration/testsuite/Mage/Customer/Block/Account/NavigationTest.php +++ b/dev/tests/integration/testsuite/Mage/Customer/Block/Account/NavigationTest.php @@ -21,7 +21,7 @@ * @category Mage * @package Mage_Customer * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Customer_Block_Account_NavigationTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/integration/testsuite/Mage/Customer/Block/Widget/DobTest.php b/dev/tests/integration/testsuite/Mage/Customer/Block/Widget/DobTest.php index 203ed83da1268cd68720948e11bb22474bc8d833..1eae43e26f072ccaf96b631cd55f24e88745d22f 100644 --- a/dev/tests/integration/testsuite/Mage/Customer/Block/Widget/DobTest.php +++ b/dev/tests/integration/testsuite/Mage/Customer/Block/Widget/DobTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Customer * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Customer/Block/Widget/GenderTest.php b/dev/tests/integration/testsuite/Mage/Customer/Block/Widget/GenderTest.php index 4d4ea728996bdaa710fe07fb83f0aee40e97a01a..92317a3085a428d4bfe8cb0fe8408921f87f73a7 100644 --- a/dev/tests/integration/testsuite/Mage/Customer/Block/Widget/GenderTest.php +++ b/dev/tests/integration/testsuite/Mage/Customer/Block/Widget/GenderTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Customer * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Customer/Model/Address/ConfigTest.php b/dev/tests/integration/testsuite/Mage/Customer/Model/Address/ConfigTest.php index dd141c024299a68542efc9a9bc2f84ae3b8d6f93..689b3128a58c02cdf74cb30412f4f444b96ee9a5 100644 --- a/dev/tests/integration/testsuite/Mage/Customer/Model/Address/ConfigTest.php +++ b/dev/tests/integration/testsuite/Mage/Customer/Model/Address/ConfigTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Customer * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Customer/Model/FormTest.php b/dev/tests/integration/testsuite/Mage/Customer/Model/FormTest.php index 2be679a2041418dc3097ce877d1545b2acd904c3..ad4ab67e425049e787a42e8f4ca38383debfa0e8 100644 --- a/dev/tests/integration/testsuite/Mage/Customer/Model/FormTest.php +++ b/dev/tests/integration/testsuite/Mage/Customer/Model/FormTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Customer * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Customer/Model/GroupTest.php b/dev/tests/integration/testsuite/Mage/Customer/Model/GroupTest.php index e41321c84ef048a96dcb9ac9da2dbc313ff62b91..47bab6d44fb620546dd352b06d726d22d3e61f40 100644 --- a/dev/tests/integration/testsuite/Mage/Customer/Model/GroupTest.php +++ b/dev/tests/integration/testsuite/Mage/Customer/Model/GroupTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Customer * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Customer/Model/Resource/Address/CollectionTest.php b/dev/tests/integration/testsuite/Mage/Customer/Model/Resource/Address/CollectionTest.php index 5c9fe485840015a1c9f7bb5a6769e6096b90c802..8e48a057ff1c42c3211205f007a962067eb6a789 100644 --- a/dev/tests/integration/testsuite/Mage/Customer/Model/Resource/Address/CollectionTest.php +++ b/dev/tests/integration/testsuite/Mage/Customer/Model/Resource/Address/CollectionTest.php @@ -18,7 +18,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Customer/Service/CustomerTest.php b/dev/tests/integration/testsuite/Mage/Customer/Service/CustomerTest.php index f486e4939654f02d79e7c8ceddf3f4c2329a33e2..6365e6b8429bdc307c736daed47819d3ed3b7541 100644 --- a/dev/tests/integration/testsuite/Mage/Customer/Service/CustomerTest.php +++ b/dev/tests/integration/testsuite/Mage/Customer/Service/CustomerTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Customer_Service_CustomerTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/integration/testsuite/Mage/Customer/_files/address_formats.php b/dev/tests/integration/testsuite/Mage/Customer/_files/address_formats.php index 98dfa9d84ce8a18d87f2a409a331169cd7764d98..e47dea917f0f8cfd41e21ac30700ac51eb4d5144 100644 --- a/dev/tests/integration/testsuite/Mage/Customer/_files/address_formats.php +++ b/dev/tests/integration/testsuite/Mage/Customer/_files/address_formats.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Customer * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Customer/_files/customer.php b/dev/tests/integration/testsuite/Mage/Customer/_files/customer.php index 2e28d6188bd62bb61c8da512ff04ae8e5e18905a..d415746c3f7d26bd61cf1d2daae7b7a02b5422cd 100644 --- a/dev/tests/integration/testsuite/Mage/Customer/_files/customer.php +++ b/dev/tests/integration/testsuite/Mage/Customer/_files/customer.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Customer * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Customer/_files/customer_address.php b/dev/tests/integration/testsuite/Mage/Customer/_files/customer_address.php index 0798af1fea2c2b86bbb7a4fc82862071e90eeaaf..0202e67f88a1a544343f759b409f5a1ce45a7db1 100644 --- a/dev/tests/integration/testsuite/Mage/Customer/_files/customer_address.php +++ b/dev/tests/integration/testsuite/Mage/Customer/_files/customer_address.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Customer/_files/customer_two_addresses.php b/dev/tests/integration/testsuite/Mage/Customer/_files/customer_two_addresses.php index 3db1a82e43c10ea384d43eb027cbdbb2c0eb6bd6..e25d22008eafbb728ad9717a50cbbdc38b84a880 100644 --- a/dev/tests/integration/testsuite/Mage/Customer/_files/customer_two_addresses.php +++ b/dev/tests/integration/testsuite/Mage/Customer/_files/customer_two_addresses.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Customer/controllers/AccountControllerTest.php b/dev/tests/integration/testsuite/Mage/Customer/controllers/AccountControllerTest.php index f5d474b959448af2acc3892fe6d35da538faeaea..ffc35de49584a5b6aff108aeafde0cd4215e7dd4 100644 --- a/dev/tests/integration/testsuite/Mage/Customer/controllers/AccountControllerTest.php +++ b/dev/tests/integration/testsuite/Mage/Customer/controllers/AccountControllerTest.php @@ -21,7 +21,7 @@ * @category Mage * @package Mage_Customer * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/DesignEditor/Model/History/CompactTest.php b/dev/tests/integration/testsuite/Mage/DesignEditor/Model/History/CompactTest.php index 952d19ed7674c32b8ab6da4908bc2a5547ebbeb3..c9d9de545d4d21bc3018e1795dca9c36930f038b 100644 --- a/dev/tests/integration/testsuite/Mage/DesignEditor/Model/History/CompactTest.php +++ b/dev/tests/integration/testsuite/Mage/DesignEditor/Model/History/CompactTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_DesignEditor * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/DesignEditor/Model/HistoryTest.php b/dev/tests/integration/testsuite/Mage/DesignEditor/Model/HistoryTest.php index d944c5cb77174407104d0019115b04ecbe73fcd6..48cc77a8dafc1fd87b8d56d42f41e87196f34eda 100644 --- a/dev/tests/integration/testsuite/Mage/DesignEditor/Model/HistoryTest.php +++ b/dev/tests/integration/testsuite/Mage/DesignEditor/Model/HistoryTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_DesignEditor * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/DesignEditor/Model/LayoutTest.php b/dev/tests/integration/testsuite/Mage/DesignEditor/Model/LayoutTest.php index f09ef56d0eec08c2cf2ad34243f7c5e289aba806..ebc196a1d150de894e3ff5edec6db8f01c8ffda2 100644 --- a/dev/tests/integration/testsuite/Mage/DesignEditor/Model/LayoutTest.php +++ b/dev/tests/integration/testsuite/Mage/DesignEditor/Model/LayoutTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_DesignEditor * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/DesignEditor/Model/_files/expected_layout_update.xml b/dev/tests/integration/testsuite/Mage/DesignEditor/Model/_files/expected_layout_update.xml index 8864a759cdb0ab663d86163ab9d1217e6fa412a2..b210a305a8f11370f6e1c4ae48c64265fa96e406 100644 --- a/dev/tests/integration/testsuite/Mage/DesignEditor/Model/_files/expected_layout_update.xml +++ b/dev/tests/integration/testsuite/Mage/DesignEditor/Model/_files/expected_layout_update.xml @@ -21,7 +21,7 @@ * @category Magento * @package Mage_DesignEditor * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/integration/testsuite/Mage/DesignEditor/Model/_files/layout_update.xml b/dev/tests/integration/testsuite/Mage/DesignEditor/Model/_files/layout_update.xml index b1983cb8cfd285685f81931c51276f482ec3e63f..9c80a3ff5f229a8ada562090016a4cd2ce34e5cc 100644 --- a/dev/tests/integration/testsuite/Mage/DesignEditor/Model/_files/layout_update.xml +++ b/dev/tests/integration/testsuite/Mage/DesignEditor/Model/_files/layout_update.xml @@ -21,7 +21,7 @@ * @category Magento * @package Mage_DesignEditor * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/integration/testsuite/Mage/DesignEditor/_files/history/layout_renderer.xml b/dev/tests/integration/testsuite/Mage/DesignEditor/_files/history/layout_renderer.xml index ef2b7591cfaafc45305316b1798636c958414141..341fe4cb9a06845365ed5ad70513d0a4111fd781 100644 --- a/dev/tests/integration/testsuite/Mage/DesignEditor/_files/history/layout_renderer.xml +++ b/dev/tests/integration/testsuite/Mage/DesignEditor/_files/history/layout_renderer.xml @@ -22,7 +22,7 @@ * @category Mage * @package Mage_DesignEditor * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/integration/testsuite/Mage/DesignEditor/controllers/Adminhtml/System/Design/EditorControllerTest.php b/dev/tests/integration/testsuite/Mage/DesignEditor/controllers/Adminhtml/System/Design/EditorControllerTest.php index d846071b8214edb1246c141a61b399b8bd765e1a..882c5d763cc588eb075064024f5bea8b655c36aa 100644 --- a/dev/tests/integration/testsuite/Mage/DesignEditor/controllers/Adminhtml/System/Design/EditorControllerTest.php +++ b/dev/tests/integration/testsuite/Mage/DesignEditor/controllers/Adminhtml/System/Design/EditorControllerTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_DesignEditor * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/DesignEditor/controllers/PageControllerTest.php b/dev/tests/integration/testsuite/Mage/DesignEditor/controllers/PageControllerTest.php index 74ffd234c0f2f1b2bb134e9c1cc7212ddd8ff971..95290b88624510f4f573832cb178bdad43d3e8d1 100644 --- a/dev/tests/integration/testsuite/Mage/DesignEditor/controllers/PageControllerTest.php +++ b/dev/tests/integration/testsuite/Mage/DesignEditor/controllers/PageControllerTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_DesignEditor * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Downloadable/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/LinksTest.php b/dev/tests/integration/testsuite/Mage/Downloadable/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/LinksTest.php index aeb1701704e0db96aba805de6187ac2ccbbb54c9..bc9a08cff69142b3eed808b7e602742c015e8075 100644 --- a/dev/tests/integration/testsuite/Mage/Downloadable/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/LinksTest.php +++ b/dev/tests/integration/testsuite/Mage/Downloadable/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/LinksTest.php @@ -21,7 +21,7 @@ * @category Mage * @package Mage_Downloadable * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Downloadable/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/SamplesTest.php b/dev/tests/integration/testsuite/Mage/Downloadable/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/SamplesTest.php index da71100d9d44f4a411af2156c67e3e282035562b..9a6cae7b2baa3bbb69e7e827115352c6ce6a8d5a 100644 --- a/dev/tests/integration/testsuite/Mage/Downloadable/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/SamplesTest.php +++ b/dev/tests/integration/testsuite/Mage/Downloadable/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/SamplesTest.php @@ -21,7 +21,7 @@ * @category Mage * @package Mage_Downloadable * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Downloadable/Model/ObserverTest.php b/dev/tests/integration/testsuite/Mage/Downloadable/Model/ObserverTest.php index 54ea22783925d5bea3df43c762570e62d4333409..0fb2f30c479c733ca2a302df387d0a0bd2d18e7c 100644 --- a/dev/tests/integration/testsuite/Mage/Downloadable/Model/ObserverTest.php +++ b/dev/tests/integration/testsuite/Mage/Downloadable/Model/ObserverTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Downloadable * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Downloadable/Model/Product/TypeTest.php b/dev/tests/integration/testsuite/Mage/Downloadable/Model/Product/TypeTest.php index 69228ebd2ef27b1c863cc0725000add169894817..8a70d842aaa02cd117bc8f54013e0ca569eddffa 100644 --- a/dev/tests/integration/testsuite/Mage/Downloadable/Model/Product/TypeTest.php +++ b/dev/tests/integration/testsuite/Mage/Downloadable/Model/Product/TypeTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Downloadable * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Downloadable/_files/order_with_downloadable_product.php b/dev/tests/integration/testsuite/Mage/Downloadable/_files/order_with_downloadable_product.php index 4e6a527a3fe27cbcb89b3b699346529381a92678..1885a8bb3bcd39047f0499b8a98078cfe5a5f9ad 100644 --- a/dev/tests/integration/testsuite/Mage/Downloadable/_files/order_with_downloadable_product.php +++ b/dev/tests/integration/testsuite/Mage/Downloadable/_files/order_with_downloadable_product.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Downlodable * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Downloadable/_files/product.php b/dev/tests/integration/testsuite/Mage/Downloadable/_files/product.php index b59ea81e710012accf3517d5e8e3c1e0bce6cf5b..17d79510a8560bb9d994f20dcb0a5144869efb8f 100644 --- a/dev/tests/integration/testsuite/Mage/Downloadable/_files/product.php +++ b/dev/tests/integration/testsuite/Mage/Downloadable/_files/product.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Downloadable * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Downloadable/_files/product_with_files.php b/dev/tests/integration/testsuite/Mage/Downloadable/_files/product_with_files.php index 63d5f43c9323b1ab71e11dccf721a0360e4f423b..53dfd23aed695d34013e7b359649548db676ac70 100644 --- a/dev/tests/integration/testsuite/Mage/Downloadable/_files/product_with_files.php +++ b/dev/tests/integration/testsuite/Mage/Downloadable/_files/product_with_files.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Downloadable * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Downloadable/controllers/ProductControllerTest.php b/dev/tests/integration/testsuite/Mage/Downloadable/controllers/ProductControllerTest.php index 1fe5fd93ccae807186b1e0dd8a55067f84ce7f66..dcd9b07478448b94c87debb5ffff1a7164425ff7 100644 --- a/dev/tests/integration/testsuite/Mage/Downloadable/controllers/ProductControllerTest.php +++ b/dev/tests/integration/testsuite/Mage/Downloadable/controllers/ProductControllerTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Downloadable * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Eav/Block/Adminhtml/Attribute/Edit/Main/AbstractTest.php b/dev/tests/integration/testsuite/Mage/Eav/Block/Adminhtml/Attribute/Edit/Main/AbstractTest.php index 60c0970392c4eac6c95b9e9fe7a69c58daca99db..69121db00d6c8afa8b405401d1bb09f721df3bb7 100644 --- a/dev/tests/integration/testsuite/Mage/Eav/Block/Adminhtml/Attribute/Edit/Main/AbstractTest.php +++ b/dev/tests/integration/testsuite/Mage/Eav/Block/Adminhtml/Attribute/Edit/Main/AbstractTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Eav * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Eav/Model/Resource/Entity/Attribute/CollectionTest.php b/dev/tests/integration/testsuite/Mage/Eav/Model/Resource/Entity/Attribute/CollectionTest.php index 48e496773111e726faf3c99434f6d828f9e4f735..f5ec8ebf4c9031f3a2e8e245d84260a6d410be28 100644 --- a/dev/tests/integration/testsuite/Mage/Eav/Model/Resource/Entity/Attribute/CollectionTest.php +++ b/dev/tests/integration/testsuite/Mage/Eav/Model/Resource/Entity/Attribute/CollectionTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Eav/Model/Validator/Attribute/BackendTest.php b/dev/tests/integration/testsuite/Mage/Eav/Model/Validator/Attribute/BackendTest.php index 13cb9a2be58010f1bb1a47bcf3444efc19b20462..d1b29e1608fe484032e206e920e0d727def38ee2 100644 --- a/dev/tests/integration/testsuite/Mage/Eav/Model/Validator/Attribute/BackendTest.php +++ b/dev/tests/integration/testsuite/Mage/Eav/Model/Validator/Attribute/BackendTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/GiftMessage/Block/Message/InlineTest.php b/dev/tests/integration/testsuite/Mage/GiftMessage/Block/Message/InlineTest.php index f9383b23ffaa889a2f4645576e0dcc1fc04fa3b5..ad7293f0a78a6c5e9d2552ca05d41126388ac60a 100644 --- a/dev/tests/integration/testsuite/Mage/GiftMessage/Block/Message/InlineTest.php +++ b/dev/tests/integration/testsuite/Mage/GiftMessage/Block/Message/InlineTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_GiftMessage * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/GoogleShopping/Block/Adminhtml/Items/ProductTest.php b/dev/tests/integration/testsuite/Mage/GoogleShopping/Block/Adminhtml/Items/ProductTest.php index e77c344cfb06d14a20da4db48ec197ca38636184..32e615d64a8594f0c699ed20fea21540aed7d675 100644 --- a/dev/tests/integration/testsuite/Mage/GoogleShopping/Block/Adminhtml/Items/ProductTest.php +++ b/dev/tests/integration/testsuite/Mage/GoogleShopping/Block/Adminhtml/Items/ProductTest.php @@ -21,7 +21,7 @@ * @category Mage * @package Mage_GoogleShopping * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/GoogleShopping/controllers/Adminhtml/GoogleShopping/ItemsControllerTest.php b/dev/tests/integration/testsuite/Mage/GoogleShopping/controllers/Adminhtml/GoogleShopping/ItemsControllerTest.php index 679add76c75776780ab1c26b66b32d409c9d5c21..61a1bee698dcbf66fab06b15ebe9c13cfc09a3c2 100644 --- a/dev/tests/integration/testsuite/Mage/GoogleShopping/controllers/Adminhtml/GoogleShopping/ItemsControllerTest.php +++ b/dev/tests/integration/testsuite/Mage/GoogleShopping/controllers/Adminhtml/GoogleShopping/ItemsControllerTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_GoogleShopping * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_GoogleShopping_Adminhtml_GoogleShopping_ItemsControllerTest extends Mage_Backend_Utility_Controller diff --git a/dev/tests/integration/testsuite/Mage/ImportExport/Block/Adminhtml/Export/Edit/FormTest.php b/dev/tests/integration/testsuite/Mage/ImportExport/Block/Adminhtml/Export/Edit/FormTest.php index 1d38d06160dff34c5e52234b61c55369846364d6..082a888debf237fd312044d56afba09897d66c56 100644 --- a/dev/tests/integration/testsuite/Mage/ImportExport/Block/Adminhtml/Export/Edit/FormTest.php +++ b/dev/tests/integration/testsuite/Mage/ImportExport/Block/Adminhtml/Export/Edit/FormTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_ImportExport * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/ImportExport/Block/Adminhtml/Export/FilterTest.php b/dev/tests/integration/testsuite/Mage/ImportExport/Block/Adminhtml/Export/FilterTest.php index a87561449f254236fd77249c60b38d6e14133385..bd2b9e4185c2ba0b99992fac75550a6f433d88ee 100644 --- a/dev/tests/integration/testsuite/Mage/ImportExport/Block/Adminhtml/Export/FilterTest.php +++ b/dev/tests/integration/testsuite/Mage/ImportExport/Block/Adminhtml/Export/FilterTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_ImportExport * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/ImportExport/Block/Adminhtml/Import/Edit/FormTest.php b/dev/tests/integration/testsuite/Mage/ImportExport/Block/Adminhtml/Import/Edit/FormTest.php index 5a4ff79b90d3360371501824c7ce935ae904ce27..6e477c2b0a099d2bc2553084d97675207a430513 100644 --- a/dev/tests/integration/testsuite/Mage/ImportExport/Block/Adminhtml/Import/Edit/FormTest.php +++ b/dev/tests/integration/testsuite/Mage/ImportExport/Block/Adminhtml/Import/Edit/FormTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_ImportExport * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/ImportExport/Model/Export/Entity/Eav/Customer/AddressTest.php b/dev/tests/integration/testsuite/Mage/ImportExport/Model/Export/Entity/Eav/Customer/AddressTest.php index c25f6edcc4be5715a199b21784fa0e0ba50048e4..7cb2383a31430e85252727f789c0b5b960c357f7 100644 --- a/dev/tests/integration/testsuite/Mage/ImportExport/Model/Export/Entity/Eav/Customer/AddressTest.php +++ b/dev/tests/integration/testsuite/Mage/ImportExport/Model/Export/Entity/Eav/Customer/AddressTest.php @@ -21,14 +21,13 @@ * @category Magento * @package Mage_ImportExport * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ /** * Test for customer address export model * - * @group module:Mage_ImportExport * @magentoDataFixture Mage/ImportExport/_files/customer_with_addresses.php */ class Mage_ImportExport_Model_Export_Entity_Eav_Customer_AddressTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/integration/testsuite/Mage/ImportExport/Model/Export/Entity/Eav/CustomerTest.php b/dev/tests/integration/testsuite/Mage/ImportExport/Model/Export/Entity/Eav/CustomerTest.php index f892931d67422b18215fafc7c964afdb4343e183..f143bc7b58dc38bd594fd34c4360fd724c5bce24 100644 --- a/dev/tests/integration/testsuite/Mage/ImportExport/Model/Export/Entity/Eav/CustomerTest.php +++ b/dev/tests/integration/testsuite/Mage/ImportExport/Model/Export/Entity/Eav/CustomerTest.php @@ -21,14 +21,12 @@ * @category Magento * @package Mage_ImportExport * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ /** * Test for customer export model - * - * @group module:Mage_ImportExport */ class Mage_ImportExport_Model_Export_Entity_Eav_CustomerTest extends PHPUnit_Framework_TestCase { @@ -159,7 +157,8 @@ class Mage_ImportExport_Model_Export_Entity_Eav_CustomerTest extends PHPUnit_Fra */ public function testFilterEntityCollection() { - $createdAtDate = '2013-01-01'; + $createdAtDate = '2038-01-01'; + /** * Change created_at date of first customer for future filter test. */ diff --git a/dev/tests/integration/testsuite/Mage/ImportExport/Model/Export/Entity/EavAbstractTest.php b/dev/tests/integration/testsuite/Mage/ImportExport/Model/Export/Entity/EavAbstractTest.php index 00b4f8318e84166782477fce6265a86521c578ff..4c89c7e677e544b7f3f15f33ebba704e73a243ca 100644 --- a/dev/tests/integration/testsuite/Mage/ImportExport/Model/Export/Entity/EavAbstractTest.php +++ b/dev/tests/integration/testsuite/Mage/ImportExport/Model/Export/Entity/EavAbstractTest.php @@ -21,14 +21,12 @@ * @category Magento * @package Mage_ImportExport * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ /** * Test for eav abstract export model - * - * @group module:Mage_ImportExport */ class Mage_ImportExport_Model_Export_Entity_EavAbstractTest extends PHPUnit_Framework_TestCase { diff --git a/dev/tests/integration/testsuite/Mage/ImportExport/Model/Export/Entity/ProductTest.php b/dev/tests/integration/testsuite/Mage/ImportExport/Model/Export/Entity/ProductTest.php index 574235f83e0a60b868137a1c0799aeeb38cc7272..90f3cd1da10425cc9523ac736f1f3851f787c162 100644 --- a/dev/tests/integration/testsuite/Mage/ImportExport/Model/Export/Entity/ProductTest.php +++ b/dev/tests/integration/testsuite/Mage/ImportExport/Model/Export/Entity/ProductTest.php @@ -21,13 +21,10 @@ * @category Magento * @package Mage_ImportExport * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ -/** - * @group module:Mage_ImportExport - */ class Mage_ImportExport_Model_Export_Entity_ProductTest extends PHPUnit_Framework_TestCase { /** diff --git a/dev/tests/integration/testsuite/Mage/ImportExport/Model/Export/EntityAbstractTest.php b/dev/tests/integration/testsuite/Mage/ImportExport/Model/Export/EntityAbstractTest.php index aec449408300e23b999c23dab43f83ed33b46942..d2ff4b7e9e32f575d602c62631c5bf0dba1d6cf3 100644 --- a/dev/tests/integration/testsuite/Mage/ImportExport/Model/Export/EntityAbstractTest.php +++ b/dev/tests/integration/testsuite/Mage/ImportExport/Model/Export/EntityAbstractTest.php @@ -21,14 +21,12 @@ * @category Magento * @package Mage_ImportExport * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ /** * Test for abstract export model - * - * @group module:Mage_ImportExport */ class Mage_ImportExport_Model_Export_EntityAbstractTest extends PHPUnit_Framework_TestCase { diff --git a/dev/tests/integration/testsuite/Mage/ImportExport/Model/ExportTest.php b/dev/tests/integration/testsuite/Mage/ImportExport/Model/ExportTest.php index 825b95b5f80aab87b6720f237f55232ff6ae9b3d..efd3690c86e284dc1cc16dde82a8ced46ecfc566 100644 --- a/dev/tests/integration/testsuite/Mage/ImportExport/Model/ExportTest.php +++ b/dev/tests/integration/testsuite/Mage/ImportExport/Model/ExportTest.php @@ -21,7 +21,7 @@ * @category Mage * @package Mage_ImportExport * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/ImportExport/Model/Import/Entity/CustomerCompositeTest.php b/dev/tests/integration/testsuite/Mage/ImportExport/Model/Import/Entity/CustomerCompositeTest.php index 74201fc74c31bff7dd673d7ecbe7edceb607863f..d2abc2ddafd846cbced3ccb88af00d82fc5a72a9 100644 --- a/dev/tests/integration/testsuite/Mage/ImportExport/Model/Import/Entity/CustomerCompositeTest.php +++ b/dev/tests/integration/testsuite/Mage/ImportExport/Model/Import/Entity/CustomerCompositeTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_ImportExport * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/Customer/AddressTest.php b/dev/tests/integration/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/Customer/AddressTest.php index ebd939ffda33cb878babac1043d8940bdf096985..06f0a6d85cdb6396ca769d4f6a6efd6d60fded81 100644 --- a/dev/tests/integration/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/Customer/AddressTest.php +++ b/dev/tests/integration/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/Customer/AddressTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_ImportExport * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/CustomerImportTest.php b/dev/tests/integration/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/CustomerImportTest.php index a4610a82631d3e8fd0e6b07cdb9afe39480b3f7a..96d564f8bd1cc5150ff79de6ccc0a901026604f4 100644 --- a/dev/tests/integration/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/CustomerImportTest.php +++ b/dev/tests/integration/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/CustomerImportTest.php @@ -21,7 +21,7 @@ * @category Mage * @package Mage_ImportExport * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/CustomerValidateTest.php b/dev/tests/integration/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/CustomerValidateTest.php index 152aca76012a6983ef209a4a2c830546c47aaa6d..e31ab4b3742e09063aee862398c53c34af4a0dd6 100644 --- a/dev/tests/integration/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/CustomerValidateTest.php +++ b/dev/tests/integration/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/CustomerValidateTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_ImportExport * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/ImportExport/Model/Import/Entity/EavAbstractTest.php b/dev/tests/integration/testsuite/Mage/ImportExport/Model/Import/Entity/EavAbstractTest.php index 62cde6072cab09740a82beb052d05736d17de7fe..0a929c294135fb573c435bc1b3156c7b092d8093 100644 --- a/dev/tests/integration/testsuite/Mage/ImportExport/Model/Import/Entity/EavAbstractTest.php +++ b/dev/tests/integration/testsuite/Mage/ImportExport/Model/Import/Entity/EavAbstractTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_ImportExport * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/ImportExport/Model/Import/Entity/Product/Type/AbstractTest.php b/dev/tests/integration/testsuite/Mage/ImportExport/Model/Import/Entity/Product/Type/AbstractTest.php index 029112716bb4082dc9453ef7b6fe4ba1e6ae554c..b63b1b196b6b7d3c29a33f6bf2f36fdade5829d3 100644 --- a/dev/tests/integration/testsuite/Mage/ImportExport/Model/Import/Entity/Product/Type/AbstractTest.php +++ b/dev/tests/integration/testsuite/Mage/ImportExport/Model/Import/Entity/Product/Type/AbstractTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_ImportExport * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/ImportExport/Model/Import/Entity/ProductTest.php b/dev/tests/integration/testsuite/Mage/ImportExport/Model/Import/Entity/ProductTest.php index 2b18c2086cf9847baf5b78c61549164c1edcbf40..5db4920a330f75297e6a541e3862bff78f248075 100644 --- a/dev/tests/integration/testsuite/Mage/ImportExport/Model/Import/Entity/ProductTest.php +++ b/dev/tests/integration/testsuite/Mage/ImportExport/Model/Import/Entity/ProductTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_ImportExport * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/ImportExport/Model/Import/EntityAbstractTest.php b/dev/tests/integration/testsuite/Mage/ImportExport/Model/Import/EntityAbstractTest.php index 0cc3832ce841830ace9359be6f2a1ea1f4515c8f..ac74afcc319ada1d7be8b644dd5b29bbf6d3747b 100644 --- a/dev/tests/integration/testsuite/Mage/ImportExport/Model/Import/EntityAbstractTest.php +++ b/dev/tests/integration/testsuite/Mage/ImportExport/Model/Import/EntityAbstractTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_ImportExport * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/ImportExport/Model/ImportTest.php b/dev/tests/integration/testsuite/Mage/ImportExport/Model/ImportTest.php index e3e838f4e36f4dae2b8ce6bcbfbe170e242693e0..b48386640fbce6575338e044ed6328c4fb4900bf 100644 --- a/dev/tests/integration/testsuite/Mage/ImportExport/Model/ImportTest.php +++ b/dev/tests/integration/testsuite/Mage/ImportExport/Model/ImportTest.php @@ -21,7 +21,7 @@ * @category Mage * @package Mage_ImportExport * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/ImportExport/Model/Resource/Import/DataTest.php b/dev/tests/integration/testsuite/Mage/ImportExport/Model/Resource/Import/DataTest.php index 4c8554af4c3fb6e0a50d90b6d20da88eff54c0ea..fb10da2bf5ca18c9f4fa56a1796f830183631e3b 100644 --- a/dev/tests/integration/testsuite/Mage/ImportExport/Model/Resource/Import/DataTest.php +++ b/dev/tests/integration/testsuite/Mage/ImportExport/Model/Resource/Import/DataTest.php @@ -21,7 +21,7 @@ * @category Mage * @package <package-name> * @subpackage <subpackage-name> - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/ImportExport/_files/customer.php b/dev/tests/integration/testsuite/Mage/ImportExport/_files/customer.php index b1ab060ff8926a3493645011fac01d56079d8dca..9ebe2240096d63c6b6b6ab8019b1d504b6183b2f 100644 --- a/dev/tests/integration/testsuite/Mage/ImportExport/_files/customer.php +++ b/dev/tests/integration/testsuite/Mage/ImportExport/_files/customer.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_ImportExport * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ //Create customer diff --git a/dev/tests/integration/testsuite/Mage/ImportExport/_files/customer_with_addresses.php b/dev/tests/integration/testsuite/Mage/ImportExport/_files/customer_with_addresses.php index a428b25b15e701b2f121369d03b86baf35dbf896..391cd73c4962525ec45224477bf6b95478b96908 100644 --- a/dev/tests/integration/testsuite/Mage/ImportExport/_files/customer_with_addresses.php +++ b/dev/tests/integration/testsuite/Mage/ImportExport/_files/customer_with_addresses.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_ImportExport * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ $customers = array(); diff --git a/dev/tests/integration/testsuite/Mage/ImportExport/_files/customers.php b/dev/tests/integration/testsuite/Mage/ImportExport/_files/customers.php index 5f6543ef7eac1e1dca1fddf9fea3691bd99e0af6..d312a07f53e0f720956179fc6d4657102940184c 100644 --- a/dev/tests/integration/testsuite/Mage/ImportExport/_files/customers.php +++ b/dev/tests/integration/testsuite/Mage/ImportExport/_files/customers.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_ImportExport * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ $customers = array(); diff --git a/dev/tests/integration/testsuite/Mage/ImportExport/_files/customers_for_address_import.php b/dev/tests/integration/testsuite/Mage/ImportExport/_files/customers_for_address_import.php index 9ab2d2018a91f106081d2d01de230369eac67834..130134a774aad7bf15beed4a03f56f26e758f02b 100644 --- a/dev/tests/integration/testsuite/Mage/ImportExport/_files/customers_for_address_import.php +++ b/dev/tests/integration/testsuite/Mage/ImportExport/_files/customers_for_address_import.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_ImportExport * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ //Create customer diff --git a/dev/tests/integration/testsuite/Mage/ImportExport/_files/import_data.php b/dev/tests/integration/testsuite/Mage/ImportExport/_files/import_data.php index f5ec3ff69d18513cd5a6e79b92f411dd13f0896f..21bac6eda77b069bc907e448d4ece738d5a442e9 100644 --- a/dev/tests/integration/testsuite/Mage/ImportExport/_files/import_data.php +++ b/dev/tests/integration/testsuite/Mage/ImportExport/_files/import_data.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_ImportExport * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/ImportExport/_files/product.php b/dev/tests/integration/testsuite/Mage/ImportExport/_files/product.php index cebe21fb0acf8de5fd4376f6f060090506035ecf..c9e91b7e939a4c515ac0bba4ff2ba0b38cc3aabc 100644 --- a/dev/tests/integration/testsuite/Mage/ImportExport/_files/product.php +++ b/dev/tests/integration/testsuite/Mage/ImportExport/_files/product.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_ImportExport * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/ImportExport/controllers/Adminhtml/ExportControllerTest.php b/dev/tests/integration/testsuite/Mage/ImportExport/controllers/Adminhtml/ExportControllerTest.php index d17b2b617ff2781d205f7d87f1010103cfef49e6..3fd626b2dec9240810281052cf81e734a0c528b5 100644 --- a/dev/tests/integration/testsuite/Mage/ImportExport/controllers/Adminhtml/ExportControllerTest.php +++ b/dev/tests/integration/testsuite/Mage/ImportExport/controllers/Adminhtml/ExportControllerTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_ImportExport * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/ImportExport/controllers/Adminhtml/ImportControllerTest.php b/dev/tests/integration/testsuite/Mage/ImportExport/controllers/Adminhtml/ImportControllerTest.php index be2fc4cbb7526c44678b5600e706b7862f5accf2..87413437163813dafa6e017580a52af5c9190b82 100644 --- a/dev/tests/integration/testsuite/Mage/ImportExport/controllers/Adminhtml/ImportControllerTest.php +++ b/dev/tests/integration/testsuite/Mage/ImportExport/controllers/Adminhtml/ImportControllerTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_ImportExport * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Index/Model/Process/FileTest.php b/dev/tests/integration/testsuite/Mage/Index/Model/Process/FileTest.php index f0cbb0fdca0fe3d1814fb02162e15d17ebfad51a..3c993f0710d24e5cc7c463e9f744ae50bc1e291a 100644 --- a/dev/tests/integration/testsuite/Mage/Index/Model/Process/FileTest.php +++ b/dev/tests/integration/testsuite/Mage/Index/Model/Process/FileTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Index * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Index/Model/ProcessTest.php b/dev/tests/integration/testsuite/Mage/Index/Model/ProcessTest.php index cc9ff3bdfcf883fe520dbc7172857530c4a0aec3..c6ab7db25909e35aeeeb6cd6e41e2eca866b52b9 100644 --- a/dev/tests/integration/testsuite/Mage/Index/Model/ProcessTest.php +++ b/dev/tests/integration/testsuite/Mage/Index/Model/ProcessTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Index * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Index/Model/ShellTest.php b/dev/tests/integration/testsuite/Mage/Index/Model/ShellTest.php index 7073b857c9fc1cf16303d4842afcc0126e2416cd..f9238ce13090085a96596fe816758874796dfa0e 100644 --- a/dev/tests/integration/testsuite/Mage/Index/Model/ShellTest.php +++ b/dev/tests/integration/testsuite/Mage/Index/Model/ShellTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Index * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Install/Controller/ActionTest.php b/dev/tests/integration/testsuite/Mage/Install/Controller/ActionTest.php index 93cfe5402950e416011ed7b8fa8e2b835f7f74a1..aa09d241d5e51813770d85670dee35641f0aab4d 100644 --- a/dev/tests/integration/testsuite/Mage/Install/Controller/ActionTest.php +++ b/dev/tests/integration/testsuite/Mage/Install/Controller/ActionTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Install * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Install/Helper/DataTest.php b/dev/tests/integration/testsuite/Mage/Install/Helper/DataTest.php index 5bd4180736e8d83be2763794eb418ccc09da45e2..70967b43f7392a79985ab452c4fce96e9c9cdddf 100644 --- a/dev/tests/integration/testsuite/Mage/Install/Helper/DataTest.php +++ b/dev/tests/integration/testsuite/Mage/Install/Helper/DataTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Install * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Install/controllers/WizardControllerTest.php b/dev/tests/integration/testsuite/Mage/Install/controllers/WizardControllerTest.php index f126e261533cbf5f27a0f63fe50277780605443c..aaae218c7ed66c0f1d575e5e7243df5764b58cc2 100644 --- a/dev/tests/integration/testsuite/Mage/Install/controllers/WizardControllerTest.php +++ b/dev/tests/integration/testsuite/Mage/Install/controllers/WizardControllerTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Install * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ @@ -48,7 +48,9 @@ class Mage_Install_WizardControllerTest extends Magento_Test_TestCase_Controller public function setUp() { parent::setUp(); - $this->_runOptions['is_installed'] = false; + // emulate non-installed application + $this->_runOptions[Mage_Core_Model_Config::OPTION_LOCAL_CONFIG_EXTRA_DATA] + = sprintf(Mage_Core_Model_Config::CONFIG_TEMPLATE_INSTALL_DATE, 'invalid'); } public function tearDown() diff --git a/dev/tests/integration/testsuite/Mage/Log/Model/Resource/ShellTest.php b/dev/tests/integration/testsuite/Mage/Log/Model/Resource/ShellTest.php index 107a1210522520aee6cdcf65fcb0092eb7d2a9ee..56ba41d12d0f7b402b1c6616dcf759d484b74894 100644 --- a/dev/tests/integration/testsuite/Mage/Log/Model/Resource/ShellTest.php +++ b/dev/tests/integration/testsuite/Mage/Log/Model/Resource/ShellTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Log * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Log/Model/ShellTest.php b/dev/tests/integration/testsuite/Mage/Log/Model/ShellTest.php index 1c5f776a1dbf142f3d2611f90ee5fb41e828aae5..ac13aa87454f411375813f2edfb5f0c0ecc36311 100644 --- a/dev/tests/integration/testsuite/Mage/Log/Model/ShellTest.php +++ b/dev/tests/integration/testsuite/Mage/Log/Model/ShellTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Log * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Newsletter/Model/QueueTest.php b/dev/tests/integration/testsuite/Mage/Newsletter/Model/QueueTest.php index 658e48518eb0924e721c5c7ed4627eb1fd7f5130..8fb652ca4c2f7a9161a2c577fffca8bb56f45660 100644 --- a/dev/tests/integration/testsuite/Mage/Newsletter/Model/QueueTest.php +++ b/dev/tests/integration/testsuite/Mage/Newsletter/Model/QueueTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Newsletter * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Newsletter/Model/TemplateTest.php b/dev/tests/integration/testsuite/Mage/Newsletter/Model/TemplateTest.php index 0a2b3b83552fa0d7efd3c7d450095db6f0a31326..0f72096e62e748084356f61761591fc3344d6fc7 100644 --- a/dev/tests/integration/testsuite/Mage/Newsletter/Model/TemplateTest.php +++ b/dev/tests/integration/testsuite/Mage/Newsletter/Model/TemplateTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Newsletter * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Newsletter/_files/queue.php b/dev/tests/integration/testsuite/Mage/Newsletter/_files/queue.php index c1eb89f7ce5aae16dfb82b89a9ae8565c63a0934..f670480e496178e5a43244561fb5ac7a231ec538 100644 --- a/dev/tests/integration/testsuite/Mage/Newsletter/_files/queue.php +++ b/dev/tests/integration/testsuite/Mage/Newsletter/_files/queue.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Newsletter * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Newsletter/_files/subscribers.php b/dev/tests/integration/testsuite/Mage/Newsletter/_files/subscribers.php index 7d75499189b6ec8f6aa5f089df59967106b40faf..581ed55c8619799d6972cd62a0d9f20049aeaec7 100644 --- a/dev/tests/integration/testsuite/Mage/Newsletter/_files/subscribers.php +++ b/dev/tests/integration/testsuite/Mage/Newsletter/_files/subscribers.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Newsletter * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Newsletter/_files/template.php b/dev/tests/integration/testsuite/Mage/Newsletter/_files/template.php index 9c0db6019d64efa98968b17b7fced9c4dfb800a3..9765dd64e7c6d0a6b27f3360ab98ef9e5710b905 100644 --- a/dev/tests/integration/testsuite/Mage/Newsletter/_files/template.php +++ b/dev/tests/integration/testsuite/Mage/Newsletter/_files/template.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Newsletter * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Page/Block/Html/BreadcrumbsTest.php b/dev/tests/integration/testsuite/Mage/Page/Block/Html/BreadcrumbsTest.php index 53a636c50a07f9a93482d6c32dc31905b6f3c3a1..d3d331a5dcf35251be2fafa13642f085bff22373 100644 --- a/dev/tests/integration/testsuite/Mage/Page/Block/Html/BreadcrumbsTest.php +++ b/dev/tests/integration/testsuite/Mage/Page/Block/Html/BreadcrumbsTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Page * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Page/Block/Html/FooterTest.php b/dev/tests/integration/testsuite/Mage/Page/Block/Html/FooterTest.php index d4c6435aac6d58411acd1bc4abe505be10984953..ee9451821bca79ca383dd1207a399960f5886dab 100644 --- a/dev/tests/integration/testsuite/Mage/Page/Block/Html/FooterTest.php +++ b/dev/tests/integration/testsuite/Mage/Page/Block/Html/FooterTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Page * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Page/Block/Html/HeadTest.php b/dev/tests/integration/testsuite/Mage/Page/Block/Html/HeadTest.php index ea91c5da7493a17d290513eeab6c92bbe1f17851..517b01c97508c9acbb2816f1e1b0897c4ea90b6d 100644 --- a/dev/tests/integration/testsuite/Mage/Page/Block/Html/HeadTest.php +++ b/dev/tests/integration/testsuite/Mage/Page/Block/Html/HeadTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Page * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Page/Helper/RobotsTest.php b/dev/tests/integration/testsuite/Mage/Page/Helper/RobotsTest.php index df62616a3bea5e8bc5b61e2f22b08e059579a36d..6cfc4c1ee04932a7343440fa5524b3659da7c3fd 100644 --- a/dev/tests/integration/testsuite/Mage/Page/Helper/RobotsTest.php +++ b/dev/tests/integration/testsuite/Mage/Page/Helper/RobotsTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Page * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/PageCache/Helper/DataTest.php b/dev/tests/integration/testsuite/Mage/PageCache/Helper/DataTest.php index c6124957d1790bdca51e43748b792f3329f6f18e..e5b2359b1ee3ff513e2e611ee7e0c6fedc22f676 100644 --- a/dev/tests/integration/testsuite/Mage/PageCache/Helper/DataTest.php +++ b/dev/tests/integration/testsuite/Mage/PageCache/Helper/DataTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_PageCache * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/PageCache/Model/ObserverTest.php b/dev/tests/integration/testsuite/Mage/PageCache/Model/ObserverTest.php index fc231a355dbdbd6d2219784e03636224981270cd..54dc64cca2b5689f9910f112cc197a3a0a8226ee 100644 --- a/dev/tests/integration/testsuite/Mage/PageCache/Model/ObserverTest.php +++ b/dev/tests/integration/testsuite/Mage/PageCache/Model/ObserverTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_PageCache * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Payment/Block/Catalog/Product/View/ProfileTest.php b/dev/tests/integration/testsuite/Mage/Payment/Block/Catalog/Product/View/ProfileTest.php index 48f3ca50778c591c74e40f0f0850e4679bd30600..3f848b2344e14556bb430bbcbbdcc5f8f516e1f1 100644 --- a/dev/tests/integration/testsuite/Mage/Payment/Block/Catalog/Product/View/ProfileTest.php +++ b/dev/tests/integration/testsuite/Mage/Payment/Block/Catalog/Product/View/ProfileTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Payment * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Payment/Block/InfoTest.php b/dev/tests/integration/testsuite/Mage/Payment/Block/InfoTest.php index 7bd4b528a9b82fee03e755c3f1f2ff67dad50e44..50c1ba7ce79529b75d438b6afe823951accff317 100644 --- a/dev/tests/integration/testsuite/Mage/Payment/Block/InfoTest.php +++ b/dev/tests/integration/testsuite/Mage/Payment/Block/InfoTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Payment * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Payment/Helper/DataTest.php b/dev/tests/integration/testsuite/Mage/Payment/Helper/DataTest.php index 4ac0731a856cee3fd807697565ad3ab51448d71e..887cc96dcc83288d39b36a81c6958d965fc806ae 100644 --- a/dev/tests/integration/testsuite/Mage/Payment/Helper/DataTest.php +++ b/dev/tests/integration/testsuite/Mage/Payment/Helper/DataTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Payment * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Paypal/Block/Express/ReviewTest.php b/dev/tests/integration/testsuite/Mage/Paypal/Block/Express/ReviewTest.php index b2a611fe92d59d9543abc2b966bd7030b5497982..bcba5efa1db1675be0008ae9cee904a388126a56 100644 --- a/dev/tests/integration/testsuite/Mage/Paypal/Block/Express/ReviewTest.php +++ b/dev/tests/integration/testsuite/Mage/Paypal/Block/Express/ReviewTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Paypal * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Paypal/Model/IpnTest.php b/dev/tests/integration/testsuite/Mage/Paypal/Model/IpnTest.php index 4451ece7fd05ee9402d0cac9b0cd810fa6ba28a9..03871a1d02fc8913d71382a2a13058abe6bafa25 100644 --- a/dev/tests/integration/testsuite/Mage/Paypal/Model/IpnTest.php +++ b/dev/tests/integration/testsuite/Mage/Paypal/Model/IpnTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Paypal * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Paypal/Model/VoidTest.php b/dev/tests/integration/testsuite/Mage/Paypal/Model/VoidTest.php index 39076368acf8b368e939e3700140f10b871a7f7a..5ff4899bdcb010dcca7f4056291af9c6b5c705ce 100644 --- a/dev/tests/integration/testsuite/Mage/Paypal/Model/VoidTest.php +++ b/dev/tests/integration/testsuite/Mage/Paypal/Model/VoidTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Paypal * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Paypal/_files/address_data.php b/dev/tests/integration/testsuite/Mage/Paypal/_files/address_data.php index f54231b186682b5ed73a4dfca294c391f15111fb..28699e76e1fd85d5f23023b36f5aff6c6e21303b 100644 --- a/dev/tests/integration/testsuite/Mage/Paypal/_files/address_data.php +++ b/dev/tests/integration/testsuite/Mage/Paypal/_files/address_data.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Paypal * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Paypal/_files/ipn.php b/dev/tests/integration/testsuite/Mage/Paypal/_files/ipn.php index d44b29e92e4024e6e91782a2366ceb2bff9a2c65..77fbeeda320a515b41b3c14faa0d87895dba440a 100644 --- a/dev/tests/integration/testsuite/Mage/Paypal/_files/ipn.php +++ b/dev/tests/integration/testsuite/Mage/Paypal/_files/ipn.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Paypal * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Paypal/_files/ipn_recurring_profile.php b/dev/tests/integration/testsuite/Mage/Paypal/_files/ipn_recurring_profile.php index f860dbe8903ad9ece5def47ec99695e1b3fc0025..b8b0251331d5c07f307295007d86ca060bab0878 100644 --- a/dev/tests/integration/testsuite/Mage/Paypal/_files/ipn_recurring_profile.php +++ b/dev/tests/integration/testsuite/Mage/Paypal/_files/ipn_recurring_profile.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Paypal * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Paypal/_files/order_express.php b/dev/tests/integration/testsuite/Mage/Paypal/_files/order_express.php index eff44c08e18b4ceb0b9cc29eb3ea496a922a731f..5f70d40e352389a5e07a83a89cb51d7911baeb2b 100644 --- a/dev/tests/integration/testsuite/Mage/Paypal/_files/order_express.php +++ b/dev/tests/integration/testsuite/Mage/Paypal/_files/order_express.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Paypal * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Paypal/_files/order_payflowpro.php b/dev/tests/integration/testsuite/Mage/Paypal/_files/order_payflowpro.php index 517e6fb53ed10d43acbbbf8a714b573b37fb929e..a5d97fede33364d23acba42dbc64b2ef8891ba69 100644 --- a/dev/tests/integration/testsuite/Mage/Paypal/_files/order_payflowpro.php +++ b/dev/tests/integration/testsuite/Mage/Paypal/_files/order_payflowpro.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Paypal * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Paypal/_files/order_standard.php b/dev/tests/integration/testsuite/Mage/Paypal/_files/order_standard.php index 9178a4779cfd94d5db38cd04735efe0234a88a93..90e17633c5b59a1a05c1c6bd190c21c76f4ec613 100644 --- a/dev/tests/integration/testsuite/Mage/Paypal/_files/order_standard.php +++ b/dev/tests/integration/testsuite/Mage/Paypal/_files/order_standard.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Paypal * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Paypal/_files/quote_payment.php b/dev/tests/integration/testsuite/Mage/Paypal/_files/quote_payment.php index 739444c5d2a4300c7d499b8f69caf21f8212a0c2..44f52729ace6783ec020b49fa6a6b0953541e99f 100644 --- a/dev/tests/integration/testsuite/Mage/Paypal/_files/quote_payment.php +++ b/dev/tests/integration/testsuite/Mage/Paypal/_files/quote_payment.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Paypal * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Paypal/_files/recurring_profile.php b/dev/tests/integration/testsuite/Mage/Paypal/_files/recurring_profile.php index 733a49653dd1a3adda9e4cf171697d00738b283f..3e2a9291265e592c193fe3725e6330faa1d87d65 100644 --- a/dev/tests/integration/testsuite/Mage/Paypal/_files/recurring_profile.php +++ b/dev/tests/integration/testsuite/Mage/Paypal/_files/recurring_profile.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Paypal * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Paypal/controllers/ExpressControllerTest.php b/dev/tests/integration/testsuite/Mage/Paypal/controllers/ExpressControllerTest.php index 171dcd6b3305ffe6eebb5592ebd5d811177c50a0..c54a7fcf50a3194a21320d38bc1b70e554357615 100644 --- a/dev/tests/integration/testsuite/Mage/Paypal/controllers/ExpressControllerTest.php +++ b/dev/tests/integration/testsuite/Mage/Paypal/controllers/ExpressControllerTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Paypal * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Paypal/controllers/HostedproControllerTest.php b/dev/tests/integration/testsuite/Mage/Paypal/controllers/HostedproControllerTest.php index 8ff333829d2c68241b91a2bc19e605976fb1fa44..251aebfbd040c16ff12980412452ca722666e2d6 100644 --- a/dev/tests/integration/testsuite/Mage/Paypal/controllers/HostedproControllerTest.php +++ b/dev/tests/integration/testsuite/Mage/Paypal/controllers/HostedproControllerTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Paypal * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Paypal/controllers/PayflowControllerTest.php b/dev/tests/integration/testsuite/Mage/Paypal/controllers/PayflowControllerTest.php index 6a0520cc75165ab8a79c0f676bf568341a93b096..6e2bc52276478a6910a728d28ca94d50666b3ef3 100644 --- a/dev/tests/integration/testsuite/Mage/Paypal/controllers/PayflowControllerTest.php +++ b/dev/tests/integration/testsuite/Mage/Paypal/controllers/PayflowControllerTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Paypal * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Paypal/controllers/PayflowadvancedControllerTest.php b/dev/tests/integration/testsuite/Mage/Paypal/controllers/PayflowadvancedControllerTest.php index 71c50af18095141b4fb234c55effd5b27b8b263a..35f992a36979d886e7428edcb2ddef7256529206 100644 --- a/dev/tests/integration/testsuite/Mage/Paypal/controllers/PayflowadvancedControllerTest.php +++ b/dev/tests/integration/testsuite/Mage/Paypal/controllers/PayflowadvancedControllerTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Paypal * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Paypal/controllers/StandardControllerTest.php b/dev/tests/integration/testsuite/Mage/Paypal/controllers/StandardControllerTest.php index 2f535d9321bfbf794c7441dbfe8c546bbebcc57d..305ce6cd2058e9ca78b8256bcc60e2507d7ea9cf 100644 --- a/dev/tests/integration/testsuite/Mage/Paypal/controllers/StandardControllerTest.php +++ b/dev/tests/integration/testsuite/Mage/Paypal/controllers/StandardControllerTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Paypal * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/ProductAlert/Block/Email/StockTest.php b/dev/tests/integration/testsuite/Mage/ProductAlert/Block/Email/StockTest.php index 52d98137ab9534a32e555504843639cca02c58bb..4f2918c0fe53665c11efec0cc47bc38cc01dc7fc 100644 --- a/dev/tests/integration/testsuite/Mage/ProductAlert/Block/Email/StockTest.php +++ b/dev/tests/integration/testsuite/Mage/ProductAlert/Block/Email/StockTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_ProductAlert * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Reports/Block/Adminhtml/GridTest.php b/dev/tests/integration/testsuite/Mage/Reports/Block/Adminhtml/GridTest.php index 5e24bc1047668d9cecfe3075dbe2fdcbdce486eb..98d9bb3cf3cd1578f2258e2e7640949d5aa9e8a7 100644 --- a/dev/tests/integration/testsuite/Mage/Reports/Block/Adminhtml/GridTest.php +++ b/dev/tests/integration/testsuite/Mage/Reports/Block/Adminhtml/GridTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Reports * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Reports/Block/WidgetTest.php b/dev/tests/integration/testsuite/Mage/Reports/Block/WidgetTest.php index 6a7aac025906aa67c2acbbb5e2832cb68739d8e9..388121c137d8a11ed898c141789a87d99c9fead3 100644 --- a/dev/tests/integration/testsuite/Mage/Reports/Block/WidgetTest.php +++ b/dev/tests/integration/testsuite/Mage/Reports/Block/WidgetTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Reports * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Review/Model/Resource/Review/Product/CollectionTest.php b/dev/tests/integration/testsuite/Mage/Review/Model/Resource/Review/Product/CollectionTest.php index 3f96895323ab54a4a4a827bcf9330acafe3196fb..60614921df5d8c536982a5e16512574b7d347338 100644 --- a/dev/tests/integration/testsuite/Mage/Review/Model/Resource/Review/Product/CollectionTest.php +++ b/dev/tests/integration/testsuite/Mage/Review/Model/Resource/Review/Product/CollectionTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Review * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Review/_files/different_reviews.php b/dev/tests/integration/testsuite/Mage/Review/_files/different_reviews.php index 978404ecf16d8b01d74ba65cbb846aa8843ad544..a677730f5ff0b7f04b734dc932141f7cd152b2c9 100644 --- a/dev/tests/integration/testsuite/Mage/Review/_files/different_reviews.php +++ b/dev/tests/integration/testsuite/Mage/Review/_files/different_reviews.php @@ -21,7 +21,7 @@ * @category Mage * @package Mage_Review * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Review/_files/review_xss.php b/dev/tests/integration/testsuite/Mage/Review/_files/review_xss.php index d3f76ff2bac29521730f47b795c55846a39057ff..981046a49f0419742be0ec75d9558669a0435fe7 100644 --- a/dev/tests/integration/testsuite/Mage/Review/_files/review_xss.php +++ b/dev/tests/integration/testsuite/Mage/Review/_files/review_xss.php @@ -21,7 +21,7 @@ * @category Mage * @package Mage_Review * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Review/_files/reviews.php b/dev/tests/integration/testsuite/Mage/Review/_files/reviews.php index bf18334bf0f92043cf3c0e4a29556acb2de8d306..310aa524e99692ac46421a48a49e6a9bbee3b1df 100644 --- a/dev/tests/integration/testsuite/Mage/Review/_files/reviews.php +++ b/dev/tests/integration/testsuite/Mage/Review/_files/reviews.php @@ -21,7 +21,7 @@ * @category Mage * @package Mage_Review * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Review/controllers/ProductControllerTest.php b/dev/tests/integration/testsuite/Mage/Review/controllers/ProductControllerTest.php index 48451cb6adc16527cb0fc66e284277f8ee2b68d2..60c33d800c01f144db8f1cfab17070368a8c8f51 100644 --- a/dev/tests/integration/testsuite/Mage/Review/controllers/ProductControllerTest.php +++ b/dev/tests/integration/testsuite/Mage/Review/controllers/ProductControllerTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Review * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Rss/Block/Order/StatusTest.php b/dev/tests/integration/testsuite/Mage/Rss/Block/Order/StatusTest.php index f606cb904787915d83930a0c8a6a1d85d13a20b2..f9ba964fb1cd50aecb7eef25ab5a573753bbc811 100644 --- a/dev/tests/integration/testsuite/Mage/Rss/Block/Order/StatusTest.php +++ b/dev/tests/integration/testsuite/Mage/Rss/Block/Order/StatusTest.php @@ -21,7 +21,7 @@ * @category Mage * @package Mage_Rss * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Rss/controllers/CatalogControllerTest.php b/dev/tests/integration/testsuite/Mage/Rss/controllers/CatalogControllerTest.php index 7f1c7cbaa24e9cb88f890b73a2fa60f318ec2ff6..7b23e1f33a99423146217e00b2f83bb3bed6896f 100644 --- a/dev/tests/integration/testsuite/Mage/Rss/controllers/CatalogControllerTest.php +++ b/dev/tests/integration/testsuite/Mage/Rss/controllers/CatalogControllerTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Rss * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Rss/controllers/IndexControllerTest.php b/dev/tests/integration/testsuite/Mage/Rss/controllers/IndexControllerTest.php index e3d07b6ecf1a0a7b36c5fbca1b1f0a77e9157e28..6a23c1a4a0d0723b23f70c1d944ab41e64a915c4 100644 --- a/dev/tests/integration/testsuite/Mage/Rss/controllers/IndexControllerTest.php +++ b/dev/tests/integration/testsuite/Mage/Rss/controllers/IndexControllerTest.php @@ -21,7 +21,7 @@ * @category Mage * @package Mage_Rss * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Rss/controllers/OrderControllerTest.php b/dev/tests/integration/testsuite/Mage/Rss/controllers/OrderControllerTest.php index 50821863e3d82a8d819d6cac47262d668f11641d..63f6dc71fec654c621c7e4683191af1d9fd31c15 100644 --- a/dev/tests/integration/testsuite/Mage/Rss/controllers/OrderControllerTest.php +++ b/dev/tests/integration/testsuite/Mage/Rss/controllers/OrderControllerTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Rss * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Rule/Model/Condition/AbstractTest.php b/dev/tests/integration/testsuite/Mage/Rule/Model/Condition/AbstractTest.php index f6c1a8e712014856b43061e261048cf4c56df271..84d384070ecd8e1c18419d87ad99eba09b815c55 100644 --- a/dev/tests/integration/testsuite/Mage/Rule/Model/Condition/AbstractTest.php +++ b/dev/tests/integration/testsuite/Mage/Rule/Model/Condition/AbstractTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Rule * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Sales/Block/Adminhtml/Report/Filter/Form/CouponTest.php b/dev/tests/integration/testsuite/Mage/Sales/Block/Adminhtml/Report/Filter/Form/CouponTest.php index 04b94ae8262f25a4cc838b352e3e73de6524c3a4..25bbaefc66cbbde3f189ef33110f502bda5b86f2 100644 --- a/dev/tests/integration/testsuite/Mage/Sales/Block/Adminhtml/Report/Filter/Form/CouponTest.php +++ b/dev/tests/integration/testsuite/Mage/Sales/Block/Adminhtml/Report/Filter/Form/CouponTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Sales * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Sales/Block/Order/CommentsTest.php b/dev/tests/integration/testsuite/Mage/Sales/Block/Order/CommentsTest.php index e5f9e8237442d87efddaff1e298464694fa95720..d605ed5b32d798d1de39a0cd39d5dfd3b971720c 100644 --- a/dev/tests/integration/testsuite/Mage/Sales/Block/Order/CommentsTest.php +++ b/dev/tests/integration/testsuite/Mage/Sales/Block/Order/CommentsTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Sales * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Sales/Block/Order/Creditmemo/ItemsTest.php b/dev/tests/integration/testsuite/Mage/Sales/Block/Order/Creditmemo/ItemsTest.php index e838a0bfa110e0df38450374ebeade9c1d55269f..a6ae2a7431d3c80062b183ae536a8a4a7a4ebac1 100644 --- a/dev/tests/integration/testsuite/Mage/Sales/Block/Order/Creditmemo/ItemsTest.php +++ b/dev/tests/integration/testsuite/Mage/Sales/Block/Order/Creditmemo/ItemsTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Sales * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Sales/Block/Order/Invoice/ItemsTest.php b/dev/tests/integration/testsuite/Mage/Sales/Block/Order/Invoice/ItemsTest.php index 6cc2981b686da0c42bd5d1013e59597bcaaf030a..1b90ed76833e12945ec9b7d621ed19a02366258b 100644 --- a/dev/tests/integration/testsuite/Mage/Sales/Block/Order/Invoice/ItemsTest.php +++ b/dev/tests/integration/testsuite/Mage/Sales/Block/Order/Invoice/ItemsTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Sales * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Sales/Block/Order/Print/CreditmemoTest.php b/dev/tests/integration/testsuite/Mage/Sales/Block/Order/Print/CreditmemoTest.php index 153a3a0e7b89c30184a6674ab4bb1c90e60b7d79..da15d72837a7aba71a0019b2dc2aebe74631888d 100644 --- a/dev/tests/integration/testsuite/Mage/Sales/Block/Order/Print/CreditmemoTest.php +++ b/dev/tests/integration/testsuite/Mage/Sales/Block/Order/Print/CreditmemoTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Sales * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Sales/Block/Order/Print/InvoiceTest.php b/dev/tests/integration/testsuite/Mage/Sales/Block/Order/Print/InvoiceTest.php index 51079880dbced0bfd6fda12b75394a375b812e1a..56243d876ac0ef251373107fa1ef0f0ba192a721 100644 --- a/dev/tests/integration/testsuite/Mage/Sales/Block/Order/Print/InvoiceTest.php +++ b/dev/tests/integration/testsuite/Mage/Sales/Block/Order/Print/InvoiceTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Sales * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Sales/Block/Order/Shipment/ItemsTest.php b/dev/tests/integration/testsuite/Mage/Sales/Block/Order/Shipment/ItemsTest.php index 3a5efc44abe7b2981ac67f95b8eb43a449a479be..b43dfe8e2fbacbc7552929b774137c75a84e5643 100644 --- a/dev/tests/integration/testsuite/Mage/Sales/Block/Order/Shipment/ItemsTest.php +++ b/dev/tests/integration/testsuite/Mage/Sales/Block/Order/Shipment/ItemsTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Sales * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Sales/Block/Order/TotalsTest.php b/dev/tests/integration/testsuite/Mage/Sales/Block/Order/TotalsTest.php index 3fb658cf8e84a372058be69e6282d25e4a10dcd0..48bb7fb4e1a50f1164af002fb22d3bc7587789ec 100644 --- a/dev/tests/integration/testsuite/Mage/Sales/Block/Order/TotalsTest.php +++ b/dev/tests/integration/testsuite/Mage/Sales/Block/Order/TotalsTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Sales * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Sales/Block/Recurring/Profile/ViewTest.php b/dev/tests/integration/testsuite/Mage/Sales/Block/Recurring/Profile/ViewTest.php index e9c14342751a9512ae75e1dc078cf7f414862c65..dd8fb038b08033d00e72cadec1ce631270282753 100644 --- a/dev/tests/integration/testsuite/Mage/Sales/Block/Recurring/Profile/ViewTest.php +++ b/dev/tests/integration/testsuite/Mage/Sales/Block/Recurring/Profile/ViewTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Sales * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Sales/Model/AbstractTest.php b/dev/tests/integration/testsuite/Mage/Sales/Model/AbstractTest.php index a004085b3d731e776e67be9e0cd23e85b54314ac..0177a1166441353296c6d2b8344069a9844cf557 100644 --- a/dev/tests/integration/testsuite/Mage/Sales/Model/AbstractTest.php +++ b/dev/tests/integration/testsuite/Mage/Sales/Model/AbstractTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Sales * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Sales_Model_AbstractTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/integration/testsuite/Mage/Sales/Model/Order/CreditmemoTest.php b/dev/tests/integration/testsuite/Mage/Sales/Model/Order/CreditmemoTest.php index 38f30bfd97088b0e9fbd3d1c9af0e57fdf902ddb..a061b1a909a28eb72eb92609e8105d6a0ca70150 100644 --- a/dev/tests/integration/testsuite/Mage/Sales/Model/Order/CreditmemoTest.php +++ b/dev/tests/integration/testsuite/Mage/Sales/Model/Order/CreditmemoTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Sales * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Sales/Model/Order/InvoiceTest.php b/dev/tests/integration/testsuite/Mage/Sales/Model/Order/InvoiceTest.php index 50a138c65b5d4a6c793fe8a60bd9453f9b6da2fa..d3e741bb3e8285aa3ea90323788801c7a48db205 100644 --- a/dev/tests/integration/testsuite/Mage/Sales/Model/Order/InvoiceTest.php +++ b/dev/tests/integration/testsuite/Mage/Sales/Model/Order/InvoiceTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Sales * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Sales/Model/Order/OrderTest.php b/dev/tests/integration/testsuite/Mage/Sales/Model/Order/OrderTest.php index 6479c400c261d65906e7280ae42bced3a0cf806c..3ac5092563125b50ff1187b2260c9f22a922bce7 100644 --- a/dev/tests/integration/testsuite/Mage/Sales/Model/Order/OrderTest.php +++ b/dev/tests/integration/testsuite/Mage/Sales/Model/Order/OrderTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Sales * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Sales/Model/Order/Payment/TransactionTest.php b/dev/tests/integration/testsuite/Mage/Sales/Model/Order/Payment/TransactionTest.php index b200e465291b418b09dd4b0f812a456a1bc78459..58180e13babb1b0fb7414908c179b7942b9b6203 100644 --- a/dev/tests/integration/testsuite/Mage/Sales/Model/Order/Payment/TransactionTest.php +++ b/dev/tests/integration/testsuite/Mage/Sales/Model/Order/Payment/TransactionTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Sales * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Sales/Model/Order/Shipment/TrackTest.php b/dev/tests/integration/testsuite/Mage/Sales/Model/Order/Shipment/TrackTest.php index 0bdbab3a8ca10630440dccbaf388297c1491bc39..a39e3054dbbcf87007e4e10cd01c410ce9aaf50a 100644 --- a/dev/tests/integration/testsuite/Mage/Sales/Model/Order/Shipment/TrackTest.php +++ b/dev/tests/integration/testsuite/Mage/Sales/Model/Order/Shipment/TrackTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Sale * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Sales/Model/Order/ShipmentTest.php b/dev/tests/integration/testsuite/Mage/Sales/Model/Order/ShipmentTest.php index 69acd80fd6d077c47e37eac6723aaa64a809a107..f1a5823b9f59c01953ac6bcf4408e32e0382a997 100644 --- a/dev/tests/integration/testsuite/Mage/Sales/Model/Order/ShipmentTest.php +++ b/dev/tests/integration/testsuite/Mage/Sales/Model/Order/ShipmentTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Sales * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Sales/Model/QuoteTest.php b/dev/tests/integration/testsuite/Mage/Sales/Model/QuoteTest.php index 6528d2ef222b6c216364e29a40600de61717f7f6..76fa94fac4645b12370e5cb70843ed4673d872d8 100644 --- a/dev/tests/integration/testsuite/Mage/Sales/Model/QuoteTest.php +++ b/dev/tests/integration/testsuite/Mage/Sales/Model/QuoteTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Sales * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Sales/_files/address_data.php b/dev/tests/integration/testsuite/Mage/Sales/_files/address_data.php index f8c6ee73aef3b91e3ac18801dafb299a266f731b..2d39d66de9d8f40a569e83a1d87185dd5bd4af9f 100644 --- a/dev/tests/integration/testsuite/Mage/Sales/_files/address_data.php +++ b/dev/tests/integration/testsuite/Mage/Sales/_files/address_data.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Sales * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Sales/_files/order.php b/dev/tests/integration/testsuite/Mage/Sales/_files/order.php index 930c7bc0542a5bf8ce1b8d065c6536cb49258589..25460f62ab057979cd23c4c9a5a3660b40c7b7ee 100644 --- a/dev/tests/integration/testsuite/Mage/Sales/_files/order.php +++ b/dev/tests/integration/testsuite/Mage/Sales/_files/order.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Sales * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Sales/_files/order_paid_with_saved_cc.php b/dev/tests/integration/testsuite/Mage/Sales/_files/order_paid_with_saved_cc.php index e610911729b56171d9e8ea1a5f92fa412ffb33b6..55c108f96006100b9854bea2ed5c47ff4a205467 100644 --- a/dev/tests/integration/testsuite/Mage/Sales/_files/order_paid_with_saved_cc.php +++ b/dev/tests/integration/testsuite/Mage/Sales/_files/order_paid_with_saved_cc.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Sales * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Sales/_files/order_paid_with_verisign.php b/dev/tests/integration/testsuite/Mage/Sales/_files/order_paid_with_verisign.php index af23f227689f7b3206e0f2ff6a9c77bff07174b3..fa2a7a3c16eb2ab7f575c58da1a2ac955f85c45e 100644 --- a/dev/tests/integration/testsuite/Mage/Sales/_files/order_paid_with_verisign.php +++ b/dev/tests/integration/testsuite/Mage/Sales/_files/order_paid_with_verisign.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Sales * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Sales/_files/quote.php b/dev/tests/integration/testsuite/Mage/Sales/_files/quote.php index 9cca2b564ea52cb2273a56c78599f8d67e3a0898..073a3b5a34077e86ef9eb09a409832faef21cb11 100644 --- a/dev/tests/integration/testsuite/Mage/Sales/_files/quote.php +++ b/dev/tests/integration/testsuite/Mage/Sales/_files/quote.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Sales * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Sales/_files/transactions.php b/dev/tests/integration/testsuite/Mage/Sales/_files/transactions.php index bf46a3bbf3f1a4bdf4871cfd3965c26ba43d5eaa..3ecd502db0e2533fc8f82a1b779beff2079eb9e7 100644 --- a/dev/tests/integration/testsuite/Mage/Sales/_files/transactions.php +++ b/dev/tests/integration/testsuite/Mage/Sales/_files/transactions.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Sales * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Shipping/Helper/DataTest.php b/dev/tests/integration/testsuite/Mage/Shipping/Helper/DataTest.php index db6e68f84f2c0cd3b2397176a2f594476ba26c19..165588faae829bd5df6dfd3b0af596ea49a940f4 100644 --- a/dev/tests/integration/testsuite/Mage/Shipping/Helper/DataTest.php +++ b/dev/tests/integration/testsuite/Mage/Shipping/Helper/DataTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Shipping * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Sitemap/Helper/DataTest.php b/dev/tests/integration/testsuite/Mage/Sitemap/Helper/DataTest.php index b1d54ac9b52db4777cf257d50984859dea221c87..61b6047a215f93570d30d8ef2d47203dae9726ee 100644 --- a/dev/tests/integration/testsuite/Mage/Sitemap/Helper/DataTest.php +++ b/dev/tests/integration/testsuite/Mage/Sitemap/Helper/DataTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Sitemap * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Sitemap/Model/Resource/Catalog/ProductTest.php b/dev/tests/integration/testsuite/Mage/Sitemap/Model/Resource/Catalog/ProductTest.php index b891faddf3d027d0f479c3ffbba054c191745e4a..122fbb88acd12c162c7f6110b3d375ae527dacfd 100644 --- a/dev/tests/integration/testsuite/Mage/Sitemap/Model/Resource/Catalog/ProductTest.php +++ b/dev/tests/integration/testsuite/Mage/Sitemap/Model/Resource/Catalog/ProductTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Sitemap * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Sitemap/_files/sitemap_products.php b/dev/tests/integration/testsuite/Mage/Sitemap/_files/sitemap_products.php index dbdd5e80372a9d188bc1a5ff9afce077fb604e21..29dc96e4dcfe246e60178d6419e2158d30feb6b6 100644 --- a/dev/tests/integration/testsuite/Mage/Sitemap/_files/sitemap_products.php +++ b/dev/tests/integration/testsuite/Mage/Sitemap/_files/sitemap_products.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Sitemap * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Sitemap/_files/sitemap_products_rollback.php b/dev/tests/integration/testsuite/Mage/Sitemap/_files/sitemap_products_rollback.php index 194616c78b1619a745dbb397596738e207ac9519..19ee62226e1f3c9abff30acd9e106939ac9c9f61 100644 --- a/dev/tests/integration/testsuite/Mage/Sitemap/_files/sitemap_products_rollback.php +++ b/dev/tests/integration/testsuite/Mage/Sitemap/_files/sitemap_products_rollback.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Sitemap * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Tag/Block/Customer/ViewTest.php b/dev/tests/integration/testsuite/Mage/Tag/Block/Customer/ViewTest.php index faf52e30974fdeb064829a0109ca4f04cae48e48..878f3a5f03bd0fd4e33f9bee2d7eb604a074b79c 100644 --- a/dev/tests/integration/testsuite/Mage/Tag/Block/Customer/ViewTest.php +++ b/dev/tests/integration/testsuite/Mage/Tag/Block/Customer/ViewTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Tag * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Tag/Block/Product/ResultTest.php b/dev/tests/integration/testsuite/Mage/Tag/Block/Product/ResultTest.php index f56ba670fec98963da6c2a895a6a4965f90ba0ad..0110f25be82ee00d6207ac47d2906cb73a44303a 100644 --- a/dev/tests/integration/testsuite/Mage/Tag/Block/Product/ResultTest.php +++ b/dev/tests/integration/testsuite/Mage/Tag/Block/Product/ResultTest.php @@ -21,7 +21,7 @@ * @category Mage * @package Mage_Tag * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Tag/Model/TagTest.php b/dev/tests/integration/testsuite/Mage/Tag/Model/TagTest.php index d959dea82cb916636d8c017498d039a0ca3b1b15..d8a0229a269ab492b7a12ee9e3a5f98c0bfa83d2 100644 --- a/dev/tests/integration/testsuite/Mage/Tag/Model/TagTest.php +++ b/dev/tests/integration/testsuite/Mage/Tag/Model/TagTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Tag * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Tax/Helper/DataTest.php b/dev/tests/integration/testsuite/Mage/Tax/Helper/DataTest.php index a9839ce99fd184a2c1def1aa12aee3727f0f0fa4..eb608428d02449c1e489f71bcfc0bc6d21c72349 100644 --- a/dev/tests/integration/testsuite/Mage/Tax/Helper/DataTest.php +++ b/dev/tests/integration/testsuite/Mage/Tax/Helper/DataTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Tax * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Tax/Model/Calculation/RuleTest.php b/dev/tests/integration/testsuite/Mage/Tax/Model/Calculation/RuleTest.php index d018f75f253364926ffa60dbac9c62ca49aac9a2..58779ea169ad093cc594b63fcc53f7fb5a68f98b 100644 --- a/dev/tests/integration/testsuite/Mage/Tax/Model/Calculation/RuleTest.php +++ b/dev/tests/integration/testsuite/Mage/Tax/Model/Calculation/RuleTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Tax * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Tax/Model/ConfigTest.php b/dev/tests/integration/testsuite/Mage/Tax/Model/ConfigTest.php index 0770c52e7d74a534b578a54edd57edfd2950bc28..e7ab0c3880bbd8ca5142a2571fb5706603b80d36 100644 --- a/dev/tests/integration/testsuite/Mage/Tax/Model/ConfigTest.php +++ b/dev/tests/integration/testsuite/Mage/Tax/Model/ConfigTest.php @@ -18,7 +18,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Tax/Model/Resource/Calculation/Rule/CollectionTest.php b/dev/tests/integration/testsuite/Mage/Tax/Model/Resource/Calculation/Rule/CollectionTest.php index 949efebd02c2c112906767316281b5b68c5fcc4c..c9be1c587032132ca0be47d9fa7269f7ef43ebec 100644 --- a/dev/tests/integration/testsuite/Mage/Tax/Model/Resource/Calculation/Rule/CollectionTest.php +++ b/dev/tests/integration/testsuite/Mage/Tax/Model/Resource/Calculation/Rule/CollectionTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Tax * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Tax/Model/Resource/CalculationTest.php b/dev/tests/integration/testsuite/Mage/Tax/Model/Resource/CalculationTest.php index 3a0a4f89cb0f6ff5b7ce1960234fb0b1f4a0824f..e1baed650eced289ce853dd26c11f2221e8c8884 100644 --- a/dev/tests/integration/testsuite/Mage/Tax/Model/Resource/CalculationTest.php +++ b/dev/tests/integration/testsuite/Mage/Tax/Model/Resource/CalculationTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Tax * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Tax/_files/tax_classes.php b/dev/tests/integration/testsuite/Mage/Tax/_files/tax_classes.php index 71270acd2d9122fb906f3c547e355b75394859ec..1ce560e784fb845475e2dd788b04641f423b8076 100644 --- a/dev/tests/integration/testsuite/Mage/Tax/_files/tax_classes.php +++ b/dev/tests/integration/testsuite/Mage/Tax/_files/tax_classes.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Tax * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Theme/Block/Adminhtml/System/Design/Theme/Edit/Tab/GeneralTest.php b/dev/tests/integration/testsuite/Mage/Theme/Block/Adminhtml/System/Design/Theme/Edit/Tab/GeneralTest.php new file mode 100644 index 0000000000000000000000000000000000000000..012dfd66cfcbad9b7233f1473a0a00d8bdd2a6dc --- /dev/null +++ b/dev/tests/integration/testsuite/Mage/Theme/Block/Adminhtml/System/Design/Theme/Edit/Tab/GeneralTest.php @@ -0,0 +1,63 @@ +<?php +/** + * Magento + * + * NOTICE OF LICENSE + * + * This source file is subject to the Open Software License (OSL 3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * http://opensource.org/licenses/osl-3.0.php + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@magentocommerce.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade Magento to newer + * versions in the future. If you wish to customize Magento for your + * needs please refer to http://www.magentocommerce.com for more information. + * + * @category Mage + * @package Mage_Theme + * @subpackage integration_tests + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) + * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) + */ + +class Mage_Theme_Block_Adminhtml_System_Design_Theme_Edit_Tab_GeneralTest extends PHPUnit_Framework_TestCase +{ + /** @var Mage_Core_Model_Layout */ + protected $_layout; + + /** @var Mage_Core_Model_Theme */ + protected $_theme; + + /** @var Mage_Theme_Block_Adminhtml_System_Design_Theme_Edit_Tab_General */ + protected $_block; + + protected function setUp() + { + $this->_layout = Mage::getModel('Mage_Core_Model_Layout'); + $this->_theme = Mage::getModel('Mage_Core_Model_Theme'); + $this->_block = $this->_layout->createBlock('Mage_Theme_Block_Adminhtml_System_Design_Theme_Edit_Tab_General'); + } + + protected function tearDown() + { + $this->_theme = null; + $this->_layout = null; + $this->_block = null; + } + + public function testToHtmlPreviewImageNote() + { + Mage::register('current_theme', $this->_theme); + $this->_block->setArea('adminhtml'); + + $this->_block->toHtml(); + + $noticeText = $this->_block->getForm()->getElement('preview_image')->getNote(); + $this->assertNotEmpty($noticeText); + } +} diff --git a/dev/tests/integration/testsuite/Mage/User/Block/Role/Grid/UserTest.php b/dev/tests/integration/testsuite/Mage/User/Block/Role/Grid/UserTest.php index ac530345ee939e9c7b0714c05f58f7b8cc810d6f..020678bcf783c1610593184a4f0b35d73cc32260 100644 --- a/dev/tests/integration/testsuite/Mage/User/Block/Role/Grid/UserTest.php +++ b/dev/tests/integration/testsuite/Mage/User/Block/Role/Grid/UserTest.php @@ -21,13 +21,10 @@ * @category Magento * @package Mage_User * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ -/** - * @group module:Mage_User - */ class Mage_User_Block_Role_Grid_UserTest extends PHPUnit_Framework_TestCase { /** diff --git a/dev/tests/integration/testsuite/Mage/User/Block/Role/Tab/EditTest.php b/dev/tests/integration/testsuite/Mage/User/Block/Role/Tab/EditTest.php index c1988510d7398f0d445bfc3bf6b8b0b5830311bf..9f79949866bbc331156ca129da5b1c9cf503de50 100644 --- a/dev/tests/integration/testsuite/Mage/User/Block/Role/Tab/EditTest.php +++ b/dev/tests/integration/testsuite/Mage/User/Block/Role/Tab/EditTest.php @@ -21,13 +21,10 @@ * @category Magento * @package Mage_User * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ -/** - * @group module:Mage_User - */ class Mage_User_Block_Role_Tab_EditTest extends PHPUnit_Framework_TestCase { /** diff --git a/dev/tests/integration/testsuite/Mage/User/Helper/DataTest.php b/dev/tests/integration/testsuite/Mage/User/Helper/DataTest.php index b34a6f06566655c80fe5478536d83383db3705f1..9c5c7b7957588695c167f828802bb8456ceeac05 100644 --- a/dev/tests/integration/testsuite/Mage/User/Helper/DataTest.php +++ b/dev/tests/integration/testsuite/Mage/User/Helper/DataTest.php @@ -21,13 +21,10 @@ * @category Magento * @package Mage_User * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ -/** - * @group module:Mage_User - */ class Mage_User_Helper_DataTest extends PHPUnit_Framework_TestCase { /** diff --git a/dev/tests/integration/testsuite/Mage/User/Model/Resource/Role/CollectionTest.php b/dev/tests/integration/testsuite/Mage/User/Model/Resource/Role/CollectionTest.php index ceda998f3b55c98784eda1ac8e3265a930e144bc..d4755bcfc0625defde92f0e84cdf02b6c3372cf4 100644 --- a/dev/tests/integration/testsuite/Mage/User/Model/Resource/Role/CollectionTest.php +++ b/dev/tests/integration/testsuite/Mage/User/Model/Resource/Role/CollectionTest.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_User - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/User/Model/Resource/Role/User/CollectionTest.php b/dev/tests/integration/testsuite/Mage/User/Model/Resource/Role/User/CollectionTest.php index 4fe0ac68c5f2b0926bc8e4a36a7741f9c619f525..d109018ba69d7b50d485c405efb677516d0dd225 100644 --- a/dev/tests/integration/testsuite/Mage/User/Model/Resource/Role/User/CollectionTest.php +++ b/dev/tests/integration/testsuite/Mage/User/Model/Resource/Role/User/CollectionTest.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_User - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/User/Model/Resource/RoleTest.php b/dev/tests/integration/testsuite/Mage/User/Model/Resource/RoleTest.php index 4d3d18f7a1b483c8347d5099f4a5ca0feee7dd43..c24ec950c46e811926f6122585afc050b7a8df25 100644 --- a/dev/tests/integration/testsuite/Mage/User/Model/Resource/RoleTest.php +++ b/dev/tests/integration/testsuite/Mage/User/Model/Resource/RoleTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_User * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/User/Model/Resource/Rules/CollectionTest.php b/dev/tests/integration/testsuite/Mage/User/Model/Resource/Rules/CollectionTest.php index e07394a7666d447214a7ddebcf08ff5cceef1ca5..c4f91a4d59570acb0deb056050c4dac65a4f9ae6 100644 --- a/dev/tests/integration/testsuite/Mage/User/Model/Resource/Rules/CollectionTest.php +++ b/dev/tests/integration/testsuite/Mage/User/Model/Resource/Rules/CollectionTest.php @@ -21,13 +21,10 @@ * @category Magento * @package Mage_User * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ -/** - * @group module:Mage_User - */ class Mage_User_Model_Resource_Rules_CollectionTest extends PHPUnit_Framework_TestCase { /** diff --git a/dev/tests/integration/testsuite/Mage/User/Model/RoleTest.php b/dev/tests/integration/testsuite/Mage/User/Model/RoleTest.php index fd818243b6fd5dd2624c590df70c339aeec658e9..2f7f53865519f3ff70c492e092ef328bbc8d1d19 100644 --- a/dev/tests/integration/testsuite/Mage/User/Model/RoleTest.php +++ b/dev/tests/integration/testsuite/Mage/User/Model/RoleTest.php @@ -21,13 +21,10 @@ * @category Magento * @package Mage_User * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ -/** - * @group module:Mage_User - */ class Mage_User_Model_RoleTest extends PHPUnit_Framework_TestCase { /** diff --git a/dev/tests/integration/testsuite/Mage/User/Model/RulesTest.php b/dev/tests/integration/testsuite/Mage/User/Model/RulesTest.php index ceeb06c3873788ddf39a042dfa7ec1f6999829b5..669e46876b49a7fa48e6a9c75e76aa51a573b88b 100644 --- a/dev/tests/integration/testsuite/Mage/User/Model/RulesTest.php +++ b/dev/tests/integration/testsuite/Mage/User/Model/RulesTest.php @@ -21,13 +21,10 @@ * @category Magento * @package Mage_User * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ -/** - * @group module:Mage_User - */ class Mage_User_Model_RulesTest extends PHPUnit_Framework_TestCase { /** diff --git a/dev/tests/integration/testsuite/Mage/User/Model/UserTest.php b/dev/tests/integration/testsuite/Mage/User/Model/UserTest.php index a5afe747a2fb575554cbb9ad2c3b4826068d89d9..20baf07b2bd423755c1122ef769129c09068c0fa 100644 --- a/dev/tests/integration/testsuite/Mage/User/Model/UserTest.php +++ b/dev/tests/integration/testsuite/Mage/User/Model/UserTest.php @@ -21,13 +21,10 @@ * @category Magento * @package Mage_User * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ -/** - * @group module:Mage_User - */ class Mage_User_Model_UserTest extends PHPUnit_Framework_TestCase { /** diff --git a/dev/tests/integration/testsuite/Mage/User/_files/dummy_user.php b/dev/tests/integration/testsuite/Mage/User/_files/dummy_user.php index 9144a0ac4313acf3d99d18ddcfc7da81313e8a00..a5acc959028b10032fe021ec3b7e33e94b0bbc74 100644 --- a/dev/tests/integration/testsuite/Mage/User/_files/dummy_user.php +++ b/dev/tests/integration/testsuite/Mage/User/_files/dummy_user.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_User * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/User/controllers/Adminhtml/AuthControllerTest.php b/dev/tests/integration/testsuite/Mage/User/controllers/Adminhtml/AuthControllerTest.php index 1b7c8f317010c8b03996c15a24e21de28429b8b4..1a7a41f154663218ec1299a738adb5131da806d6 100644 --- a/dev/tests/integration/testsuite/Mage/User/controllers/Adminhtml/AuthControllerTest.php +++ b/dev/tests/integration/testsuite/Mage/User/controllers/Adminhtml/AuthControllerTest.php @@ -21,14 +21,12 @@ * @category Magento * @package Magento_User * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ /** * Test class for Mage_User_Adminhtml_AuthController. - * - * @group module:Mage_User */ class Mage_User_Adminhtml_AuthControllerTest extends Magento_Test_TestCase_ControllerAbstract { diff --git a/dev/tests/integration/testsuite/Mage/User/controllers/Adminhtml/User/RoleControllerTest.php b/dev/tests/integration/testsuite/Mage/User/controllers/Adminhtml/User/RoleControllerTest.php index 4407dcca4806fb3852edbbeb24f8d1c820f2efa9..6279058e3a46481082e3e5b387f55b23974459cb 100644 --- a/dev/tests/integration/testsuite/Mage/User/controllers/Adminhtml/User/RoleControllerTest.php +++ b/dev/tests/integration/testsuite/Mage/User/controllers/Adminhtml/User/RoleControllerTest.php @@ -21,14 +21,12 @@ * @category Magento * @package Magento_User * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ /** * Test class for Mage_User_Adminhtml_User_RoleController. - * - * @group module:Mage_User */ class Mage_User_Adminhtml_User_RoleControllerTest extends Mage_Backend_Utility_Controller { diff --git a/dev/tests/integration/testsuite/Mage/User/controllers/Adminhtml/UserControllerTest.php b/dev/tests/integration/testsuite/Mage/User/controllers/Adminhtml/UserControllerTest.php index 8f31a7bcf0ee7439e2d7d06641c1b99118e61467..8464d258fcdad2f93a7d4a39782967651b4f535e 100644 --- a/dev/tests/integration/testsuite/Mage/User/controllers/Adminhtml/UserControllerTest.php +++ b/dev/tests/integration/testsuite/Mage/User/controllers/Adminhtml/UserControllerTest.php @@ -21,13 +21,10 @@ * @category Mage * @package Mage_User * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ -/** - * @group module:Mage_User - */ class Mage_User_Adminhtml_UserControllerTest extends Mage_Backend_Utility_Controller { /** diff --git a/dev/tests/integration/testsuite/Mage/Webapi/Block/Adminhtml/FormTestAbstract.php b/dev/tests/integration/testsuite/Mage/Webapi/Block/Adminhtml/FormTestAbstract.php index 68c4df943c4eed8374a053c2aa7a045c1700f6c7..e8d011c797ff21b0b84cdfe8c7d74ac8afefd2d4 100644 --- a/dev/tests/integration/testsuite/Mage/Webapi/Block/Adminhtml/FormTestAbstract.php +++ b/dev/tests/integration/testsuite/Mage/Webapi/Block/Adminhtml/FormTestAbstract.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Block_Adminhtml_FormTestAbstract extends PHPUnit_Framework_TestCase diff --git a/dev/tests/integration/testsuite/Mage/Webapi/Block/Adminhtml/Role/Edit/FormTest.php b/dev/tests/integration/testsuite/Mage/Webapi/Block/Adminhtml/Role/Edit/FormTest.php index 16eae0f9c794de126a0c7969b2d74953a38f2090..a3b86fa4304c73edab3608ee0b85a44f19310532 100644 --- a/dev/tests/integration/testsuite/Mage/Webapi/Block/Adminhtml/Role/Edit/FormTest.php +++ b/dev/tests/integration/testsuite/Mage/Webapi/Block/Adminhtml/Role/Edit/FormTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Block_Adminhtml_Role_Edit_FormTest extends Mage_Webapi_Block_Adminhtml_FormTestAbstract diff --git a/dev/tests/integration/testsuite/Mage/Webapi/Block/Adminhtml/Role/Edit/Tab/MainTest.php b/dev/tests/integration/testsuite/Mage/Webapi/Block/Adminhtml/Role/Edit/Tab/MainTest.php index 8f5afb830350fa628a4b12133c59d3effe1c3835..0efee579d1c9673acb99d8464ea56127245cb941 100644 --- a/dev/tests/integration/testsuite/Mage/Webapi/Block/Adminhtml/Role/Edit/Tab/MainTest.php +++ b/dev/tests/integration/testsuite/Mage/Webapi/Block/Adminhtml/Role/Edit/Tab/MainTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Block_Adminhtml_Role_Edit_Tab_MainTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/integration/testsuite/Mage/Webapi/Block/Adminhtml/Role/Edit/Tab/ResourceTest.php b/dev/tests/integration/testsuite/Mage/Webapi/Block/Adminhtml/Role/Edit/Tab/ResourceTest.php index a07876536eb79ed3d80e50291e8eba86eb572f42..d392f5f7bb76374cc1ee69b2883490615308e3fd 100644 --- a/dev/tests/integration/testsuite/Mage/Webapi/Block/Adminhtml/Role/Edit/Tab/ResourceTest.php +++ b/dev/tests/integration/testsuite/Mage/Webapi/Block/Adminhtml/Role/Edit/Tab/ResourceTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Block_Adminhtml_Role_Edit_Tab_ResourceTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/integration/testsuite/Mage/Webapi/Block/Adminhtml/User/Edit/FormTest.php b/dev/tests/integration/testsuite/Mage/Webapi/Block/Adminhtml/User/Edit/FormTest.php index 02509684b7a76080aa128de440bbc5634f557dc2..aa29ac04c837d3132930f4708e2bcdd906bda4b2 100644 --- a/dev/tests/integration/testsuite/Mage/Webapi/Block/Adminhtml/User/Edit/FormTest.php +++ b/dev/tests/integration/testsuite/Mage/Webapi/Block/Adminhtml/User/Edit/FormTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Block_Adminhtml_User_Edit_FormTest extends Mage_Webapi_Block_Adminhtml_FormTestAbstract diff --git a/dev/tests/integration/testsuite/Mage/Webapi/Block/Adminhtml/User/Edit/Tab/MainTest.php b/dev/tests/integration/testsuite/Mage/Webapi/Block/Adminhtml/User/Edit/Tab/MainTest.php index d6ff31f661d120d83333a92a0f7aeaa4d70a8f91..ac50ebd6857b5e3f4abcaf9d1d11d8933f9a0a06 100644 --- a/dev/tests/integration/testsuite/Mage/Webapi/Block/Adminhtml/User/Edit/Tab/MainTest.php +++ b/dev/tests/integration/testsuite/Mage/Webapi/Block/Adminhtml/User/Edit/Tab/MainTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Block_Adminhtml_User_Edit_Tab_MainTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/integration/testsuite/Mage/Webapi/Block/Adminhtml/User/Edit/TabsTest.php b/dev/tests/integration/testsuite/Mage/Webapi/Block/Adminhtml/User/Edit/TabsTest.php index 4408b66724a143b8d32dd947f2fcb648be40574f..c582c9d0053b022bda1b071bde3e00f2bd318eaf 100644 --- a/dev/tests/integration/testsuite/Mage/Webapi/Block/Adminhtml/User/Edit/TabsTest.php +++ b/dev/tests/integration/testsuite/Mage/Webapi/Block/Adminhtml/User/Edit/TabsTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Block_Adminhtml_User_Edit_TabsTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/integration/testsuite/Mage/Webapi/Block/Adminhtml/User/EditTest.php b/dev/tests/integration/testsuite/Mage/Webapi/Block/Adminhtml/User/EditTest.php index 859cc59e29d47cf260d1f831382e9836572a0765..4179520f747a6693da5f859d45a02bf2165b4e3c 100644 --- a/dev/tests/integration/testsuite/Mage/Webapi/Block/Adminhtml/User/EditTest.php +++ b/dev/tests/integration/testsuite/Mage/Webapi/Block/Adminhtml/User/EditTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Block_Adminhtml_User_EditTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/integration/testsuite/Mage/Webapi/Helper/ConfigTest.php b/dev/tests/integration/testsuite/Mage/Webapi/Helper/ConfigTest.php index 086b53f7b6f888e32df03bca652f72c0070f157f..5b9399fefa759fe1e0a9acaf14339fe7380cd961 100644 --- a/dev/tests/integration/testsuite/Mage/Webapi/Helper/ConfigTest.php +++ b/dev/tests/integration/testsuite/Mage/Webapi/Helper/ConfigTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Webapi/Helper/DataTest.php b/dev/tests/integration/testsuite/Mage/Webapi/Helper/DataTest.php index d4dc92545edbefac2d17a1940dde6634142c0242..dd878c4534ec47649f8fe112edf2acff233889ba 100644 --- a/dev/tests/integration/testsuite/Mage/Webapi/Helper/DataTest.php +++ b/dev/tests/integration/testsuite/Mage/Webapi/Helper/DataTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Webapi/Model/Acl/RoleTest.php b/dev/tests/integration/testsuite/Mage/Webapi/Model/Acl/RoleTest.php index cd926f447d3aa3c94c0295b7bc2a4dd534fe9836..76a426447fac18310b2cea84d400a25197943603 100644 --- a/dev/tests/integration/testsuite/Mage/Webapi/Model/Acl/RoleTest.php +++ b/dev/tests/integration/testsuite/Mage/Webapi/Model/Acl/RoleTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * @magentoDataFixture Mage/Webapi/_files/role.php */ diff --git a/dev/tests/integration/testsuite/Mage/Webapi/Model/Acl/RuleTest.php b/dev/tests/integration/testsuite/Mage/Webapi/Model/Acl/RuleTest.php index 00b31715a7e467c71b8cf66d722d4b62cb764710..ffbc421e4029f3bcba56cf567543cbfb837b4e08 100644 --- a/dev/tests/integration/testsuite/Mage/Webapi/Model/Acl/RuleTest.php +++ b/dev/tests/integration/testsuite/Mage/Webapi/Model/Acl/RuleTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * @magentoDataFixture Mage/Webapi/_files/role.php */ diff --git a/dev/tests/integration/testsuite/Mage/Webapi/Model/Acl/UserTest.php b/dev/tests/integration/testsuite/Mage/Webapi/Model/Acl/UserTest.php index 89cb37eaf5b4ff5aff0a3fefd95dd6095ec2ff9b..c5cc69f88ae9574b01dd1f0e8e7abcfb14b99345 100644 --- a/dev/tests/integration/testsuite/Mage/Webapi/Model/Acl/UserTest.php +++ b/dev/tests/integration/testsuite/Mage/Webapi/Model/Acl/UserTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * @magentoDataFixture Mage/Webapi/_files/role.php */ diff --git a/dev/tests/integration/testsuite/Mage/Webapi/Model/Config/Reader/Rest/RouteGeneratorTest.php b/dev/tests/integration/testsuite/Mage/Webapi/Model/Config/Reader/Rest/RouteGeneratorTest.php index 733e34e535e21a3a65d9349aeac6ca06f56d1556..a3abc195eed4365cf96971c5220a1a360925873d 100644 --- a/dev/tests/integration/testsuite/Mage/Webapi/Model/Config/Reader/Rest/RouteGeneratorTest.php +++ b/dev/tests/integration/testsuite/Mage/Webapi/Model/Config/Reader/Rest/RouteGeneratorTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Webapi/Model/Config/RestTest.php b/dev/tests/integration/testsuite/Mage/Webapi/Model/Config/RestTest.php index 18342bb068a6fe72285f7f567d1eb478ae516c3f..a6e389e4a63621e460ac1f9881d8e6f18caaddfb 100644 --- a/dev/tests/integration/testsuite/Mage/Webapi/Model/Config/RestTest.php +++ b/dev/tests/integration/testsuite/Mage/Webapi/Model/Config/RestTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Webapi/Model/Config/Soap/DataTest.php b/dev/tests/integration/testsuite/Mage/Webapi/Model/Config/Soap/DataTest.php index f5527dbd85dfc8e2564773b9c0237ba3398dc394..c2ea7457eec8aa53e9f02d1ea36c5c9fe07fec10 100644 --- a/dev/tests/integration/testsuite/Mage/Webapi/Model/Config/Soap/DataTest.php +++ b/dev/tests/integration/testsuite/Mage/Webapi/Model/Config/Soap/DataTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Webapi/Model/Config/SoapTest.php b/dev/tests/integration/testsuite/Mage/Webapi/Model/Config/SoapTest.php index 06682ddf2cdbec6c099e1adefb3a9824a7183fd5..07d0d2e50dfe7394b3a0c9766730c1d6c1eaa9ee 100644 --- a/dev/tests/integration/testsuite/Mage/Webapi/Model/Config/SoapTest.php +++ b/dev/tests/integration/testsuite/Mage/Webapi/Model/Config/SoapTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Webapi/Model/Resource/Acl/RoleTest.php b/dev/tests/integration/testsuite/Mage/Webapi/Model/Resource/Acl/RoleTest.php index 3e6284362d7c5b6560fd01b0a4bf5e14de6a3558..93d8aa38aef357168c8235472fa8df0072f1e57f 100644 --- a/dev/tests/integration/testsuite/Mage/Webapi/Model/Resource/Acl/RoleTest.php +++ b/dev/tests/integration/testsuite/Mage/Webapi/Model/Resource/Acl/RoleTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Model_Resource_Acl_RoleTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/integration/testsuite/Mage/Webapi/Model/Resource/Acl/RuleTest.php b/dev/tests/integration/testsuite/Mage/Webapi/Model/Resource/Acl/RuleTest.php index 42b70f05d589a7a561dac1758dd5c8edcbf6d5ef..c01442b937f76aa4d4295c2ce9d319fd23734dc3 100644 --- a/dev/tests/integration/testsuite/Mage/Webapi/Model/Resource/Acl/RuleTest.php +++ b/dev/tests/integration/testsuite/Mage/Webapi/Model/Resource/Acl/RuleTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * * @magentoDataFixture Mage/Webapi/_files/role_with_rule.php diff --git a/dev/tests/integration/testsuite/Mage/Webapi/Model/Soap/AutoDiscoverTest.php b/dev/tests/integration/testsuite/Mage/Webapi/Model/Soap/AutoDiscoverTest.php index 0073f1d12d6f1915e95a6c24475ad0d8a11baaa9..35863f1542b03f452636ad6535c13039c7d2d3f4 100644 --- a/dev/tests/integration/testsuite/Mage/Webapi/Model/Soap/AutoDiscoverTest.php +++ b/dev/tests/integration/testsuite/Mage/Webapi/Model/Soap/AutoDiscoverTest.php @@ -22,7 +22,7 @@ use Zend\Soap\Wsdl; * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Webapi/Model/Soap/Security/UsernameTokenTest.php b/dev/tests/integration/testsuite/Mage/Webapi/Model/Soap/Security/UsernameTokenTest.php index f39d3b5babb9dd0ec6793d83f62f745d8317d1d6..df1184f2a082f9df2229353d3239dbca9bf3ee94 100644 --- a/dev/tests/integration/testsuite/Mage/Webapi/Model/Soap/Security/UsernameTokenTest.php +++ b/dev/tests/integration/testsuite/Mage/Webapi/Model/Soap/Security/UsernameTokenTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Webapi * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Webapi/Model/Soap/ServerTest.php b/dev/tests/integration/testsuite/Mage/Webapi/Model/Soap/ServerTest.php index cc849dde3ca5d9fe0bbdfa999882c0bc6231097a..928bfe7f8bdc9702b2614818e47837798c886725 100644 --- a/dev/tests/integration/testsuite/Mage/Webapi/Model/Soap/ServerTest.php +++ b/dev/tests/integration/testsuite/Mage/Webapi/Model/Soap/ServerTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Model_Soap_ServerTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/integration/testsuite/Mage/Webapi/Model/_files/autodiscovery/empty_property_description/class.php b/dev/tests/integration/testsuite/Mage/Webapi/Model/_files/autodiscovery/empty_property_description/class.php index b9c0d8176260305c88634fd4137a856ec9f90398..c19be66f84189f4ae0378dcbcb494942eae766e6 100644 --- a/dev/tests/integration/testsuite/Mage/Webapi/Model/_files/autodiscovery/empty_property_description/class.php +++ b/dev/tests/integration/testsuite/Mage/Webapi/Model/_files/autodiscovery/empty_property_description/class.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * @SuppressWarnings(PHPMD.UnusedFormalParameter) */ diff --git a/dev/tests/integration/testsuite/Mage/Webapi/Model/_files/autodiscovery/empty_property_description/data_type.php b/dev/tests/integration/testsuite/Mage/Webapi/Model/_files/autodiscovery/empty_property_description/data_type.php index 3b9f6dc6d2b21d469b4acd02005f25eebec3229c..9c66bd1a3147c638ec8ffe44a1c3920ead9e6ec9 100644 --- a/dev/tests/integration/testsuite/Mage/Webapi/Model/_files/autodiscovery/empty_property_description/data_type.php +++ b/dev/tests/integration/testsuite/Mage/Webapi/Model/_files/autodiscovery/empty_property_description/data_type.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Vendor_Module_Model_Webapi_Property_Empty_Description diff --git a/dev/tests/integration/testsuite/Mage/Webapi/Model/_files/autodiscovery/empty_var_tags/class.php b/dev/tests/integration/testsuite/Mage/Webapi/Model/_files/autodiscovery/empty_var_tags/class.php index 9f002c615aca45a0d75e5c6d9bcec04d3b1f9853..d0ea0828715e502c2e7ba82c0ffe0a5ae7081904 100644 --- a/dev/tests/integration/testsuite/Mage/Webapi/Model/_files/autodiscovery/empty_var_tags/class.php +++ b/dev/tests/integration/testsuite/Mage/Webapi/Model/_files/autodiscovery/empty_var_tags/class.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * @SuppressWarnings(PHPMD.UnusedFormalParameter) */ diff --git a/dev/tests/integration/testsuite/Mage/Webapi/Model/_files/autodiscovery/empty_var_tags/data_type.php b/dev/tests/integration/testsuite/Mage/Webapi/Model/_files/autodiscovery/empty_var_tags/data_type.php index 0e758baaed92a00b8daf78ca81bcb706232bab7e..116005c9984df3ff266c1b8e36c46d7a63b32f3e 100644 --- a/dev/tests/integration/testsuite/Mage/Webapi/Model/_files/autodiscovery/empty_var_tags/data_type.php +++ b/dev/tests/integration/testsuite/Mage/Webapi/Model/_files/autodiscovery/empty_var_tags/data_type.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Vendor_Module_Model_Webapi_Property_Without_Var diff --git a/dev/tests/integration/testsuite/Mage/Webapi/Model/_files/autodiscovery/invalid_deprecation_policy/class.php b/dev/tests/integration/testsuite/Mage/Webapi/Model/_files/autodiscovery/invalid_deprecation_policy/class.php index c9c42d9600fb02fcf2c1c1586d8481de05d39488..d9183b141a6b3a57a8cdd54d1094a6c4e1807e9d 100644 --- a/dev/tests/integration/testsuite/Mage/Webapi/Model/_files/autodiscovery/invalid_deprecation_policy/class.php +++ b/dev/tests/integration/testsuite/Mage/Webapi/Model/_files/autodiscovery/invalid_deprecation_policy/class.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * @SuppressWarnings(PHPMD.UnusedFormalParameter) */ diff --git a/dev/tests/integration/testsuite/Mage/Webapi/Model/_files/autodiscovery/no_resources/class.php b/dev/tests/integration/testsuite/Mage/Webapi/Model/_files/autodiscovery/no_resources/class.php index e616cc98c66a883b1f8297eb5f626267c4be1559..7d542a29406f5a929be62488f0194be434275651 100644 --- a/dev/tests/integration/testsuite/Mage/Webapi/Model/_files/autodiscovery/no_resources/class.php +++ b/dev/tests/integration/testsuite/Mage/Webapi/Model/_files/autodiscovery/no_resources/class.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * @SuppressWarnings(PHPMD.UnusedFormalParameter) */ diff --git a/dev/tests/integration/testsuite/Mage/Webapi/Model/_files/autodiscovery/reference_to_invalid_type/class.php b/dev/tests/integration/testsuite/Mage/Webapi/Model/_files/autodiscovery/reference_to_invalid_type/class.php index 02539ae427862ae9db53cfea3283f7d7a44099c1..d0da23c5f475c1011a86497d8cd3f53848c49162 100644 --- a/dev/tests/integration/testsuite/Mage/Webapi/Model/_files/autodiscovery/reference_to_invalid_type/class.php +++ b/dev/tests/integration/testsuite/Mage/Webapi/Model/_files/autodiscovery/reference_to_invalid_type/class.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * @SuppressWarnings(PHPMD.UnusedFormalParameter) */ diff --git a/dev/tests/integration/testsuite/Mage/Webapi/Model/_files/autodiscovery/several_classes_in_one_file/file_with_classes.php b/dev/tests/integration/testsuite/Mage/Webapi/Model/_files/autodiscovery/several_classes_in_one_file/file_with_classes.php index 48ab1fd858b39d49d1ae4b91f62a3c13bae06d3a..99c823a51f7905520792e12ac8462aae01dd2029 100644 --- a/dev/tests/integration/testsuite/Mage/Webapi/Model/_files/autodiscovery/several_classes_in_one_file/file_with_classes.php +++ b/dev/tests/integration/testsuite/Mage/Webapi/Model/_files/autodiscovery/several_classes_in_one_file/file_with_classes.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class First_Class diff --git a/dev/tests/integration/testsuite/Mage/Webapi/Model/_files/resource_with_invalid_interface.php b/dev/tests/integration/testsuite/Mage/Webapi/Model/_files/resource_with_invalid_interface.php index e986c0485a2c3a384f2938d97dcf8bb3690b4854..f9fc68ea3f1f4abd8795a39f6aee4e91a8ed0ca1 100644 --- a/dev/tests/integration/testsuite/Mage/Webapi/Model/_files/resource_with_invalid_interface.php +++ b/dev/tests/integration/testsuite/Mage/Webapi/Model/_files/resource_with_invalid_interface.php @@ -22,7 +22,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * @SuppressWarnings(PHPMD.UnusedFormalParameter) */ diff --git a/dev/tests/integration/testsuite/Mage/Webapi/Model/_files/resource_with_invalid_name.php b/dev/tests/integration/testsuite/Mage/Webapi/Model/_files/resource_with_invalid_name.php index ab64482b18426d28ed80959cb5e0407b56fb9384..2eeb636d0f019e9c52133d6e46354d1e76b33df9 100644 --- a/dev/tests/integration/testsuite/Mage/Webapi/Model/_files/resource_with_invalid_name.php +++ b/dev/tests/integration/testsuite/Mage/Webapi/Model/_files/resource_with_invalid_name.php @@ -22,7 +22,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * @SuppressWarnings(PHPMD.UnusedFormalParameter) */ diff --git a/dev/tests/integration/testsuite/Mage/Webapi/_files/Controller/AutoDiscover/ModuleB.php b/dev/tests/integration/testsuite/Mage/Webapi/_files/Controller/AutoDiscover/ModuleB.php index dc1131086d862c8cf0d3cbd8d6251c7528eed7dd..a2c7c77e1e296745b9e8978700e1d8f33f459f6f 100644 --- a/dev/tests/integration/testsuite/Mage/Webapi/_files/Controller/AutoDiscover/ModuleB.php +++ b/dev/tests/integration/testsuite/Mage/Webapi/_files/Controller/AutoDiscover/ModuleB.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * @SuppressWarnings(PHPMD.UnusedFormalParameter) */ diff --git a/dev/tests/integration/testsuite/Mage/Webapi/_files/Controller/Webapi/ModuleA.php b/dev/tests/integration/testsuite/Mage/Webapi/_files/Controller/Webapi/ModuleA.php index ed743aa5f311b3edaa8b9cc2984dde684cf42910..c47b2b1db9dc4263bae008ef7a9019d665ff526b 100644 --- a/dev/tests/integration/testsuite/Mage/Webapi/_files/Controller/Webapi/ModuleA.php +++ b/dev/tests/integration/testsuite/Mage/Webapi/_files/Controller/Webapi/ModuleA.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * @SuppressWarnings(PHPMD.UnusedFormalParameter) */ diff --git a/dev/tests/integration/testsuite/Mage/Webapi/_files/Controller/Webapi/SubresourceB.php b/dev/tests/integration/testsuite/Mage/Webapi/_files/Controller/Webapi/SubresourceB.php index f7eabaf1736f3d77ac3df7365e460fe033bfbce5..144c290fc56874d4d4b4dc07ed0b9b06e74dd01d 100644 --- a/dev/tests/integration/testsuite/Mage/Webapi/_files/Controller/Webapi/SubresourceB.php +++ b/dev/tests/integration/testsuite/Mage/Webapi/_files/Controller/Webapi/SubresourceB.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * @SuppressWarnings(PHPMD.UnusedFormalParameter) */ diff --git a/dev/tests/integration/testsuite/Mage/Webapi/_files/Controller/annotation_fixture.php b/dev/tests/integration/testsuite/Mage/Webapi/_files/Controller/annotation_fixture.php index 75efbdae3da333dea517f232b12166db11dddbf6..c470689f5be1a3e15ef3f03e7d2def55877e6e88 100644 --- a/dev/tests/integration/testsuite/Mage/Webapi/_files/Controller/annotation_fixture.php +++ b/dev/tests/integration/testsuite/Mage/Webapi/_files/Controller/annotation_fixture.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ return array( diff --git a/dev/tests/integration/testsuite/Mage/Webapi/_files/Model/Webapi/ModuleA/ModuleAData.php b/dev/tests/integration/testsuite/Mage/Webapi/_files/Model/Webapi/ModuleA/ModuleAData.php index 50aad5f8316199cab4d0720bdfa2c8a89a3a633d..b29f97647736f5d7cd23654439a0882bc8f4d043 100644 --- a/dev/tests/integration/testsuite/Mage/Webapi/_files/Model/Webapi/ModuleA/ModuleAData.php +++ b/dev/tests/integration/testsuite/Mage/Webapi/_files/Model/Webapi/ModuleA/ModuleAData.php @@ -2,7 +2,7 @@ /** * Test data structure fixture * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class NamespaceA_ModuleA_Model_Webapi_ModuleAData diff --git a/dev/tests/integration/testsuite/Mage/Webapi/_files/Model/Webapi/ModuleA/ModuleADataB.php b/dev/tests/integration/testsuite/Mage/Webapi/_files/Model/Webapi/ModuleA/ModuleADataB.php index b4d4dd551d4419d98b197d0850cc295d5414ec17..e210e3a0ec9023516e68cd21fbbb85b315c92e96 100644 --- a/dev/tests/integration/testsuite/Mage/Webapi/_files/Model/Webapi/ModuleA/ModuleADataB.php +++ b/dev/tests/integration/testsuite/Mage/Webapi/_files/Model/Webapi/ModuleA/ModuleADataB.php @@ -2,7 +2,7 @@ /** * Test data structure fixture * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class NamespaceA_ModuleA_Model_Webapi_ModuleADataB diff --git a/dev/tests/integration/testsuite/Mage/Webapi/_files/Model/Webapi/ModuleB/ModuleBData.php b/dev/tests/integration/testsuite/Mage/Webapi/_files/Model/Webapi/ModuleB/ModuleBData.php index 37eb8143a318e4c62f4fa106359166fcb501e263..59a49d29f377270bfc06e1ecf2fa9a075d035b20 100644 --- a/dev/tests/integration/testsuite/Mage/Webapi/_files/Model/Webapi/ModuleB/ModuleBData.php +++ b/dev/tests/integration/testsuite/Mage/Webapi/_files/Model/Webapi/ModuleB/ModuleBData.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Vendor_ModuleB_Model_Webapi_ModuleBData diff --git a/dev/tests/integration/testsuite/Mage/Webapi/_files/Model/Webapi/ModuleB/Subresource/SubresourceData.php b/dev/tests/integration/testsuite/Mage/Webapi/_files/Model/Webapi/ModuleB/Subresource/SubresourceData.php index 5949d546bd7134a62743cd2bfdcddab583e4d0fe..4f423e2b9f299618a5ab8db21f38f67b9bfe6b98 100644 --- a/dev/tests/integration/testsuite/Mage/Webapi/_files/Model/Webapi/ModuleB/Subresource/SubresourceData.php +++ b/dev/tests/integration/testsuite/Mage/Webapi/_files/Model/Webapi/ModuleB/Subresource/SubresourceData.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Vendor_ModuleB_Model_Webapi_ModuleB_SubresourceData diff --git a/dev/tests/integration/testsuite/Mage/Webapi/_files/autodiscovery/resource_class_fixture.php b/dev/tests/integration/testsuite/Mage/Webapi/_files/autodiscovery/resource_class_fixture.php index e14e53402df2c8cf67bae6366a84984108b8b92d..d1263177558b997b827575d9cb9d4917ef923a61 100644 --- a/dev/tests/integration/testsuite/Mage/Webapi/_files/autodiscovery/resource_class_fixture.php +++ b/dev/tests/integration/testsuite/Mage/Webapi/_files/autodiscovery/resource_class_fixture.php @@ -22,7 +22,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * @SuppressWarnings(PHPMD.UnusedFormalParameter) */ diff --git a/dev/tests/integration/testsuite/Mage/Webapi/_files/autodiscovery/subresource_class_fixture.php b/dev/tests/integration/testsuite/Mage/Webapi/_files/autodiscovery/subresource_class_fixture.php index 03e95383a9b092a18b593c2365ff21c5e14cff02..6560bc95e3ec430cad6e1ac337dbf6cc616fa946 100644 --- a/dev/tests/integration/testsuite/Mage/Webapi/_files/autodiscovery/subresource_class_fixture.php +++ b/dev/tests/integration/testsuite/Mage/Webapi/_files/autodiscovery/subresource_class_fixture.php @@ -22,7 +22,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * @SuppressWarnings(PHPMD.UnusedFormalParameter) */ diff --git a/dev/tests/integration/testsuite/Mage/Webapi/_files/config/data_structure_fixture.php b/dev/tests/integration/testsuite/Mage/Webapi/_files/config/data_structure_fixture.php index a90d159382f87e9fb9f4a13552cdae53ec1e2ca5..dec3f8eefd707ba54c35d804e3d9f8dc80c9a128 100644 --- a/dev/tests/integration/testsuite/Mage/Webapi/_files/config/data_structure_fixture.php +++ b/dev/tests/integration/testsuite/Mage/Webapi/_files/config/data_structure_fixture.php @@ -21,7 +21,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ return array( diff --git a/dev/tests/integration/testsuite/Mage/Webapi/_files/config/resource_a_fixture.php b/dev/tests/integration/testsuite/Mage/Webapi/_files/config/resource_a_fixture.php index 6e38e8f0eee50d0dd1b9477de131ff6d5552fa70..a94cc9c0d1d1b286a0c86566578950218c9aaf7f 100644 --- a/dev/tests/integration/testsuite/Mage/Webapi/_files/config/resource_a_fixture.php +++ b/dev/tests/integration/testsuite/Mage/Webapi/_files/config/resource_a_fixture.php @@ -21,7 +21,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ return array( diff --git a/dev/tests/integration/testsuite/Mage/Webapi/_files/config/resource_a_fixture_v2.php b/dev/tests/integration/testsuite/Mage/Webapi/_files/config/resource_a_fixture_v2.php index 7bcbc8c4ed9c7ab3f9fb28762fbb747d9fb16c0e..a311f87e6b979d5c751bf08cdd80db0bb3510bd8 100644 --- a/dev/tests/integration/testsuite/Mage/Webapi/_files/config/resource_a_fixture_v2.php +++ b/dev/tests/integration/testsuite/Mage/Webapi/_files/config/resource_a_fixture_v2.php @@ -21,7 +21,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ return array( diff --git a/dev/tests/integration/testsuite/Mage/Webapi/_files/config/resource_a_subresource_b_fixture.php b/dev/tests/integration/testsuite/Mage/Webapi/_files/config/resource_a_subresource_b_fixture.php index f654fc34a82e359e472c7b972f16efc38a0aef94..4e6fd6f93642121d843042e70894f983556a619c 100644 --- a/dev/tests/integration/testsuite/Mage/Webapi/_files/config/resource_a_subresource_b_fixture.php +++ b/dev/tests/integration/testsuite/Mage/Webapi/_files/config/resource_a_subresource_b_fixture.php @@ -21,7 +21,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ return array( diff --git a/dev/tests/integration/testsuite/Mage/Webapi/_files/data_types/Customer/AddressData.php b/dev/tests/integration/testsuite/Mage/Webapi/_files/data_types/Customer/AddressData.php index cdd6dabf33d9d4505064b8d8731a4ee1e5a0dffa..fe2bc276f6bd662f26a93dc02d7604b192169562 100644 --- a/dev/tests/integration/testsuite/Mage/Webapi/_files/data_types/Customer/AddressData.php +++ b/dev/tests/integration/testsuite/Mage/Webapi/_files/data_types/Customer/AddressData.php @@ -2,7 +2,7 @@ /** * Tests fixture for Auto Discovery functionality. Customer address entity. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Vendor_Module_Model_Webapi_Customer_AddressData diff --git a/dev/tests/integration/testsuite/Mage/Webapi/_files/data_types/CustomerData.php b/dev/tests/integration/testsuite/Mage/Webapi/_files/data_types/CustomerData.php index b6a99ce929b1e869cc4f4af9c43f2401e94c275f..8055cd9d61b38b72affa72c3980e99de7e7f2259 100644 --- a/dev/tests/integration/testsuite/Mage/Webapi/_files/data_types/CustomerData.php +++ b/dev/tests/integration/testsuite/Mage/Webapi/_files/data_types/CustomerData.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Vendor_Module_Model_Webapi_CustomerData diff --git a/dev/tests/integration/testsuite/Mage/Webapi/_files/role.php b/dev/tests/integration/testsuite/Mage/Webapi/_files/role.php index 625e9a5012de78122c928c0c891f8f0cc70a779e..cafbdc1d166e53e6a8b9dccd797b9c68f412c982 100644 --- a/dev/tests/integration/testsuite/Mage/Webapi/_files/role.php +++ b/dev/tests/integration/testsuite/Mage/Webapi/_files/role.php @@ -21,7 +21,7 @@ * @category Mage * @package Mage_Webapi * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ /** @var Mage_Webapi_Model_Acl_Role $role */ diff --git a/dev/tests/integration/testsuite/Mage/Webapi/_files/role_with_rule.php b/dev/tests/integration/testsuite/Mage/Webapi/_files/role_with_rule.php index dad1da12017edc44783a3eef3e0a16013f476450..041da11d022ea7dd59e7ece70ee19a078cad2fd3 100644 --- a/dev/tests/integration/testsuite/Mage/Webapi/_files/role_with_rule.php +++ b/dev/tests/integration/testsuite/Mage/Webapi/_files/role_with_rule.php @@ -21,7 +21,7 @@ * @category Mage * @package Mage_Webapi * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Webapi/_files/user_with_role.php b/dev/tests/integration/testsuite/Mage/Webapi/_files/user_with_role.php index 83fa1ed13a77ec4a43b007bb64394fcacaafb49c..349e0e05cf5387731c1488e2216fafe4800147e4 100644 --- a/dev/tests/integration/testsuite/Mage/Webapi/_files/user_with_role.php +++ b/dev/tests/integration/testsuite/Mage/Webapi/_files/user_with_role.php @@ -21,7 +21,7 @@ * @category Mage * @package Mage_Webapi * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ /** @var Mage_Webapi_Model_Acl_Role $role */ diff --git a/dev/tests/integration/testsuite/Mage/Weee/Model/ObserverTest.php b/dev/tests/integration/testsuite/Mage/Weee/Model/ObserverTest.php index ec802e82ddb5e0fc8155d4a9dcaa8a2487d9fd96..2b9153c231bf57777fda6de9b661a4d9e19b6115 100644 --- a/dev/tests/integration/testsuite/Mage/Weee/Model/ObserverTest.php +++ b/dev/tests/integration/testsuite/Mage/Weee/Model/ObserverTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Weee * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Weee/_files/product_with_fpt.php b/dev/tests/integration/testsuite/Mage/Weee/_files/product_with_fpt.php index 13b76d52ac8271c6ebfe2a618e39725feea92e72..4ae5a3ee460f6ca8951cea3301b89ddd0faaecdb 100644 --- a/dev/tests/integration/testsuite/Mage/Weee/_files/product_with_fpt.php +++ b/dev/tests/integration/testsuite/Mage/Weee/_files/product_with_fpt.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Weee * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/ContainerTest.php b/dev/tests/integration/testsuite/Mage/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/ContainerTest.php index 6f1355a69ce91569e83063e671ddf1513d094c86..99462c65d491aae3b9d8e4ee772ac8a5f69636ee 100644 --- a/dev/tests/integration/testsuite/Mage/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/ContainerTest.php +++ b/dev/tests/integration/testsuite/Mage/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/ContainerTest.php @@ -21,7 +21,7 @@ * @category Mage * @package Mage_Widget * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/LayoutTest.php b/dev/tests/integration/testsuite/Mage/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/LayoutTest.php index 58690db91856e67329c709f7c4d6194b595a0a18..5d0cd35c02ec5ffc6fade314c21dd07bbabfe98a 100644 --- a/dev/tests/integration/testsuite/Mage/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/LayoutTest.php +++ b/dev/tests/integration/testsuite/Mage/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/LayoutTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Widget * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/_files/_page_types_with_containers.xml b/dev/tests/integration/testsuite/Mage/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/_files/_page_types_with_containers.xml index fef859ca0e2ed9c652e5f3b05b90ae20244bb332..d6754bf793e4c1741f6d4242d7b91ffee47160f8 100644 --- a/dev/tests/integration/testsuite/Mage/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/_files/_page_types_with_containers.xml +++ b/dev/tests/integration/testsuite/Mage/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/_files/_page_types_with_containers.xml @@ -22,7 +22,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/integration/testsuite/Mage/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/_files/page_types_select.html b/dev/tests/integration/testsuite/Mage/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/_files/page_types_select.html index 6e22e55cfffde50336cea0de528a416a88c92331..70f12ad5020495cafdf3c663938239dd2118f6a1 100644 --- a/dev/tests/integration/testsuite/Mage/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/_files/page_types_select.html +++ b/dev/tests/integration/testsuite/Mage/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/_files/page_types_select.html @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Widget * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/integration/testsuite/Mage/Widget/Block/Adminhtml/Widget/Instance/Edit/Tab/Main/LayoutTest.php b/dev/tests/integration/testsuite/Mage/Widget/Block/Adminhtml/Widget/Instance/Edit/Tab/Main/LayoutTest.php index 7e83ff04510c98b2189a7e517e23e2076dc103fd..36717d995f7cfb18d636303413c0e32ed0d88221 100644 --- a/dev/tests/integration/testsuite/Mage/Widget/Block/Adminhtml/Widget/Instance/Edit/Tab/Main/LayoutTest.php +++ b/dev/tests/integration/testsuite/Mage/Widget/Block/Adminhtml/Widget/Instance/Edit/Tab/Main/LayoutTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Widget * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Widget/Block/Adminhtml/Widget/Instance/Edit/Tab/MainTest.php b/dev/tests/integration/testsuite/Mage/Widget/Block/Adminhtml/Widget/Instance/Edit/Tab/MainTest.php index 1d4a1693f55345eb957537005526d9fc1e78a2f1..d2c608ed2b3651bb3673a1f3c56e812bce2a24c9 100644 --- a/dev/tests/integration/testsuite/Mage/Widget/Block/Adminhtml/Widget/Instance/Edit/Tab/MainTest.php +++ b/dev/tests/integration/testsuite/Mage/Widget/Block/Adminhtml/Widget/Instance/Edit/Tab/MainTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Widget * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Widget/Model/Widget/ConfigTest.php b/dev/tests/integration/testsuite/Mage/Widget/Model/Widget/ConfigTest.php index db250eb5ee6b61deea42d049c3089442a8754207..a76c4b4e28300c2feefb729924968ad9a3595bba 100644 --- a/dev/tests/integration/testsuite/Mage/Widget/Model/Widget/ConfigTest.php +++ b/dev/tests/integration/testsuite/Mage/Widget/Model/Widget/ConfigTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Widget * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Widget/Model/Widget/InstanceTest.php b/dev/tests/integration/testsuite/Mage/Widget/Model/Widget/InstanceTest.php index 8fe2561a9c9c68c32adb1ee9259e01032782968b..e6a583eecde1d9b7d94a2ed73d1a191a928069d5 100644 --- a/dev/tests/integration/testsuite/Mage/Widget/Model/Widget/InstanceTest.php +++ b/dev/tests/integration/testsuite/Mage/Widget/Model/Widget/InstanceTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Widget * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Widget/Model/WidgetTest.php b/dev/tests/integration/testsuite/Mage/Widget/Model/WidgetTest.php index d7702464acfe1719976560544b48c6ade3dc13ab..4d73f963e32585a78b44c3a05a2827980b9b8d0e 100644 --- a/dev/tests/integration/testsuite/Mage/Widget/Model/WidgetTest.php +++ b/dev/tests/integration/testsuite/Mage/Widget/Model/WidgetTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Widget * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Widget/_files/design/adminhtml/default/basic/theme.xml b/dev/tests/integration/testsuite/Mage/Widget/_files/design/adminhtml/default/basic/theme.xml index 60b2f027b9ad654deb0ad65b3e07afc917444d11..9d2d64101bb1eb8cdfd9e21ec74bc9fee738a4f3 100644 --- a/dev/tests/integration/testsuite/Mage/Widget/_files/design/adminhtml/default/basic/theme.xml +++ b/dev/tests/integration/testsuite/Mage/Widget/_files/design/adminhtml/default/basic/theme.xml @@ -20,7 +20,7 @@ * * @category Magento * @package Design - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/integration/testsuite/Mage/Widget/controllers/Adminhtml/Widget/InstanceControllerTest.php b/dev/tests/integration/testsuite/Mage/Widget/controllers/Adminhtml/Widget/InstanceControllerTest.php index ec1d82a37b7dac35b2170777e2ab25c7283c97bf..7c3e71323f32232f014982c763ddbad047ce498c 100644 --- a/dev/tests/integration/testsuite/Mage/Widget/controllers/Adminhtml/Widget/InstanceControllerTest.php +++ b/dev/tests/integration/testsuite/Mage/Widget/controllers/Adminhtml/Widget/InstanceControllerTest.php @@ -21,7 +21,7 @@ * @category Mage * @package Mage_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Widget/controllers/Adminhtml/WidgetControllerTest.php b/dev/tests/integration/testsuite/Mage/Widget/controllers/Adminhtml/WidgetControllerTest.php index a5db6c17fc32e3ed6870dc53cd5293ab577733c2..458d83007f3b1e3255253e289f224e788cbe80b0 100644 --- a/dev/tests/integration/testsuite/Mage/Widget/controllers/Adminhtml/WidgetControllerTest.php +++ b/dev/tests/integration/testsuite/Mage/Widget/controllers/Adminhtml/WidgetControllerTest.php @@ -21,7 +21,7 @@ * @category Mage * @package Mage_Widget * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Wishlist/Block/AbstractTest.php b/dev/tests/integration/testsuite/Mage/Wishlist/Block/AbstractTest.php index d232b717e9011b3c0a4879e92ac6f596c3c219d9..5b9b2d1069e9067646c24985d3921ccbb801c979 100644 --- a/dev/tests/integration/testsuite/Mage/Wishlist/Block/AbstractTest.php +++ b/dev/tests/integration/testsuite/Mage/Wishlist/Block/AbstractTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Wishlist * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Wishlist/Block/Customer/Wishlist/Item/ColumnTest.php b/dev/tests/integration/testsuite/Mage/Wishlist/Block/Customer/Wishlist/Item/ColumnTest.php index 6ddd1ba856ab29013c0aef8afbeed8de840f595e..0517e5716e50c2c2a123f336eb8812034c9b790e 100644 --- a/dev/tests/integration/testsuite/Mage/Wishlist/Block/Customer/Wishlist/Item/ColumnTest.php +++ b/dev/tests/integration/testsuite/Mage/Wishlist/Block/Customer/Wishlist/Item/ColumnTest.php @@ -21,7 +21,7 @@ * @category Mage * @package Mage_Wishlist * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Wishlist/Block/Customer/Wishlist/Item/OptionsTest.php b/dev/tests/integration/testsuite/Mage/Wishlist/Block/Customer/Wishlist/Item/OptionsTest.php index 2aa00c8cdd9816176165a1b2641e126830ab78fc..25d395f2edc4fe3a5a42eb09c705907d981fb551 100644 --- a/dev/tests/integration/testsuite/Mage/Wishlist/Block/Customer/Wishlist/Item/OptionsTest.php +++ b/dev/tests/integration/testsuite/Mage/Wishlist/Block/Customer/Wishlist/Item/OptionsTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Wishlist * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Wishlist/Block/Customer/Wishlist/ItemsTest.php b/dev/tests/integration/testsuite/Mage/Wishlist/Block/Customer/Wishlist/ItemsTest.php index f29b9ae6a493f39da29c577cbec2a5dccba933a9..21e2c72f9846748c55fa8c554360eb6add76cef3 100644 --- a/dev/tests/integration/testsuite/Mage/Wishlist/Block/Customer/Wishlist/ItemsTest.php +++ b/dev/tests/integration/testsuite/Mage/Wishlist/Block/Customer/Wishlist/ItemsTest.php @@ -21,7 +21,7 @@ * @category Mage * @package Mage_Wishlist * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Wishlist/_files/wishlist.php b/dev/tests/integration/testsuite/Mage/Wishlist/_files/wishlist.php index aea1e86307d8d7ef54bc43a1f580354ea89e7c5e..589b1dc4e8ea4edfe1df21e14691f1329643b6fe 100644 --- a/dev/tests/integration/testsuite/Mage/Wishlist/_files/wishlist.php +++ b/dev/tests/integration/testsuite/Mage/Wishlist/_files/wishlist.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Wishlist * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Mage/Wishlist/controllers/IndexControllerTest.php b/dev/tests/integration/testsuite/Mage/Wishlist/controllers/IndexControllerTest.php index 89e2602b1c85ad77b8434cb69c70476065f66904..8a9684c7d70bd9fa8968fe6da2801f90ccd36f0a 100644 --- a/dev/tests/integration/testsuite/Mage/Wishlist/controllers/IndexControllerTest.php +++ b/dev/tests/integration/testsuite/Mage/Wishlist/controllers/IndexControllerTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Wishlist * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/MageTest.php b/dev/tests/integration/testsuite/MageTest.php index be7769a70006d55deb2eeef24bc737538fa483d8..739b99f778d4e5b4520355de90eda0792a691ba9 100644 --- a/dev/tests/integration/testsuite/MageTest.php +++ b/dev/tests/integration/testsuite/MageTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ @@ -138,10 +138,10 @@ class MageTest extends PHPUnit_Framework_TestCase */ public function testReset() { - Mage::setRoot(dirname(__FILE__)); - $this->assertNotNull(Mage::getRoot()); + Mage::setIsDeveloperMode(true); + $this->assertTrue(Mage::getIsDeveloperMode()); Mage::reset(); - $this->assertNull(Mage::getRoot()); + $this->assertFalse(Mage::getIsDeveloperMode()); } /** diff --git a/dev/tests/integration/testsuite/Magento/Di/Definition/CompilerDefinition/TestAsset/NoConstructor.php b/dev/tests/integration/testsuite/Magento/Di/Definition/CompilerDefinition/TestAsset/NoConstructor.php index 1067ae413d40fc3680268f69279ff06e2b2f9ea0..867931526ed815fa81c04ccb9071cb2f660b966a 100644 --- a/dev/tests/integration/testsuite/Magento/Di/Definition/CompilerDefinition/TestAsset/NoConstructor.php +++ b/dev/tests/integration/testsuite/Magento/Di/Definition/CompilerDefinition/TestAsset/NoConstructor.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Di * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Magento/Di/Definition/CompilerDefinition/TestAsset/OneOptionalArgument.php b/dev/tests/integration/testsuite/Magento/Di/Definition/CompilerDefinition/TestAsset/OneOptionalArgument.php index 101f743a96755c6975efc41052aed190a568b426..2af553ff800cbfc0749f22265dd6fd471bf5954e 100644 --- a/dev/tests/integration/testsuite/Magento/Di/Definition/CompilerDefinition/TestAsset/OneOptionalArgument.php +++ b/dev/tests/integration/testsuite/Magento/Di/Definition/CompilerDefinition/TestAsset/OneOptionalArgument.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Di * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Magento/Di/Definition/CompilerDefinition/TestAsset/OneRequiredArgument.php b/dev/tests/integration/testsuite/Magento/Di/Definition/CompilerDefinition/TestAsset/OneRequiredArgument.php index f5140a5b216e575b1e8ab33758a7097be22042b7..70c34365513ed03d4cd4eb3e8818801dd20b125c 100644 --- a/dev/tests/integration/testsuite/Magento/Di/Definition/CompilerDefinition/TestAsset/OneRequiredArgument.php +++ b/dev/tests/integration/testsuite/Magento/Di/Definition/CompilerDefinition/TestAsset/OneRequiredArgument.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Di * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Magento/Di/Definition/CompilerDefinition/TestAsset/OneRequiredOneOptionalArguments.php b/dev/tests/integration/testsuite/Magento/Di/Definition/CompilerDefinition/TestAsset/OneRequiredOneOptionalArguments.php index 340989637f70a20adb0922bbd2acdc2354201e7f..804495937da7a9f03a070d81776c4f906654798d 100644 --- a/dev/tests/integration/testsuite/Magento/Di/Definition/CompilerDefinition/TestAsset/OneRequiredOneOptionalArguments.php +++ b/dev/tests/integration/testsuite/Magento/Di/Definition/CompilerDefinition/TestAsset/OneRequiredOneOptionalArguments.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Di * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Magento/Di/Definition/CompilerDefinition/TestAsset/TwoOptionalArguments.php b/dev/tests/integration/testsuite/Magento/Di/Definition/CompilerDefinition/TestAsset/TwoOptionalArguments.php index ae671bfd45098a848d4595c3e36eec0ee2b48e68..00a3d02527af8a28f7de6e290b374114324e34f5 100644 --- a/dev/tests/integration/testsuite/Magento/Di/Definition/CompilerDefinition/TestAsset/TwoOptionalArguments.php +++ b/dev/tests/integration/testsuite/Magento/Di/Definition/CompilerDefinition/TestAsset/TwoOptionalArguments.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Di * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Magento/Di/Definition/CompilerDefinition/TestAsset/TwoRequiredArguments.php b/dev/tests/integration/testsuite/Magento/Di/Definition/CompilerDefinition/TestAsset/TwoRequiredArguments.php index 1a10c5d687d0a4dc57141095c2090570fb3e9fd5..2a6e8a63c666a57b76b349e237b8ae08c250d944 100644 --- a/dev/tests/integration/testsuite/Magento/Di/Definition/CompilerDefinition/TestAsset/TwoRequiredArguments.php +++ b/dev/tests/integration/testsuite/Magento/Di/Definition/CompilerDefinition/TestAsset/TwoRequiredArguments.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Di * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Magento/Di/Definition/CompilerDefinition/ZendTest.php b/dev/tests/integration/testsuite/Magento/Di/Definition/CompilerDefinition/ZendTest.php index ec6d5d760dfc3cb9c90fb56a5a6344299a312e1e..ed91be37fc529d4cb46661ff77858b93719747c6 100644 --- a/dev/tests/integration/testsuite/Magento/Di/Definition/CompilerDefinition/ZendTest.php +++ b/dev/tests/integration/testsuite/Magento/Di/Definition/CompilerDefinition/ZendTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Di * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Magento/Di/Definition/CompilerDefinition/_files/definitions.php b/dev/tests/integration/testsuite/Magento/Di/Definition/CompilerDefinition/_files/definitions.php index a726b2a99dbc8cc62e74998c39667c0be5b114dc..17c45e194fc2c0e6c763e43512dff9659e4a6210 100644 --- a/dev/tests/integration/testsuite/Magento/Di/Definition/CompilerDefinition/_files/definitions.php +++ b/dev/tests/integration/testsuite/Magento/Di/Definition/CompilerDefinition/_files/definitions.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Di * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Magento/Di/TestAsset/Basic.php b/dev/tests/integration/testsuite/Magento/Di/TestAsset/Basic.php index aa5b0e1a04c6511e96f5b635ac3fd2f4169fc4b8..31628760ab4107503792a6270d335bff4e1ae1b0 100644 --- a/dev/tests/integration/testsuite/Magento/Di/TestAsset/Basic.php +++ b/dev/tests/integration/testsuite/Magento/Di/TestAsset/Basic.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Di * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Magento/Di/TestAsset/BasicAlias.php b/dev/tests/integration/testsuite/Magento/Di/TestAsset/BasicAlias.php index fd87bc31a740183336aef3909c9071bb2680f987..5a01e0137fd4f2732dd16bbcfb5eb00cee8ee78c 100644 --- a/dev/tests/integration/testsuite/Magento/Di/TestAsset/BasicAlias.php +++ b/dev/tests/integration/testsuite/Magento/Di/TestAsset/BasicAlias.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Di * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Magento/Di/TestAsset/BasicInjection.php b/dev/tests/integration/testsuite/Magento/Di/TestAsset/BasicInjection.php index 2afff9049e1cbce3d9d4f651e9a06ead65ab5aed..0885516d5ef062baac9553d4a75db324440b362f 100644 --- a/dev/tests/integration/testsuite/Magento/Di/TestAsset/BasicInjection.php +++ b/dev/tests/integration/testsuite/Magento/Di/TestAsset/BasicInjection.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Di * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Magento/Di/TestAsset/ConstructorEightArguments.php b/dev/tests/integration/testsuite/Magento/Di/TestAsset/ConstructorEightArguments.php index 5ce29aad7506843b95ad50d9039017825371b62c..64823169e67165856d5045e17813a68e96ee91da 100644 --- a/dev/tests/integration/testsuite/Magento/Di/TestAsset/ConstructorEightArguments.php +++ b/dev/tests/integration/testsuite/Magento/Di/TestAsset/ConstructorEightArguments.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Di * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Magento/Di/TestAsset/ConstructorFiveArguments.php b/dev/tests/integration/testsuite/Magento/Di/TestAsset/ConstructorFiveArguments.php index 80f6fcb09d1179d715ab54acd6815191247e97a3..2d55f78fff3388ff5ffaf48c0d49d7b829b650a2 100644 --- a/dev/tests/integration/testsuite/Magento/Di/TestAsset/ConstructorFiveArguments.php +++ b/dev/tests/integration/testsuite/Magento/Di/TestAsset/ConstructorFiveArguments.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Di * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Magento/Di/TestAsset/ConstructorFourArguments.php b/dev/tests/integration/testsuite/Magento/Di/TestAsset/ConstructorFourArguments.php index b28c6c5b1c187316ad28851d01d52acc593d9489..ce393c2d4c3034cc844742ed5c84fed5a063e008 100644 --- a/dev/tests/integration/testsuite/Magento/Di/TestAsset/ConstructorFourArguments.php +++ b/dev/tests/integration/testsuite/Magento/Di/TestAsset/ConstructorFourArguments.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Di * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Magento/Di/TestAsset/ConstructorNineArguments.php b/dev/tests/integration/testsuite/Magento/Di/TestAsset/ConstructorNineArguments.php index 55eb70c85ea2b4a634a4b688eebfc36b2bba4529..bae1df0cd7fa82e988957a3016151cd0de5ae741 100644 --- a/dev/tests/integration/testsuite/Magento/Di/TestAsset/ConstructorNineArguments.php +++ b/dev/tests/integration/testsuite/Magento/Di/TestAsset/ConstructorNineArguments.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Di * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Magento/Di/TestAsset/ConstructorNoArguments.php b/dev/tests/integration/testsuite/Magento/Di/TestAsset/ConstructorNoArguments.php index a3e81e0ff6f633e027694c19451c059e1df2cc78..74622ee9bc26e4b07b3bb18ef412143963030570 100644 --- a/dev/tests/integration/testsuite/Magento/Di/TestAsset/ConstructorNoArguments.php +++ b/dev/tests/integration/testsuite/Magento/Di/TestAsset/ConstructorNoArguments.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Di * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Magento/Di/TestAsset/ConstructorOneArgument.php b/dev/tests/integration/testsuite/Magento/Di/TestAsset/ConstructorOneArgument.php index 5e0a90145691887aec5e23fd3fed2c02ddbb203f..61259eb6e1906c027cf0b1847a0ac74c855a08c4 100644 --- a/dev/tests/integration/testsuite/Magento/Di/TestAsset/ConstructorOneArgument.php +++ b/dev/tests/integration/testsuite/Magento/Di/TestAsset/ConstructorOneArgument.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Di * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Magento/Di/TestAsset/ConstructorSevenArguments.php b/dev/tests/integration/testsuite/Magento/Di/TestAsset/ConstructorSevenArguments.php index b536ef78ec3ff33e833e3ea673bc4a788566c3ff..6173a45649a58be70e8a62c4eaa7a4b45e384f26 100644 --- a/dev/tests/integration/testsuite/Magento/Di/TestAsset/ConstructorSevenArguments.php +++ b/dev/tests/integration/testsuite/Magento/Di/TestAsset/ConstructorSevenArguments.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Di * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Magento/Di/TestAsset/ConstructorSixArguments.php b/dev/tests/integration/testsuite/Magento/Di/TestAsset/ConstructorSixArguments.php index b7c489546b94756a6979ef35c0411fc80699ad0b..c1a964973724866ab935a38404b96e518e8d8c90 100644 --- a/dev/tests/integration/testsuite/Magento/Di/TestAsset/ConstructorSixArguments.php +++ b/dev/tests/integration/testsuite/Magento/Di/TestAsset/ConstructorSixArguments.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Di * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Magento/Di/TestAsset/ConstructorTenArguments.php b/dev/tests/integration/testsuite/Magento/Di/TestAsset/ConstructorTenArguments.php index 21d3ca14a9622cb5135a2b53a6fba5dde11770c7..6151ced6103b3c360dad425521bf85fefceae7fb 100644 --- a/dev/tests/integration/testsuite/Magento/Di/TestAsset/ConstructorTenArguments.php +++ b/dev/tests/integration/testsuite/Magento/Di/TestAsset/ConstructorTenArguments.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Di * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Magento/Di/TestAsset/ConstructorThreeArguments.php b/dev/tests/integration/testsuite/Magento/Di/TestAsset/ConstructorThreeArguments.php index e9aa7c0b660b022f610922f89b32779e47d1b4d9..58c0036c0478505dd3b824e024c56ff3bb29cc9a 100644 --- a/dev/tests/integration/testsuite/Magento/Di/TestAsset/ConstructorThreeArguments.php +++ b/dev/tests/integration/testsuite/Magento/Di/TestAsset/ConstructorThreeArguments.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Di * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Magento/Di/TestAsset/ConstructorTwoArguments.php b/dev/tests/integration/testsuite/Magento/Di/TestAsset/ConstructorTwoArguments.php index 5c4902ad17274da05945c02ab6432a95f14c1904..a44d1d1e6cc11f292b9b267b71f9ab251a87b0e6 100644 --- a/dev/tests/integration/testsuite/Magento/Di/TestAsset/ConstructorTwoArguments.php +++ b/dev/tests/integration/testsuite/Magento/Di/TestAsset/ConstructorTwoArguments.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Di * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Magento/Di/TestAsset/Interface.php b/dev/tests/integration/testsuite/Magento/Di/TestAsset/Interface.php index d0e74941017bc9833fdfcdde0404b0ecc65161dc..d31c2b31a87c40461219b7de2d9ff65e28514a64 100644 --- a/dev/tests/integration/testsuite/Magento/Di/TestAsset/Interface.php +++ b/dev/tests/integration/testsuite/Magento/Di/TestAsset/Interface.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Di * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Magento/Di/TestAsset/InterfaceImplementation.php b/dev/tests/integration/testsuite/Magento/Di/TestAsset/InterfaceImplementation.php index ef943bc7487bf74b3f9ac26d2008159734d5e5c5..c29895a1df1125695104b2a6d491015202d52bc3 100644 --- a/dev/tests/integration/testsuite/Magento/Di/TestAsset/InterfaceImplementation.php +++ b/dev/tests/integration/testsuite/Magento/Di/TestAsset/InterfaceImplementation.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Di * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Magento/Di/TestAsset/InterfaceInjection.php b/dev/tests/integration/testsuite/Magento/Di/TestAsset/InterfaceInjection.php index f7a846874fd8669a3b8c643b157cc946b8991ddb..e8274f89486e88c5f6256d0e5ebdd0f069682d46 100644 --- a/dev/tests/integration/testsuite/Magento/Di/TestAsset/InterfaceInjection.php +++ b/dev/tests/integration/testsuite/Magento/Di/TestAsset/InterfaceInjection.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Di * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Magento/DiTest.php b/dev/tests/integration/testsuite/Magento/DiTest.php index 50ac76ee003a6dcc070e50f02996ee1398b8e8bb..a45d6155162ba27f1676c698f55d4de656980c45 100644 --- a/dev/tests/integration/testsuite/Magento/DiTest.php +++ b/dev/tests/integration/testsuite/Magento/DiTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Di * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Magento/Filesystem/Adapter/LocalTest.php b/dev/tests/integration/testsuite/Magento/Filesystem/Adapter/LocalTest.php new file mode 100644 index 0000000000000000000000000000000000000000..4cd95105afa4de520b11896277879ac9e36cef50 --- /dev/null +++ b/dev/tests/integration/testsuite/Magento/Filesystem/Adapter/LocalTest.php @@ -0,0 +1,301 @@ +<?php +/** + * Test for Magento_Filesystem_Adapter_Local + * + * Magento + * + * NOTICE OF LICENSE + * + * This source file is subject to the Open Software License (OSL 3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * http://opensource.org/licenses/osl-3.0.php + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@magentocommerce.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade Magento to newer + * versions in the future. If you wish to customize Magento for your + * needs please refer to http://www.magentocommerce.com for more information. + * + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) + * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) + */ +class Magento_Filesystem_Adapter_LocalTest extends PHPUnit_Framework_TestCase +{ + /** + * @var Magento_Filesystem_Adapter_Local + */ + protected $_adapter; + + /** + * @var string + */ + protected $_filePath; + + /** + * @var array + */ + protected $_deleteFiles = array(); + + protected function setUp() + { + $this->_adapter = new Magento_Filesystem_Adapter_Local(); + } + + protected function tearDown() + { + foreach ($this->_deleteFiles as $fileName) { + if (is_dir($fileName)) { + rmdir($fileName); + } elseif (is_file($fileName)) { + unlink($fileName); + } + } + } + + /** + * @return string + */ + protected function _getFixturesPath() + { + return __DIR__ . DS . '..' . DS . '_files' . DS; + } + + /** + * @param string $key + * @param bool $expected + * @dataProvider existsDataProvider + */ + public function testExists($key, $expected) + { + $this->assertEquals($expected, $this->_adapter->exists($key)); + } + + /** + * @return array + */ + public function existsDataProvider() + { + return array( + 'existed file' => array($this->_getFixturesPath() . 'popup.csv', true), + 'not existed file' => array($this->_getFixturesPath() . 'popup2.css', false), + ); + } + + /** + * @param string $fileName + * @param string $expectedContent + * @dataProvider readDataProvider + */ + public function testRead($fileName, $expectedContent) + { + $this->assertEquals($expectedContent, $this->_adapter->read($fileName)); + } + + /** + * @return array + */ + public function readDataProvider() + { + return array( + 'read' => array($this->_getFixturesPath() . 'popup.csv', 'var myData = 5;'), + ); + } + + /** + * @param string $fileName + * @param string $fileData + * @dataProvider writeDataProvider + */ + public function testWrite($fileName, $fileData) + { + $this->_deleteFiles = array($fileName); + $this->_adapter->write($fileName, $fileData); + $this->assertFileExists($fileName); + $this->assertEquals(file_get_contents($fileName), $fileData); + } + + /** + * @return array + */ + public function writeDataProvider() + { + return array( + 'correct file' => array($this->_getFixturesPath() . 'tempFile.css', 'temporary data'), + 'empty file' => array($this->_getFixturesPath() . 'tempFile2.css', '') + ); + } + + public function testDeleteNotExists() + { + $fileName = $this->_getFixturesPath() . 'tempFile3.css'; + $this->_adapter->delete($fileName); + $this->assertFileNotExists($fileName); + } + + public function testDeleteDir() + { + $fileName = $this->_getFixturesPath() . 'new_directory' . DS . 'tempFile3.css'; + $dirName = $this->_getFixturesPath() . 'new_directory'; + $this->_deleteFiles[] = $fileName; + $this->_deleteFiles[] = $dirName; + mkdir($dirName, 0755); + file_put_contents($fileName, 'test data'); + $this->_adapter->delete($dirName); + $this->assertFileNotExists($dirName); + $this->assertFileNotExists($fileName); + } + + public function testDelete() + { + $fileName = $this->_getFixturesPath() . 'tempFile3.css'; + $this->_deleteFiles = array($fileName); + file_put_contents($fileName, 'test data'); + $this->_adapter->delete($fileName); + $this->assertFileNotExists($fileName); + } + + public function testChangePermissionsFile() + { + $fileName = $this->_getFixturesPath() . 'tempFile3.css'; + $this->_deleteFiles[] = $fileName; + file_put_contents($fileName, 'test data'); + $this->_adapter->changePermissions($fileName, 0666, false); + $this->assertEquals(0666, fileperms($fileName) & 0777); + } + + public function testChangePermissionsDir() + { + $fileName = $this->_getFixturesPath() . 'new_directory2' . DS . 'tempFile3.css'; + $dirName = $this->_getFixturesPath() . 'new_directory2'; + $this->_deleteFiles[] = $fileName; + $this->_deleteFiles[] = $dirName; + mkdir($dirName, 0777); + file_put_contents($fileName, 'test data'); + $this->_adapter->changePermissions($dirName, 0755, true); + $this->assertEquals(0755, fileperms($dirName) & 0777); + $this->assertEquals(0755, fileperms($fileName) & 0777); + } + + public function testIsFile() + { + $this->assertTrue($this->_adapter->isFile($this->_getFixturesPath() . 'popup.csv')); + } + + public function testIsWritable() + { + $this->assertTrue($this->_adapter->isWritable($this->_getFixturesPath() . 'popup.csv')); + } + + public function testIsReadable() + { + $this->assertTrue($this->_adapter->isReadable($this->_getFixturesPath() . 'popup.csv')); + } + + public function testCreateStream() + { + $stream = $this->_adapter->createStream($this->_getFixturesPath() . 'popup.csv'); + $this->assertInstanceOf('Magento_Filesystem_Stream_Local', $stream); + } + + /** + * @param string $sourceName + * @param string $targetName + * @throws Exception + * @dataProvider renameDataProvider + */ + public function testRename($sourceName, $targetName) + { + $this->_deleteFiles[] = $sourceName; + $this->_deleteFiles[] = $targetName; + file_put_contents($sourceName, 'test data'); + $this->_adapter->rename($sourceName, $targetName); + $this->assertFileExists($targetName); + $this->assertFileNotExists($sourceName); + $this->assertEquals(file_get_contents($targetName), 'test data'); + } + + /** + * @return array + */ + public function renameDataProvider() + { + return array( + 'test 1' => array($this->_getFixturesPath() . 'file1.js', $this->_getFixturesPath() . 'file2.js'), + ); + } + + public function testIsDirectory() + { + $this->assertTrue($this->_adapter->isDirectory($this->_getFixturesPath())); + $this->assertFalse($this->_adapter->isDirectory($this->_getFixturesPath() . 'popup.csv')); + } + + public function testCreateDirectory() + { + $directoryName = $this->_getFixturesPath() . 'new_directory'; + $this->_deleteFiles[] = $directoryName; + $this->_adapter->createDirectory($directoryName, 0755); + $this->assertFileExists($directoryName); + $this->assertTrue(is_dir($directoryName)); + } + + /** + * + * @expectedException Magento_Filesystem_Exception + */ + public function testCreateDirectoryError() + { + $this->_adapter->createDirectory('', 0755); + } + + /** + * @dataProvider touchDataProvider + * @param string $fileName + * @param bool $newFile + */ + public function testTouch($fileName, $newFile = false) + { + if ($newFile) { + $this->_deleteFiles = array($fileName); + } + if ($newFile) { + $this->assertFileNotExists($fileName); + } else { + $this->assertFileExists($fileName); + } + $this->_adapter->touch($fileName); + $this->assertFileExists($fileName); + } + + /** + * @return array + */ + public function touchDataProvider() + { + return array( + 'update file' => array($this->_getFixturesPath() . 'popup.csv', false), + 'create file' => array($this->_getFixturesPath() . 'popup2.css', true) + ); + } + + /** + * @param string $sourceName + * @param string $targetName + * @dataProvider renameDataProvider + */ + public function testCopy($sourceName, $targetName) + { + $this->_deleteFiles = array($sourceName, $targetName); + $testData = 'test data'; + file_put_contents($sourceName, $testData); + $this->_adapter->copy($sourceName, $targetName); + $this->assertFileExists($targetName); + $this->assertFileExists($sourceName); + $this->assertEquals($testData, file_get_contents($targetName)); + $this->assertEquals($testData, file_get_contents($targetName)); + } +} diff --git a/dev/tests/integration/testsuite/Magento/Filesystem/Sream/LocalTest.php b/dev/tests/integration/testsuite/Magento/Filesystem/Sream/LocalTest.php new file mode 100644 index 0000000000000000000000000000000000000000..9f5ead81bcf7af834ee1533625f66cf6a2c04fbb --- /dev/null +++ b/dev/tests/integration/testsuite/Magento/Filesystem/Sream/LocalTest.php @@ -0,0 +1,236 @@ +<?php +/** + * Test for Magento_Filesystem_Stream_Local + * + * Magento + * + * NOTICE OF LICENSE + * + * This source file is subject to the Open Software License (OSL 3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * http://opensource.org/licenses/osl-3.0.php + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@magentocommerce.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade Magento to newer + * versions in the future. If you wish to customize Magento for your + * needs please refer to http://www.magentocommerce.com for more information. + * + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) + * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) + */ +class Magento_Filesystem_Stream_LocalTest extends PHPUnit_Framework_TestCase +{ + /** + * @var Magento_Filesystem_Stream_Local + */ + protected $_stream; + + /** + * @var string + */ + protected $_writeFileName; + + protected function setUp() + { + $this->_stream = new Magento_Filesystem_Stream_Local(__DIR__ . DS . '..' . DS . '_files' . DS . 'popup.csv'); + $this->_writeFileName = __DIR__ . DS . '..' . DS . '_files' . DS . 'new.css'; + } + + protected function tearDown() + { + if (file_exists($this->_writeFileName)) { + unlink($this->_writeFileName); + } + } + + /** + * @expectedException Magento_Filesystem_Exception + */ + public function testOpenException() + { + $stream = new Magento_Filesystem_Stream_Local(__DIR__ . DS . '..' . DS . '_files' . DS . 'invalid.css'); + $stream->open(new Magento_Filesystem_Stream_Mode('r')); + } + + public function testOpenNewFile() + { + $stream = new Magento_Filesystem_Stream_Local($this->_writeFileName); + $stream->open(new Magento_Filesystem_Stream_Mode('w')); + } + + public function testOpenExistingFile() + { + $this->_stream->open(new Magento_Filesystem_Stream_Mode('r')); + } + + public function testRead() + { + $this->_stream->open(new Magento_Filesystem_Stream_Mode('r')); + $data = $this->_stream->read(15); + $this->assertEquals('var myData = 5;', $data); + + } + + public function testReadCsv() + { + $stream = new Magento_Filesystem_Stream_Local(__DIR__ . DS . '..' . DS . '_files' . DS . 'data.csv'); + $stream->open(new Magento_Filesystem_Stream_Mode('r')); + $data = $stream->readCsv(0); + $this->assertEquals(array('field1', 'field2'), $data); + $data = $stream->readCsv(0); + $this->assertEquals(array('field3', 'field4'), $data); + $data = $stream->readCsv(0); + $this->assertFalse($data); + } + + public function testWrite() + { + $stream = new Magento_Filesystem_Stream_Local($this->_writeFileName); + $stream->open(new Magento_Filesystem_Stream_Mode('w')); + $stream->write('test data'); + $this->assertEquals('test data', file_get_contents($this->_writeFileName)); + } + + public function testWriteCsv() + { + $stream = new Magento_Filesystem_Stream_Local($this->_writeFileName); + $stream->open(new Magento_Filesystem_Stream_Mode('w')); + $stream->writeCsv(array('data1', 'data2')); + $stream->open(new Magento_Filesystem_Stream_Mode('r')); + $this->assertEquals(array('data1', 'data2'), $stream->readCsv()); + } + + public function testClose() + { + $this->_stream->open(new Magento_Filesystem_Stream_Mode('r')); + $this->_stream->close(); + $this->assertAttributeEquals(null, '_mode', $this->_stream); + $this->assertAttributeEquals(null, '_fileHandle', $this->_stream); + } + + public function testFlush() + { + $stream = new Magento_Filesystem_Stream_Local($this->_writeFileName); + $stream->open(new Magento_Filesystem_Stream_Mode('w')); + $stream->write('test data'); + $stream->flush(); + $this->assertEquals('test data', file_get_contents($this->_writeFileName)); + } + + public function testSeek() + { + $this->_stream->open(new Magento_Filesystem_Stream_Mode('r')); + $this->_stream->seek(14); + $this->assertEquals(';', $this->_stream->read(1)); + } + + /** + * @expectedException Magento_Filesystem_Exception + * @expectedExceptionMessage seek operation on the stream caused an error. + */ + public function testSeekError() + { + $this->_stream->open(new Magento_Filesystem_Stream_Mode('r')); + $this->_stream->seek(-1); + } + + public function testTell() + { + $this->_stream->open(new Magento_Filesystem_Stream_Mode('r')); + $this->assertEquals(0, $this->_stream->tell()); + $this->_stream->seek(14); + $this->assertEquals(14, $this->_stream->tell()); + } + + public function testEof() + { + $this->_stream->open(new Magento_Filesystem_Stream_Mode('r')); + $this->assertFalse($this->_stream->eof()); + $this->_stream->read(15); + $this->_stream->read(15); + $this->assertTrue($this->_stream->eof()); + } + + /** + * @param string $method + * @param array $arguments + * @dataProvider streamNotOpenedDataProvider + * @expectedException Magento_Filesystem_Exception + */ + public function testExceptionStreamNotOpened($method, array $arguments = array(1)) + { + call_user_func(array($this->_stream, $method), $arguments); + } + + /** + * @return array + */ + public function streamNotOpenedDataProvider() + { + return array( + array('read'), + array('readCsv'), + array('write'), + array('writeCsv', array(array(1))), + array('close'), + array('flush'), + array('seek'), + array('tell'), + array('tell'), + array('eof'), + ); + } + + /** + * @param string $method + * @dataProvider forbiddenReadDataProvider + * @expectedException Magento_Filesystem_Exception + * @expectedExceptionMessage The stream does not allow read. + */ + public function testForbiddenRead($method) + { + $stream = new Magento_Filesystem_Stream_Local($this->_writeFileName); + $stream->open(new Magento_Filesystem_Stream_Mode('w')); + $stream->$method(1); + } + + /** + * @return array + */ + public function forbiddenReadDataProvider() + { + return array( + array('read'), + array('readCsv'), + ); + } + + /** + * @param string $method + * @param array $arguments + * @dataProvider forbiddenWriteDataProvider + * @expectedException Magento_Filesystem_Exception + * @expectedExceptionMessage The stream does not allow write. + */ + public function testForbiddenWrite($method, array $arguments = array(1)) + { + $this->_stream->open(new Magento_Filesystem_Stream_Mode('r')); + call_user_func(array($this->_stream, $method), $arguments); + } + + /** + * @return array + */ + public function forbiddenWriteDataProvider() + { + return array( + array('write'), + array('writeCsv', array(array(1))), + ); + } +} diff --git a/dev/tests/integration/testsuite/Magento/Filesystem/_files/data.csv b/dev/tests/integration/testsuite/Magento/Filesystem/_files/data.csv new file mode 100644 index 0000000000000000000000000000000000000000..e7f6e0d51a660c1bc7a133c33b10c17de3c078d4 --- /dev/null +++ b/dev/tests/integration/testsuite/Magento/Filesystem/_files/data.csv @@ -0,0 +1,2 @@ +"field1", "field2" +"field3", "field4" diff --git a/dev/tests/integration/testsuite/Magento/Filesystem/_files/popup.csv b/dev/tests/integration/testsuite/Magento/Filesystem/_files/popup.csv new file mode 100644 index 0000000000000000000000000000000000000000..99533ccc71b11ab5edf314a3e42b9aa3b782214f --- /dev/null +++ b/dev/tests/integration/testsuite/Magento/Filesystem/_files/popup.csv @@ -0,0 +1 @@ +var myData = 5; \ No newline at end of file diff --git a/dev/tests/integration/testsuite/Magento/Profiler/Driver/Standard/Output/CsvfileTest.php b/dev/tests/integration/testsuite/Magento/Profiler/Driver/Standard/Output/CsvfileTest.php index 290e59fb1824afee046e755abca91918b86d7c2a..e77a78c1b5adcc5a1e7be1caf391b9dc448de71c 100644 --- a/dev/tests/integration/testsuite/Magento/Profiler/Driver/Standard/Output/CsvfileTest.php +++ b/dev/tests/integration/testsuite/Magento/Profiler/Driver/Standard/Output/CsvfileTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Magento_Profiler_Driver_Standard_Output_CsvfileTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/integration/testsuite/Magento/Profiler/Driver/Standard/Output/FirebugTest.php b/dev/tests/integration/testsuite/Magento/Profiler/Driver/Standard/Output/FirebugTest.php index 221aef85930f00079e3aeb399c35e1be93ed4971..a03c1a6982caee659b067ea9c61bf1c3081d3c75 100644 --- a/dev/tests/integration/testsuite/Magento/Profiler/Driver/Standard/Output/FirebugTest.php +++ b/dev/tests/integration/testsuite/Magento/Profiler/Driver/Standard/Output/FirebugTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Magento_Profiler_Driver_Standard_Output_FirebugTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/integration/testsuite/Magento/Profiler/Driver/Standard/Output/HtmlTest.php b/dev/tests/integration/testsuite/Magento/Profiler/Driver/Standard/Output/HtmlTest.php index 1ea7226116df708a855c197ea73e15d44e81fd6f..3b19f40d40e3cf7ffe648d8cfca293bcdf879c0d 100644 --- a/dev/tests/integration/testsuite/Magento/Profiler/Driver/Standard/Output/HtmlTest.php +++ b/dev/tests/integration/testsuite/Magento/Profiler/Driver/Standard/Output/HtmlTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Magento_Profiler_Driver_Standard_Output_HtmlTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/integration/testsuite/Magento/Profiler/Driver/Standard/Output/_files/output.html b/dev/tests/integration/testsuite/Magento/Profiler/Driver/Standard/Output/_files/output.html index 84a350cf3251904b229aa21157953d21dd70a62c..170a7257c4477bbe23fb681c47d0716fa0a9dacc 100644 --- a/dev/tests/integration/testsuite/Magento/Profiler/Driver/Standard/Output/_files/output.html +++ b/dev/tests/integration/testsuite/Magento/Profiler/Driver/Standard/Output/_files/output.html @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/integration/testsuite/Magento/Profiler/Driver/Standard/Output/_files/timers.php b/dev/tests/integration/testsuite/Magento/Profiler/Driver/Standard/Output/_files/timers.php index 857e51fd883038f51488000ceb99735fdee6249e..89c21312f5dbe90fd0d299a341cec2c308782d3a 100644 --- a/dev/tests/integration/testsuite/Magento/Profiler/Driver/Standard/Output/_files/timers.php +++ b/dev/tests/integration/testsuite/Magento/Profiler/Driver/Standard/Output/_files/timers.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ $timer = new Magento_Profiler_Driver_Standard_Stat(); diff --git a/dev/tests/integration/testsuite/Magento/ProfilerTest.php b/dev/tests/integration/testsuite/Magento/ProfilerTest.php index 45e78b99836cb5fa531fb2226d7967f89a0e2d7e..ed39e42c76e247498fdac5e2fab99df29db7bf66 100644 --- a/dev/tests/integration/testsuite/Magento/ProfilerTest.php +++ b/dev/tests/integration/testsuite/Magento/ProfilerTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Magento_ProfilerTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/integration/testsuite/Phoenix/Moneybookers/Block/FormTest.php b/dev/tests/integration/testsuite/Phoenix/Moneybookers/Block/FormTest.php index d72f31b5753ec3474b12500e9d6b58bf67a51ca1..c4bddbd689b74c18068519f74af53c3d09e67e87 100644 --- a/dev/tests/integration/testsuite/Phoenix/Moneybookers/Block/FormTest.php +++ b/dev/tests/integration/testsuite/Phoenix/Moneybookers/Block/FormTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Phoenix_Moneybookers * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Phoenix/Moneybookers/Block/PaymentTest.php b/dev/tests/integration/testsuite/Phoenix/Moneybookers/Block/PaymentTest.php index 307bd6e5776b0af39b1e1b31daa917d22cfbe06e..2ec903e61da0c81cec0b5fe28288bf0b2c67c9f5 100644 --- a/dev/tests/integration/testsuite/Phoenix/Moneybookers/Block/PaymentTest.php +++ b/dev/tests/integration/testsuite/Phoenix/Moneybookers/Block/PaymentTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Phoenix_Moneybookers * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Phoenix/Moneybookers/controllers/ProcessingControllerTest.php b/dev/tests/integration/testsuite/Phoenix/Moneybookers/controllers/ProcessingControllerTest.php index a8e15e8ad097eff2c29081c0fd04472b866960eb..d52255111e7308b86ed068f0133249d9dc261cf1 100644 --- a/dev/tests/integration/testsuite/Phoenix/Moneybookers/controllers/ProcessingControllerTest.php +++ b/dev/tests/integration/testsuite/Phoenix/Moneybookers/controllers/ProcessingControllerTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Phoenix_Moneybookers * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Varien/Data/Form/Element/FieldsetTest.php b/dev/tests/integration/testsuite/Varien/Data/Form/Element/FieldsetTest.php index b941603a6fc858007e1c866d2bf6427823009681..ec718906068e303131100fdb172122201c15be58 100644 --- a/dev/tests/integration/testsuite/Varien/Data/Form/Element/FieldsetTest.php +++ b/dev/tests/integration/testsuite/Varien/Data/Form/Element/FieldsetTest.php @@ -21,7 +21,7 @@ * @category Varien * @package Varien_Data * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Varien/Db/Adapter/InterfaceTest.php b/dev/tests/integration/testsuite/Varien/Db/Adapter/InterfaceTest.php index 554ed001fc0f99c8274f573b0b921fd7b714c4fa..5c2b5b56d6777191f0b10b00c427705ce69c53d8 100644 --- a/dev/tests/integration/testsuite/Varien/Db/Adapter/InterfaceTest.php +++ b/dev/tests/integration/testsuite/Varien/Db/Adapter/InterfaceTest.php @@ -21,7 +21,7 @@ * @category Varien * @package Varien_Db * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Varien/Db/Adapter/Pdo/MysqlTest.php b/dev/tests/integration/testsuite/Varien/Db/Adapter/Pdo/MysqlTest.php index fdf56e8c5027f46b522f43adc41b3e3cb17a3688..79877153058c47885f173abfd6293c212d82d2e3 100644 --- a/dev/tests/integration/testsuite/Varien/Db/Adapter/Pdo/MysqlTest.php +++ b/dev/tests/integration/testsuite/Varien/Db/Adapter/Pdo/MysqlTest.php @@ -21,7 +21,7 @@ * @category Varien * @package Varien_Db * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/Varien/Image/Adapter/InterfaceTest.php b/dev/tests/integration/testsuite/Varien/Image/Adapter/InterfaceTest.php index 2c875dc7f4020bdf177fd2892584a0eb73d9a1cc..01cc27f9474bbcbc36d03af88c399b6e420000b0 100644 --- a/dev/tests/integration/testsuite/Varien/Image/Adapter/InterfaceTest.php +++ b/dev/tests/integration/testsuite/Varien/Image/Adapter/InterfaceTest.php @@ -21,7 +21,7 @@ * @category Varien * @package Varien_Image * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/integrity/LayoutTest.php b/dev/tests/integration/testsuite/integrity/LayoutTest.php index 32ba3e8f7aa0ca082e608e37d295b9ff09079330..6317b3ce3cfb2fb1ddde9202dba5b942b5963de3 100644 --- a/dev/tests/integration/testsuite/integrity/LayoutTest.php +++ b/dev/tests/integration/testsuite/integrity/LayoutTest.php @@ -23,7 +23,7 @@ * @category tests * @package integration * @subpackage integrity - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/integrity/Mage/Checkout/Block/CartTest.php b/dev/tests/integration/testsuite/integrity/Mage/Checkout/Block/CartTest.php index 3357705b739cc6183ec6f1b1836b556a8e3e9d8f..5ee18b598bbc512e9734adc3b1276f6c69229172 100644 --- a/dev/tests/integration/testsuite/integrity/Mage/Checkout/Block/CartTest.php +++ b/dev/tests/integration/testsuite/integrity/Mage/Checkout/Block/CartTest.php @@ -23,7 +23,7 @@ * @category Mage * @package Mage_Checkout * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/integrity/Mage/Payment/MethodsTest.php b/dev/tests/integration/testsuite/integrity/Mage/Payment/MethodsTest.php index 8923d66354d3d05ed31bf2ed0b8d5662e4c58dca..efec01268b98de69225a5f487b742cbe9e2c3ee8 100644 --- a/dev/tests/integration/testsuite/integrity/Mage/Payment/MethodsTest.php +++ b/dev/tests/integration/testsuite/integrity/Mage/Payment/MethodsTest.php @@ -21,14 +21,12 @@ * @category Mage * @package Mage_Payment * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ /** * Locate all payment methods in the system and verify declaration of their blocks - * - * @group integrity */ class Integrity_Mage_Payment_MethodsTest extends PHPUnit_Framework_TestCase { diff --git a/dev/tests/integration/testsuite/integrity/Mage/Sales/TotalDeclarationTest.php b/dev/tests/integration/testsuite/integrity/Mage/Sales/TotalDeclarationTest.php index b702016abe799b9a69475aa3370a4181156010cc..dd4d2b68c9853ba0d546d2da0cd7e5c71b3309ca 100644 --- a/dev/tests/integration/testsuite/integrity/Mage/Sales/TotalDeclarationTest.php +++ b/dev/tests/integration/testsuite/integrity/Mage/Sales/TotalDeclarationTest.php @@ -18,7 +18,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Integrity_Mage_Sales_TotalDeclarationTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/integration/testsuite/integrity/Mage/Widget/SkinFilesTest.php b/dev/tests/integration/testsuite/integrity/Mage/Widget/SkinFilesTest.php index 4039e83b205aeb7299591278de44107bd78a50cb..0c578c01b349d85096a06bb96be0b354d9bb10b5 100644 --- a/dev/tests/integration/testsuite/integrity/Mage/Widget/SkinFilesTest.php +++ b/dev/tests/integration/testsuite/integrity/Mage/Widget/SkinFilesTest.php @@ -21,13 +21,10 @@ * @category Magento * @package Mage_Widget * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ -/** - * @group integrity - */ class Integrity_Mage_Widget_SkinFilesTest extends PHPUnit_Framework_TestCase { /** diff --git a/dev/tests/integration/testsuite/integrity/Mage/Widget/TemplateFilesTest.php b/dev/tests/integration/testsuite/integrity/Mage/Widget/TemplateFilesTest.php index 17ad5a7422cf9ea1cc2e90b697093f8a8c226989..94c14dc92f5df07401c5ccbc0f152a5f99b03707 100644 --- a/dev/tests/integration/testsuite/integrity/Mage/Widget/TemplateFilesTest.php +++ b/dev/tests/integration/testsuite/integrity/Mage/Widget/TemplateFilesTest.php @@ -21,13 +21,10 @@ * @category Magento * @package Mage_Widget * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ -/** - * @group integrity - */ class Integrity_Mage_Widget_TemplateFilesTest extends PHPUnit_Framework_TestCase { /** diff --git a/dev/tests/integration/testsuite/integrity/modular/AclConfigFilesTest.php b/dev/tests/integration/testsuite/integrity/modular/AclConfigFilesTest.php index 5f5778b78117740ed20f7e42e243069f3dd31b2a..4e69671d377bc4782c5fb2da5ad4fd0a5d671832 100644 --- a/dev/tests/integration/testsuite/integrity/modular/AclConfigFilesTest.php +++ b/dev/tests/integration/testsuite/integrity/modular/AclConfigFilesTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/integration/testsuite/integrity/modular/Email/TemplateFilesTest.php b/dev/tests/integration/testsuite/integrity/modular/Email/TemplateFilesTest.php index 92fd526a1bc64033c87736b1b467c694128ca683..86d50d29088df2c47b8d208a954e62348358af0f 100644 --- a/dev/tests/integration/testsuite/integrity/modular/Email/TemplateFilesTest.php +++ b/dev/tests/integration/testsuite/integrity/modular/Email/TemplateFilesTest.php @@ -21,13 +21,10 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ -/** - * @group integrity - */ class Integrity_Modular_Email_TemplateFilesTest extends PHPUnit_Framework_TestCase { /** diff --git a/dev/tests/integration/testsuite/integrity/modular/LayoutFilesTest.php b/dev/tests/integration/testsuite/integrity/modular/LayoutFilesTest.php index 2934d8e8ebf00903f52cc171fced5572ca7c9ca9..206abcd016419644c039afb9e7e1bd69621fda27 100644 --- a/dev/tests/integration/testsuite/integrity/modular/LayoutFilesTest.php +++ b/dev/tests/integration/testsuite/integrity/modular/LayoutFilesTest.php @@ -21,13 +21,10 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ -/** - * @group integrity - */ class Integrity_Modular_LayoutFilesTest extends PHPUnit_Framework_TestCase { /** diff --git a/dev/tests/integration/testsuite/integrity/modular/MenuConfigFilesTest.php b/dev/tests/integration/testsuite/integrity/modular/MenuConfigFilesTest.php index 68f3be9a716d4ffa1d35abfd611fd8cc35bc49ce..5d2a8e905dbcce18c7dccf2c22c21e52957432b5 100644 --- a/dev/tests/integration/testsuite/integrity/modular/MenuConfigFilesTest.php +++ b/dev/tests/integration/testsuite/integrity/modular/MenuConfigFilesTest.php @@ -21,13 +21,10 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ -/** - * @group integrity - */ class Integrity_Modular_MenuConfigFilesTest extends PHPUnit_Framework_TestCase { /** @@ -37,24 +34,22 @@ class Integrity_Modular_MenuConfigFilesTest extends PHPUnit_Framework_TestCase protected $_fileList = array(); /** - * Mage_Backend_Model_Config_Menu + * @var Mage_Backend_Model_Menu_Config_Menu */ protected $_model; public function setUp() { - $this->_model = $this->getMockForAbstractClass( - 'Mage_Backend_Model_Menu_Config_Menu', - array(), - '', - false + $this->_model = Mage::getModel('Mage_Backend_Model_Menu_Config_Menu', + array( + 'configFiles' => $this->_getConfigurationFileList(), + ) ); } protected function tearDown() { $this->_model = null; - $this->_fileList = null; } /** @@ -79,7 +74,6 @@ class Integrity_Modular_MenuConfigFilesTest extends PHPUnit_Framework_TestCase */ protected function _validateConfigFile($file) { - $schemaFile = $this->_model->getSchemaFile(); $domConfig = new Magento_Config_Dom(file_get_contents($file)); $result = $domConfig->validate($schemaFile, $errors); @@ -118,11 +112,8 @@ class Integrity_Modular_MenuConfigFilesTest extends PHPUnit_Framework_TestCase */ public function testMergedConfig() { - $model = Mage::getModel('Mage_Backend_Model_Menu_Config_Menu', - array('configFiles' => $this->_getConfigurationFileList()) - ); try { - $this->assertInstanceOf('Mage_Backend_Model_Menu_Config_Menu', $model->validate()); + $this->_model->validate(); } catch (Magento_Exception $e) { $this->fail($e->getMessage()); } diff --git a/dev/tests/integration/testsuite/integrity/modular/SystemConfigFilesTest.php b/dev/tests/integration/testsuite/integrity/modular/SystemConfigFilesTest.php index 7b888865a8497d267e49d113847b986e18deb4c8..e18a7df392c3c64463f725fdb56dc924d9ea6f11 100644 --- a/dev/tests/integration/testsuite/integrity/modular/SystemConfigFilesTest.php +++ b/dev/tests/integration/testsuite/integrity/modular/SystemConfigFilesTest.php @@ -21,32 +21,23 @@ * @category Magento * @package Mage_Backend * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ -/** - * @group integrity - */ class Integrity_Modular_SystemConfigFilesTest extends PHPUnit_Framework_TestCase { public function testConfiguration() { - $fileList = glob(Mage::getBaseDir('app') . '/*/*/*/*/etc/adminhtml/system.xml'); try { - $configMock = $this->getMock( - 'Mage_Core_Model_Config', array('getModuleConfigurationFiles'), array(), '', false - ); - $configMock->expects($this->any()) - ->method('getModuleConfigurationFiles') - ->will($this->returnValue($fileList)); + $config = Mage::getConfig(); $cacheMock = $this->getMock('Mage_Core_Model_Cache', array(), array(), '', false); $cacheMock->expects($this->any())->method('canUse')->will($this->returnValue(false)); $converter = new Mage_Backend_Model_Config_Structure_Converter( new Mage_Backend_Model_Config_Structure_Mapper_Factory(Mage::getObjectManager()) ); new Mage_Backend_Model_Config_Structure_Reader( - $configMock, $cacheMock, $converter, true + $config, $cacheMock, $converter, true ); } catch (Magento_Exception $exp) { $this->fail($exp->getMessage()); diff --git a/dev/tests/integration/testsuite/integrity/modular/TemplateFilesTest.php b/dev/tests/integration/testsuite/integrity/modular/TemplateFilesTest.php index 7ca378c24f59a6cff39586a59507280e26b94bbe..762a3d49d30cc7200bda1e811f0852876f836b7c 100644 --- a/dev/tests/integration/testsuite/integrity/modular/TemplateFilesTest.php +++ b/dev/tests/integration/testsuite/integrity/modular/TemplateFilesTest.php @@ -21,13 +21,12 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ /** * @magentoAppIsolation - * @group integrity */ class Integrity_Modular_TemplateFilesTest extends Magento_Test_TestCase_IntegrityAbstract { diff --git a/dev/tests/integration/testsuite/integrity/modular/ViewConfigFilesTest.php b/dev/tests/integration/testsuite/integrity/modular/ViewConfigFilesTest.php index 5c2b0dc9c6db11ba7f26626e1151ce3864a740b3..a901f8630b230bc3d4aa0ca7e38c365b8701f99e 100644 --- a/dev/tests/integration/testsuite/integrity/modular/ViewConfigFilesTest.php +++ b/dev/tests/integration/testsuite/integrity/modular/ViewConfigFilesTest.php @@ -21,13 +21,10 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ -/** - * @group integrity - */ class Integrity_Modular_ViewConfigFilesTest extends PHPUnit_Framework_TestCase { /** @@ -37,7 +34,7 @@ class Integrity_Modular_ViewConfigFilesTest extends PHPUnit_Framework_TestCase public function testViewConfigFile($file) { $domConfig = new Magento_Config_Dom(file_get_contents($file)); - $result = $domConfig->validate(Mage::getBaseDir('lib') . '/Magento/Config/view.xsd', $errors); + $result = $domConfig->validate(Mage::getBaseDir('lib') . '/Magento/Config/etc/view.xsd', $errors); $message = "Invalid XML-file: {$file}\n"; foreach ($errors as $error) { $message .= "{$error->message} Line: {$error->line}\n"; diff --git a/dev/tests/integration/testsuite/integrity/theme/TemplateFilesTest.php b/dev/tests/integration/testsuite/integrity/theme/TemplateFilesTest.php index 816a0ea7b1f0ec17047dccff1779f5748958759b..d40c2f6b8a5016a4d7631a02f77a6dd614d935d8 100644 --- a/dev/tests/integration/testsuite/integrity/theme/TemplateFilesTest.php +++ b/dev/tests/integration/testsuite/integrity/theme/TemplateFilesTest.php @@ -21,13 +21,10 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ -/** - * @group integrity - */ class Integrity_Theme_TemplateFilesTest extends Magento_Test_TestCase_IntegrityAbstract { /** diff --git a/dev/tests/integration/testsuite/integrity/theme/ViewFilesTest.php b/dev/tests/integration/testsuite/integrity/theme/ViewFilesTest.php index 448cafb3ee6d3444f1f94fb0dcb32146eac89feb..9efe5fb9e4d12dfaba9fd61b7edc15e713cd4a1e 100644 --- a/dev/tests/integration/testsuite/integrity/theme/ViewFilesTest.php +++ b/dev/tests/integration/testsuite/integrity/theme/ViewFilesTest.php @@ -21,13 +21,10 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ -/** - * @group integrity - */ class Integrity_Theme_ViewFilesTest extends Magento_Test_TestCase_IntegrityAbstract { /** diff --git a/dev/tests/integration/testsuite/integrity/theme/XmlFilesTest.php b/dev/tests/integration/testsuite/integrity/theme/XmlFilesTest.php index 1e6448ce124c5866725968088c77d1ff8c28b72c..bab8d3683baf907a412ee8248e232a014d107b02 100644 --- a/dev/tests/integration/testsuite/integrity/theme/XmlFilesTest.php +++ b/dev/tests/integration/testsuite/integrity/theme/XmlFilesTest.php @@ -21,13 +21,10 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ -/** - * @group integrity - */ class Integrity_Theme_XmlFilesTest extends PHPUnit_Framework_TestCase { /** @@ -36,7 +33,7 @@ class Integrity_Theme_XmlFilesTest extends PHPUnit_Framework_TestCase */ public function testViewConfigFile($file) { - $this->_validateConfigFile($file, Mage::getBaseDir('lib') . '/Magento/Config/view.xsd'); + $this->_validateConfigFile($file, Mage::getBaseDir('lib') . '/Magento/Config/etc/view.xsd'); } /** @@ -78,7 +75,7 @@ class Integrity_Theme_XmlFilesTest extends PHPUnit_Framework_TestCase */ public function testThemeConfigFileSchema($file) { - $this->_validateConfigFile($file, Mage::getBaseDir('lib') . '/Magento/Config/theme.xsd'); + $this->_validateConfigFile($file, Mage::getBaseDir('lib') . '/Magento/Config/etc/theme.xsd'); } /** diff --git a/dev/tests/js/jsTestDriver.php.dist b/dev/tests/js/jsTestDriver.php.dist index 05683e5d48e82e534cb34f131038ca0dcd05fc8f..a5143d3647550c1718cf47d0137e475394f8da42 100644 --- a/dev/tests/js/jsTestDriver.php.dist +++ b/dev/tests/js/jsTestDriver.php.dist @@ -23,7 +23,7 @@ * * @category tests * @package js - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * * @return array @@ -35,7 +35,7 @@ return array( '/pub/lib/globalize', '/pub/lib/mage/localization', '/pub/lib/mage/validation', - '/pub/lib/jquery/jquery-ui-1.9.1.custom.min.js', + '/pub/lib/jquery/jquery-ui.min.js', '/pub/lib/jquery/ui/i18n', '/pub/lib/jquery/jquery-ui-timepicker-addon.js', '/pub/lib/jquery/jquery.tmpl.min.js', diff --git a/dev/tests/js/jsTestDriverOrder.php b/dev/tests/js/jsTestDriverOrder.php index 72b4ac67ed8ac46353b7c6c23d0fa5f4023c1f74..ba60648c5c2beaa6eeb9631519a63e35caf02775 100644 --- a/dev/tests/js/jsTestDriverOrder.php +++ b/dev/tests/js/jsTestDriverOrder.php @@ -23,14 +23,14 @@ * * @category tests * @package js - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * * @return array */ return array( '/pub/lib/globalize/globalize.js', - '/pub/lib/jquery/jquery-1.8.2.min.js', + '/pub/lib/jquery/jquery.min.js', '/pub/lib/jquery/jquery.cookie.js', '/pub/lib/jquery/head.js', '/pub/lib/mage/mage.js', diff --git a/dev/tests/js/run_js_tests.php b/dev/tests/js/run_js_tests.php index c01479a5a4b2f40ad795f84a208fcca8cb5b6ca2..c60aa73faa8f19476448355318e1aa4e9ab17e98 100644 --- a/dev/tests/js/run_js_tests.php +++ b/dev/tests/js/run_js_tests.php @@ -22,7 +22,7 @@ * * @category tests * @package js - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/js/testsuite/mage/button/button-test.js b/dev/tests/js/testsuite/mage/button/button-test.js index 2a206be814467b7b4175090c4895a9f4b7fe37cf..ac66dd3f7dc58457a453ce6a86ac02761ee4e8c4 100644 --- a/dev/tests/js/testsuite/mage/button/button-test.js +++ b/dev/tests/js/testsuite/mage/button/button-test.js @@ -19,7 +19,7 @@ * * @category mage.js * @package test - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ButtonTest = TestCase('ButtonTest'); diff --git a/dev/tests/js/testsuite/mage/calendar/calendar-test.js b/dev/tests/js/testsuite/mage/calendar/calendar-test.js index df5ba9607db2c18f3a0503f1574555eaafbf0b34..1ccadc7cff70ed4ec2c7251baec9cf314ab53cd8 100644 --- a/dev/tests/js/testsuite/mage/calendar/calendar-test.js +++ b/dev/tests/js/testsuite/mage/calendar/calendar-test.js @@ -19,7 +19,7 @@ * * @category mage.calendar * @package test - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ CalendarTest = TestCase('CalendarTest'); diff --git a/dev/tests/js/testsuite/mage/calendar/date-range-test.js b/dev/tests/js/testsuite/mage/calendar/date-range-test.js index 8c4b9934dec020c68a75724d11421a06c5d1a638..44e853bfbab6e867b5d200d80711e7ebade81d3d 100644 --- a/dev/tests/js/testsuite/mage/calendar/date-range-test.js +++ b/dev/tests/js/testsuite/mage/calendar/date-range-test.js @@ -19,7 +19,7 @@ * * @category mage.calendar * @package test - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ DaterangeTest = TestCase('DaterangeTest'); diff --git a/dev/tests/js/testsuite/mage/decorate-test.js b/dev/tests/js/testsuite/mage/decorate-test.js index 06dabf06e3937bb5a01e6aa91649bd78fd7795bd..47fe67356bb8340c61031bc148abbdc43f256ad5 100644 --- a/dev/tests/js/testsuite/mage/decorate-test.js +++ b/dev/tests/js/testsuite/mage/decorate-test.js @@ -19,7 +19,7 @@ * * @category mage.decorator * @package test - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ DecoratorTest = TestCase('DecoratorTest'); diff --git a/dev/tests/js/testsuite/mage/design_editor/adminhtml/js/infinitescroll.js b/dev/tests/js/testsuite/mage/design_editor/adminhtml/js/infinitescroll.js index 82d52aa9f87a2e0156fb945d47ecd8b11c74ca15..36facfbd2abba298562dc9a5681c5cf9522c3a8b 100644 --- a/dev/tests/js/testsuite/mage/design_editor/adminhtml/js/infinitescroll.js +++ b/dev/tests/js/testsuite/mage/design_editor/adminhtml/js/infinitescroll.js @@ -19,7 +19,7 @@ * * @category mage.design_editor * @package test - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ InfiniteScroll = TestCase('InfiniteScroll'); diff --git a/dev/tests/js/testsuite/mage/design_editor/checkbox-test.js b/dev/tests/js/testsuite/mage/design_editor/checkbox-test.js index b5c8a03811496093b9e2fb1ff10660d1eee03a1d..204ed524da02316854d744f34bf77c7f319eecb7 100644 --- a/dev/tests/js/testsuite/mage/design_editor/checkbox-test.js +++ b/dev/tests/js/testsuite/mage/design_editor/checkbox-test.js @@ -19,7 +19,7 @@ * * @category mage.design_editor * @package test - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ CheckboxTest = TestCase('DesignEditor_CheckboxTest'); diff --git a/dev/tests/js/testsuite/mage/design_editor/connector-test.js b/dev/tests/js/testsuite/mage/design_editor/connector-test.js index fdd79b39c0c7d725caeab6d856a10c5a2e51be2f..444db35917daed951e797891f83181301531f941 100644 --- a/dev/tests/js/testsuite/mage/design_editor/connector-test.js +++ b/dev/tests/js/testsuite/mage/design_editor/connector-test.js @@ -19,7 +19,7 @@ * * @category mage.design_editor * @package test - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ConnectorTest = TestCase('DesignEditor_ConnectorTest'); diff --git a/dev/tests/js/testsuite/mage/design_editor/container-test.js b/dev/tests/js/testsuite/mage/design_editor/container-test.js index 2939d0f5552275c0bb806c16453dc439e340b799..5000a304e5222b5d0b67d3cc2769e88dfcd1215a 100644 --- a/dev/tests/js/testsuite/mage/design_editor/container-test.js +++ b/dev/tests/js/testsuite/mage/design_editor/container-test.js @@ -19,7 +19,7 @@ * * @category mage.design_editor * @package test - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ContainerTest = TestCase('DesignEditor_ContainerTest'); diff --git a/dev/tests/js/testsuite/mage/design_editor/history-test.js b/dev/tests/js/testsuite/mage/design_editor/history-test.js index b7d10d4bb5c6dc3c53b8eaa005633e9f715ea780..dd21a7f4bd6e464d1f126c7fc6b4c0c8cbdafd1e 100644 --- a/dev/tests/js/testsuite/mage/design_editor/history-test.js +++ b/dev/tests/js/testsuite/mage/design_editor/history-test.js @@ -19,7 +19,7 @@ * * @category mage.design_editor * @package test - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ HistoryTest = TestCase('DesignEditor_HistoryTest'); diff --git a/dev/tests/js/testsuite/mage/design_editor/history-toolbar-test.js b/dev/tests/js/testsuite/mage/design_editor/history-toolbar-test.js index 4329ce557bba335df8bb5ff9a9c854e3468eb5a3..442938352469e91f602fd611b87132a0436f6f8c 100644 --- a/dev/tests/js/testsuite/mage/design_editor/history-toolbar-test.js +++ b/dev/tests/js/testsuite/mage/design_editor/history-toolbar-test.js @@ -19,7 +19,7 @@ * * @category mage.design_editor * @package test - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ HistoryToolbarTest = TestCase('DesignEditor_HistoryToolbarTest'); diff --git a/dev/tests/js/testsuite/mage/design_editor/menu-test.js b/dev/tests/js/testsuite/mage/design_editor/menu-test.js index 50423996eb71134770128b9bf422526d704ac322..42219542bcbc06d56423a778ca6740139afe6725 100644 --- a/dev/tests/js/testsuite/mage/design_editor/menu-test.js +++ b/dev/tests/js/testsuite/mage/design_editor/menu-test.js @@ -19,7 +19,7 @@ * * @category mage.design_editor * @package test - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ MenuTest = TestCase('DesignEditor_MenuTest'); diff --git a/dev/tests/js/testsuite/mage/design_editor/page-test.js b/dev/tests/js/testsuite/mage/design_editor/page-test.js index 737a8c260bfd6c70c54763576c49a744a93dca81..8529f41b2fa46bb63f77a09753b34d3cb1476b1b 100644 --- a/dev/tests/js/testsuite/mage/design_editor/page-test.js +++ b/dev/tests/js/testsuite/mage/design_editor/page-test.js @@ -19,7 +19,7 @@ * * @category mage.design_editor * @package test - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ PageTest = TestCase('DesignEditor_PageTest'); diff --git a/dev/tests/js/testsuite/mage/design_editor/page-test/highlight-test.js b/dev/tests/js/testsuite/mage/design_editor/page-test/highlight-test.js index 0754b2c70aedead7a556b0b54b6997264c39b54c..4c4b77bcf6fb59cdf21558b5b64c829cb50639dd 100644 --- a/dev/tests/js/testsuite/mage/design_editor/page-test/highlight-test.js +++ b/dev/tests/js/testsuite/mage/design_editor/page-test/highlight-test.js @@ -19,7 +19,7 @@ * * @category mage.design_editor * @package test - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ PageTestHighlight = TestCase('DesignEditor_PageTest_Highlight'); diff --git a/dev/tests/js/testsuite/mage/design_editor/page-test/init-panel-test.js b/dev/tests/js/testsuite/mage/design_editor/page-test/init-panel-test.js index f80e485cab8e57fcb293d95d7f0392cbdaf9f41a..f93a1f4e2fa8f2b7e04faa1d08a6c4bf1e669ca8 100644 --- a/dev/tests/js/testsuite/mage/design_editor/page-test/init-panel-test.js +++ b/dev/tests/js/testsuite/mage/design_editor/page-test/init-panel-test.js @@ -19,7 +19,7 @@ * * @category mage.design_editor * @package test - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ PageTestInitPanel = TestCase('DesignEditor_PageTest_InitPanel'); diff --git a/dev/tests/js/testsuite/mage/design_editor/page-test/process-markers-test.js b/dev/tests/js/testsuite/mage/design_editor/page-test/process-markers-test.js index efb1a726348a7c1f807cb41ada94a98f4dcd1753..68779f0cdcb0c545ca438e8f0e9d4b8581018dd5 100644 --- a/dev/tests/js/testsuite/mage/design_editor/page-test/process-markers-test.js +++ b/dev/tests/js/testsuite/mage/design_editor/page-test/process-markers-test.js @@ -19,7 +19,7 @@ * * @category mage.design_editor * @package test - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ PageTestProcessMarkers = TestCase('DesignEditor_PageTest_ProcessMarkers'); diff --git a/dev/tests/js/testsuite/mage/design_editor/page-test/unhighlight-test.js b/dev/tests/js/testsuite/mage/design_editor/page-test/unhighlight-test.js index ab08f07eec6955878fbfe5d4b89d29ad2278fe2b..ad2a7001ea085f30afb2f8061f33c35328fd630d 100644 --- a/dev/tests/js/testsuite/mage/design_editor/page-test/unhighlight-test.js +++ b/dev/tests/js/testsuite/mage/design_editor/page-test/unhighlight-test.js @@ -19,7 +19,7 @@ * * @category mage.design_editor * @package test - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ PageTestUnhighlight = TestCase('DesignEditor_PageTest_Unhighlight'); diff --git a/dev/tests/js/testsuite/mage/design_editor/panel-test.js b/dev/tests/js/testsuite/mage/design_editor/panel-test.js index fd20b5dfbd809112fcd2fc29eafac480d3455536..3cef38c0560110e3e08d87609beb61dfa30c03a9 100644 --- a/dev/tests/js/testsuite/mage/design_editor/panel-test.js +++ b/dev/tests/js/testsuite/mage/design_editor/panel-test.js @@ -19,7 +19,7 @@ * * @category mage.design_editor * @package test - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ PanelTest = TestCase('DesignEditor_PanelTest'); diff --git a/dev/tests/js/testsuite/mage/design_editor/tree-test.js b/dev/tests/js/testsuite/mage/design_editor/tree-test.js index d6c34aaabd727bc0504f0394433e57dc7979e487..f32c88e29c788431df90925f44dd7de1ce75f991 100644 --- a/dev/tests/js/testsuite/mage/design_editor/tree-test.js +++ b/dev/tests/js/testsuite/mage/design_editor/tree-test.js @@ -19,7 +19,7 @@ * * @category mage.design_editor * @package test - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/dev/tests/js/testsuite/mage/edit_trigger/edit-trigger-test.js b/dev/tests/js/testsuite/mage/edit_trigger/edit-trigger-test.js index a8f35b7c3d803fd60508680ec1ecf7150bbbcc6e..200c30679ae7c603c75d10b7042f3217777471e4 100644 --- a/dev/tests/js/testsuite/mage/edit_trigger/edit-trigger-test.js +++ b/dev/tests/js/testsuite/mage/edit_trigger/edit-trigger-test.js @@ -19,7 +19,7 @@ * * @category mage.js * @package test - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ EditTriggerTest = TestCase('EditTriggerTest'); diff --git a/dev/tests/js/testsuite/mage/form/form-test.js b/dev/tests/js/testsuite/mage/form/form-test.js index 12555291e86d43fb26d58248aadd66a8193cd26b..036831ca4f298159089d4cbbe0041b50b7d143e0 100644 --- a/dev/tests/js/testsuite/mage/form/form-test.js +++ b/dev/tests/js/testsuite/mage/form/form-test.js @@ -19,15 +19,13 @@ * * @category mage.js * @package test - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ FormTest = TestCase('FormTest'); FormTest.prototype.testInit = function() { /*:DOC += <form id="form" action="action/url/" ></form>*/ var form = jQuery('#form').form(); - - assertNotUndefined(jQuery.template['actionTemplate']); assertTrue(form.is(':mage-form')); }; FormTest.prototype.testRollback = function() { @@ -231,4 +229,31 @@ FormTest.prototype.testSubmit = function() { assertEquals(form.prop('target'), form.data("form").oldAttributes.target); assertEquals(form.prop('method'), form.data("form").oldAttributes.method); assertTrue(formSubmitted); -}; \ No newline at end of file +}; +FormTest.prototype.testBuildURL = function() { + var dataProvider = [ + { + params: ['http://domain.com//', {'key[one]': 'value 1', 'key2': '# value'}], + expected: 'http://domain.com/key[one]/value%201/key2/%23%20value/' + }, + { + params: ['http://domain.com', {'key[one]': 'value 1', 'key2': '# value'}], + expected: 'http://domain.com/key[one]/value%201/key2/%23%20value/' + }, + { + params: ['http://domain.com?some=param', {'key[one]': 'value 1', 'key2': '# value'}], + expected: 'http://domain.com?some=param&key[one]=value%201&key2=%23%20value' + }, + { + params: ['http://domain.com?some=param&', {'key[one]': 'value 1', 'key2': '# value'}], + expected: 'http://domain.com?some=param&key[one]=value%201&key2=%23%20value' + } + ], + method = jQuery.mage.form._proto._buildURL, + quantity = dataProvider.length; + + expectAsserts(quantity); + for (var i = 0; i < quantity; i++) { + assertEquals(dataProvider[i].expected, method.apply(null, dataProvider[i].params)); + } +}; diff --git a/dev/tests/js/testsuite/mage/loader/loader-test.js b/dev/tests/js/testsuite/mage/loader/loader-test.js index 10883aad39cc2865cdc1ad4bf52cfd3babdc1ca9..17df897a4f51ced43d79b3605dc4f07ded362ae4 100644 --- a/dev/tests/js/testsuite/mage/loader/loader-test.js +++ b/dev/tests/js/testsuite/mage/loader/loader-test.js @@ -19,7 +19,7 @@ * * @category mage.js * @package test - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ LoaderTest = TestCase('LoaderTest'); diff --git a/dev/tests/js/testsuite/mage/localization/localize-test.js b/dev/tests/js/testsuite/mage/localization/localize-test.js index 42e77b6d8a6efe2516f704cb0ed83314cf90bfd2..0d3e8dcf2d98e3da4c1df2e3064f940a81e61f3d 100644 --- a/dev/tests/js/testsuite/mage/localization/localize-test.js +++ b/dev/tests/js/testsuite/mage/localization/localize-test.js @@ -19,7 +19,7 @@ * * @category mage.localization * @package test - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ LocalizeTest = TestCase('LocalizeTest'); diff --git a/dev/tests/js/testsuite/mage/mage-test.js b/dev/tests/js/testsuite/mage/mage-test.js index c51d3fcf0f46ffd9fb617b13b99128af058643bc..0c2cd551e50e7e6ba7bea93ff7c937afa89e10b9 100644 --- a/dev/tests/js/testsuite/mage/mage-test.js +++ b/dev/tests/js/testsuite/mage/mage-test.js @@ -19,7 +19,7 @@ * * @category mage.event * @package test - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ MageTest = TestCase('MageTest'); diff --git a/dev/tests/js/testsuite/mage/tabs/tabs-test.js b/dev/tests/js/testsuite/mage/tabs/tabs-test.js index 7119bee4060e8c1bf63bf88651463d60aa9da6a7..60496d55b8155f056793d4faa65d25249bb53969 100644 --- a/dev/tests/js/testsuite/mage/tabs/tabs-test.js +++ b/dev/tests/js/testsuite/mage/tabs/tabs-test.js @@ -19,7 +19,7 @@ * * @category mage.js * @package test - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ TabsTest = TestCase('TabsTest'); diff --git a/dev/tests/js/testsuite/mage/translate/translate-test.js b/dev/tests/js/testsuite/mage/translate/translate-test.js index e07d120528612ef219321a584bee01f96b5ccd10..721d86d0fc8efc1d0f74d8af3263bfe65f607c71 100644 --- a/dev/tests/js/testsuite/mage/translate/translate-test.js +++ b/dev/tests/js/testsuite/mage/translate/translate-test.js @@ -19,7 +19,7 @@ * * @category mage.translate * @package test - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ TranslateTest = TestCase('TranslateTest'); diff --git a/dev/tests/js/testsuite/mage/translate_inline/translate-inline-test.js b/dev/tests/js/testsuite/mage/translate_inline/translate-inline-test.js index f47d6323e139ff64c44163c75d0604459a3818f5..899c7c10121617e73ce6db5de637ce8b1a184dfb 100644 --- a/dev/tests/js/testsuite/mage/translate_inline/translate-inline-test.js +++ b/dev/tests/js/testsuite/mage/translate_inline/translate-inline-test.js @@ -19,7 +19,7 @@ * * @category mage.js * @package test - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ TranslateInlineTest = TestCase('TranslateInlineTest'); diff --git a/dev/tests/js/testsuite/mage/validation/validate-test.js b/dev/tests/js/testsuite/mage/validation/validate-test.js index a0e45693b677de401724cb84940aa4bb64a85f12..35a0f376899b193fa31070b9d7f007e264d61c3a 100644 --- a/dev/tests/js/testsuite/mage/validation/validate-test.js +++ b/dev/tests/js/testsuite/mage/validation/validate-test.js @@ -19,7 +19,7 @@ * * @category mage.validation * @package test - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ MageValidationTest = TestCase('MageValidationTest'); diff --git a/dev/tests/performance/config.php.dist b/dev/tests/performance/config.php.dist index 5048db0c653ebe57ca029b90ec78bd82bc4d8901..a61b16456cedba8a1d0f7baa6d971a4bd3371fe5 100644 --- a/dev/tests/performance/config.php.dist +++ b/dev/tests/performance/config.php.dist @@ -20,7 +20,7 @@ * * @category Magento * @package performance_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/performance/framework/Magento/Application.php b/dev/tests/performance/framework/Magento/Application.php index bb5e876443ce522e13536c2ed531f8b712e7ab4e..79ec25fa7bbdea170b1ecf4e84a19c338032f0e7 100644 --- a/dev/tests/performance/framework/Magento/Application.php +++ b/dev/tests/performance/framework/Magento/Application.php @@ -20,7 +20,7 @@ * * @category Magento * @package performance_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/performance/framework/Magento/ImportExport/Fixture/Generator.php b/dev/tests/performance/framework/Magento/ImportExport/Fixture/Generator.php index e41782bdc7653363a05e48d32ccbd9679b4b4c05..300e058cd3a841d513211af3508547a95846b3e2 100644 --- a/dev/tests/performance/framework/Magento/ImportExport/Fixture/Generator.php +++ b/dev/tests/performance/framework/Magento/ImportExport/Fixture/Generator.php @@ -18,7 +18,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/performance/framework/Magento/Performance/Bootstrap.php b/dev/tests/performance/framework/Magento/Performance/Bootstrap.php index f21f0b0b8cdc5671facb0a19def3060907d907ce..7a73dbc8eef54161812c81425a2dc3b71e27d798 100644 --- a/dev/tests/performance/framework/Magento/Performance/Bootstrap.php +++ b/dev/tests/performance/framework/Magento/Performance/Bootstrap.php @@ -20,7 +20,7 @@ * * @category Magento * @package performance_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/performance/framework/Magento/Performance/Config.php b/dev/tests/performance/framework/Magento/Performance/Config.php index eb1b688ef31bcae81d97be62914e6e48039eb6b2..242659d24d7e679b15768093ddb8d3415c48d387 100644 --- a/dev/tests/performance/framework/Magento/Performance/Config.php +++ b/dev/tests/performance/framework/Magento/Performance/Config.php @@ -20,7 +20,7 @@ * * @category Magento * @package performance_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/performance/framework/Magento/Performance/Scenario.php b/dev/tests/performance/framework/Magento/Performance/Scenario.php index d035f479811b50da3ea1929801b918f757d93942..56131b599e4be3f09dd4c50da9d85233572b04e5 100644 --- a/dev/tests/performance/framework/Magento/Performance/Scenario.php +++ b/dev/tests/performance/framework/Magento/Performance/Scenario.php @@ -20,7 +20,7 @@ * * @category Magento * @package performance_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/performance/framework/Magento/Performance/Scenario/FailureException.php b/dev/tests/performance/framework/Magento/Performance/Scenario/FailureException.php index d3db98cd14078edf108c48e4e23eed7ef83db683..73f1aec9069f8dd116e0d9f9289e2d0729d11584 100644 --- a/dev/tests/performance/framework/Magento/Performance/Scenario/FailureException.php +++ b/dev/tests/performance/framework/Magento/Performance/Scenario/FailureException.php @@ -20,7 +20,7 @@ * * @category Magento * @package performance_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/performance/framework/Magento/Performance/Scenario/Handler/FileFormat.php b/dev/tests/performance/framework/Magento/Performance/Scenario/Handler/FileFormat.php index 05d89fff2c8b29983c9604709dac0d886a0bca42..56de7c350fb76fdd833c6e615476cb8f64f6f384 100644 --- a/dev/tests/performance/framework/Magento/Performance/Scenario/Handler/FileFormat.php +++ b/dev/tests/performance/framework/Magento/Performance/Scenario/Handler/FileFormat.php @@ -20,7 +20,7 @@ * * @category Magento * @package performance_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/performance/framework/Magento/Performance/Scenario/Handler/Jmeter.php b/dev/tests/performance/framework/Magento/Performance/Scenario/Handler/Jmeter.php index a2ced338b8936ca4334b15a23d95ee1459093326..94caf8de88dba8d3ba01fb99a9171552e747b5a5 100644 --- a/dev/tests/performance/framework/Magento/Performance/Scenario/Handler/Jmeter.php +++ b/dev/tests/performance/framework/Magento/Performance/Scenario/Handler/Jmeter.php @@ -20,7 +20,7 @@ * * @category Magento * @package performance_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/performance/framework/Magento/Performance/Scenario/Handler/Php.php b/dev/tests/performance/framework/Magento/Performance/Scenario/Handler/Php.php index f15125d3e3403c342d725e969df46e00a98083fb..fb03f69d33215c4e95235c55f142a7d076303e41 100644 --- a/dev/tests/performance/framework/Magento/Performance/Scenario/Handler/Php.php +++ b/dev/tests/performance/framework/Magento/Performance/Scenario/Handler/Php.php @@ -20,7 +20,7 @@ * * @category Magento * @package performance_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/performance/framework/Magento/Performance/Scenario/HandlerInterface.php b/dev/tests/performance/framework/Magento/Performance/Scenario/HandlerInterface.php index 448c66dc243bb97741ad2301e04b4d80fa661332..765f5b967ca7bf9f3d0be87d068b032c968fea16 100644 --- a/dev/tests/performance/framework/Magento/Performance/Scenario/HandlerInterface.php +++ b/dev/tests/performance/framework/Magento/Performance/Scenario/HandlerInterface.php @@ -20,7 +20,7 @@ * * @category Magento * @package performance_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/performance/framework/Magento/Performance/Testsuite.php b/dev/tests/performance/framework/Magento/Performance/Testsuite.php index 3f5a089fe71c92c7fb161d5922abbdf6618c9047..efc17623463d21c547811391c9bcd63d77a36f70 100644 --- a/dev/tests/performance/framework/Magento/Performance/Testsuite.php +++ b/dev/tests/performance/framework/Magento/Performance/Testsuite.php @@ -20,7 +20,7 @@ * * @category Magento * @package performance_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/performance/framework/Magento/Performance/Testsuite/Optimizer.php b/dev/tests/performance/framework/Magento/Performance/Testsuite/Optimizer.php index a8ab8c3c8860dc1850ee34b3a082433af6d86c0f..0f9f7fa76493b709b4ae34d40651f9dc80f69cae 100644 --- a/dev/tests/performance/framework/Magento/Performance/Testsuite/Optimizer.php +++ b/dev/tests/performance/framework/Magento/Performance/Testsuite/Optimizer.php @@ -20,7 +20,7 @@ * * @category Magento * @package performance_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/performance/framework/bootstrap.php b/dev/tests/performance/framework/bootstrap.php index caf41ae881378925d2a3a147c6d37ed0d42ee953..9cd368b5af4908e27399a8d1096027ccc07092fc 100644 --- a/dev/tests/performance/framework/bootstrap.php +++ b/dev/tests/performance/framework/bootstrap.php @@ -22,7 +22,7 @@ * * @category Magento * @package performance_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/performance/framework/tests/unit/framework/bootstrap.php b/dev/tests/performance/framework/tests/unit/framework/bootstrap.php new file mode 100644 index 0000000000000000000000000000000000000000..9a20ba1660d4772ab0dfba643c64f52cd67fe86d --- /dev/null +++ b/dev/tests/performance/framework/tests/unit/framework/bootstrap.php @@ -0,0 +1,30 @@ +<?php +/** + * Magento + * + * NOTICE OF LICENSE + * + * This source file is subject to the Open Software License (OSL 3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * http://opensource.org/licenses/osl-3.0.php + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@magentocommerce.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade Magento to newer + * versions in the future. If you wish to customize Magento for your + * needs please refer to http://www.magentocommerce.com for more information. + * + * @category Magento + * @package performance_tests + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) + * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) + */ + +$magentoBaseDir = realpath(__DIR__ . '/../../../../../../../'); + +require_once "$magentoBaseDir/app/bootstrap.php"; +Magento_Autoload_IncludePath::addIncludePath("$magentoBaseDir/dev/tests/performance/framework"); diff --git a/dev/tests/performance/framework/tests/unit/phpunit.xml.dist b/dev/tests/performance/framework/tests/unit/phpunit.xml.dist index 3a99c9f3990fc978819fa4ed0d792b4184ac3f5a..720c990de7365f319a37c8c11f5844cdf8b06039 100644 --- a/dev/tests/performance/framework/tests/unit/phpunit.xml.dist +++ b/dev/tests/performance/framework/tests/unit/phpunit.xml.dist @@ -22,11 +22,11 @@ * @category Magento * @package performance_tests * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> -<phpunit bootstrap="../../bootstrap.php"> +<phpunit bootstrap="framework/bootstrap.php"> <testsuites> <testsuite name="Unit Tests for Performance Testing Framework"> <directory suffix="Test.php">testsuite</directory> diff --git a/dev/tests/performance/framework/tests/unit/testsuite/Magento/ApplicationTest.php b/dev/tests/performance/framework/tests/unit/testsuite/Magento/ApplicationTest.php index cd5e5b338c0cfe89f4de5078df1070e5f979b574..428efbe591e6a25df359f91b484854907d7cc548 100644 --- a/dev/tests/performance/framework/tests/unit/testsuite/Magento/ApplicationTest.php +++ b/dev/tests/performance/framework/tests/unit/testsuite/Magento/ApplicationTest.php @@ -21,7 +21,7 @@ * @category Magento * @package performance_tests * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/performance/framework/tests/unit/testsuite/Magento/ImportExport/Fixture/GeneratorTest.php b/dev/tests/performance/framework/tests/unit/testsuite/Magento/ImportExport/Fixture/GeneratorTest.php index 64f1b26fd95f88d4ec8a132b9ecb2e660a3461f6..ea2eadadf7d7f0eebba28945326aafd08092a225 100644 --- a/dev/tests/performance/framework/tests/unit/testsuite/Magento/ImportExport/Fixture/GeneratorTest.php +++ b/dev/tests/performance/framework/tests/unit/testsuite/Magento/ImportExport/Fixture/GeneratorTest.php @@ -21,7 +21,7 @@ * @category Magento * @package performance_tests * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/BootstrapTest.php b/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/BootstrapTest.php index 619325cd3e23dc71555453007d37c2ad772559e8..8d5af18cd38f8b6db041bc6f58960c7eee799ec9 100644 --- a/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/BootstrapTest.php +++ b/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/BootstrapTest.php @@ -21,7 +21,7 @@ * @category Magento * @package performance_tests * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/ConfigTest.php b/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/ConfigTest.php index f472c0a42e678d548a131bf188990cb2f2cbf0b7..fc90436ca97445c25125039d89e242617bfba7db 100644 --- a/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/ConfigTest.php +++ b/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/ConfigTest.php @@ -21,7 +21,7 @@ * @category Magento * @package performance_tests * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/Scenario/FailureExceptionTest.php b/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/Scenario/FailureExceptionTest.php index 02c52977c537317753d7682f7386b35edb911081..3ad5d95e34988746c672f3c3196686ef13d13023 100644 --- a/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/Scenario/FailureExceptionTest.php +++ b/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/Scenario/FailureExceptionTest.php @@ -21,7 +21,7 @@ * @category Magento * @package performance_tests * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/Scenario/Handler/FileFormatTest.php b/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/Scenario/Handler/FileFormatTest.php index c25f9c444583d5af8091b213c2f80f28638a64bf..4989d769a813f80ba26c961f4286acfd28d1c5c8 100644 --- a/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/Scenario/Handler/FileFormatTest.php +++ b/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/Scenario/Handler/FileFormatTest.php @@ -21,7 +21,7 @@ * @category Magento * @package performance_tests * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/Scenario/Handler/JmeterTest.php b/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/Scenario/Handler/JmeterTest.php index 365e79bcd9f8cfc4c6e683538d65e2f27b5282cf..ead453cee4d7a6251a07910b5a03700411a44b32 100644 --- a/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/Scenario/Handler/JmeterTest.php +++ b/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/Scenario/Handler/JmeterTest.php @@ -21,7 +21,7 @@ * @category Magento * @package performance_tests * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/Scenario/Handler/PhpTest.php b/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/Scenario/Handler/PhpTest.php index f455117fcfc57c03f686e39d750317f3314ed96f..f2bb4eff2eb64c84cb2f02a3bafaf0a718533706 100644 --- a/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/Scenario/Handler/PhpTest.php +++ b/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/Scenario/Handler/PhpTest.php @@ -21,7 +21,7 @@ * @category Magento * @package performance_tests * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/ScenarioTest.php b/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/ScenarioTest.php index 47ac27fbe7cf125bd10d5c103c44dfc29b13c3e8..34eeb9d8ab0b6314272474a4d8e34db091225c68 100644 --- a/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/ScenarioTest.php +++ b/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/ScenarioTest.php @@ -21,7 +21,7 @@ * @category Magento * @package performance_tests * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/Testsuite/OptimizerTest.php b/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/Testsuite/OptimizerTest.php index 8c5ee5333ac211174b392dc21baf94b403d2f62f..578514aacc123de26a72581718f4156f9a8d2853 100644 --- a/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/Testsuite/OptimizerTest.php +++ b/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/Testsuite/OptimizerTest.php @@ -21,7 +21,7 @@ * @category Magento * @package performance_tests * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/TestsuiteTest.php b/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/TestsuiteTest.php index ec9645b3cb5a67dc3b7a7324671c79837a55c8ac..67c41748b339f117d419cec03c2626730de33f9e 100644 --- a/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/TestsuiteTest.php +++ b/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/TestsuiteTest.php @@ -21,7 +21,7 @@ * @category Magento * @package performance_tests * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/app_base_dir/dev/shell/install.php b/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/app_base_dir/dev/shell/install.php index 98413034f2bdc5139dc8971d9e2d41991f685a06..e401ac08a4325a9b20bc440b0f017bcf94fbc006 100644 --- a/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/app_base_dir/dev/shell/install.php +++ b/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/app_base_dir/dev/shell/install.php @@ -21,7 +21,7 @@ * @category Magento * @package performance_tests * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/bootstrap/config_dist/config.php.dist b/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/bootstrap/config_dist/config.php.dist index 6acc9b109fc0818a366aa4635459e46d300e2104..d9b453b7729ad8ef277fd5d43eb93a129b1eb5d2 100644 --- a/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/bootstrap/config_dist/config.php.dist +++ b/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/bootstrap/config_dist/config.php.dist @@ -21,7 +21,7 @@ * @category Magento * @package performance_tests * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/bootstrap/config_normal/config.php b/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/bootstrap/config_normal/config.php index 2033bd08a053e780cf0bc6f0b6b0cedf3b5873fd..c38fe4c49b4dc2593db717266bd0030963cbe784 100644 --- a/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/bootstrap/config_normal/config.php +++ b/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/bootstrap/config_normal/config.php @@ -21,7 +21,7 @@ * @category Magento * @package performance_tests * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/bootstrap/config_normal/config.php.dist b/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/bootstrap/config_normal/config.php.dist index a52614d48c2641ed224cdeff1e14308a99cd355a..cf5217fa70a2795663c37facceb24a5eb51c139a 100644 --- a/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/bootstrap/config_normal/config.php.dist +++ b/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/bootstrap/config_normal/config.php.dist @@ -21,7 +21,7 @@ * @category Magento * @package performance_tests * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/config_bad_loops.php b/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/config_bad_loops.php index b3af215e740cdd69130b8b6d3d5f483b85e88e9b..af90a0f82afa56eacc2603b85cb587c32de8e8aa 100644 --- a/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/config_bad_loops.php +++ b/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/config_bad_loops.php @@ -21,7 +21,7 @@ * @category Magento * @package performance_tests * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/config_bad_users.php b/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/config_bad_users.php index 4875b4402588bbd95d2ca8250dbdb9cf567b4384..d61f0984735eca1be52ef6a720faf2dab66bdc82 100644 --- a/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/config_bad_users.php +++ b/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/config_bad_users.php @@ -21,7 +21,7 @@ * @category Magento * @package performance_tests * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/config_data.php b/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/config_data.php index aa36fca3657fce3b94cf4e99a5c5ecd66baebba4..5489d1d8e6f051a26eb80d163efd6199f19079b1 100644 --- a/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/config_data.php +++ b/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/config_data.php @@ -21,7 +21,7 @@ * @category Magento * @package performance_tests * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/config_data_invalid_scenarios_format.php b/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/config_data_invalid_scenarios_format.php index 95d840175d138d9cc0f2855c763112b76ed8c02c..7619ac0d6d682f22667c74d1c21076a571881efe 100644 --- a/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/config_data_invalid_scenarios_format.php +++ b/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/config_data_invalid_scenarios_format.php @@ -21,7 +21,7 @@ * @category Magento * @package performance_tests * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/config_invalid_fixtures_format.php b/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/config_invalid_fixtures_format.php index 05aad79dd17822a7f416c7915b3cb8f2fc20ea00..5fb9173280890824885f81a4895f94152003c1c8 100644 --- a/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/config_invalid_fixtures_format.php +++ b/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/config_invalid_fixtures_format.php @@ -21,7 +21,7 @@ * @category Magento * @package performance_tests * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/config_no_file_defined.php b/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/config_no_file_defined.php index f1635d54326e0d0dfecba539b871fa3355e3aea7..304bd7df515eecb3867876e84f5fe12fb1860aa4 100644 --- a/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/config_no_file_defined.php +++ b/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/config_no_file_defined.php @@ -21,7 +21,7 @@ * @category Magento * @package performance_tests * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/config_no_title.php b/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/config_no_title.php index a690945971f301636b73a3a6b2efecbe6f4a120a..49ed11f3a5cdd7284811672678d2c2d103b15856 100644 --- a/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/config_no_title.php +++ b/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/config_no_title.php @@ -21,7 +21,7 @@ * @category Magento * @package performance_tests * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/config_non_existing_file.php b/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/config_non_existing_file.php index 1acf08c0b2de8fc7ab6c8b701d49347e77eaea82..9bc3fe9fa8c9ed5ded7b650c592ec70aabb4a543 100644 --- a/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/config_non_existing_file.php +++ b/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/config_non_existing_file.php @@ -21,7 +21,7 @@ * @category Magento * @package performance_tests * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/config_non_existing_fixture.php b/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/config_non_existing_fixture.php index 46bb6dc91b71e5783df8177a6007b69c4f85b255..4e4aa4cc664faffefd9245e760b6cadf2e54416d 100644 --- a/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/config_non_existing_fixture.php +++ b/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/config_non_existing_fixture.php @@ -21,7 +21,7 @@ * @category Magento * @package performance_tests * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/fixture.php b/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/fixture.php index 4d876edf321eb5c52e8eabb5bd7ee8ffbf485e9b..ab51a0ad6192987df71d7e4bb593270a34018efd 100644 --- a/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/fixture.php +++ b/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/fixture.php @@ -21,7 +21,7 @@ * @category Magento * @package performance_tests * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/fixture2.php b/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/fixture2.php index c441a5619b1bb7edab674892d37ecc563271b02c..18e575bae18138e87c9f89d5218192d2a0440029 100644 --- a/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/fixture2.php +++ b/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/fixture2.php @@ -21,7 +21,7 @@ * @category Magento * @package performance_tests * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/scenario.jmx b/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/scenario.jmx index 2c195e42379e06cbc53ad3cdf63de1bccf13455e..c42e05e3df4fc7679e8796bac733c67af405d615 100644 --- a/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/scenario.jmx +++ b/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/scenario.jmx @@ -22,7 +22,7 @@ * @category Magento * @package performance_tests * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/scenario.jtl b/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/scenario.jtl index 4254d0b59358acc37f3b7634b2336efd2d4462f8..260f944c460691702009b39d00a112aad6a20916 100644 --- a/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/scenario.jtl +++ b/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/scenario.jtl @@ -22,7 +22,7 @@ * @category Magento * @package performance_tests * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/scenario.php b/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/scenario.php index 4302048283c6edf814f166aadf0ceb3d91b19b3e..832a1a65684c9d9ee429968a2cc0e7243773a423 100644 --- a/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/scenario.php +++ b/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/scenario.php @@ -21,7 +21,7 @@ * @category Magento * @package performance_tests * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/scenario_error.jmx b/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/scenario_error.jmx index 2c195e42379e06cbc53ad3cdf63de1bccf13455e..c42e05e3df4fc7679e8796bac733c67af405d615 100644 --- a/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/scenario_error.jmx +++ b/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/scenario_error.jmx @@ -22,7 +22,7 @@ * @category Magento * @package performance_tests * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/scenario_error.jtl b/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/scenario_error.jtl index 83ece74bf3afaeee134805de665755068863e7d1..839773ddca55dc37b7b11d7094e7a8aa09f6db62 100644 --- a/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/scenario_error.jtl +++ b/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/scenario_error.jtl @@ -22,7 +22,7 @@ * @category Magento * @package performance_tests * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/scenario_failure.jmx b/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/scenario_failure.jmx index 2c195e42379e06cbc53ad3cdf63de1bccf13455e..c42e05e3df4fc7679e8796bac733c67af405d615 100644 --- a/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/scenario_failure.jmx +++ b/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/scenario_failure.jmx @@ -22,7 +22,7 @@ * @category Magento * @package performance_tests * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/scenario_failure.jtl b/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/scenario_failure.jtl index a97c563626222b77c11c5cb74f857293811c7a5e..cef477ed6885a53604f052213fd0d4ab9e71fe53 100644 --- a/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/scenario_failure.jtl +++ b/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/scenario_failure.jtl @@ -22,7 +22,7 @@ * @category Magento * @package performance_tests * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/scenario_without_report.jmx b/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/scenario_without_report.jmx index 2c195e42379e06cbc53ad3cdf63de1bccf13455e..c42e05e3df4fc7679e8796bac733c67af405d615 100644 --- a/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/scenario_without_report.jmx +++ b/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/scenario_without_report.jmx @@ -22,7 +22,7 @@ * @category Magento * @package performance_tests * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/scenario_without_report.php b/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/scenario_without_report.php index 16e120525548e50bdecd8d2fcfdf1a6b6bb4ca65..d07b7f8d7a5768e820226d6ea29a468f393b7712 100644 --- a/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/scenario_without_report.php +++ b/dev/tests/performance/framework/tests/unit/testsuite/Magento/Performance/_files/scenario_without_report.php @@ -21,7 +21,7 @@ * @category Magento * @package performance_tests * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/performance/framework/tests/unit/testsuite/Magento/_files/application_test/fixture1.php b/dev/tests/performance/framework/tests/unit/testsuite/Magento/_files/application_test/fixture1.php index 756b935912ab9579171b32b145a3b7207431d456..2d09b9635852a02b544d23008a4037edf15fe358 100644 --- a/dev/tests/performance/framework/tests/unit/testsuite/Magento/_files/application_test/fixture1.php +++ b/dev/tests/performance/framework/tests/unit/testsuite/Magento/_files/application_test/fixture1.php @@ -21,7 +21,7 @@ * @category Magento * @package performance_tests * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/performance/framework/tests/unit/testsuite/Magento/_files/application_test/fixture2.php b/dev/tests/performance/framework/tests/unit/testsuite/Magento/_files/application_test/fixture2.php index ff62fc2ad8ff68d34a3230cf2dc9747406039a43..47197925c91e0bee0942a23d3f18ed59ac7be2a1 100644 --- a/dev/tests/performance/framework/tests/unit/testsuite/Magento/_files/application_test/fixture2.php +++ b/dev/tests/performance/framework/tests/unit/testsuite/Magento/_files/application_test/fixture2.php @@ -21,7 +21,7 @@ * @category Magento * @package performance_tests * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/performance/run_scenarios.php b/dev/tests/performance/run_scenarios.php index fa33beafe811e3f4c71158c8a126c2af8815fb9d..0c98de2a57b3e0715e8e2c030167eb0c9459190c 100755 --- a/dev/tests/performance/run_scenarios.php +++ b/dev/tests/performance/run_scenarios.php @@ -22,7 +22,7 @@ * * @category Magento * @package performance_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/performance/testsuite/_samples/_template.jmx b/dev/tests/performance/testsuite/_samples/_template.jmx index 4cdf643b72d30717dd4732bde4d3165657776feb..fbb2925a3b8b59a5c99f6da33e1033bc85ccf9c3 100644 --- a/dev/tests/performance/testsuite/_samples/_template.jmx +++ b/dev/tests/performance/testsuite/_samples/_template.jmx @@ -21,7 +21,7 @@ * * @category Magento * @package performance_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/performance/testsuite/add_to_cart.jmx b/dev/tests/performance/testsuite/add_to_cart.jmx index 53dc2b7b302d16bdc87c64ed43576ef959ebb3b4..7232fe5818126cf3752d4c8081562be35e00d6bd 100644 --- a/dev/tests/performance/testsuite/add_to_cart.jmx +++ b/dev/tests/performance/testsuite/add_to_cart.jmx @@ -21,7 +21,7 @@ * * @category Magento * @package performance_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/performance/testsuite/advanced_search.jmx b/dev/tests/performance/testsuite/advanced_search.jmx index cbab6ef2c1ef4369809ea3ac8ee138fe63fbc806..b7d20f74fe895d93af396bdcc8df3125cae8890a 100644 --- a/dev/tests/performance/testsuite/advanced_search.jmx +++ b/dev/tests/performance/testsuite/advanced_search.jmx @@ -21,7 +21,7 @@ * * @category Magento * @package performance_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/performance/testsuite/backend.jmx b/dev/tests/performance/testsuite/backend.jmx index 5b8ad3203146d237b3e8858f9b29d37d2e867351..e940642aacc520ebfbd3623cb5dbdd816037842b 100644 --- a/dev/tests/performance/testsuite/backend.jmx +++ b/dev/tests/performance/testsuite/backend.jmx @@ -21,7 +21,7 @@ * * @category Magento * @package performance_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/performance/testsuite/category_view.jmx b/dev/tests/performance/testsuite/category_view.jmx index f3a648d534987bbe679b157701f25ac6d7cf1f1f..b46ad2f44996276a5cd7f303cf7bbbf50b428211 100644 --- a/dev/tests/performance/testsuite/category_view.jmx +++ b/dev/tests/performance/testsuite/category_view.jmx @@ -21,7 +21,7 @@ * * @category Magento * @package performance_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/performance/testsuite/checkout.jmx b/dev/tests/performance/testsuite/checkout.jmx index 5dcde741cc92a07387a29f41d9cd695733f3604f..79a9f510984af9b860b0d4e8f0f28b4d71b9c6d1 100644 --- a/dev/tests/performance/testsuite/checkout.jmx +++ b/dev/tests/performance/testsuite/checkout.jmx @@ -21,7 +21,7 @@ * * @category Magento * @package performance_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/performance/testsuite/fixtures/catalog_100k_products.php b/dev/tests/performance/testsuite/fixtures/catalog_100k_products.php index 7482b91216b1a9f01987b3b369c6c43cf251e13c..6f6875cddab5020e2bf3d1cbb904fd7e45d13705 100644 --- a/dev/tests/performance/testsuite/fixtures/catalog_100k_products.php +++ b/dev/tests/performance/testsuite/fixtures/catalog_100k_products.php @@ -18,7 +18,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/performance/testsuite/fixtures/catalog_200_categories_80k_products_with_tags.php b/dev/tests/performance/testsuite/fixtures/catalog_200_categories_80k_products_with_tags.php index 1216642843c7d91fbe80b54d0a289138fb18990b..718a822c093bba8101510eba719c1277ba7035df 100644 --- a/dev/tests/performance/testsuite/fixtures/catalog_200_categories_80k_products_with_tags.php +++ b/dev/tests/performance/testsuite/fixtures/catalog_200_categories_80k_products_with_tags.php @@ -18,7 +18,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/performance/testsuite/fixtures/catalog_category.php b/dev/tests/performance/testsuite/fixtures/catalog_category.php index f5dade8a7cd05cdcb43ccb54b2ee8a37ffbd0bec..e541d9be0b51426e89c0addf2b3a753b1a3ea887 100644 --- a/dev/tests/performance/testsuite/fixtures/catalog_category.php +++ b/dev/tests/performance/testsuite/fixtures/catalog_category.php @@ -21,7 +21,7 @@ * @category Mage * @package Mage_Catalog * @subpackage performance_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/performance/testsuite/fixtures/catalog_product.php b/dev/tests/performance/testsuite/fixtures/catalog_product.php index d6229f31b652363e2fa2a4da319ce6cf47d628a2..03200c2a2ad1565f0877008654ff3641e6193939 100644 --- a/dev/tests/performance/testsuite/fixtures/catalog_product.php +++ b/dev/tests/performance/testsuite/fixtures/catalog_product.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Catalog * @subpackage performance_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/performance/testsuite/fixtures/customer_100k_customers.php b/dev/tests/performance/testsuite/fixtures/customer_100k_customers.php index eb4fb30a39fba486066ed6bcc960ab1193d24901..661732196f3116df7185b06f5baa350933948527 100644 --- a/dev/tests/performance/testsuite/fixtures/customer_100k_customers.php +++ b/dev/tests/performance/testsuite/fixtures/customer_100k_customers.php @@ -18,7 +18,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/performance/testsuite/fixtures/sales_100k_orders.php b/dev/tests/performance/testsuite/fixtures/sales_100k_orders.php index 811078129dc380c5bcf07e9c1387694f028ac042..fcdc3eb0074803845e2fc9fe21ce1f21c2ee533d 100644 --- a/dev/tests/performance/testsuite/fixtures/sales_100k_orders.php +++ b/dev/tests/performance/testsuite/fixtures/sales_100k_orders.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Sales * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/performance/testsuite/home_page.jmx b/dev/tests/performance/testsuite/home_page.jmx index 3de4d30d96bc06e1cca800010149c1e7acc972c4..e86469cd7bd4646139189a911aebf2e4cf8ff332 100644 --- a/dev/tests/performance/testsuite/home_page.jmx +++ b/dev/tests/performance/testsuite/home_page.jmx @@ -21,7 +21,7 @@ * * @category Magento * @package performance_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/performance/testsuite/product_edit.jmx b/dev/tests/performance/testsuite/product_edit.jmx index 908b5ed4ad52c89b29c3952a7f3a9d967288fa18..5520ce623313c4e515eafa4849f07800a1532fc0 100644 --- a/dev/tests/performance/testsuite/product_edit.jmx +++ b/dev/tests/performance/testsuite/product_edit.jmx @@ -21,7 +21,7 @@ * * @category Magento * @package performance_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/performance/testsuite/product_view.jmx b/dev/tests/performance/testsuite/product_view.jmx index 5575a47aed79e34c9f5d24ff6a5743e32f521822..cf6a4e62cbad0f8310e834dd26cfc97045ad055f 100644 --- a/dev/tests/performance/testsuite/product_view.jmx +++ b/dev/tests/performance/testsuite/product_view.jmx @@ -21,7 +21,7 @@ * * @category Magento * @package performance_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/performance/testsuite/quick_search.jmx b/dev/tests/performance/testsuite/quick_search.jmx index 27d972c89d81e39f98a6604dbc269c40cb5c41b0..123c81fc6e010f24bb2a729d644c2c96b40734e2 100644 --- a/dev/tests/performance/testsuite/quick_search.jmx +++ b/dev/tests/performance/testsuite/quick_search.jmx @@ -21,7 +21,7 @@ * * @category Magento * @package performance_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/performance/testsuite/reusable/admin_login.jmx b/dev/tests/performance/testsuite/reusable/admin_login.jmx index 25dc9cc50c26f5813798374f382a49c02880002d..7840da94a0e1e19480bd2997bccdeeab9e432e6a 100644 --- a/dev/tests/performance/testsuite/reusable/admin_login.jmx +++ b/dev/tests/performance/testsuite/reusable/admin_login.jmx @@ -21,7 +21,7 @@ * * @category Magento * @package performance_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/static/framework/CodingStandard/Tool/CodeSniffer.php b/dev/tests/static/framework/CodingStandard/Tool/CodeSniffer.php index 88e22c6e23bfbb5f3f805e11b7dc68114488bea3..52b0f13994549bfcb9f7c1c1e080f15fda461285 100644 --- a/dev/tests/static/framework/CodingStandard/Tool/CodeSniffer.php +++ b/dev/tests/static/framework/CodingStandard/Tool/CodeSniffer.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento * @subpackage static_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/static/framework/CodingStandard/Tool/CodeSniffer/Wrapper.php b/dev/tests/static/framework/CodingStandard/Tool/CodeSniffer/Wrapper.php index aee209c004a4759b5c7a3cca1020967376162a9e..4bf361e31d29916b97a289e093e8c5fb2522ecb8 100644 --- a/dev/tests/static/framework/CodingStandard/Tool/CodeSniffer/Wrapper.php +++ b/dev/tests/static/framework/CodingStandard/Tool/CodeSniffer/Wrapper.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento * @subpackage static_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/static/framework/CodingStandard/ToolInterface.php b/dev/tests/static/framework/CodingStandard/ToolInterface.php index 6a4122054084f430f5c112fe7ccef0548e52a86f..60b5a330af9b171d0d7f1298eed9303e48ffabb7 100644 --- a/dev/tests/static/framework/CodingStandard/ToolInterface.php +++ b/dev/tests/static/framework/CodingStandard/ToolInterface.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento * @subpackage static_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/static/framework/Inspection/CommandAbstract.php b/dev/tests/static/framework/Inspection/CommandAbstract.php index bcf59268c046186d7da0a02926a70e7f2ded0a2b..3532989aa6b12c25ad3060f8610e196876224d4b 100644 --- a/dev/tests/static/framework/Inspection/CommandAbstract.php +++ b/dev/tests/static/framework/Inspection/CommandAbstract.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento * @subpackage static_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/static/framework/Inspection/CopyPasteDetector/Command.php b/dev/tests/static/framework/Inspection/CopyPasteDetector/Command.php index 000c5c7a2a422e307f3f1c43b8f2369525b86364..80a1c01710de4babad89e024f2a703c7e4bb32cc 100644 --- a/dev/tests/static/framework/Inspection/CopyPasteDetector/Command.php +++ b/dev/tests/static/framework/Inspection/CopyPasteDetector/Command.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento * @subpackage static_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/static/framework/Inspection/Exception.php b/dev/tests/static/framework/Inspection/Exception.php index 88fb7d9a7161cf6460b72bf9c944b000a2e126b7..4f17aa7939fe9983de0323a99b14f2f8cf9b0bfa 100644 --- a/dev/tests/static/framework/Inspection/Exception.php +++ b/dev/tests/static/framework/Inspection/Exception.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento * @subpackage static_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/static/framework/Inspection/MessDetector/Command.php b/dev/tests/static/framework/Inspection/MessDetector/Command.php index a32b85250edf49d703c2692b097c96719449bb65..57140c61ac2af416e74f429cfa6d4c6221136788 100644 --- a/dev/tests/static/framework/Inspection/MessDetector/Command.php +++ b/dev/tests/static/framework/Inspection/MessDetector/Command.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento * @subpackage static_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/static/framework/Inspection/WordsFinder.php b/dev/tests/static/framework/Inspection/WordsFinder.php index 36cbbc3949e8ee7ba4819ff3e2f23057b286fe54..c53f94bbdb9b3cef087d6ccea7b09493e838f521 100644 --- a/dev/tests/static/framework/Inspection/WordsFinder.php +++ b/dev/tests/static/framework/Inspection/WordsFinder.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento * @subpackage static_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/static/framework/bootstrap.php b/dev/tests/static/framework/bootstrap.php index f3e6fad9818129219de8f48a11223a467179411d..577daba0e9fbddf8ccea5d229ed5cb0b7c451a66 100644 --- a/dev/tests/static/framework/bootstrap.php +++ b/dev/tests/static/framework/bootstrap.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento * @subpackage static_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/static/framework/tests/unit/phpunit.xml.dist b/dev/tests/static/framework/tests/unit/phpunit.xml.dist index 0853102ab09c5f6cc1ec68596e1519b26f90f9fa..7e88b7ef1ad2d5d4f1bfb3bace3dc403288de0ef 100644 --- a/dev/tests/static/framework/tests/unit/phpunit.xml.dist +++ b/dev/tests/static/framework/tests/unit/phpunit.xml.dist @@ -21,7 +21,7 @@ * * @category Magento * @package unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/static/framework/tests/unit/testsuite/CodingStandard/Tool/CodeSniffer/WrapperTest.php b/dev/tests/static/framework/tests/unit/testsuite/CodingStandard/Tool/CodeSniffer/WrapperTest.php index 0498f55ecf81381833ccdb3cba6fee94a4e449d8..2958461b1cb1487ffe160e433270e9aab9056326 100644 --- a/dev/tests/static/framework/tests/unit/testsuite/CodingStandard/Tool/CodeSniffer/WrapperTest.php +++ b/dev/tests/static/framework/tests/unit/testsuite/CodingStandard/Tool/CodeSniffer/WrapperTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento * @subpackage static_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/static/framework/tests/unit/testsuite/CodingStandard/Tool/CodeSnifferTest.php b/dev/tests/static/framework/tests/unit/testsuite/CodingStandard/Tool/CodeSnifferTest.php index 09c2334e80c530388b46701679b44f26c07e5cfd..baa50c33e45974d751e23005cf43e35d323cf19a 100644 --- a/dev/tests/static/framework/tests/unit/testsuite/CodingStandard/Tool/CodeSnifferTest.php +++ b/dev/tests/static/framework/tests/unit/testsuite/CodingStandard/Tool/CodeSnifferTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento * @subpackage static_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/static/framework/tests/unit/testsuite/Inspection/CopyPasteDetector/CommandTest.php b/dev/tests/static/framework/tests/unit/testsuite/Inspection/CopyPasteDetector/CommandTest.php index e747fcccab5b109bf86d4d83c884aba1b9eac48d..6577a51235393fcfb90e2a2578de5c8648a345f9 100644 --- a/dev/tests/static/framework/tests/unit/testsuite/Inspection/CopyPasteDetector/CommandTest.php +++ b/dev/tests/static/framework/tests/unit/testsuite/Inspection/CopyPasteDetector/CommandTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento * @subpackage static_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/static/framework/tests/unit/testsuite/Inspection/MessDetector/CommandTest.php b/dev/tests/static/framework/tests/unit/testsuite/Inspection/MessDetector/CommandTest.php index 75fa51dec359f1f9f0a37e5434bd11ef20e586d1..cb3641a7fae73ad9ba8e265644b28ebf22058529 100644 --- a/dev/tests/static/framework/tests/unit/testsuite/Inspection/MessDetector/CommandTest.php +++ b/dev/tests/static/framework/tests/unit/testsuite/Inspection/MessDetector/CommandTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento * @subpackage static_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/static/framework/tests/unit/testsuite/Inspection/WordsFinderTest.php b/dev/tests/static/framework/tests/unit/testsuite/Inspection/WordsFinderTest.php index e24a21e884fda824dbe70113946d864b8c94ba04..024c92b875256ce019f7b534a4a66d28a6089db1 100644 --- a/dev/tests/static/framework/tests/unit/testsuite/Inspection/WordsFinderTest.php +++ b/dev/tests/static/framework/tests/unit/testsuite/Inspection/WordsFinderTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento * @subpackage static_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/static/framework/tests/unit/testsuite/Inspection/_files/broken_config.xml b/dev/tests/static/framework/tests/unit/testsuite/Inspection/_files/broken_config.xml index 6696f727845b3adbc2897019f73757e061d8ff6d..0bdb5bdb70d2b0b96f9e9ee0baeb48af3b6e3a7b 100644 --- a/dev/tests/static/framework/tests/unit/testsuite/Inspection/_files/broken_config.xml +++ b/dev/tests/static/framework/tests/unit/testsuite/Inspection/_files/broken_config.xml @@ -22,7 +22,7 @@ * @category Magento * @package Magento * @subpackage static_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/static/framework/tests/unit/testsuite/Inspection/_files/config.xml b/dev/tests/static/framework/tests/unit/testsuite/Inspection/_files/config.xml index 5393223fa7b7fe54575092a826f4416852e2b009..ef0d6304e00fe855bc5177b2f0caeb6692e24298 100644 --- a/dev/tests/static/framework/tests/unit/testsuite/Inspection/_files/config.xml +++ b/dev/tests/static/framework/tests/unit/testsuite/Inspection/_files/config.xml @@ -22,7 +22,7 @@ * @category Magento * @package Magento * @subpackage static_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/static/framework/tests/unit/testsuite/Inspection/_files/config_additional.xml b/dev/tests/static/framework/tests/unit/testsuite/Inspection/_files/config_additional.xml index 52a761acf59faac921350157b3a1d65746e3cdfb..2ef0849fc7215a4812fe573d7f0febabb8073ef0 100644 --- a/dev/tests/static/framework/tests/unit/testsuite/Inspection/_files/config_additional.xml +++ b/dev/tests/static/framework/tests/unit/testsuite/Inspection/_files/config_additional.xml @@ -22,7 +22,7 @@ * @category Magento * @package Magento * @subpackage static_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/static/framework/tests/unit/testsuite/Inspection/_files/empty_whitelist_path.xml b/dev/tests/static/framework/tests/unit/testsuite/Inspection/_files/empty_whitelist_path.xml index 7e251a940d7052a04297f8658ecec05f57fe73ec..aeddb7456146d0d9fad4097e66868ce85d402ab2 100644 --- a/dev/tests/static/framework/tests/unit/testsuite/Inspection/_files/empty_whitelist_path.xml +++ b/dev/tests/static/framework/tests/unit/testsuite/Inspection/_files/empty_whitelist_path.xml @@ -22,7 +22,7 @@ * @category Magento * @package Magento * @subpackage static_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/static/framework/tests/unit/testsuite/Inspection/_files/empty_words_config.xml b/dev/tests/static/framework/tests/unit/testsuite/Inspection/_files/empty_words_config.xml index d03ec468ee421bcbd17709a2a432fa62ecb40333..d75a9bbcebeec75969e404ffb117748251be8782 100644 --- a/dev/tests/static/framework/tests/unit/testsuite/Inspection/_files/empty_words_config.xml +++ b/dev/tests/static/framework/tests/unit/testsuite/Inspection/_files/empty_words_config.xml @@ -22,7 +22,7 @@ * @category Magento * @package Magento * @subpackage static_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/static/framework/tests/unit/testsuite/Inspection/_files/words_finder/buffy.php b/dev/tests/static/framework/tests/unit/testsuite/Inspection/_files/words_finder/buffy.php index ad1bad3eb9abaaf7193c896626def99b88f3d14f..2cc94df235506b818a2d66ad61a9157b714517da 100644 --- a/dev/tests/static/framework/tests/unit/testsuite/Inspection/_files/words_finder/buffy.php +++ b/dev/tests/static/framework/tests/unit/testsuite/Inspection/_files/words_finder/buffy.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento * @subpackage static_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ echo 'At the young age of 15, Buffy Summers was chosen to hunt vampires, demons, and the forces of darkness.'; diff --git a/dev/tests/static/framework/tests/unit/testsuite/Inspection/_files/words_finder/interview_with_the_vampire.php b/dev/tests/static/framework/tests/unit/testsuite/Inspection/_files/words_finder/interview_with_the_vampire.php index d31652cfcb91c50d9b2de6779be12a65ab1f1259..7e58c96764b62f5de7a84641059f5b7d6684c127 100644 --- a/dev/tests/static/framework/tests/unit/testsuite/Inspection/_files/words_finder/interview_with_the_vampire.php +++ b/dev/tests/static/framework/tests/unit/testsuite/Inspection/_files/words_finder/interview_with_the_vampire.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento * @subpackage static_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ echo 'A man tells his epic life story: love, betrayal, loneliness, and hunger.'; diff --git a/dev/tests/static/framework/tests/unit/testsuite/Inspection/_files/words_finder/self_tested_config.xml b/dev/tests/static/framework/tests/unit/testsuite/Inspection/_files/words_finder/self_tested_config.xml index f978918fba9777b025e2caa69d954e9c11accdd9..0a0afab03bfcc3321b7bdd1cd9d30dcf91733ce7 100644 --- a/dev/tests/static/framework/tests/unit/testsuite/Inspection/_files/words_finder/self_tested_config.xml +++ b/dev/tests/static/framework/tests/unit/testsuite/Inspection/_files/words_finder/self_tested_config.xml @@ -22,7 +22,7 @@ * @category Magento * @package Magento * @subpackage static_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/static/framework/tests/unit/testsuite/Inspection/_files/words_finder/twilight/eclipse.php b/dev/tests/static/framework/tests/unit/testsuite/Inspection/_files/words_finder/twilight/eclipse.php index df35b3bb6c86b9daa55476dc1724d147ba8eccda..035b4436da9713508af3d8aa9d23ef137c21fffa 100644 --- a/dev/tests/static/framework/tests/unit/testsuite/Inspection/_files/words_finder/twilight/eclipse.php +++ b/dev/tests/static/framework/tests/unit/testsuite/Inspection/_files/words_finder/twilight/eclipse.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento * @subpackage static_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ echo 'As a string of mysterious killings grips Seattle, Bella, whose high school graduation is fast approaching, diff --git a/dev/tests/static/framework/tests/unit/testsuite/Inspection/_files/words_finder/twilight/newmoon.php b/dev/tests/static/framework/tests/unit/testsuite/Inspection/_files/words_finder/twilight/newmoon.php index 6ed6020c185e9dd736b5f0b4cf4f81371282f03a..6f7d2ac60416e78b3fb2a10e686d75d192a43bd8 100644 --- a/dev/tests/static/framework/tests/unit/testsuite/Inspection/_files/words_finder/twilight/newmoon.php +++ b/dev/tests/static/framework/tests/unit/testsuite/Inspection/_files/words_finder/twilight/newmoon.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento * @subpackage static_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ echo 'Vampire Edward leaves Bella after an attack that nearly claimed her life, and in her depression she falls into diff --git a/dev/tests/static/phpunit-all.xml.dist b/dev/tests/static/phpunit-all.xml.dist index 2764cc8a88855540760a2f59c04af4e9164590d4..059b962b795fbf16ac86e2a60b1aab127dd97ee1 100644 --- a/dev/tests/static/phpunit-all.xml.dist +++ b/dev/tests/static/phpunit-all.xml.dist @@ -23,7 +23,7 @@ * * @category tests * @package static - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/static/phpunit.xml.dist b/dev/tests/static/phpunit.xml.dist index 8a5392670ccd00eb60448ef8706ccce0a5964625..9b0a35a5ced17036767754867d67a4ef485952f2 100644 --- a/dev/tests/static/phpunit.xml.dist +++ b/dev/tests/static/phpunit.xml.dist @@ -23,7 +23,7 @@ * * @category tests * @package static - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/static/testsuite/Integrity/ClassesTest.php b/dev/tests/static/testsuite/Integrity/ClassesTest.php index 834e0fcbf2b1dec9f30b81e6dc8d9538dda72311..27f89db5a5f5ee97c1854c1c5766a9e4aa537f1c 100644 --- a/dev/tests/static/testsuite/Integrity/ClassesTest.php +++ b/dev/tests/static/testsuite/Integrity/ClassesTest.php @@ -23,7 +23,7 @@ * @category tests * @package static * @subpackage Integrity - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Integrity_ClassesTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/static/testsuite/Integrity/ConfigTest.php b/dev/tests/static/testsuite/Integrity/ConfigTest.php index 554845df7e29e7cb7498c2b77892cd615a077955..de669fce494052b2950dd68d3885b42541af19db 100644 --- a/dev/tests/static/testsuite/Integrity/ConfigTest.php +++ b/dev/tests/static/testsuite/Integrity/ConfigTest.php @@ -21,7 +21,7 @@ * @category tests * @package static * @subpackage Legacy - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/static/testsuite/Integrity/LayoutTest.php b/dev/tests/static/testsuite/Integrity/LayoutTest.php index 14a1de6a759e4b99a8ea9dd084342f84b022d0f1..61448beca6115f20178b51143e7cbe282e0be1be 100644 --- a/dev/tests/static/testsuite/Integrity/LayoutTest.php +++ b/dev/tests/static/testsuite/Integrity/LayoutTest.php @@ -23,7 +23,7 @@ * @category tests * @package static * @subpackage Integrity - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Integrity_LayoutTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/static/testsuite/Js/LiveCodeTest.php b/dev/tests/static/testsuite/Js/LiveCodeTest.php index 4117e2eeeeff0726db2723e7981c38df58f75ae5..aecb26a779d8b5ec0b14ac21fcfaab9ff886a5e9 100644 --- a/dev/tests/static/testsuite/Js/LiveCodeTest.php +++ b/dev/tests/static/testsuite/Js/LiveCodeTest.php @@ -20,7 +20,7 @@ * * @category tests * @package static - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/static/testsuite/Legacy/ClassesTest.php b/dev/tests/static/testsuite/Legacy/ClassesTest.php index 47fb097523962df67521cbbac941d0b249536abb..f62b6820d262fd1780b34c79311a3b2823d0b4f8 100644 --- a/dev/tests/static/testsuite/Legacy/ClassesTest.php +++ b/dev/tests/static/testsuite/Legacy/ClassesTest.php @@ -21,7 +21,7 @@ * @category tests * @package static * @subpackage Integrity - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/static/testsuite/Legacy/ConfigTest.php b/dev/tests/static/testsuite/Legacy/ConfigTest.php index fb1b23b26bc8dcb8180188f7da5485eb9fad0cea..7de62090a3cc5379ffc5887389e2a13f8bbcfd59 100644 --- a/dev/tests/static/testsuite/Legacy/ConfigTest.php +++ b/dev/tests/static/testsuite/Legacy/ConfigTest.php @@ -21,7 +21,7 @@ * @category tests * @package static * @subpackage Legacy - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/static/testsuite/Legacy/EmailTemplateTest.php b/dev/tests/static/testsuite/Legacy/EmailTemplateTest.php index 696e674e4950cb4c8069543575eb631c38807928..65bda42b5c9ef9992871c5f0051f9a00c63f2997 100644 --- a/dev/tests/static/testsuite/Legacy/EmailTemplateTest.php +++ b/dev/tests/static/testsuite/Legacy/EmailTemplateTest.php @@ -21,7 +21,7 @@ * @category tests * @package static * @subpackage Legacy - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/static/testsuite/Legacy/FilesystemTest.php b/dev/tests/static/testsuite/Legacy/FilesystemTest.php index e09bedcf53f2113462a185116f974118fdaf0942..b9b986cabffee96317ca2bd2a61f4751466e1b47 100644 --- a/dev/tests/static/testsuite/Legacy/FilesystemTest.php +++ b/dev/tests/static/testsuite/Legacy/FilesystemTest.php @@ -22,7 +22,7 @@ * * @category tests * @package static - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/static/testsuite/Legacy/LayoutTest.php b/dev/tests/static/testsuite/Legacy/LayoutTest.php index 37d38438c1d317ed15f5e1b3c06a5bdba418a12e..c1b3f9807345b8ed6e017a61a56353541554c193 100644 --- a/dev/tests/static/testsuite/Legacy/LayoutTest.php +++ b/dev/tests/static/testsuite/Legacy/LayoutTest.php @@ -21,7 +21,7 @@ * @category tests * @package static * @subpackage Legacy - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/static/testsuite/Legacy/LicenseTest.php b/dev/tests/static/testsuite/Legacy/LicenseTest.php index 5b9ea570a0b1e2294bd7ac6d2148a33787727979..865afa28349cab06f07ff014f07e4718822970cd 100644 --- a/dev/tests/static/testsuite/Legacy/LicenseTest.php +++ b/dev/tests/static/testsuite/Legacy/LicenseTest.php @@ -21,7 +21,7 @@ * @category tests * @package static * @subpackage Legacy - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/static/testsuite/Legacy/Mage/Core/Block/AbstractTest.php b/dev/tests/static/testsuite/Legacy/Mage/Core/Block/AbstractTest.php index 763047b6cb750126914dacb925b31632710133c5..d9d25a6b65e581afe49433b78393cc907b383111 100644 --- a/dev/tests/static/testsuite/Legacy/Mage/Core/Block/AbstractTest.php +++ b/dev/tests/static/testsuite/Legacy/Mage/Core/Block/AbstractTest.php @@ -21,7 +21,7 @@ * @category tests * @package static * @subpackage Legacy - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/static/testsuite/Legacy/Mage/Widget/XmlTest.php b/dev/tests/static/testsuite/Legacy/Mage/Widget/XmlTest.php index 8d3b12d02ea40234231705e0e7918d522b2c7bf8..a436348f395a74c692945264cf815ccc3e8ba867 100644 --- a/dev/tests/static/testsuite/Legacy/Mage/Widget/XmlTest.php +++ b/dev/tests/static/testsuite/Legacy/Mage/Widget/XmlTest.php @@ -23,7 +23,7 @@ * @category tests * @package static * @subpackage Legacy - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/static/testsuite/Legacy/ObsoleteAclTest.php b/dev/tests/static/testsuite/Legacy/ObsoleteAclTest.php index 2fbcfd2d999a651ee5c55c04fb080723b4e3f5b0..aae563e97598138762099d2867e6aa211c8d8d40 100644 --- a/dev/tests/static/testsuite/Legacy/ObsoleteAclTest.php +++ b/dev/tests/static/testsuite/Legacy/ObsoleteAclTest.php @@ -21,7 +21,7 @@ * @category tests * @package static * @subpackage Legacy - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/static/testsuite/Legacy/ObsoleteCodeTest.php b/dev/tests/static/testsuite/Legacy/ObsoleteCodeTest.php index 659c9c138723a63eb3a2f95d3137146b219df2ff..b602d5168d734e0ef288573d81ecdef89ed95364 100644 --- a/dev/tests/static/testsuite/Legacy/ObsoleteCodeTest.php +++ b/dev/tests/static/testsuite/Legacy/ObsoleteCodeTest.php @@ -21,7 +21,7 @@ * @category tests * @package static * @subpackage Legacy - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/static/testsuite/Legacy/ObsoleteMenuTest.php b/dev/tests/static/testsuite/Legacy/ObsoleteMenuTest.php index 9046c43ceb43710b3511fb9fd2baef05f2e42445..e4c12e3b7f64621cd60b95fa60a023befa362466 100644 --- a/dev/tests/static/testsuite/Legacy/ObsoleteMenuTest.php +++ b/dev/tests/static/testsuite/Legacy/ObsoleteMenuTest.php @@ -21,7 +21,7 @@ * @category tests * @package static * @subpackage Legacy - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/static/testsuite/Legacy/ObsoleteSystemConfigurationTest.php b/dev/tests/static/testsuite/Legacy/ObsoleteSystemConfigurationTest.php index f01df2516e9c37ba619478011ad03e30e6f46033..471f0eee1381d5b5c3409fe7873692f3aee0b21d 100644 --- a/dev/tests/static/testsuite/Legacy/ObsoleteSystemConfigurationTest.php +++ b/dev/tests/static/testsuite/Legacy/ObsoleteSystemConfigurationTest.php @@ -21,7 +21,7 @@ * @category tests * @package static * @subpackage Legacy - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/static/testsuite/Legacy/TableTest.php b/dev/tests/static/testsuite/Legacy/TableTest.php index 9b19f622d7dd7813bd40e0110b63fd3b3b899734..566455d266d421a0f45266e086d7d99973b28e82 100644 --- a/dev/tests/static/testsuite/Legacy/TableTest.php +++ b/dev/tests/static/testsuite/Legacy/TableTest.php @@ -21,7 +21,7 @@ * @category tests * @package static * @subpackage Legacy - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/static/testsuite/Legacy/WordsTest.php b/dev/tests/static/testsuite/Legacy/WordsTest.php index 67a93215aae26f82a4bce846d9bfcd94aae8aac0..2261d3ed91b12e8c1f400a235d36688346194deb 100644 --- a/dev/tests/static/testsuite/Legacy/WordsTest.php +++ b/dev/tests/static/testsuite/Legacy/WordsTest.php @@ -21,7 +21,7 @@ * @category tests * @package static * @subpackage Legacy - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ @@ -51,7 +51,7 @@ class Legacy_WordsTest extends PHPUnit_Framework_TestCase { $words = self::$_wordsFinder->findWords($file); if ($words) { - $this->fail('Found words: ' . implode(', ', $words)); + $this->fail("Found words: '" . implode("', '", $words) . "' in '$file' file"); } } diff --git a/dev/tests/static/testsuite/Legacy/_files/obsolete_classes.php b/dev/tests/static/testsuite/Legacy/_files/obsolete_classes.php index cb06b62b94d0a4159065a3b51826dce6278f22ff..e5053864435f54e0ca35efed2b2a1d9dd4e00f9f 100644 --- a/dev/tests/static/testsuite/Legacy/_files/obsolete_classes.php +++ b/dev/tests/static/testsuite/Legacy/_files/obsolete_classes.php @@ -21,7 +21,7 @@ * @category tests * @package static * @subpackage Legacy - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ return array( diff --git a/dev/tests/static/testsuite/Legacy/_files/obsolete_constants.php b/dev/tests/static/testsuite/Legacy/_files/obsolete_constants.php index be41ef8c0495e02a6b2647d622ed8d0003fdefd8..1d241ab1d251456852937947530e0f27512b5276 100644 --- a/dev/tests/static/testsuite/Legacy/_files/obsolete_constants.php +++ b/dev/tests/static/testsuite/Legacy/_files/obsolete_constants.php @@ -21,7 +21,7 @@ * @category tests * @package static * @subpackage Legacy - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ return array( diff --git a/dev/tests/static/testsuite/Legacy/_files/obsolete_methods.php b/dev/tests/static/testsuite/Legacy/_files/obsolete_methods.php index 3982d03131330612426c277c1cb9ebeb12fb5de9..c14b6c26e478a4c2f775a788982ad140100e6325 100644 --- a/dev/tests/static/testsuite/Legacy/_files/obsolete_methods.php +++ b/dev/tests/static/testsuite/Legacy/_files/obsolete_methods.php @@ -21,7 +21,7 @@ * @category tests * @package static * @subpackage Legacy - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ @@ -267,6 +267,7 @@ return array( $this->_getRule('getStoreSelectOptions', 'Mage_Backend_Block_System_Config_Tabs'), $this->_getRule('getSuggestedZeroDate'), $this->_getRule('getSuggestionsByQuery'), + $this->_getRule('getSysTmpDir'), $this->_getRule('getTaxAmount', 'Mage_Sales_Model_Quote_Item_Abstract'), $this->_getRule('getTaxRatesByProductClass', null, '_getAllRatesByProductClass'), $this->_getRule('getTemplateFilename', null, 'getFilename'), diff --git a/dev/tests/static/testsuite/Legacy/_files/obsolete_properties.php b/dev/tests/static/testsuite/Legacy/_files/obsolete_properties.php index faaf4da97495787c439f3f7a95b8575483d057ec..fae1c41ad0d5177c7633c43dceacc2995a0adbd5 100644 --- a/dev/tests/static/testsuite/Legacy/_files/obsolete_properties.php +++ b/dev/tests/static/testsuite/Legacy/_files/obsolete_properties.php @@ -21,7 +21,7 @@ * @category tests * @package static * @subpackage Legacy - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ return array( diff --git a/dev/tests/static/testsuite/Legacy/_files/words_core.xml b/dev/tests/static/testsuite/Legacy/_files/words_core.xml index b49ec4b1250f2f1a8481f8cc27fc9a5aed688b3c..1042f311ed21165cbdbc0bbaf4cc8ae4505fc8d9 100644 --- a/dev/tests/static/testsuite/Legacy/_files/words_core.xml +++ b/dev/tests/static/testsuite/Legacy/_files/words_core.xml @@ -22,7 +22,7 @@ * @category tests * @package static * @subpackage Legacy - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/static/testsuite/Php/Exemplar/CodeMessTest.php b/dev/tests/static/testsuite/Php/Exemplar/CodeMessTest.php index 4740c91a478b1d2605612dff526ca2f8c097bfc2..5a41a8e64dd93d4dd614e9823537866884b33c52 100644 --- a/dev/tests/static/testsuite/Php/Exemplar/CodeMessTest.php +++ b/dev/tests/static/testsuite/Php/Exemplar/CodeMessTest.php @@ -20,7 +20,7 @@ * * @category tests * @package static - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/static/testsuite/Php/Exemplar/CodeStyleTest.php b/dev/tests/static/testsuite/Php/Exemplar/CodeStyleTest.php index 33b83e835035c49229bef33e20da2e25473b4887..4945796cc61adbe19b919715d725a5bbb78486f4 100644 --- a/dev/tests/static/testsuite/Php/Exemplar/CodeStyleTest.php +++ b/dev/tests/static/testsuite/Php/Exemplar/CodeStyleTest.php @@ -20,7 +20,7 @@ * * @category tests * @package static - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/static/testsuite/Php/Exemplar/_files/phpmd/data.php b/dev/tests/static/testsuite/Php/Exemplar/_files/phpmd/data.php index 74dc378d110449b47d3e5f50417a849ec98e336b..99ba02a5cd3d423c5658eb7c371947e34f9413fc 100644 --- a/dev/tests/static/testsuite/Php/Exemplar/_files/phpmd/data.php +++ b/dev/tests/static/testsuite/Php/Exemplar/_files/phpmd/data.php @@ -21,7 +21,7 @@ * @category tests * @package static * @subpackage Legacy - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ return array( diff --git a/dev/tests/static/testsuite/Php/LiveCodeTest.php b/dev/tests/static/testsuite/Php/LiveCodeTest.php index a3110889faf0908c9cc1802206b4355362b9cb16..a34e883a20f78a89f1bbb07e0be8004547571df5 100644 --- a/dev/tests/static/testsuite/Php/LiveCodeTest.php +++ b/dev/tests/static/testsuite/Php/LiveCodeTest.php @@ -20,7 +20,7 @@ * * @category tests * @package static - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/static/testsuite/Php/_files/phpcs/ruleset.xml b/dev/tests/static/testsuite/Php/_files/phpcs/ruleset.xml index a5af0ea8ad83f5a02d01472f3a8fd56416070714..47d2f98976171306034010e95500d2b2f82c77b1 100644 --- a/dev/tests/static/testsuite/Php/_files/phpcs/ruleset.xml +++ b/dev/tests/static/testsuite/Php/_files/phpcs/ruleset.xml @@ -21,7 +21,7 @@ * * @category tests * @package static - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/static/testsuite/Php/_files/phpmd/ruleset.xml b/dev/tests/static/testsuite/Php/_files/phpmd/ruleset.xml index a86c8cc8dc70a810be0ccf74ce67c1148cbb4e57..2703bb77be112f85a48c68f7f65314973b4021ae 100644 --- a/dev/tests/static/testsuite/Php/_files/phpmd/ruleset.xml +++ b/dev/tests/static/testsuite/Php/_files/phpmd/ruleset.xml @@ -21,7 +21,7 @@ * * @category tests * @package static - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/static/testsuite/Utility/Classes.php b/dev/tests/static/testsuite/Utility/Classes.php index 85e12f8577bd4100b7aad5aa5848aa3630415869..82269c33bdaa602eb5addea010db071527446631 100644 --- a/dev/tests/static/testsuite/Utility/Classes.php +++ b/dev/tests/static/testsuite/Utility/Classes.php @@ -22,7 +22,7 @@ * * @category tests * @package static - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/static/testsuite/Utility/Files.php b/dev/tests/static/testsuite/Utility/Files.php index 9d3398ebfb767398f1943db1bdaaa3d85fe85ad7..be0fc6e79f51396de715d7a365f5230bf53d27b1 100644 --- a/dev/tests/static/testsuite/Utility/Files.php +++ b/dev/tests/static/testsuite/Utility/Files.php @@ -22,7 +22,7 @@ * * @category tests * @package static - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Utility_Files diff --git a/dev/tests/unit/framework/Magento/Test/Helper/ObjectManager.php b/dev/tests/unit/framework/Magento/Test/Helper/ObjectManager.php index a82f111278b2e8f9eb84702b52ecc559c6126033..ca8c1b50e86e1ae3337d242774a9047f5b4c2943 100644 --- a/dev/tests/unit/framework/Magento/Test/Helper/ObjectManager.php +++ b/dev/tests/unit/framework/Magento/Test/Helper/ObjectManager.php @@ -20,7 +20,7 @@ * * @category Magento * @package unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/framework/bootstrap.php b/dev/tests/unit/framework/bootstrap.php index 2b9aa1bbcde5295a3fe51713576d945431461b3d..30be5acff37dca3492c3394a670579ebbc830319 100755 --- a/dev/tests/unit/framework/bootstrap.php +++ b/dev/tests/unit/framework/bootstrap.php @@ -20,7 +20,7 @@ * * @category Magento * @package unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/framework/tests/unit/framework/bootstrap.php b/dev/tests/unit/framework/tests/unit/framework/bootstrap.php index f17976badaf418ec81de5a26418a5f9bd6008a96..82dd8fc918448ffa7ca223427c469de444fbf7c4 100644 --- a/dev/tests/unit/framework/tests/unit/framework/bootstrap.php +++ b/dev/tests/unit/framework/tests/unit/framework/bootstrap.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/framework/tests/unit/phpunit.xml.dist b/dev/tests/unit/framework/tests/unit/phpunit.xml.dist index 13f968e84881c9764369bb61628c271657f6fe2f..d5f49f8b99ed5fa8301cfb0583518ca81b2a33ab 100644 --- a/dev/tests/unit/framework/tests/unit/phpunit.xml.dist +++ b/dev/tests/unit/framework/tests/unit/phpunit.xml.dist @@ -19,7 +19,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/framework/tests/unit/testsuite/Magento/Test/Helper/ObjectManagerTest.php b/dev/tests/unit/framework/tests/unit/testsuite/Magento/Test/Helper/ObjectManagerTest.php index a8a35f148a91bc6662467e9b6ac467b7ed259be0..a524db84ca5becaaf3290a53f0f4dfb247a79593 100644 --- a/dev/tests/unit/framework/tests/unit/testsuite/Magento/Test/Helper/ObjectManagerTest.php +++ b/dev/tests/unit/framework/tests/unit/testsuite/Magento/Test/Helper/ObjectManagerTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/phpunit.xml.dist b/dev/tests/unit/phpunit.xml.dist index 4ac17448f9f3e776ae047001fc10b1bcde4ac85c..650a1af1dabd97f2cc13c820c37748e261f9c449 100755 --- a/dev/tests/unit/phpunit.xml.dist +++ b/dev/tests/unit/phpunit.xml.dist @@ -22,7 +22,7 @@ * @category Magento * @package Magento * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/Mage/Adminhtml/Block/Catalog/Product/Edit/NewCategoryTest.php b/dev/tests/unit/testsuite/Mage/Adminhtml/Block/Catalog/Product/Edit/NewCategoryTest.php index 30a3bdd70b5955f75df9010e3fe9f89d770035f6..1bf0abaf4306972419b0ef41defa4175f4cb9a8b 100644 --- a/dev/tests/unit/testsuite/Mage/Adminhtml/Block/Catalog/Product/Edit/NewCategoryTest.php +++ b/dev/tests/unit/testsuite/Mage/Adminhtml/Block/Catalog/Product/Edit/NewCategoryTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Adminhtml * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/BaseImageTest.php b/dev/tests/unit/testsuite/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/BaseImageTest.php index 977d3f505941106a3cad5e95a2a7e5b1b7e1a4d9..c36ce5c4ed68f43417073d069ffc6bddf902945d 100644 --- a/dev/tests/unit/testsuite/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/BaseImageTest.php +++ b/dev/tests/unit/testsuite/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/BaseImageTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Adminhtml * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/Weight/RendererTest.php b/dev/tests/unit/testsuite/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/Weight/RendererTest.php index e4d740d5bc4bc1d3495c914a68b114098974ace0..d8bd5b0114cd40e75e1d401169cf09e319d95d2c 100644 --- a/dev/tests/unit/testsuite/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/Weight/RendererTest.php +++ b/dev/tests/unit/testsuite/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/Weight/RendererTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Catalog * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Adminhtml/Block/Page/System/Config/Robots/ResetTest.php b/dev/tests/unit/testsuite/Mage/Adminhtml/Block/Page/System/Config/Robots/ResetTest.php index 24fd8f928611a9100d5807cefe4850f6721a2773..3a80d1fa351d71608ab210e9bfdaef68fd9809d4 100644 --- a/dev/tests/unit/testsuite/Mage/Adminhtml/Block/Page/System/Config/Robots/ResetTest.php +++ b/dev/tests/unit/testsuite/Mage/Adminhtml/Block/Page/System/Config/Robots/ResetTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Adminhtml * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Adminhtml/Block/System/Email/Template/EditTest.php b/dev/tests/unit/testsuite/Mage/Adminhtml/Block/System/Email/Template/EditTest.php index 177140ff1488459dab7808a87d7e5c6c140f05e3..49024f0b0f88799f9f6d2d1579daf94d7e4c448a 100644 --- a/dev/tests/unit/testsuite/Mage/Adminhtml/Block/System/Email/Template/EditTest.php +++ b/dev/tests/unit/testsuite/Mage/Adminhtml/Block/System/Email/Template/EditTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Adminhtml * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Adminhtml/Block/UrlrewriteTest.php b/dev/tests/unit/testsuite/Mage/Adminhtml/Block/UrlrewriteTest.php index 9104465387efe22aa438654c7f3d13f10bd0124d..d7e7770de16798d5bc8a5b9b0ff61b78ff8ae0aa 100644 --- a/dev/tests/unit/testsuite/Mage/Adminhtml/Block/UrlrewriteTest.php +++ b/dev/tests/unit/testsuite/Mage/Adminhtml/Block/UrlrewriteTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Adminhtml * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Adminhtml/DashboardControllerTest.php b/dev/tests/unit/testsuite/Mage/Adminhtml/DashboardControllerTest.php index 7393743aae3fd7acb98d8cb9b5f3e2bb40ece2de..8d5e93da46edfe5029afc5812bdf7f62ad9b0fb9 100644 --- a/dev/tests/unit/testsuite/Mage/Adminhtml/DashboardControllerTest.php +++ b/dev/tests/unit/testsuite/Mage/Adminhtml/DashboardControllerTest.php @@ -18,7 +18,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Adminhtml_DashboardControllerTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Mage/Adminhtml/Sales/Items/Order/View/GiftmessageTest.php b/dev/tests/unit/testsuite/Mage/Adminhtml/Sales/Items/Order/View/GiftmessageTest.php index b17d193c45c04f64731a351a74a13ab2dc754bac..549425f93eaea76d5bfda61dd61a79c80e3552c0 100644 --- a/dev/tests/unit/testsuite/Mage/Adminhtml/Sales/Items/Order/View/GiftmessageTest.php +++ b/dev/tests/unit/testsuite/Mage/Adminhtml/Sales/Items/Order/View/GiftmessageTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Adminhtml * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Adminhtml/Widget/Form/ContainerTest.php b/dev/tests/unit/testsuite/Mage/Adminhtml/Widget/Form/ContainerTest.php index 35aa897f8254ec3355ed67a5590b141c8184087b..4ca5b99329836fbda4f87a82f87ef822dc470b6c 100644 --- a/dev/tests/unit/testsuite/Mage/Adminhtml/Widget/Form/ContainerTest.php +++ b/dev/tests/unit/testsuite/Mage/Adminhtml/Widget/Form/ContainerTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Adminhtml * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Backend/Block/Store/SwitcherTest.php b/dev/tests/unit/testsuite/Mage/Backend/Block/Store/SwitcherTest.php index 0a8be508f887a8b31e891501c5b444807d900a53..4579b8c7f679fcc08caef72885a2f03cbf106be6 100644 --- a/dev/tests/unit/testsuite/Mage/Backend/Block/Store/SwitcherTest.php +++ b/dev/tests/unit/testsuite/Mage/Backend/Block/Store/SwitcherTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backend * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Backend/Block/System/Config/EditTest.php b/dev/tests/unit/testsuite/Mage/Backend/Block/System/Config/EditTest.php index 38fea83c3125585298255a242e9ff8d30a515bb6..f4d73e7bfd6c75feffbf4eb1719a4318f53c1d1a 100644 --- a/dev/tests/unit/testsuite/Mage/Backend/Block/System/Config/EditTest.php +++ b/dev/tests/unit/testsuite/Mage/Backend/Block/System/Config/EditTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backend * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Backend/Block/System/Config/Form/Field/Array/AbstractTest.php b/dev/tests/unit/testsuite/Mage/Backend/Block/System/Config/Form/Field/Array/AbstractTest.php index ee961c3694bc627c528019a765d12eb40cd6abcf..f415f6f2102d08bb140aa80ed4982c95e4ee61f6 100644 --- a/dev/tests/unit/testsuite/Mage/Backend/Block/System/Config/Form/Field/Array/AbstractTest.php +++ b/dev/tests/unit/testsuite/Mage/Backend/Block/System/Config/Form/Field/Array/AbstractTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backend * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Backend/Block/System/Config/Form/Field/ExportTest.php b/dev/tests/unit/testsuite/Mage/Backend/Block/System/Config/Form/Field/ExportTest.php index 5ea35bfe080b7a3ebfb698afbfa5b5a0a050757a..ffa7bb43660527ec02f352e2a3d376e0f108102a 100644 --- a/dev/tests/unit/testsuite/Mage/Backend/Block/System/Config/Form/Field/ExportTest.php +++ b/dev/tests/unit/testsuite/Mage/Backend/Block/System/Config/Form/Field/ExportTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backend * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Backend/Block/System/Config/Form/Field/ImportTest.php b/dev/tests/unit/testsuite/Mage/Backend/Block/System/Config/Form/Field/ImportTest.php index 299da7f876eb61d70b9e60ab3ed71f5ead8111d7..eaecfcf5c47e427d635d5f957c94259cfdfb81ad 100644 --- a/dev/tests/unit/testsuite/Mage/Backend/Block/System/Config/Form/Field/ImportTest.php +++ b/dev/tests/unit/testsuite/Mage/Backend/Block/System/Config/Form/Field/ImportTest.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Backend/Block/System/Config/Form/Field/Select/AllowspecificTest.php b/dev/tests/unit/testsuite/Mage/Backend/Block/System/Config/Form/Field/Select/AllowspecificTest.php index 8c1b6caab54595e1602ab84fe38b7c3373c588a8..0307d2c4b08eafccf5cec2af38133bde94a91c71 100644 --- a/dev/tests/unit/testsuite/Mage/Backend/Block/System/Config/Form/Field/Select/AllowspecificTest.php +++ b/dev/tests/unit/testsuite/Mage/Backend/Block/System/Config/Form/Field/Select/AllowspecificTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backend * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Backend/Block/System/Config/Form/FieldTest.php b/dev/tests/unit/testsuite/Mage/Backend/Block/System/Config/Form/FieldTest.php index 496055eb9e1697000e43a19cb92007b8d4f0d98f..412f7d29d00ec51a0a3e43bf33e8618f54634e35 100644 --- a/dev/tests/unit/testsuite/Mage/Backend/Block/System/Config/Form/FieldTest.php +++ b/dev/tests/unit/testsuite/Mage/Backend/Block/System/Config/Form/FieldTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backend * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Backend/Block/System/Config/Form/FieldsetTest.php b/dev/tests/unit/testsuite/Mage/Backend/Block/System/Config/Form/FieldsetTest.php index 5a3d28b4e73740b374b46480d7d1d9c042511699..3ca7e1461ef9c4313767ced1c5f7a7e6debcf72e 100644 --- a/dev/tests/unit/testsuite/Mage/Backend/Block/System/Config/Form/FieldsetTest.php +++ b/dev/tests/unit/testsuite/Mage/Backend/Block/System/Config/Form/FieldsetTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backend * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Backend/Block/System/Config/FormTest.php b/dev/tests/unit/testsuite/Mage/Backend/Block/System/Config/FormTest.php index 44f3df500390b4afd165d5f9084c36bce11e1729..29401e7b444b3483ab52375fafcc65be3ff57a25 100644 --- a/dev/tests/unit/testsuite/Mage/Backend/Block/System/Config/FormTest.php +++ b/dev/tests/unit/testsuite/Mage/Backend/Block/System/Config/FormTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backend * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Backend/Block/System/Config/TabsTest.php b/dev/tests/unit/testsuite/Mage/Backend/Block/System/Config/TabsTest.php index 7e1685fbba7cc4d34ce1fec2dd109ffda9dc60ad..30c6f801335ab49f9761179996363a37870425a5 100644 --- a/dev/tests/unit/testsuite/Mage/Backend/Block/System/Config/TabsTest.php +++ b/dev/tests/unit/testsuite/Mage/Backend/Block/System/Config/TabsTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backend * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Backend/Block/Widget/ButtonTest.php b/dev/tests/unit/testsuite/Mage/Backend/Block/Widget/ButtonTest.php index 6266eafb7a6b3fa315096a5121628bd0314d81ff..6c58b8e765c7548b754dd28b45a83a19189a832c 100644 --- a/dev/tests/unit/testsuite/Mage/Backend/Block/Widget/ButtonTest.php +++ b/dev/tests/unit/testsuite/Mage/Backend/Block/Widget/ButtonTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backend * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Backend/Block/Widget/Grid/Column/MultistoreTest.php b/dev/tests/unit/testsuite/Mage/Backend/Block/Widget/Grid/Column/MultistoreTest.php index acd514dd04f0d1db3b8f7ee8b677e46343b25837..15e35f86b181ec2a750af1d05ecdb2d66b2d27a1 100644 --- a/dev/tests/unit/testsuite/Mage/Backend/Block/Widget/Grid/Column/MultistoreTest.php +++ b/dev/tests/unit/testsuite/Mage/Backend/Block/Widget/Grid/Column/MultistoreTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backend * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Backend/Block/Widget/Grid/Column/Renderer/CurrencyTest.php b/dev/tests/unit/testsuite/Mage/Backend/Block/Widget/Grid/Column/Renderer/CurrencyTest.php index d088a72f906ac7ed65b0fc3e118fa19df7f601c3..44bc38d8a649adc9dc181c26ae7384e2c808a308 100644 --- a/dev/tests/unit/testsuite/Mage/Backend/Block/Widget/Grid/Column/Renderer/CurrencyTest.php +++ b/dev/tests/unit/testsuite/Mage/Backend/Block/Widget/Grid/Column/Renderer/CurrencyTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backend * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Backend/Block/Widget/Grid/ColumnSetTest.php b/dev/tests/unit/testsuite/Mage/Backend/Block/Widget/Grid/ColumnSetTest.php index 8998968e5524606b265a909923b4545830aa4a4c..75acbaf67cc897a5fac9f886d758ea937f162139 100644 --- a/dev/tests/unit/testsuite/Mage/Backend/Block/Widget/Grid/ColumnSetTest.php +++ b/dev/tests/unit/testsuite/Mage/Backend/Block/Widget/Grid/ColumnSetTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backend * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Backend/Block/Widget/Grid/ColumnTest.php b/dev/tests/unit/testsuite/Mage/Backend/Block/Widget/Grid/ColumnTest.php index 045f9d999ab37bcc3c94deb40309f07e55e07f0c..ac4eaa807b14d65be9e3f337a5de7a4e66f4ae66 100644 --- a/dev/tests/unit/testsuite/Mage/Backend/Block/Widget/Grid/ColumnTest.php +++ b/dev/tests/unit/testsuite/Mage/Backend/Block/Widget/Grid/ColumnTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backend * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Backend/Block/Widget/Grid/MassactionTest.php b/dev/tests/unit/testsuite/Mage/Backend/Block/Widget/Grid/MassactionTest.php index e686adc783d451948b6fae8c32a1e2a10334b013..bde6572ac4e5c81e062e507b21fa45a1d3b75987 100644 --- a/dev/tests/unit/testsuite/Mage/Backend/Block/Widget/Grid/MassactionTest.php +++ b/dev/tests/unit/testsuite/Mage/Backend/Block/Widget/Grid/MassactionTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backend * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Backend/Block/Widget/GridTest.php b/dev/tests/unit/testsuite/Mage/Backend/Block/Widget/GridTest.php index dc38a609e8a34941d526e062fbabcd30e5f7f295..086223be0261f7bf0721379fcf520e31424cbcf4 100644 --- a/dev/tests/unit/testsuite/Mage/Backend/Block/Widget/GridTest.php +++ b/dev/tests/unit/testsuite/Mage/Backend/Block/Widget/GridTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backend * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Backend/Helper/DataTest.php b/dev/tests/unit/testsuite/Mage/Backend/Helper/DataTest.php index a0c6cbffe3bbdccfda4509788ed716d234150930..30112fa7dd48d431871a4ed1996886b48a9c88cd 100644 --- a/dev/tests/unit/testsuite/Mage/Backend/Helper/DataTest.php +++ b/dev/tests/unit/testsuite/Mage/Backend/Helper/DataTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backend * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Backend/Model/Acl/ConfigTest.php b/dev/tests/unit/testsuite/Mage/Backend/Model/Acl/ConfigTest.php index a5688e655124635f2d036f9a2164421e064d7557..7ecfddff6908ca1616aa4259041a0b3983b3959c 100644 --- a/dev/tests/unit/testsuite/Mage/Backend/Model/Acl/ConfigTest.php +++ b/dev/tests/unit/testsuite/Mage/Backend/Model/Acl/ConfigTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backend * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Backend/Model/Acl/Loader/ResourceTest.php b/dev/tests/unit/testsuite/Mage/Backend/Model/Acl/Loader/ResourceTest.php index 68a0874bfa8caea3eed3ce039a570deb708d3b48..1602102ca4aea1dee336824e0144501d0a8a8b6b 100644 --- a/dev/tests/unit/testsuite/Mage/Backend/Model/Acl/Loader/ResourceTest.php +++ b/dev/tests/unit/testsuite/Mage/Backend/Model/Acl/Loader/ResourceTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backend * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Backend/Model/Authorization/RoleLocatorTest.php b/dev/tests/unit/testsuite/Mage/Backend/Model/Authorization/RoleLocatorTest.php index 87aecd3d6fba533687f2bd6f8639a3fb297ae93e..0d1a0cb6390cfe8574473ab13e658275caccff52 100644 --- a/dev/tests/unit/testsuite/Mage/Backend/Model/Authorization/RoleLocatorTest.php +++ b/dev/tests/unit/testsuite/Mage/Backend/Model/Authorization/RoleLocatorTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backend * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Backend/Model/Config/Backend/File/RequestDataTest.php b/dev/tests/unit/testsuite/Mage/Backend/Model/Config/Backend/File/RequestDataTest.php index 51528208c1f994bb77eb25edba1dc22e4379bc56..fc5511497460ddaa2f11aee368a4ca3c11441d2b 100644 --- a/dev/tests/unit/testsuite/Mage/Backend/Model/Config/Backend/File/RequestDataTest.php +++ b/dev/tests/unit/testsuite/Mage/Backend/Model/Config/Backend/File/RequestDataTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backend * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Backend/Model/Config/LoaderTest.php b/dev/tests/unit/testsuite/Mage/Backend/Model/Config/LoaderTest.php index 4313e72ecdc37813fe7f467762acf375cc4c9a95..8e9aba1b6ebbf9ff0e16870713ad8525ba2e0e1d 100644 --- a/dev/tests/unit/testsuite/Mage/Backend/Model/Config/LoaderTest.php +++ b/dev/tests/unit/testsuite/Mage/Backend/Model/Config/LoaderTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backend * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Backend/Model/Config/ScopeDefinerTest.php b/dev/tests/unit/testsuite/Mage/Backend/Model/Config/ScopeDefinerTest.php index 397f278ec8960da759d10e2205b77f5b497b2b94..604d9e5e3fad6c1c243ce71fd27397ab039a0630 100644 --- a/dev/tests/unit/testsuite/Mage/Backend/Model/Config/ScopeDefinerTest.php +++ b/dev/tests/unit/testsuite/Mage/Backend/Model/Config/ScopeDefinerTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backend * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Backend/Model/Config/Source/Admin/PageTest.php b/dev/tests/unit/testsuite/Mage/Backend/Model/Config/Source/Admin/PageTest.php index efc28e702c7cef397cc8b039190be50c4ee32d48..e6048064990a80f1ebefdcf11b50af41469e88ff 100644 --- a/dev/tests/unit/testsuite/Mage/Backend/Model/Config/Source/Admin/PageTest.php +++ b/dev/tests/unit/testsuite/Mage/Backend/Model/Config/Source/Admin/PageTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Adminhtml * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Backend/Model/Config/Structure/ConverterTest.php b/dev/tests/unit/testsuite/Mage/Backend/Model/Config/Structure/ConverterTest.php index 9e4e62f4dc9cf7d7aa799cfe424302cc31373219..90dd8f551f3ff4a3faceda5461dd7ee6d0acc949 100644 --- a/dev/tests/unit/testsuite/Mage/Backend/Model/Config/Structure/ConverterTest.php +++ b/dev/tests/unit/testsuite/Mage/Backend/Model/Config/Structure/ConverterTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backend * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Backend/Model/Config/Structure/Element/CompositeAbstractTest.php b/dev/tests/unit/testsuite/Mage/Backend/Model/Config/Structure/Element/CompositeAbstractTest.php index 20b44703479b3173429343797c9a6c753966fb36..a86c7065d8d5f0ba12c4106a471f06670770e58a 100644 --- a/dev/tests/unit/testsuite/Mage/Backend/Model/Config/Structure/Element/CompositeAbstractTest.php +++ b/dev/tests/unit/testsuite/Mage/Backend/Model/Config/Structure/Element/CompositeAbstractTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backend * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Backend/Model/Config/Structure/Element/Dependency/MapperTest.php b/dev/tests/unit/testsuite/Mage/Backend/Model/Config/Structure/Element/Dependency/MapperTest.php index 03fa10e7b20d577c50e099c5ce4b2d8546bbac73..1fa8023ee7e2d3667f1c9f5796dd39ee96005455 100644 --- a/dev/tests/unit/testsuite/Mage/Backend/Model/Config/Structure/Element/Dependency/MapperTest.php +++ b/dev/tests/unit/testsuite/Mage/Backend/Model/Config/Structure/Element/Dependency/MapperTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backend * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Backend/Model/Config/Structure/Element/FieldTest.php b/dev/tests/unit/testsuite/Mage/Backend/Model/Config/Structure/Element/FieldTest.php index 4b11a5e6e9c32d7393d01c7e6da240defc7fcb29..da9761850b9ec86cf7c88674516254fe82feaeb2 100644 --- a/dev/tests/unit/testsuite/Mage/Backend/Model/Config/Structure/Element/FieldTest.php +++ b/dev/tests/unit/testsuite/Mage/Backend/Model/Config/Structure/Element/FieldTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backend * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Backend/Model/Config/Structure/Element/FlyweightFactoryTest.php b/dev/tests/unit/testsuite/Mage/Backend/Model/Config/Structure/Element/FlyweightFactoryTest.php index 5a9fca19c9b245894fe6f68dfd7981a0afef5e93..eaf0fd3686d601e8d4272680351f61856eda7b66 100644 --- a/dev/tests/unit/testsuite/Mage/Backend/Model/Config/Structure/Element/FlyweightFactoryTest.php +++ b/dev/tests/unit/testsuite/Mage/Backend/Model/Config/Structure/Element/FlyweightFactoryTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backend * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Backend/Model/Config/Structure/Element/Group/ProxyTest.php b/dev/tests/unit/testsuite/Mage/Backend/Model/Config/Structure/Element/Group/ProxyTest.php index 1dbac85efc9c40f7b66af12da60aa359dc3328cd..c315186627c7241dbc6dea01db8fecc533e94257 100644 --- a/dev/tests/unit/testsuite/Mage/Backend/Model/Config/Structure/Element/Group/ProxyTest.php +++ b/dev/tests/unit/testsuite/Mage/Backend/Model/Config/Structure/Element/Group/ProxyTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backend * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Backend/Model/Config/Structure/Element/GroupTest.php b/dev/tests/unit/testsuite/Mage/Backend/Model/Config/Structure/Element/GroupTest.php index 4925bf3c75b9cb279a0857fa481309ef4fbcce5b..fd8793a533edd5eebd406865b94c5c08111dd8af 100644 --- a/dev/tests/unit/testsuite/Mage/Backend/Model/Config/Structure/Element/GroupTest.php +++ b/dev/tests/unit/testsuite/Mage/Backend/Model/Config/Structure/Element/GroupTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backend * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Backend/Model/Config/Structure/Element/Iterator/FieldTest.php b/dev/tests/unit/testsuite/Mage/Backend/Model/Config/Structure/Element/Iterator/FieldTest.php index ab72ae57833a9e51b2a276a2b3e5fc37dd505c17..5ce9010c28074e1706bb3c8f4613d5fa39a47fa8 100644 --- a/dev/tests/unit/testsuite/Mage/Backend/Model/Config/Structure/Element/Iterator/FieldTest.php +++ b/dev/tests/unit/testsuite/Mage/Backend/Model/Config/Structure/Element/Iterator/FieldTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backend * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Backend/Model/Config/Structure/Element/IteratorTest.php b/dev/tests/unit/testsuite/Mage/Backend/Model/Config/Structure/Element/IteratorTest.php index ed86ad9700be68aa5d805db5af0266f1865fe612..8f9418099d42a2aee3d1ea13fc211a83e4ac849f 100644 --- a/dev/tests/unit/testsuite/Mage/Backend/Model/Config/Structure/Element/IteratorTest.php +++ b/dev/tests/unit/testsuite/Mage/Backend/Model/Config/Structure/Element/IteratorTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backend * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Backend/Model/Config/Structure/Element/SectionTest.php b/dev/tests/unit/testsuite/Mage/Backend/Model/Config/Structure/Element/SectionTest.php index c3310a3edff0bcffbde969f804c4227620fc1b57..8ca2a7b3245e6b68c82d7d5ee013666a3b8dca84 100644 --- a/dev/tests/unit/testsuite/Mage/Backend/Model/Config/Structure/Element/SectionTest.php +++ b/dev/tests/unit/testsuite/Mage/Backend/Model/Config/Structure/Element/SectionTest.php @@ -22,7 +22,7 @@ * @category Magento * @package Mage_Backend * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Backend/Model/Config/Structure/Element/TabTest.php b/dev/tests/unit/testsuite/Mage/Backend/Model/Config/Structure/Element/TabTest.php index 725bf6845d4e1bc9c706287610daacf81b7963db..bb3acc15b1f0214a88efaf1a9af06d52a3c0e1ff 100644 --- a/dev/tests/unit/testsuite/Mage/Backend/Model/Config/Structure/Element/TabTest.php +++ b/dev/tests/unit/testsuite/Mage/Backend/Model/Config/Structure/Element/TabTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backend * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Backend/Model/Config/Structure/ElementAbstractTest.php b/dev/tests/unit/testsuite/Mage/Backend/Model/Config/Structure/ElementAbstractTest.php index 8fa160ac7ce2055f6a40644d7a6da6c96745e7a7..cfa22bc9e36e84defe1c1223ae6b695f598ee7de 100644 --- a/dev/tests/unit/testsuite/Mage/Backend/Model/Config/Structure/ElementAbstractTest.php +++ b/dev/tests/unit/testsuite/Mage/Backend/Model/Config/Structure/ElementAbstractTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backend * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Backend/Model/Config/Structure/Mapper/DependenciesTest.php b/dev/tests/unit/testsuite/Mage/Backend/Model/Config/Structure/Mapper/DependenciesTest.php index 25468dbbd48dde505813b9f3f88743aaa5104b12..dcfd03173b282961db69fdd6c8fd36b77a0ae838 100644 --- a/dev/tests/unit/testsuite/Mage/Backend/Model/Config/Structure/Mapper/DependenciesTest.php +++ b/dev/tests/unit/testsuite/Mage/Backend/Model/Config/Structure/Mapper/DependenciesTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backend * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Backend/Model/Config/Structure/Mapper/PathTest.php b/dev/tests/unit/testsuite/Mage/Backend/Model/Config/Structure/Mapper/PathTest.php index b86d31f39438f589a57e4ed647f18778ebf30579..708ed88a61aaab9aba54abe156f32da2af94d8a6 100644 --- a/dev/tests/unit/testsuite/Mage/Backend/Model/Config/Structure/Mapper/PathTest.php +++ b/dev/tests/unit/testsuite/Mage/Backend/Model/Config/Structure/Mapper/PathTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backend * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Backend/Model/Config/Structure/Mapper/SortingTest.php b/dev/tests/unit/testsuite/Mage/Backend/Model/Config/Structure/Mapper/SortingTest.php index 732655ee2f901b1a0a5e1350e267a1e7b7e4a11f..dfd500e127e985721db7b4645ed0b93b698578dc 100644 --- a/dev/tests/unit/testsuite/Mage/Backend/Model/Config/Structure/Mapper/SortingTest.php +++ b/dev/tests/unit/testsuite/Mage/Backend/Model/Config/Structure/Mapper/SortingTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backend * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Backend/Model/Config/Structure/ReaderTest.php b/dev/tests/unit/testsuite/Mage/Backend/Model/Config/Structure/ReaderTest.php index 84e6f6e9091137b1c5bb0974255a1efee2f12d67..fd5e3505f85ea305264b4aaae857df325520e6a4 100644 --- a/dev/tests/unit/testsuite/Mage/Backend/Model/Config/Structure/ReaderTest.php +++ b/dev/tests/unit/testsuite/Mage/Backend/Model/Config/Structure/ReaderTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backend * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Backend/Model/Config/StructureTest.php b/dev/tests/unit/testsuite/Mage/Backend/Model/Config/StructureTest.php index 19b108e2ec26b10ca44abb1633278c026a6a0092..a39417bbcc8a3dc15394aa4261dda4197a0fdcdc 100644 --- a/dev/tests/unit/testsuite/Mage/Backend/Model/Config/StructureTest.php +++ b/dev/tests/unit/testsuite/Mage/Backend/Model/Config/StructureTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backend * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Backend/Model/ConfigTest.php b/dev/tests/unit/testsuite/Mage/Backend/Model/ConfigTest.php index 64f7c3b6616163ec8d042f950ddc9de447bc1cdc..e5d926ad76dac444d3f645f3d5c5e1af65c7ce5c 100644 --- a/dev/tests/unit/testsuite/Mage/Backend/Model/ConfigTest.php +++ b/dev/tests/unit/testsuite/Mage/Backend/Model/ConfigTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backend * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Backend/Model/Menu/Builder/Command/AddTest.php b/dev/tests/unit/testsuite/Mage/Backend/Model/Menu/Builder/Command/AddTest.php index f2c0e690517c9ceae0b2dfc35cee44a0c71ec184..8f6d5d414fbf56c1fe468d1be20a2b3089ae1b2a 100644 --- a/dev/tests/unit/testsuite/Mage/Backend/Model/Menu/Builder/Command/AddTest.php +++ b/dev/tests/unit/testsuite/Mage/Backend/Model/Menu/Builder/Command/AddTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backend * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Backend/Model/Menu/Builder/Command/RemoveTest.php b/dev/tests/unit/testsuite/Mage/Backend/Model/Menu/Builder/Command/RemoveTest.php index 407ea631c7a7e0da71ce668ceafff6bfd27dc318..794d6286a32e749790bb78bbdda57f653953b22a 100644 --- a/dev/tests/unit/testsuite/Mage/Backend/Model/Menu/Builder/Command/RemoveTest.php +++ b/dev/tests/unit/testsuite/Mage/Backend/Model/Menu/Builder/Command/RemoveTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backend * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Backend/Model/Menu/Builder/Command/UpdateTest.php b/dev/tests/unit/testsuite/Mage/Backend/Model/Menu/Builder/Command/UpdateTest.php index 907ba055582ba9db1c8ac6b7928ad7aaf80653a1..d2852727f7a9ffe6a2860a3f1492d3b14db104ca 100644 --- a/dev/tests/unit/testsuite/Mage/Backend/Model/Menu/Builder/Command/UpdateTest.php +++ b/dev/tests/unit/testsuite/Mage/Backend/Model/Menu/Builder/Command/UpdateTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backend * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Backend/Model/Menu/Builder/CommandAbstractTest.php b/dev/tests/unit/testsuite/Mage/Backend/Model/Menu/Builder/CommandAbstractTest.php index acc64075b95220ef5d2b8d396a9fc76f35cc6417..7bdda9320052bfc2575f8ad7c158b512e262f8f7 100644 --- a/dev/tests/unit/testsuite/Mage/Backend/Model/Menu/Builder/CommandAbstractTest.php +++ b/dev/tests/unit/testsuite/Mage/Backend/Model/Menu/Builder/CommandAbstractTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backend * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Backend/Model/Menu/BuilderTest.php b/dev/tests/unit/testsuite/Mage/Backend/Model/Menu/BuilderTest.php index 7452eff95be0c75b7829e2f49df4250dba34fe7a..94b3e1362d121a7703e53b2f3d2b67fae54de009 100644 --- a/dev/tests/unit/testsuite/Mage/Backend/Model/Menu/BuilderTest.php +++ b/dev/tests/unit/testsuite/Mage/Backend/Model/Menu/BuilderTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backend * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Backend/Model/Menu/Config/MenuTest.php b/dev/tests/unit/testsuite/Mage/Backend/Model/Menu/Config/MenuTest.php index c7b893b54997bbc32f05c9132614a72041d65fa4..3ee6c1b6f818688a0a1e2175bdbbe0ffb8812a64 100644 --- a/dev/tests/unit/testsuite/Mage/Backend/Model/Menu/Config/MenuTest.php +++ b/dev/tests/unit/testsuite/Mage/Backend/Model/Menu/Config/MenuTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backend * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ @@ -30,17 +30,39 @@ */ class Mage_Backend_Model_Config_MenuTest extends PHPUnit_Framework_TestCase { + /** + * @var PHPUnit_Framework_MockObject_MockObject|Mage_Core_Model_Config + */ + protected $_configMock; + + protected function setUp() + { + $this->_configMock = $this->getMock('Mage_Core_Model_Config', array(), array(), '', false); + $this->_configMock->expects($this->any()) + ->method('getModuleDir') + ->with('etc', 'Mage_Backend') + ->will( + $this->returnValue( + realpath(__DIR__ . '/../../../../../../../../../app/code/core/Mage/Backend/etc') + ) + ); + } + + protected function tearDown() + { + unset($this->_configMock); + } + /** * Test existence of xsd file */ public function testGetSchemaFile() { - $model = $this->getMockForAbstractClass( - 'Mage_Backend_Model_Menu_Config_Menu', - array(), - '', - false + $basePath = realpath(__DIR__) . '/../../_files/'; + $files = array( + $basePath . 'menu_1.xml', ); + $model = new Mage_Backend_Model_Menu_Config_Menu($this->_configMock, $files); $actual = $model->getSchemaFile(); $this->assertFileExists($actual, 'XSD file [' . $actual . '] not exist'); } @@ -71,7 +93,7 @@ class Mage_Backend_Model_Config_MenuTest extends PHPUnit_Framework_TestCase $basePath . 'menu_1.xml', $basePath . 'menu_2.xml', ); - $model = new Mage_Backend_Model_Menu_Config_Menu($files); + $model = new Mage_Backend_Model_Menu_Config_Menu($this->_configMock, $files); $actual = $model->getMergedConfig(); $actual->preserveWhiteSpace = false; @@ -99,7 +121,7 @@ class Mage_Backend_Model_Config_MenuTest extends PHPUnit_Framework_TestCase $basePath . 'menu_1.xml', $basePath . 'menu_1.xml', ); - $model = new Mage_Backend_Model_Menu_Config_Menu($files); + $model = new Mage_Backend_Model_Menu_Config_Menu($this->_configMock, $files); $model->validate(); } @@ -113,7 +135,7 @@ class Mage_Backend_Model_Config_MenuTest extends PHPUnit_Framework_TestCase $basePath . 'menu_1.xml', $basePath . 'menu_2.xml', ); - $model = new Mage_Backend_Model_Menu_Config_Menu($files); + $model = new Mage_Backend_Model_Menu_Config_Menu($this->_configMock, $files); try { $this->assertInstanceOf('Mage_Backend_Model_Menu_Config_Menu', $model->validate()); } catch (Magento_Exception $e) { diff --git a/dev/tests/unit/testsuite/Mage/Backend/Model/Menu/ConfigTest.php b/dev/tests/unit/testsuite/Mage/Backend/Model/Menu/ConfigTest.php index 012f87281e210ee5f50ca0181463a8cb1c231b96..fedf0d08028f22ab59352e655cce4f312f921af6 100644 --- a/dev/tests/unit/testsuite/Mage/Backend/Model/Menu/ConfigTest.php +++ b/dev/tests/unit/testsuite/Mage/Backend/Model/Menu/ConfigTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backend * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Backend/Model/Menu/Director/DomTest.php b/dev/tests/unit/testsuite/Mage/Backend/Model/Menu/Director/DomTest.php index b931b6a82599252f5ac987e73429066cb4e33fe2..bdfe6a2393cb014ec3de1c0d5103b118eb2300e1 100644 --- a/dev/tests/unit/testsuite/Mage/Backend/Model/Menu/Director/DomTest.php +++ b/dev/tests/unit/testsuite/Mage/Backend/Model/Menu/Director/DomTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backend * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Backend/Model/Menu/Filter/IteratorTest.php b/dev/tests/unit/testsuite/Mage/Backend/Model/Menu/Filter/IteratorTest.php index c2137cb26a248a7ad936f7aed10e7958440892d2..8b2256f172f70f7d4a173f8068a166c99d14e324 100644 --- a/dev/tests/unit/testsuite/Mage/Backend/Model/Menu/Filter/IteratorTest.php +++ b/dev/tests/unit/testsuite/Mage/Backend/Model/Menu/Filter/IteratorTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backend * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Backend/Model/Menu/Item/FactoryTest.php b/dev/tests/unit/testsuite/Mage/Backend/Model/Menu/Item/FactoryTest.php index dd38814ecbb23953b4903ac7fb33c4ad573f7d2b..202df95a9e0929f8283e3598f31abd0069d0b6b9 100644 --- a/dev/tests/unit/testsuite/Mage/Backend/Model/Menu/Item/FactoryTest.php +++ b/dev/tests/unit/testsuite/Mage/Backend/Model/Menu/Item/FactoryTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backend * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Backend/Model/Menu/Item/ValidatorTest.php b/dev/tests/unit/testsuite/Mage/Backend/Model/Menu/Item/ValidatorTest.php index b9f785959c8a769bddbddd98412422a319cbf038..85db53cc9ba46ef2c965cb6e0a5d82db3a792af4 100644 --- a/dev/tests/unit/testsuite/Mage/Backend/Model/Menu/Item/ValidatorTest.php +++ b/dev/tests/unit/testsuite/Mage/Backend/Model/Menu/Item/ValidatorTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backend * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Backend/Model/Menu/ItemTest.php b/dev/tests/unit/testsuite/Mage/Backend/Model/Menu/ItemTest.php index 058465357b7ac4de016c33eaa562874340ff5d61..f0268ef76d0ec3e1bc4ef71b3f43e2143b384d9a 100644 --- a/dev/tests/unit/testsuite/Mage/Backend/Model/Menu/ItemTest.php +++ b/dev/tests/unit/testsuite/Mage/Backend/Model/Menu/ItemTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backend * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Backend/Model/MenuTest.php b/dev/tests/unit/testsuite/Mage/Backend/Model/MenuTest.php index c8b1557818d9da20cdd889dfb8f7e0123df4377e..9ce8ee48367e147ee24d3211e2b04dd30c961edb 100644 --- a/dev/tests/unit/testsuite/Mage/Backend/Model/MenuTest.php +++ b/dev/tests/unit/testsuite/Mage/Backend/Model/MenuTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backend * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Backend/Model/UrlTest.php b/dev/tests/unit/testsuite/Mage/Backend/Model/UrlTest.php index b72892e7c8f2a9519dc66d7460ce3342cd44541e..5e5ddd8f3da16cd876cf7af08d29229a25d93f30 100644 --- a/dev/tests/unit/testsuite/Mage/Backend/Model/UrlTest.php +++ b/dev/tests/unit/testsuite/Mage/Backend/Model/UrlTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backend * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Backend/Model/Widget/Grid/ParserTest.php b/dev/tests/unit/testsuite/Mage/Backend/Model/Widget/Grid/ParserTest.php index 4c3509c424e8d290789eed06098c0f640d12d25c..44773a034770e6fb3426c43e8c5ee556569cd7e0 100644 --- a/dev/tests/unit/testsuite/Mage/Backend/Model/Widget/Grid/ParserTest.php +++ b/dev/tests/unit/testsuite/Mage/Backend/Model/Widget/Grid/ParserTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backend * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Backend/Model/Widget/Grid/Row/UrlGeneratorTest.php b/dev/tests/unit/testsuite/Mage/Backend/Model/Widget/Grid/Row/UrlGeneratorTest.php index bfaa19c9aff0f9d8a3bb6bf264547a9d37be3270..1fba14f9d2c703fb4e7435a35333218dad1e78ae 100644 --- a/dev/tests/unit/testsuite/Mage/Backend/Model/Widget/Grid/Row/UrlGeneratorTest.php +++ b/dev/tests/unit/testsuite/Mage/Backend/Model/Widget/Grid/Row/UrlGeneratorTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backend * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Backend/Model/Widget/Grid/SubTotalsTest.php b/dev/tests/unit/testsuite/Mage/Backend/Model/Widget/Grid/SubTotalsTest.php index ae0b06f090206c39e76e714a04498e12126d9d48..6e7caa51ffdf95f05d4dda45dc275bbcfff43273 100644 --- a/dev/tests/unit/testsuite/Mage/Backend/Model/Widget/Grid/SubTotalsTest.php +++ b/dev/tests/unit/testsuite/Mage/Backend/Model/Widget/Grid/SubTotalsTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backend * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Backend/Model/Widget/Grid/TotalsAbstractTest.php b/dev/tests/unit/testsuite/Mage/Backend/Model/Widget/Grid/TotalsAbstractTest.php index 85722cfae278eddea3db513ea8a59f3f034a6d14..0a3035854a6eb0f9f69f2a7a421ee0df6e244d9b 100644 --- a/dev/tests/unit/testsuite/Mage/Backend/Model/Widget/Grid/TotalsAbstractTest.php +++ b/dev/tests/unit/testsuite/Mage/Backend/Model/Widget/Grid/TotalsAbstractTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backend * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Backend/Model/Widget/Grid/TotalsTest.php b/dev/tests/unit/testsuite/Mage/Backend/Model/Widget/Grid/TotalsTest.php index ff972b70a0bc9ffe80e79a053f64ef7afb1c6095..5be6ee8a775801a849b119341698a643386c7eef 100644 --- a/dev/tests/unit/testsuite/Mage/Backend/Model/Widget/Grid/TotalsTest.php +++ b/dev/tests/unit/testsuite/Mage/Backend/Model/Widget/Grid/TotalsTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backend * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Backend/Model/_files/acl.xml b/dev/tests/unit/testsuite/Mage/Backend/Model/_files/acl.xml index ca93e4e27b7e315c4003d96732257872e0611684..ed9f809adb6055052e719a6e0398c354dc06e781 100644 --- a/dev/tests/unit/testsuite/Mage/Backend/Model/_files/acl.xml +++ b/dev/tests/unit/testsuite/Mage/Backend/Model/_files/acl.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/Mage/Backend/Model/_files/acl_1.xml b/dev/tests/unit/testsuite/Mage/Backend/Model/_files/acl_1.xml index b7a8247dffeaf92d8ddaa88dcafa64e8c926f859..3e6bcfc38719ba49994fcc09fd65216e24dff945 100644 --- a/dev/tests/unit/testsuite/Mage/Backend/Model/_files/acl_1.xml +++ b/dev/tests/unit/testsuite/Mage/Backend/Model/_files/acl_1.xml @@ -22,7 +22,7 @@ * @category Magento * @package Mage_Backend * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/Mage/Backend/Model/_files/acl_2.xml b/dev/tests/unit/testsuite/Mage/Backend/Model/_files/acl_2.xml index a54c498eeb533ff8ce88abb54f95d8eddaaab5fc..4fc94313d84a14dfffcd3698c5ed93b38d71e1c3 100644 --- a/dev/tests/unit/testsuite/Mage/Backend/Model/_files/acl_2.xml +++ b/dev/tests/unit/testsuite/Mage/Backend/Model/_files/acl_2.xml @@ -22,7 +22,7 @@ * @category Magento * @package Mage_Backend * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/Mage/Backend/Model/_files/acl_merged.xml b/dev/tests/unit/testsuite/Mage/Backend/Model/_files/acl_merged.xml index bd091e6c33f4f5b88c990a98796b796c4770f711..5998000e867359e82ecf51d5b596e77d38d503fe 100644 --- a/dev/tests/unit/testsuite/Mage/Backend/Model/_files/acl_merged.xml +++ b/dev/tests/unit/testsuite/Mage/Backend/Model/_files/acl_merged.xml @@ -22,7 +22,7 @@ * @category Magento * @package Mage_Backend * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/Mage/Backend/Model/_files/converted_config.php b/dev/tests/unit/testsuite/Mage/Backend/Model/_files/converted_config.php index 217ac82dc16fd9473a460e16fabddc0df8a9968c..a98f92fa58d0db323b82879e3624d6235d4c501a 100644 --- a/dev/tests/unit/testsuite/Mage/Backend/Model/_files/converted_config.php +++ b/dev/tests/unit/testsuite/Mage/Backend/Model/_files/converted_config.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backend * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Backend/Model/_files/dependencies_data.php b/dev/tests/unit/testsuite/Mage/Backend/Model/_files/dependencies_data.php index c30b4789ee876830e8ea39f6f6ffa8c4b3a38ccc..b1438ce53fa1708275cc102ab4c414f533df31d1 100644 --- a/dev/tests/unit/testsuite/Mage/Backend/Model/_files/dependencies_data.php +++ b/dev/tests/unit/testsuite/Mage/Backend/Model/_files/dependencies_data.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backend * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Backend/Model/_files/dependencies_mapped.php b/dev/tests/unit/testsuite/Mage/Backend/Model/_files/dependencies_mapped.php index 06887edbb16fd064d1a4111e1b16b74339c3e3c4..ae86c3d6582de6639ca4c125ba21ab7f97e64788 100644 --- a/dev/tests/unit/testsuite/Mage/Backend/Model/_files/dependencies_mapped.php +++ b/dev/tests/unit/testsuite/Mage/Backend/Model/_files/dependencies_mapped.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backend * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Backend/Model/_files/menu_1.xml b/dev/tests/unit/testsuite/Mage/Backend/Model/_files/menu_1.xml index 8cbabf666a71102f693cdf0428e84c06493b2a05..2d2ef30956d5d1a2885bdc647d9826539f94da58 100644 --- a/dev/tests/unit/testsuite/Mage/Backend/Model/_files/menu_1.xml +++ b/dev/tests/unit/testsuite/Mage/Backend/Model/_files/menu_1.xml @@ -22,7 +22,7 @@ * @category Magento * @package Mage_Backend * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/Mage/Backend/Model/_files/menu_2.xml b/dev/tests/unit/testsuite/Mage/Backend/Model/_files/menu_2.xml index eef949fcf853250190a297706a7528556ae46dea..74e790601a6274a56663c32baf9b4d613df791c1 100644 --- a/dev/tests/unit/testsuite/Mage/Backend/Model/_files/menu_2.xml +++ b/dev/tests/unit/testsuite/Mage/Backend/Model/_files/menu_2.xml @@ -22,7 +22,7 @@ * @category Magento * @package Mage_Backend * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/Mage/Backend/Model/_files/menu_merged.php b/dev/tests/unit/testsuite/Mage/Backend/Model/_files/menu_merged.php index 43d1811758a4d8ee3f9ace3c1d87611de3deb450..191d8d7710cecc091e9168ed26183619a4767b5f 100644 --- a/dev/tests/unit/testsuite/Mage/Backend/Model/_files/menu_merged.php +++ b/dev/tests/unit/testsuite/Mage/Backend/Model/_files/menu_merged.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backend * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ ?> diff --git a/dev/tests/unit/testsuite/Mage/Backend/Model/_files/menu_merged.xml b/dev/tests/unit/testsuite/Mage/Backend/Model/_files/menu_merged.xml index fe12b9d090705885fe899b16dac23b5a13e00c4e..a6377c0ff471c33bd435e015b2f68e63872dbc82 100644 --- a/dev/tests/unit/testsuite/Mage/Backend/Model/_files/menu_merged.xml +++ b/dev/tests/unit/testsuite/Mage/Backend/Model/_files/menu_merged.xml @@ -22,7 +22,7 @@ * @category Magento * @package Mage_Backend * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/Mage/Backend/Model/_files/system.xml b/dev/tests/unit/testsuite/Mage/Backend/Model/_files/system.xml index 8b66cfadde20d0abd662946d040e245d1ef3ad01..b1a33008bfd807b41b66d1dd45c2108bb195f339 100644 --- a/dev/tests/unit/testsuite/Mage/Backend/Model/_files/system.xml +++ b/dev/tests/unit/testsuite/Mage/Backend/Model/_files/system.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Core - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/Mage/Backend/Model/_files/system_1.xml b/dev/tests/unit/testsuite/Mage/Backend/Model/_files/system_1.xml index 5926b269a83071374465890d3025b1c16ca597d0..0837be085e7298492e498221370738aaf50153c7 100644 --- a/dev/tests/unit/testsuite/Mage/Backend/Model/_files/system_1.xml +++ b/dev/tests/unit/testsuite/Mage/Backend/Model/_files/system_1.xml @@ -22,7 +22,7 @@ * @category Magento * @package Mage_Backend * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/Mage/Backend/Model/_files/system_2.xml b/dev/tests/unit/testsuite/Mage/Backend/Model/_files/system_2.xml index 0297b0d55a7240ad3ab8eb95f5ed11c131a4f75b..36fcd7f5ab8ab2f476cf9870bbd8b4445b93f078 100644 --- a/dev/tests/unit/testsuite/Mage/Backend/Model/_files/system_2.xml +++ b/dev/tests/unit/testsuite/Mage/Backend/Model/_files/system_2.xml @@ -22,7 +22,7 @@ * @category Magento * @package Mage_Backend * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/Mage/Backend/controllers/Adminhtml/System/Config/SaveControllerTest.php b/dev/tests/unit/testsuite/Mage/Backend/controllers/Adminhtml/System/Config/SaveControllerTest.php index 669dd2849dbfa7e03ca6e1ae91ae98dd9162ddff..21420c2098b80e8cf1093c218041102108646840 100644 --- a/dev/tests/unit/testsuite/Mage/Backend/controllers/Adminhtml/System/Config/SaveControllerTest.php +++ b/dev/tests/unit/testsuite/Mage/Backend/controllers/Adminhtml/System/Config/SaveControllerTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backend * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Backend/controllers/Adminhtml/System/Config/_files/expected_array.php b/dev/tests/unit/testsuite/Mage/Backend/controllers/Adminhtml/System/Config/_files/expected_array.php index 2dc510c5968c171f844793e65acbf2d837dfcaa5..a7fbc174c48ee056d43ae95790721dab57c037fa 100644 --- a/dev/tests/unit/testsuite/Mage/Backend/controllers/Adminhtml/System/Config/_files/expected_array.php +++ b/dev/tests/unit/testsuite/Mage/Backend/controllers/Adminhtml/System/Config/_files/expected_array.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backend * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Backend/controllers/Adminhtml/System/Config/_files/files_array.php b/dev/tests/unit/testsuite/Mage/Backend/controllers/Adminhtml/System/Config/_files/files_array.php index 5e33797a98536da180d16908824e946c16af5747..534807555ff8f743b024b1c670146dbcdf37d37e 100644 --- a/dev/tests/unit/testsuite/Mage/Backend/controllers/Adminhtml/System/Config/_files/files_array.php +++ b/dev/tests/unit/testsuite/Mage/Backend/controllers/Adminhtml/System/Config/_files/files_array.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backend * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Backup/MediaTest.php b/dev/tests/unit/testsuite/Mage/Backup/MediaTest.php index 23d94a0bef9ca8c07955e8d192f887c4b7ba564a..7fd4ab7efc5ad15d7fac21e1cc969f5332077f62 100644 --- a/dev/tests/unit/testsuite/Mage/Backup/MediaTest.php +++ b/dev/tests/unit/testsuite/Mage/Backup/MediaTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backup * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Backup/NomediaTest.php b/dev/tests/unit/testsuite/Mage/Backup/NomediaTest.php index 6c76025ed9d8859dcd93fed3e1dbdfd9172fd998..ceb7555f8b53ad720ebd5f887c78578bb7f2c27e 100644 --- a/dev/tests/unit/testsuite/Mage/Backup/NomediaTest.php +++ b/dev/tests/unit/testsuite/Mage/Backup/NomediaTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backup * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Backup/SnapshotTest.php b/dev/tests/unit/testsuite/Mage/Backup/SnapshotTest.php index 4c014e81e1a0729c9294827e8b7fdededbcd593c..f7a615a793bf9160de6c3d2944edef6510aefe32 100644 --- a/dev/tests/unit/testsuite/Mage/Backup/SnapshotTest.php +++ b/dev/tests/unit/testsuite/Mage/Backup/SnapshotTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backup * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/OptionTest.php b/dev/tests/unit/testsuite/Mage/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/OptionTest.php index 8a8a54734cba5b158a029c7abbfa57f46b382a95..92bdf298e2fec9a2c1b913d427cd5782ceab7b03 100644 --- a/dev/tests/unit/testsuite/Mage/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/OptionTest.php +++ b/dev/tests/unit/testsuite/Mage/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/OptionTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Bundle * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Bundle/Model/Product/TypeTest.php b/dev/tests/unit/testsuite/Mage/Bundle/Model/Product/TypeTest.php index afe01bba4ed2c350e907fa944eade4ea8d0669ca..9c51b94a022d973261d8f3f125ed1d84f8a183ee 100644 --- a/dev/tests/unit/testsuite/Mage/Bundle/Model/Product/TypeTest.php +++ b/dev/tests/unit/testsuite/Mage/Bundle/Model/Product/TypeTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Bundle * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Captcha/Helper/DataTest.php b/dev/tests/unit/testsuite/Mage/Captcha/Helper/DataTest.php index 1a0ed0b7691d6db5268fbf6bc482fca50a252e55..6d43bea03a6ec43bfd7b1821a6b988619c0a69e2 100644 --- a/dev/tests/unit/testsuite/Mage/Captcha/Helper/DataTest.php +++ b/dev/tests/unit/testsuite/Mage/Captcha/Helper/DataTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Captcha * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Captcha/Model/ZendTest.php b/dev/tests/unit/testsuite/Mage/Captcha/Model/ZendTest.php index 1858a251f282f88ed12cc3daca3a5178d26aaff1..d11d7f1703297e998b282ce74d5a68ae9a7a2298 100644 --- a/dev/tests/unit/testsuite/Mage/Captcha/Model/ZendTest.php +++ b/dev/tests/unit/testsuite/Mage/Captcha/Model/ZendTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Captcha * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Catalog/Block/Layer/ViewTest.php b/dev/tests/unit/testsuite/Mage/Catalog/Block/Layer/ViewTest.php index 58e59959d38e051be09a8e862a7df989b9434910..29ced76269bac9d2a664a1f704fda04138b37ba3 100644 --- a/dev/tests/unit/testsuite/Mage/Catalog/Block/Layer/ViewTest.php +++ b/dev/tests/unit/testsuite/Mage/Catalog/Block/Layer/ViewTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Catalog * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Catalog/Block/Product/ListTest.php b/dev/tests/unit/testsuite/Mage/Catalog/Block/Product/ListTest.php index e7b5ff4a7c4dc48dda15f5759757ca548a5e6608..599369b93b7fac5148314a5a788e8c7ef7b81b9c 100644 --- a/dev/tests/unit/testsuite/Mage/Catalog/Block/Product/ListTest.php +++ b/dev/tests/unit/testsuite/Mage/Catalog/Block/Product/ListTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Catalog * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Catalog/Model/Category/Attribute/Backend/SortbyTest.php b/dev/tests/unit/testsuite/Mage/Catalog/Model/Category/Attribute/Backend/SortbyTest.php index 86d94de6fb4149ff5949841560c79252c8148ccf..9f7d867e1b269b5a7c6d221ed8eb47f15ed086a4 100644 --- a/dev/tests/unit/testsuite/Mage/Catalog/Model/Category/Attribute/Backend/SortbyTest.php +++ b/dev/tests/unit/testsuite/Mage/Catalog/Model/Category/Attribute/Backend/SortbyTest.php @@ -18,7 +18,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Catalog/Model/ObserverTest.php b/dev/tests/unit/testsuite/Mage/Catalog/Model/ObserverTest.php index 2e5a9826f46a333e778f3a86a14f62bd02c84526..eee78a006faa9cd325c5801657804843feb890ce 100644 --- a/dev/tests/unit/testsuite/Mage/Catalog/Model/ObserverTest.php +++ b/dev/tests/unit/testsuite/Mage/Catalog/Model/ObserverTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Catalog * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Catalog/Model/Product/Attribute/Backend/CategoryTest.php b/dev/tests/unit/testsuite/Mage/Catalog/Model/Product/Attribute/Backend/CategoryTest.php index 836bb530c5ef5862ba4f9c157bd84e5435f7ac22..62b72cdebf673b94e00e18c46ca57305821dbc3f 100644 --- a/dev/tests/unit/testsuite/Mage/Catalog/Model/Product/Attribute/Backend/CategoryTest.php +++ b/dev/tests/unit/testsuite/Mage/Catalog/Model/Product/Attribute/Backend/CategoryTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Catalog * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Catalog/Model/Product/Attribute/Backend/Groupprice/AbstractTest.php b/dev/tests/unit/testsuite/Mage/Catalog/Model/Product/Attribute/Backend/Groupprice/AbstractTest.php index 9ed30c9244957abb3deaabc8f63f7ffcf60073a9..d9ea20dc6433d46492543e337f4f440e7c2c205d 100644 --- a/dev/tests/unit/testsuite/Mage/Catalog/Model/Product/Attribute/Backend/Groupprice/AbstractTest.php +++ b/dev/tests/unit/testsuite/Mage/Catalog/Model/Product/Attribute/Backend/Groupprice/AbstractTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Catalog * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Catalog/Model/Product/Attribute/Backend/MediaTest.php b/dev/tests/unit/testsuite/Mage/Catalog/Model/Product/Attribute/Backend/MediaTest.php index df93943c2e1cbead5baa3864c8bf10b464e2112c..131cbc64346f59825ca4581550c6e1a6c7beb439 100644 --- a/dev/tests/unit/testsuite/Mage/Catalog/Model/Product/Attribute/Backend/MediaTest.php +++ b/dev/tests/unit/testsuite/Mage/Catalog/Model/Product/Attribute/Backend/MediaTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Catalog * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Catalog/Model/Product/Attribute/Backend/StockTest.php b/dev/tests/unit/testsuite/Mage/Catalog/Model/Product/Attribute/Backend/StockTest.php index d47fcc3670d04dcc3ed419a286d9bcb02e8ae5a8..4b8d499957b6ef6d49a28c4738077d1864f93f85 100644 --- a/dev/tests/unit/testsuite/Mage/Catalog/Model/Product/Attribute/Backend/StockTest.php +++ b/dev/tests/unit/testsuite/Mage/Catalog/Model/Product/Attribute/Backend/StockTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Catalog * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Catalog/Model/Product/Indexer/FlatTest.php b/dev/tests/unit/testsuite/Mage/Catalog/Model/Product/Indexer/FlatTest.php index b97d93cab8c2554644503428fdf1dcf416241c20..3f52441a832727f51766896c8b72efea3a8b5259 100644 --- a/dev/tests/unit/testsuite/Mage/Catalog/Model/Product/Indexer/FlatTest.php +++ b/dev/tests/unit/testsuite/Mage/Catalog/Model/Product/Indexer/FlatTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Catalog * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Catalog/Model/Product/Type/ConfigurableTest.php b/dev/tests/unit/testsuite/Mage/Catalog/Model/Product/Type/ConfigurableTest.php index f4bbdfd4b793e52687a4dd5381047ae3bee3e734..e9ac9616fab91cacba279a0349fe0b4926049093 100644 --- a/dev/tests/unit/testsuite/Mage/Catalog/Model/Product/Type/ConfigurableTest.php +++ b/dev/tests/unit/testsuite/Mage/Catalog/Model/Product/Type/ConfigurableTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Catalog * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Catalog/Model/Product/Type/GroupedTest.php b/dev/tests/unit/testsuite/Mage/Catalog/Model/Product/Type/GroupedTest.php index e64ba5339d70aaa9af34f2bcbfea4595311ae1db..9804f365df9fc9e4e276600c7e9df9b03afe170c 100644 --- a/dev/tests/unit/testsuite/Mage/Catalog/Model/Product/Type/GroupedTest.php +++ b/dev/tests/unit/testsuite/Mage/Catalog/Model/Product/Type/GroupedTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Catalog * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Catalog/Model/Product/Type/SimpleTest.php b/dev/tests/unit/testsuite/Mage/Catalog/Model/Product/Type/SimpleTest.php index a9a3acf259af0c1c8ec744ee9330a5c261595d1a..717350f5e7b4202be7633654e288a5913648fb3d 100644 --- a/dev/tests/unit/testsuite/Mage/Catalog/Model/Product/Type/SimpleTest.php +++ b/dev/tests/unit/testsuite/Mage/Catalog/Model/Product/Type/SimpleTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Catalog * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Catalog/Model/Product/Type/VirtualTest.php b/dev/tests/unit/testsuite/Mage/Catalog/Model/Product/Type/VirtualTest.php index 757918ef0601c2c40b4c6316897c52988ec181d6..6fd964f44208ec3c7ef6c01373f621ebc80363ae 100644 --- a/dev/tests/unit/testsuite/Mage/Catalog/Model/Product/Type/VirtualTest.php +++ b/dev/tests/unit/testsuite/Mage/Catalog/Model/Product/Type/VirtualTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Catalog * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Catalog/Model/Resource/AbstractTest.php b/dev/tests/unit/testsuite/Mage/Catalog/Model/Resource/AbstractTest.php index 715434f41719363dddae672af04c1f0152118c35..c7836019928c72df3e78ca8618408036c13bc604 100644 --- a/dev/tests/unit/testsuite/Mage/Catalog/Model/Resource/AbstractTest.php +++ b/dev/tests/unit/testsuite/Mage/Catalog/Model/Resource/AbstractTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Catalog * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Catalog/Model/Resource/Category/FlatTest.php b/dev/tests/unit/testsuite/Mage/Catalog/Model/Resource/Category/FlatTest.php index 2fd2a73b4fd1ca664f48a03e9ae88bf029f7d8db..67d5313d99cbbdfc6597bb7a66d7da4efdc14d3a 100644 --- a/dev/tests/unit/testsuite/Mage/Catalog/Model/Resource/Category/FlatTest.php +++ b/dev/tests/unit/testsuite/Mage/Catalog/Model/Resource/Category/FlatTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Catalog * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Catalog/Model/Resource/Product/Collection/AssociatedProductUpdaterTest.php b/dev/tests/unit/testsuite/Mage/Catalog/Model/Resource/Product/Collection/AssociatedProductUpdaterTest.php index b7048c6f2bf6b9ab1a7e7e7ae072e549ff435f00..0541cd6373d12d7747f2339f38a51156f57a8463 100644 --- a/dev/tests/unit/testsuite/Mage/Catalog/Model/Resource/Product/Collection/AssociatedProductUpdaterTest.php +++ b/dev/tests/unit/testsuite/Mage/Catalog/Model/Resource/Product/Collection/AssociatedProductUpdaterTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Catalog * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Catalog/Model/Resource/Product/Option/ValueTest.php b/dev/tests/unit/testsuite/Mage/Catalog/Model/Resource/Product/Option/ValueTest.php index 861d3600bdbb374eb13a0059d0be44f6eeb429e7..ed419c08d1a02a682b3a8d1057f9c006e77b85e0 100644 --- a/dev/tests/unit/testsuite/Mage/Catalog/Model/Resource/Product/Option/ValueTest.php +++ b/dev/tests/unit/testsuite/Mage/Catalog/Model/Resource/Product/Option/ValueTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_ImportExport * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Catalog/_files/eav_attributes_data.php b/dev/tests/unit/testsuite/Mage/Catalog/_files/eav_attributes_data.php index c16f42e9c32d17f6e455e630209c3e09c86b9555..f4be630793c4925a39139e41e5c2eb1418784d4c 100644 --- a/dev/tests/unit/testsuite/Mage/Catalog/_files/eav_attributes_data.php +++ b/dev/tests/unit/testsuite/Mage/Catalog/_files/eav_attributes_data.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Catalog * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Catalog/controllers/ProductControllerTest.php b/dev/tests/unit/testsuite/Mage/Catalog/controllers/ProductControllerTest.php index d2f826e6f5a948ab10bc2450a73717db8c97a771..1c5b31d8e9743e6d06e33a5194887407a62d1368 100644 --- a/dev/tests/unit/testsuite/Mage/Catalog/controllers/ProductControllerTest.php +++ b/dev/tests/unit/testsuite/Mage/Catalog/controllers/ProductControllerTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Catalog * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/CatalogInventory/Block/Adminhtml/Form/Field/StockTest.php b/dev/tests/unit/testsuite/Mage/CatalogInventory/Block/Adminhtml/Form/Field/StockTest.php index 1c85190469c374c9b95a87daea73e47ded747f89..d55e32b3378aa18d1d2032526184f6bb1b82cac1 100644 --- a/dev/tests/unit/testsuite/Mage/CatalogInventory/Block/Adminhtml/Form/Field/StockTest.php +++ b/dev/tests/unit/testsuite/Mage/CatalogInventory/Block/Adminhtml/Form/Field/StockTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Catalog * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Centinel/Model/State/JcbTest.php b/dev/tests/unit/testsuite/Mage/Centinel/Model/State/JcbTest.php index d098ddfa2bbf5889d8df3ec7691f5eaa83c63968..1ce02e764ec731ecf82799b9effc8afdd7ed1fbd 100644 --- a/dev/tests/unit/testsuite/Mage/Centinel/Model/State/JcbTest.php +++ b/dev/tests/unit/testsuite/Mage/Centinel/Model/State/JcbTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Centinel * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Checkout/controllers/CartControllerTest.php b/dev/tests/unit/testsuite/Mage/Checkout/controllers/CartControllerTest.php index 2a71471229211cd3a3257421619b9390669d9611..531194da102803b04d8cd61150d1b9db0cd35420 100644 --- a/dev/tests/unit/testsuite/Mage/Checkout/controllers/CartControllerTest.php +++ b/dev/tests/unit/testsuite/Mage/Checkout/controllers/CartControllerTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Checkout * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Cms/Model/Page/UrlrewriteTest.php b/dev/tests/unit/testsuite/Mage/Cms/Model/Page/UrlrewriteTest.php index bde062d07bf0e5d2c1b46a5cba86270361128e8b..128a267a15505dbafe249f44a17c8f25c5bfedc4 100644 --- a/dev/tests/unit/testsuite/Mage/Cms/Model/Page/UrlrewriteTest.php +++ b/dev/tests/unit/testsuite/Mage/Cms/Model/Page/UrlrewriteTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Cms * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Core/Block/AbstractTest.php b/dev/tests/unit/testsuite/Mage/Core/Block/AbstractTest.php index 36905cfa6cf45fd244046156f4e6206ac7fa289b..015ca69670b85a2b0d481de9625915243777224d 100644 --- a/dev/tests/unit/testsuite/Mage/Core/Block/AbstractTest.php +++ b/dev/tests/unit/testsuite/Mage/Core/Block/AbstractTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Core/Controller/Varien/Action/FactoryTest.php b/dev/tests/unit/testsuite/Mage/Core/Controller/Varien/Action/FactoryTest.php index b7986757928c41c58a304570cec7945d19e07512..b211e58345182121f3407347f2369f59f9ddf57d 100644 --- a/dev/tests/unit/testsuite/Mage/Core/Controller/Varien/Action/FactoryTest.php +++ b/dev/tests/unit/testsuite/Mage/Core/Controller/Varien/Action/FactoryTest.php @@ -21,7 +21,7 @@ * @category Mage * @package Mage_Core * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Core/Controller/Varien/Action/ForwardTest.php b/dev/tests/unit/testsuite/Mage/Core/Controller/Varien/Action/ForwardTest.php index 89fa7d279b30c6c4ffb277148fb3db17ba0247ce..988e6733349d073da0b7716b2385205bb6166d15 100644 --- a/dev/tests/unit/testsuite/Mage/Core/Controller/Varien/Action/ForwardTest.php +++ b/dev/tests/unit/testsuite/Mage/Core/Controller/Varien/Action/ForwardTest.php @@ -21,7 +21,7 @@ * @category Mage * @package Mage_Core * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Core/Controller/Varien/Action/RedirectTest.php b/dev/tests/unit/testsuite/Mage/Core/Controller/Varien/Action/RedirectTest.php index 11db0db03897a09a9dfdfc15dff8c2d2e96d5fd7..564b56f5bd7fec46d5a974cb91d08a390aea70b9 100644 --- a/dev/tests/unit/testsuite/Mage/Core/Controller/Varien/Action/RedirectTest.php +++ b/dev/tests/unit/testsuite/Mage/Core/Controller/Varien/Action/RedirectTest.php @@ -21,7 +21,7 @@ * @category Mage * @package Mage_Core * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Core/Controller/Varien/ActionAbstractTest.php b/dev/tests/unit/testsuite/Mage/Core/Controller/Varien/ActionAbstractTest.php index 15ea687e5da92021eb96a3dd152a9e06fb2baa0f..5ba761e1cb370ebacaa38882e11cc6515bc3110d 100644 --- a/dev/tests/unit/testsuite/Mage/Core/Controller/Varien/ActionAbstractTest.php +++ b/dev/tests/unit/testsuite/Mage/Core/Controller/Varien/ActionAbstractTest.php @@ -21,7 +21,7 @@ * @category Mage * @package Mage_Core * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Core/Controller/Varien/Router/FactoryTest.php b/dev/tests/unit/testsuite/Mage/Core/Controller/Varien/Router/FactoryTest.php index 8c4776a4d5cdd82c5a3b60a0add0e480ff20f601..de156222802aa09a0113778278dc13f9a98df904 100644 --- a/dev/tests/unit/testsuite/Mage/Core/Controller/Varien/Router/FactoryTest.php +++ b/dev/tests/unit/testsuite/Mage/Core/Controller/Varien/Router/FactoryTest.php @@ -21,7 +21,7 @@ * @category Mage * @package Mage_Core * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Core/Helper/CookieTest.php b/dev/tests/unit/testsuite/Mage/Core/Helper/CookieTest.php index 465990edb6d8352f9a976a7fe76d15e12d48139b..168cf284c5efd2f727754de33feec59d4063cc83 100644 --- a/dev/tests/unit/testsuite/Mage/Core/Helper/CookieTest.php +++ b/dev/tests/unit/testsuite/Mage/Core/Helper/CookieTest.php @@ -21,7 +21,7 @@ * @category Mage * @package Mage_Core * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Core/Helper/HttpTest.php b/dev/tests/unit/testsuite/Mage/Core/Helper/HttpTest.php index a713b91abfc328030c437ae3213d9db9c2f359c9..d3a466f9c5abd8166062c5e61f13e23d67b48318 100644 --- a/dev/tests/unit/testsuite/Mage/Core/Helper/HttpTest.php +++ b/dev/tests/unit/testsuite/Mage/Core/Helper/HttpTest.php @@ -21,7 +21,7 @@ * @category Mage * @package Mage_Core * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Core/Helper/TranslateTest.php b/dev/tests/unit/testsuite/Mage/Core/Helper/TranslateTest.php index 5adeed18a12d62244966eb67711be5a1e0585433..5825a549f1fdb87b17958e96b25648999aeb7456 100644 --- a/dev/tests/unit/testsuite/Mage/Core/Helper/TranslateTest.php +++ b/dev/tests/unit/testsuite/Mage/Core/Helper/TranslateTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Core/Helper/Url/RewriteTest.php b/dev/tests/unit/testsuite/Mage/Core/Helper/Url/RewriteTest.php index 0fb5e1d8eabf31351ab9e1343bb158ee01849e7f..614bf67be33c606ab52678b161cd80477b411a7c 100644 --- a/dev/tests/unit/testsuite/Mage/Core/Helper/Url/RewriteTest.php +++ b/dev/tests/unit/testsuite/Mage/Core/Helper/Url/RewriteTest.php @@ -21,7 +21,7 @@ * @category Mage * @package Mage_Core * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Core/Model/Acl/BuilderTest.php b/dev/tests/unit/testsuite/Mage/Core/Model/Acl/BuilderTest.php index 1072320b2af692c57250b482071c05cdd9886e66..458a09eb8a9bdd9c932f458336768c37ac046fd6 100644 --- a/dev/tests/unit/testsuite/Mage/Core/Model/Acl/BuilderTest.php +++ b/dev/tests/unit/testsuite/Mage/Core/Model/Acl/BuilderTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Core/Model/Acl/Loader/Resource/ResourceAbstractTest.php b/dev/tests/unit/testsuite/Mage/Core/Model/Acl/Loader/Resource/ResourceAbstractTest.php index fa6155ecebe333819be0c9402f5c203f88fc1b1d..75b5a1bc603c6abb8bc360e3f17af22e8aafd6b6 100644 --- a/dev/tests/unit/testsuite/Mage/Core/Model/Acl/Loader/Resource/ResourceAbstractTest.php +++ b/dev/tests/unit/testsuite/Mage/Core/Model/Acl/Loader/Resource/ResourceAbstractTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Core_Model_Acl_Loader_Resource_ResourceAbstractTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Mage/Core/Model/App/OptionsTest.php b/dev/tests/unit/testsuite/Mage/Core/Model/App/OptionsTest.php new file mode 100644 index 0000000000000000000000000000000000000000..5a04e56fa3ca74ccba1fab543cc4008378f23630 --- /dev/null +++ b/dev/tests/unit/testsuite/Mage/Core/Model/App/OptionsTest.php @@ -0,0 +1,69 @@ +<?php +/** + * Magento + * + * NOTICE OF LICENSE + * + * This source file is subject to the Open Software License (OSL 3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * http://opensource.org/licenses/osl-3.0.php + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@magentocommerce.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade Magento to newer + * versions in the future. If you wish to customize Magento for your + * needs please refer to http://www.magentocommerce.com for more information. + * + * @category Magento + * @package Mage_Core + * @subpackage unit_tests + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) + * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) + */ + +class Mage_Core_Model_App_OptionsTest extends PHPUnit_Framework_TestCase +{ + public function testGetRunCode() + { + $model = new Mage_Core_Model_App_Options(array()); + $this->assertEmpty($model->getRunCode()); + + $model = new Mage_Core_Model_App_Options(array(Mage_Core_Model_App_Options::OPTION_APP_RUN_CODE => 'test')); + $this->assertEquals('test', $model->getRunCode()); + } + + public function testGetRunType() + { + $model = new Mage_Core_Model_App_Options(array()); + $this->assertEquals(Mage_Core_Model_App_Options::APP_RUN_TYPE_STORE, $model->getRunType()); + + $runType = Mage_Core_Model_App_Options::APP_RUN_TYPE_WEBSITE; + $model = new Mage_Core_Model_App_Options(array(Mage_Core_Model_App_Options::OPTION_APP_RUN_TYPE => $runType)); + $this->assertEquals($runType, $model->getRunType()); + } + + /** + * @expectedException InvalidArgumentException + * @expectedExceptionMessage run type "invalid" is not recognized, supported values: "store", "group", "website" + */ + public function testGetRunTypeException() + { + new Mage_Core_Model_App_Options(array(Mage_Core_Model_App_Options::OPTION_APP_RUN_TYPE => 'invalid')); + } + + public function testGetRunOptions() + { + $model = new Mage_Core_Model_App_Options(array('ignored_option' => 'ignored value')); + $this->assertEmpty($model->getRunOptions()); + + $extraLocalConfigFile = 'test/local.xml'; + $inputOptions = array(Mage_Core_Model_App_Options::OPTION_LOCAL_CONFIG_EXTRA_FILE => $extraLocalConfigFile); + $expectedRunOptions = array(Mage_Core_Model_Config::OPTION_LOCAL_CONFIG_EXTRA_FILE => $extraLocalConfigFile); + $model = new Mage_Core_Model_App_Options($inputOptions); + $this->assertEquals($expectedRunOptions, $model->getRunOptions()); + } +} diff --git a/dev/tests/unit/testsuite/Mage/Core/Model/AppTest.php b/dev/tests/unit/testsuite/Mage/Core/Model/AppTest.php index 23987d751a9c8f2d8b165d865b72df0104727667..02eeca38643d64f522342e2c4f3f6796cea3c8cc 100644 --- a/dev/tests/unit/testsuite/Mage/Core/Model/AppTest.php +++ b/dev/tests/unit/testsuite/Mage/Core/Model/AppTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Core/Model/AuthorizationTest.php b/dev/tests/unit/testsuite/Mage/Core/Model/AuthorizationTest.php index 1b27eddb2067866c1472376fbd6bc1d384ab947c..c90b2c589ae21e4344eb7e8295777721fbf83177 100644 --- a/dev/tests/unit/testsuite/Mage/Core/Model/AuthorizationTest.php +++ b/dev/tests/unit/testsuite/Mage/Core/Model/AuthorizationTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Core/Model/CacheTest.php b/dev/tests/unit/testsuite/Mage/Core/Model/CacheTest.php index 0028fec360a5183aff85259e373ea173445dce28..4f0bc940d7c71c25034d5a179195e5a1f994b8f3 100644 --- a/dev/tests/unit/testsuite/Mage/Core/Model/CacheTest.php +++ b/dev/tests/unit/testsuite/Mage/Core/Model/CacheTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Core/Model/Config/ModuleTest.php b/dev/tests/unit/testsuite/Mage/Core/Model/Config/ModuleTest.php index f2205343b8973ab48227003d9304063a33333353..3f625ab3381d7f0f1e8ede68692654be0dd47096 100644 --- a/dev/tests/unit/testsuite/Mage/Core/Model/Config/ModuleTest.php +++ b/dev/tests/unit/testsuite/Mage/Core/Model/Config/ModuleTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Core/Model/Config/OptionsTest.php b/dev/tests/unit/testsuite/Mage/Core/Model/Config/OptionsTest.php index 366ba14febbd3d94b2145e9646673c6038cf274f..62b07ed2f83f55a2ebfe11c59a722df19f63d1bc 100644 --- a/dev/tests/unit/testsuite/Mage/Core/Model/Config/OptionsTest.php +++ b/dev/tests/unit/testsuite/Mage/Core/Model/Config/OptionsTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ @@ -44,13 +44,12 @@ class Mage_Core_Model_Config_OptionsTest extends PHPUnit_Framework_TestCase protected function setUp() { - $rootDir = dirname(__FILE__); $ioModel = $this->getMock('Varien_Io_File', array('checkAndCreateFolder')); $this->_sourceData = array( - 'app_dir' => $rootDir . DIRECTORY_SEPARATOR . 'app', + 'app_dir' => __DIR__ . DIRECTORY_SEPARATOR . 'app', 'io' => $ioModel, ); - $this->_varDir = dirname(__FILE__) . DIRECTORY_SEPARATOR . 'var'; + $this->_varDir = __DIR__ . DIRECTORY_SEPARATOR . 'var'; } public function testGetVarDir() @@ -65,47 +64,21 @@ class Mage_Core_Model_Config_OptionsTest extends PHPUnit_Framework_TestCase $this->assertEquals($this->_varDir, $result); } - public function testGetVarDirSysTmpDir() - { - $sysVarDir = sys_get_temp_dir() . DIRECTORY_SEPARATOR . 'magento' . DIRECTORY_SEPARATOR . 'var'; - - $this->_sourceData['io']->expects($this->at(0)) - ->method('checkAndCreateFolder') - ->with($this->equalTo($this->_varDir)) - ->will($this->throwException(new Exception)); - - $this->_sourceData['io']->expects($this->at(1)) - ->method('checkAndCreateFolder') - ->with($this->equalTo($sysVarDir)) - ->will($this->returnValue(true)); - - $this->_model = new Mage_Core_Model_Config_Options($this->_sourceData); - $result = $this->_model->getVarDir(); - $this->assertEquals($sysVarDir, $result); - } - /** * @expectedException Mage_Core_Exception */ public function testGetVarDirWithException() { - $sysVarDir = sys_get_temp_dir() . DIRECTORY_SEPARATOR . 'magento' . DIRECTORY_SEPARATOR . 'var'; $this->_sourceData['io']->expects($this->at(0)) ->method('checkAndCreateFolder') ->with($this->equalTo($this->_varDir)) ->will($this->throwException(new Exception)); - - $this->_sourceData['io']->expects($this->at(1)) - ->method('checkAndCreateFolder') - ->with($this->equalTo($sysVarDir)) - ->will($this->throwException(new Exception)); - $this->_model = new Mage_Core_Model_Config_Options($this->_sourceData); } public function testCreateDirIfNotExists() { - $checkDir = dirname(__FILE__) . DIRECTORY_SEPARATOR . 'test'; + $checkDir = __DIR__ . DIRECTORY_SEPARATOR . 'test'; $this->_sourceData['io']->expects($this->at(0)) ->method('checkAndCreateFolder') ->with($this->equalTo($this->_varDir)) @@ -124,7 +97,7 @@ class Mage_Core_Model_Config_OptionsTest extends PHPUnit_Framework_TestCase public function testCreateDirIfNotExistsNegativeResult() { - $checkDir = dirname(__FILE__) . DIRECTORY_SEPARATOR . 'dirNotExists'; + $checkDir = __DIR__ . DIRECTORY_SEPARATOR . 'dirNotExists'; $this->_sourceData['io']->expects($this->at(0)) ->method('checkAndCreateFolder') ->with($this->equalTo($this->_varDir)) diff --git a/dev/tests/unit/testsuite/Mage/Core/Model/Config/_files/module_dependency_circular_input.xml b/dev/tests/unit/testsuite/Mage/Core/Model/Config/_files/module_dependency_circular_input.xml index 87630b1314d9c0ea666ada800fad1c246d191080..5411f8e99210cdb56754ba52e59850ecbbdb7abf 100644 --- a/dev/tests/unit/testsuite/Mage/Core/Model/Config/_files/module_dependency_circular_input.xml +++ b/dev/tests/unit/testsuite/Mage/Core/Model/Config/_files/module_dependency_circular_input.xml @@ -21,7 +21,7 @@ * * @category Magento * @package unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/Mage/Core/Model/Config/_files/module_dependency_circular_soft_input.xml b/dev/tests/unit/testsuite/Mage/Core/Model/Config/_files/module_dependency_circular_soft_input.xml index 2e9a02b4e9c4ee7983492f793652801c7a16d348..4b9e84f823fb62a59b0e813daee204e65145f146 100644 --- a/dev/tests/unit/testsuite/Mage/Core/Model/Config/_files/module_dependency_circular_soft_input.xml +++ b/dev/tests/unit/testsuite/Mage/Core/Model/Config/_files/module_dependency_circular_soft_input.xml @@ -21,7 +21,7 @@ * * @category Magento * @package unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/Mage/Core/Model/Config/_files/module_dependency_linear_input.xml b/dev/tests/unit/testsuite/Mage/Core/Model/Config/_files/module_dependency_linear_input.xml index 7cccf2aa639e471be9859ef54f2203a1e6956ae8..3c5bc7f6393cb0e6b370c9a7744bf095ec9467c7 100644 --- a/dev/tests/unit/testsuite/Mage/Core/Model/Config/_files/module_dependency_linear_input.xml +++ b/dev/tests/unit/testsuite/Mage/Core/Model/Config/_files/module_dependency_linear_input.xml @@ -21,7 +21,7 @@ * * @category Magento * @package unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/Mage/Core/Model/Config/_files/module_dependency_wrong_input.xml b/dev/tests/unit/testsuite/Mage/Core/Model/Config/_files/module_dependency_wrong_input.xml index da51310dbb878f6bad5c529bce7ac2b941305afe..f594b0348cc389af1976971a806ab1e80805dd91 100644 --- a/dev/tests/unit/testsuite/Mage/Core/Model/Config/_files/module_dependency_wrong_input.xml +++ b/dev/tests/unit/testsuite/Mage/Core/Model/Config/_files/module_dependency_wrong_input.xml @@ -21,7 +21,7 @@ * * @category Magento * @package unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/Mage/Core/Model/Config/_files/module_filtered.xml b/dev/tests/unit/testsuite/Mage/Core/Model/Config/_files/module_filtered.xml index 5d2275159461ca4efa26d000794341a01beeec0e..a11d92ce4f2f78f0fe7e70289596733de8f4a876 100644 --- a/dev/tests/unit/testsuite/Mage/Core/Model/Config/_files/module_filtered.xml +++ b/dev/tests/unit/testsuite/Mage/Core/Model/Config/_files/module_filtered.xml @@ -21,7 +21,7 @@ * * @category Magento * @package unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/Mage/Core/Model/Config/_files/module_input.xml b/dev/tests/unit/testsuite/Mage/Core/Model/Config/_files/module_input.xml index d4d622b004ce6cb9f2b4c2d04cc0125faeb4479a..96a1e4cee27e82758cb970f2ab9feda541e739d9 100644 --- a/dev/tests/unit/testsuite/Mage/Core/Model/Config/_files/module_input.xml +++ b/dev/tests/unit/testsuite/Mage/Core/Model/Config/_files/module_input.xml @@ -21,7 +21,7 @@ * * @category Magento * @package unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/Mage/Core/Model/Config/_files/module_sorted.xml b/dev/tests/unit/testsuite/Mage/Core/Model/Config/_files/module_sorted.xml index a3e6288396bc6833683297e5612b06580b5e02fe..80bed350306242e789b04625ff3052e803b73379 100644 --- a/dev/tests/unit/testsuite/Mage/Core/Model/Config/_files/module_sorted.xml +++ b/dev/tests/unit/testsuite/Mage/Core/Model/Config/_files/module_sorted.xml @@ -21,7 +21,7 @@ * * @category Magento * @package unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/Mage/Core/Model/ConfigTest.php b/dev/tests/unit/testsuite/Mage/Core/Model/ConfigTest.php index 1c5bd62c2cdaaef7d245919cdb13b55f9846bd8e..00b88f53a277b791214def9e1f1d9b83c01118f7 100644 --- a/dev/tests/unit/testsuite/Mage/Core/Model/ConfigTest.php +++ b/dev/tests/unit/testsuite/Mage/Core/Model/ConfigTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Core/Model/Design/Fallback/CachingProxyTest.php b/dev/tests/unit/testsuite/Mage/Core/Model/Design/Fallback/CachingProxyTest.php index 94b34266ffff8def3961feb11e842d785ee41df2..43289cf83bf3638de0debc1273f293594028dbfa 100644 --- a/dev/tests/unit/testsuite/Mage/Core/Model/Design/Fallback/CachingProxyTest.php +++ b/dev/tests/unit/testsuite/Mage/Core/Model/Design/Fallback/CachingProxyTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Core/Model/Design/PackageFallbackTest.php b/dev/tests/unit/testsuite/Mage/Core/Model/Design/PackageFallbackTest.php index dc385a1c8cee70a24a8fbd9329ed4728784cad93..0749e0b2275afa1e55701e1c7ca5cfe55df3a444 100644 --- a/dev/tests/unit/testsuite/Mage/Core/Model/Design/PackageFallbackTest.php +++ b/dev/tests/unit/testsuite/Mage/Core/Model/Design/PackageFallbackTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Core/Model/Layout/Argument/Handler/ObjectTest.php b/dev/tests/unit/testsuite/Mage/Core/Model/Layout/Argument/Handler/ObjectTest.php index 720e37171b36e3ae31c80445f41d3a6680936b40..0fae95f8febf34ffe98a5db30c4f4b5edc0a5ab4 100644 --- a/dev/tests/unit/testsuite/Mage/Core/Model/Layout/Argument/Handler/ObjectTest.php +++ b/dev/tests/unit/testsuite/Mage/Core/Model/Layout/Argument/Handler/ObjectTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Core/Model/Layout/Argument/Handler/OptionsTest.php b/dev/tests/unit/testsuite/Mage/Core/Model/Layout/Argument/Handler/OptionsTest.php index d9d16f1acb8636d4b7de57b4030bdc4b6b194e69..a47769ab35738552a8c093889d22f2ba30b4506c 100644 --- a/dev/tests/unit/testsuite/Mage/Core/Model/Layout/Argument/Handler/OptionsTest.php +++ b/dev/tests/unit/testsuite/Mage/Core/Model/Layout/Argument/Handler/OptionsTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Core/Model/Layout/Argument/Handler/UrlTest.php b/dev/tests/unit/testsuite/Mage/Core/Model/Layout/Argument/Handler/UrlTest.php index d16c1708dad71743359dc29fccd0259b215609ac..85667891cc196e160c8334b7ef218d1958988973 100644 --- a/dev/tests/unit/testsuite/Mage/Core/Model/Layout/Argument/Handler/UrlTest.php +++ b/dev/tests/unit/testsuite/Mage/Core/Model/Layout/Argument/Handler/UrlTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Core/Model/Layout/Argument/HandlerAbstractTest.php b/dev/tests/unit/testsuite/Mage/Core/Model/Layout/Argument/HandlerAbstractTest.php index 4a176882e7d30839d97c72d4bb1a0dd297e6c43e..4058b52647d64d570b7b20ad77f4fc03a109556d 100644 --- a/dev/tests/unit/testsuite/Mage/Core/Model/Layout/Argument/HandlerAbstractTest.php +++ b/dev/tests/unit/testsuite/Mage/Core/Model/Layout/Argument/HandlerAbstractTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Core/Model/Layout/Argument/HandlerFactoryTest.php b/dev/tests/unit/testsuite/Mage/Core/Model/Layout/Argument/HandlerFactoryTest.php index 23518088773ec845c6a7487cd792cb43b23fdebf..639c2a0e3a53fde5c5df2b4ad1f09872bc4866dd 100644 --- a/dev/tests/unit/testsuite/Mage/Core/Model/Layout/Argument/HandlerFactoryTest.php +++ b/dev/tests/unit/testsuite/Mage/Core/Model/Layout/Argument/HandlerFactoryTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Core/Model/Layout/Argument/ProcessorConfigTest.php b/dev/tests/unit/testsuite/Mage/Core/Model/Layout/Argument/ProcessorConfigTest.php index a001f651cf992a5592d61661ef85fddbccbc4843..b012b4c7333dd7f2130469f954f753bc31caa3f1 100644 --- a/dev/tests/unit/testsuite/Mage/Core/Model/Layout/Argument/ProcessorConfigTest.php +++ b/dev/tests/unit/testsuite/Mage/Core/Model/Layout/Argument/ProcessorConfigTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Core/Model/Layout/Argument/ProcessorTest.php b/dev/tests/unit/testsuite/Mage/Core/Model/Layout/Argument/ProcessorTest.php index 48421148b59a4bb7097fb8da7c6c0204761c9cb9..38b4d7c7491d66e9645d3ad6cadb4995c6017d9e 100644 --- a/dev/tests/unit/testsuite/Mage/Core/Model/Layout/Argument/ProcessorTest.php +++ b/dev/tests/unit/testsuite/Mage/Core/Model/Layout/Argument/ProcessorTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Core/Model/Layout/Argument/UpdaterTest.php b/dev/tests/unit/testsuite/Mage/Core/Model/Layout/Argument/UpdaterTest.php index 0ae97c7f33dd5f6080ba57f8cf537c9179074356..848cdaad5a621139f6fdb7620b4b7af23df9d478 100644 --- a/dev/tests/unit/testsuite/Mage/Core/Model/Layout/Argument/UpdaterTest.php +++ b/dev/tests/unit/testsuite/Mage/Core/Model/Layout/Argument/UpdaterTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Core/Model/Layout/ElementTest.php b/dev/tests/unit/testsuite/Mage/Core/Model/Layout/ElementTest.php index 48d4693a873254fd265a04d50d51344d4167c88f..91fd4d6f82f276eae5b3795a6e8dd79f5bee27bc 100644 --- a/dev/tests/unit/testsuite/Mage/Core/Model/Layout/ElementTest.php +++ b/dev/tests/unit/testsuite/Mage/Core/Model/Layout/ElementTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Core/Model/Layout/FactoryTest.php b/dev/tests/unit/testsuite/Mage/Core/Model/Layout/FactoryTest.php index 3ad5078a461fee553cf55e6a2c82c95af5a92e5e..5c2bdf145dd99086f8862e9f97db36f3704b70d0 100644 --- a/dev/tests/unit/testsuite/Mage/Core/Model/Layout/FactoryTest.php +++ b/dev/tests/unit/testsuite/Mage/Core/Model/Layout/FactoryTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Core/Model/Layout/ScheduledStructureTest.php b/dev/tests/unit/testsuite/Mage/Core/Model/Layout/ScheduledStructureTest.php index 2950ec42af3a83fb0bc7cc7d5a66641555eee4e4..50d0589bb5b38c91e240165cac14251c360e09c4 100644 --- a/dev/tests/unit/testsuite/Mage/Core/Model/Layout/ScheduledStructureTest.php +++ b/dev/tests/unit/testsuite/Mage/Core/Model/Layout/ScheduledStructureTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Core/Model/Layout/TranslatorTest.php b/dev/tests/unit/testsuite/Mage/Core/Model/Layout/TranslatorTest.php index 9f1bafe8c6a63a94ad331d026261b7971cbab262..dd2fb3bd9fec0848013f018709d5af698cf170b0 100644 --- a/dev/tests/unit/testsuite/Mage/Core/Model/Layout/TranslatorTest.php +++ b/dev/tests/unit/testsuite/Mage/Core/Model/Layout/TranslatorTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Core/Model/LoggerTest.php b/dev/tests/unit/testsuite/Mage/Core/Model/LoggerTest.php index 186b5de33acb64a7504e6ea84e899a48ece5680f..44626919808d33b05680a445031f535fea706125 100644 --- a/dev/tests/unit/testsuite/Mage/Core/Model/LoggerTest.php +++ b/dev/tests/unit/testsuite/Mage/Core/Model/LoggerTest.php @@ -18,7 +18,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Core_Model_LoggerTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Mage/Core/Model/Resource/Db/AbstractTest.php b/dev/tests/unit/testsuite/Mage/Core/Model/Resource/Db/AbstractTest.php index 28f6911878bee7da492fe03c8cddee400718b7c0..bdf2e944e2975022565e0eb26304883eac76298c 100644 --- a/dev/tests/unit/testsuite/Mage/Core/Model/Resource/Db/AbstractTest.php +++ b/dev/tests/unit/testsuite/Mage/Core/Model/Resource/Db/AbstractTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Core/Model/Resource/SessionTest.php b/dev/tests/unit/testsuite/Mage/Core/Model/Resource/SessionTest.php index e50a923372243ece2295528f67577c64a4ab46a4..900c55739f945111eccd5dbaf1d1358572176e40 100644 --- a/dev/tests/unit/testsuite/Mage/Core/Model/Resource/SessionTest.php +++ b/dev/tests/unit/testsuite/Mage/Core/Model/Resource/SessionTest.php @@ -21,7 +21,7 @@ * @category Mage * @package Mage_Core * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Core/Model/Resource/Setup/MigrationTest.php b/dev/tests/unit/testsuite/Mage/Core/Model/Resource/Setup/MigrationTest.php index 96a28a40d5ec2c4aa657d57566fbf19f908b5101..d42216940c7a6591f6ad7a774ddd66d543000a0e 100644 --- a/dev/tests/unit/testsuite/Mage/Core/Model/Resource/Setup/MigrationTest.php +++ b/dev/tests/unit/testsuite/Mage/Core/Model/Resource/Setup/MigrationTest.php @@ -21,7 +21,7 @@ * @category Mage * @package Mage_Core * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Core/Model/Resource/Setup/_files/data_content_plain_model.php b/dev/tests/unit/testsuite/Mage/Core/Model/Resource/Setup/_files/data_content_plain_model.php index 1b4165bd5e46df84caad2d19178578208f58393d..b7cb460ac24dc93bd644a21474d6167ee7d443cf 100644 --- a/dev/tests/unit/testsuite/Mage/Core/Model/Resource/Setup/_files/data_content_plain_model.php +++ b/dev/tests/unit/testsuite/Mage/Core/Model/Resource/Setup/_files/data_content_plain_model.php @@ -21,7 +21,7 @@ * @category Mage * @package Mage_Core * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Core/Model/Resource/Setup/_files/data_content_plain_pk_fields.php b/dev/tests/unit/testsuite/Mage/Core/Model/Resource/Setup/_files/data_content_plain_pk_fields.php index cd4d40a0d1c39c0cc18706e12f5c286608d38d43..7c4d1ce9b2a8174b5a414e3919743b4dcaf6ae69 100644 --- a/dev/tests/unit/testsuite/Mage/Core/Model/Resource/Setup/_files/data_content_plain_pk_fields.php +++ b/dev/tests/unit/testsuite/Mage/Core/Model/Resource/Setup/_files/data_content_plain_pk_fields.php @@ -21,7 +21,7 @@ * @category Mage * @package Mage_Core * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Core/Model/Resource/Setup/_files/data_content_plain_resource.php b/dev/tests/unit/testsuite/Mage/Core/Model/Resource/Setup/_files/data_content_plain_resource.php index 2742ddd33000cfb3a53d7fda8f0fd15a8dd27d44..d1528a8ec5e5382fbd157d150cbc599357b3ce9f 100644 --- a/dev/tests/unit/testsuite/Mage/Core/Model/Resource/Setup/_files/data_content_plain_resource.php +++ b/dev/tests/unit/testsuite/Mage/Core/Model/Resource/Setup/_files/data_content_plain_resource.php @@ -21,7 +21,7 @@ * @category Mage * @package Mage_Core * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Core/Model/Resource/Setup/_files/data_content_serialized.php b/dev/tests/unit/testsuite/Mage/Core/Model/Resource/Setup/_files/data_content_serialized.php index 5e2297560e473d7052e3324c6c5a8ed3563b57a2..d61db5e43215b5c4a67973334c0aa1caa971bc48 100644 --- a/dev/tests/unit/testsuite/Mage/Core/Model/Resource/Setup/_files/data_content_serialized.php +++ b/dev/tests/unit/testsuite/Mage/Core/Model/Resource/Setup/_files/data_content_serialized.php @@ -21,7 +21,7 @@ * @category Mage * @package Mage_Core * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Core/Model/Resource/Setup/_files/data_content_wiki.php b/dev/tests/unit/testsuite/Mage/Core/Model/Resource/Setup/_files/data_content_wiki.php index 731dc9f18f5c33a51ed0cde44074c8f08e9df2ed..17aa316b6741c4c7c1ebfd65ee54cbbd403e07b4 100644 --- a/dev/tests/unit/testsuite/Mage/Core/Model/Resource/Setup/_files/data_content_wiki.php +++ b/dev/tests/unit/testsuite/Mage/Core/Model/Resource/Setup/_files/data_content_wiki.php @@ -21,7 +21,7 @@ * @category Mage * @package Mage_Core * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Core/Model/Resource/Setup/_files/data_content_xml.php b/dev/tests/unit/testsuite/Mage/Core/Model/Resource/Setup/_files/data_content_xml.php index ff3400b920732bca5600d33f0bd44847e9db150e..2e046ea379c75d0b9d31c29ebbb56c47bc7deff3 100644 --- a/dev/tests/unit/testsuite/Mage/Core/Model/Resource/Setup/_files/data_content_xml.php +++ b/dev/tests/unit/testsuite/Mage/Core/Model/Resource/Setup/_files/data_content_xml.php @@ -21,7 +21,7 @@ * @category Mage * @package Mage_Core * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Core/Model/ShellAbstractTest.php b/dev/tests/unit/testsuite/Mage/Core/Model/ShellAbstractTest.php index 1b029c9c68ef27b79408a3cabed759d5639cb122..a2be7afaed34a1d5ad353a3d55927e3a5a058797 100644 --- a/dev/tests/unit/testsuite/Mage/Core/Model/ShellAbstractTest.php +++ b/dev/tests/unit/testsuite/Mage/Core/Model/ShellAbstractTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Core_Model_ShellAbstractTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Mage/Core/Model/Source/Urlrewrite/OptionsTest.php b/dev/tests/unit/testsuite/Mage/Core/Model/Source/Urlrewrite/OptionsTest.php index 3c64ddcaad3d5936ea65735678918526167cd388..2fcbba368ad74f1d46571840caa17d518df896c8 100644 --- a/dev/tests/unit/testsuite/Mage/Core/Model/Source/Urlrewrite/OptionsTest.php +++ b/dev/tests/unit/testsuite/Mage/Core/Model/Source/Urlrewrite/OptionsTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Core/Model/Source/Urlrewrite/TypesTest.php b/dev/tests/unit/testsuite/Mage/Core/Model/Source/Urlrewrite/TypesTest.php index 331d2772630e890da29a910c953940b3cb973a42..b625420f23feef69995ee63d2be8e5a2abe2107f 100644 --- a/dev/tests/unit/testsuite/Mage/Core/Model/Source/Urlrewrite/TypesTest.php +++ b/dev/tests/unit/testsuite/Mage/Core/Model/Source/Urlrewrite/TypesTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Core/Model/TemplateTest.php b/dev/tests/unit/testsuite/Mage/Core/Model/TemplateTest.php index 4872480aab9ce3aacbc80d5e2c5cc590bf20277d..9bcb8826b10082c9ff4f2a5bfa7f81280c68c094 100644 --- a/dev/tests/unit/testsuite/Mage/Core/Model/TemplateTest.php +++ b/dev/tests/unit/testsuite/Mage/Core/Model/TemplateTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Core/Model/Theme/ServiceTest.php b/dev/tests/unit/testsuite/Mage/Core/Model/Theme/ServiceTest.php index 5bbcff3f59d321e80b7aef720a757dbdbf99d212..b337ad96ac5f46a7ea174fea6c509ce906cecf73 100644 --- a/dev/tests/unit/testsuite/Mage/Core/Model/Theme/ServiceTest.php +++ b/dev/tests/unit/testsuite/Mage/Core/Model/Theme/ServiceTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Core/Model/Theme/ValidationTest.php b/dev/tests/unit/testsuite/Mage/Core/Model/Theme/ValidationTest.php index a0f61b4156c57c17d61019e2b7998c174d8d99f1..e01c2b03858b94bc8d851eb17485bddbb00a28d8 100644 --- a/dev/tests/unit/testsuite/Mage/Core/Model/Theme/ValidationTest.php +++ b/dev/tests/unit/testsuite/Mage/Core/Model/Theme/ValidationTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Core/Model/ThemeTest.php b/dev/tests/unit/testsuite/Mage/Core/Model/ThemeTest.php index bb1a9b31ea85fede71d562caa84a461950318094..a86e90f394aa8535278fee6c230392ac8b5285b1 100644 --- a/dev/tests/unit/testsuite/Mage/Core/Model/ThemeTest.php +++ b/dev/tests/unit/testsuite/Mage/Core/Model/ThemeTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Core/Model/Url/RewriteFactoryTest.php b/dev/tests/unit/testsuite/Mage/Core/Model/Url/RewriteFactoryTest.php index 5bc4531b459a249bfe2a2abe963297b75a6ba907..0a4a4147dc7ab4cced3e40d20267a240a5d196fe 100644 --- a/dev/tests/unit/testsuite/Mage/Core/Model/Url/RewriteFactoryTest.php +++ b/dev/tests/unit/testsuite/Mage/Core/Model/Url/RewriteFactoryTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Core/Model/UrlTest.php b/dev/tests/unit/testsuite/Mage/Core/Model/UrlTest.php index ca30c9cfad316d610d5bc3aff5ee55f7a29f4257..3fccadea277d2a292b565f987ea31a1febec1f42 100644 --- a/dev/tests/unit/testsuite/Mage/Core/Model/UrlTest.php +++ b/dev/tests/unit/testsuite/Mage/Core/Model/UrlTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Core/Model/Validator/FactoryTest.php b/dev/tests/unit/testsuite/Mage/Core/Model/Validator/FactoryTest.php index 26769f75b519cc227faa844d203d3b25b157eb71..90017cb0b65b0fd08b0ffbf3957baa4965ec3908 100644 --- a/dev/tests/unit/testsuite/Mage/Core/Model/Validator/FactoryTest.php +++ b/dev/tests/unit/testsuite/Mage/Core/Model/Validator/FactoryTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Core_Model_Validator_FactoryTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Mage/Core/Model/_files/acl_resources.xml b/dev/tests/unit/testsuite/Mage/Core/Model/_files/acl_resources.xml index 2234a70e6c620d0bd429a019a61652c637b0799a..c00657684b119e6b8742afe1a3ea04b6aed7ab50 100644 --- a/dev/tests/unit/testsuite/Mage/Core/Model/_files/acl_resources.xml +++ b/dev/tests/unit/testsuite/Mage/Core/Model/_files/acl_resources.xml @@ -22,7 +22,7 @@ * @category Magento * @package Mage_Core * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/Mage/Core/Model/_files/frontend/default/iphone/theme.xml b/dev/tests/unit/testsuite/Mage/Core/Model/_files/frontend/default/iphone/theme.xml index e5ae92a7a536ad98376967a2df84cff9871db017..14e6ac81f9b968fcf97b8f0e5f3ef139e5b43454 100644 --- a/dev/tests/unit/testsuite/Mage/Core/Model/_files/frontend/default/iphone/theme.xml +++ b/dev/tests/unit/testsuite/Mage/Core/Model/_files/frontend/default/iphone/theme.xml @@ -21,7 +21,7 @@ * @category Magento * @package Design * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/Mage/Core/Model/_files/frontend/default/iphone/theme_invalid.xml b/dev/tests/unit/testsuite/Mage/Core/Model/_files/frontend/default/iphone/theme_invalid.xml index 1e65af9423a3bab765107fe680719ac80ba88d78..3f17d91b799907d88c11e35ba17434e246a8babc 100644 --- a/dev/tests/unit/testsuite/Mage/Core/Model/_files/frontend/default/iphone/theme_invalid.xml +++ b/dev/tests/unit/testsuite/Mage/Core/Model/_files/frontend/default/iphone/theme_invalid.xml @@ -21,7 +21,7 @@ * @category Magento * @package Design * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/Mage/Core/Service/ServiceAbstractTest.php b/dev/tests/unit/testsuite/Mage/Core/Service/ServiceAbstractTest.php index f3d1f5fea8d08ce561dd733b4087bf0c755b8fea..c353320e711af65d7017cfc9d6ba763e425693d5 100644 --- a/dev/tests/unit/testsuite/Mage/Core/Service/ServiceAbstractTest.php +++ b/dev/tests/unit/testsuite/Mage/Core/Service/ServiceAbstractTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Core_Service_ServiceAbstractTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Mage/Customer/Service/CustomerTest.php b/dev/tests/unit/testsuite/Mage/Customer/Service/CustomerTest.php index 5c852215bd4d235fe5d7b429310a2d715f3007d6..3e313bf95b7c6487613eee933df8063411e8336c 100644 --- a/dev/tests/unit/testsuite/Mage/Customer/Service/CustomerTest.php +++ b/dev/tests/unit/testsuite/Mage/Customer/Service/CustomerTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Customer_Service_CustomerTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Mage/DesignEditor/Block/Adminhtml/Editor/ContainerTest.php b/dev/tests/unit/testsuite/Mage/DesignEditor/Block/Adminhtml/Editor/ContainerTest.php index f6422bbd16148a6d5d5dd5edb54152f3a24f88ec..c839025f94e185d61222021fb8e81830b39f82f9 100644 --- a/dev/tests/unit/testsuite/Mage/DesignEditor/Block/Adminhtml/Editor/ContainerTest.php +++ b/dev/tests/unit/testsuite/Mage/DesignEditor/Block/Adminhtml/Editor/ContainerTest.php @@ -21,7 +21,7 @@ * @category Mage * @package Mage_DesignEditor * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/DesignEditor/Block/Adminhtml/Editor/Toolbar/BlockAbstractTest.php b/dev/tests/unit/testsuite/Mage/DesignEditor/Block/Adminhtml/Editor/Toolbar/BlockAbstractTest.php index 167bb0a311e74888e7ac2a13111e40865701d05b..0ce24a61e9b597d5860363bbbf6686f77b57fba1 100644 --- a/dev/tests/unit/testsuite/Mage/DesignEditor/Block/Adminhtml/Editor/Toolbar/BlockAbstractTest.php +++ b/dev/tests/unit/testsuite/Mage/DesignEditor/Block/Adminhtml/Editor/Toolbar/BlockAbstractTest.php @@ -21,7 +21,7 @@ * @category Mage * @package Mage_DesignEditor * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/DesignEditor/Block/Adminhtml/Editor/Toolbar/ButtonsTest.php b/dev/tests/unit/testsuite/Mage/DesignEditor/Block/Adminhtml/Editor/Toolbar/ButtonsTest.php index c4086850632b3cb33653ddc338f7813630c0cc5f..e30a5fd613569720da91ee43615108d85af184d6 100644 --- a/dev/tests/unit/testsuite/Mage/DesignEditor/Block/Adminhtml/Editor/Toolbar/ButtonsTest.php +++ b/dev/tests/unit/testsuite/Mage/DesignEditor/Block/Adminhtml/Editor/Toolbar/ButtonsTest.php @@ -21,7 +21,7 @@ * @category Mage * @package Mage_DesignEditor * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/DesignEditor/Block/Adminhtml/Editor/Toolbar/HandlesHierarchyTest.php b/dev/tests/unit/testsuite/Mage/DesignEditor/Block/Adminhtml/Editor/Toolbar/HandlesHierarchyTest.php index 8a719e704f50cef65c6ae0800b1b5790933a4047..0fae332da04eb9797d2bc4b21c2ab6ea806b315e 100644 --- a/dev/tests/unit/testsuite/Mage/DesignEditor/Block/Adminhtml/Editor/Toolbar/HandlesHierarchyTest.php +++ b/dev/tests/unit/testsuite/Mage/DesignEditor/Block/Adminhtml/Editor/Toolbar/HandlesHierarchyTest.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_DesignEditor - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/DesignEditor/Block/Adminhtml/Theme/Selector/List/AbstractTest.php b/dev/tests/unit/testsuite/Mage/DesignEditor/Block/Adminhtml/Theme/Selector/List/AbstractTest.php index 8cc45832547e38fec9b0d82ab9c2a048462660a4..d3bf187213d8593d5afc6db9c04136f3cb3b2947 100644 --- a/dev/tests/unit/testsuite/Mage/DesignEditor/Block/Adminhtml/Theme/Selector/List/AbstractTest.php +++ b/dev/tests/unit/testsuite/Mage/DesignEditor/Block/Adminhtml/Theme/Selector/List/AbstractTest.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_DesignEditor - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/DesignEditor/Block/Adminhtml/ThemeTest.php b/dev/tests/unit/testsuite/Mage/DesignEditor/Block/Adminhtml/ThemeTest.php index b148cfc1967f69a5b5ffe501e9fefb19d39e4bd5..d1028e3067997f67cea17d99039b0036f40dfaf6 100644 --- a/dev/tests/unit/testsuite/Mage/DesignEditor/Block/Adminhtml/ThemeTest.php +++ b/dev/tests/unit/testsuite/Mage/DesignEditor/Block/Adminhtml/ThemeTest.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_DesignEditor - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/DesignEditor/Block/Page/Html/Head/VdeTest.php b/dev/tests/unit/testsuite/Mage/DesignEditor/Block/Page/Html/Head/VdeTest.php index 7e89a2e8f879eb5852c5cd80fdde7d12d96d08cb..736413f45f87f7d998d717cd2100a9c274cc26d7 100644 --- a/dev/tests/unit/testsuite/Mage/DesignEditor/Block/Page/Html/Head/VdeTest.php +++ b/dev/tests/unit/testsuite/Mage/DesignEditor/Block/Page/Html/Head/VdeTest.php @@ -21,7 +21,7 @@ * @category Mage * @package Mage_DesignEditor * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/DesignEditor/Block/Page/Html/HeadTest.php b/dev/tests/unit/testsuite/Mage/DesignEditor/Block/Page/Html/HeadTest.php index b6aba60d751d7b4a455feb2b0c6598b348d0f40f..bafe7bc78459ea75b51c531757df9567e545a334 100644 --- a/dev/tests/unit/testsuite/Mage/DesignEditor/Block/Page/Html/HeadTest.php +++ b/dev/tests/unit/testsuite/Mage/DesignEditor/Block/Page/Html/HeadTest.php @@ -21,7 +21,7 @@ * @category Mage * @package Mage_DesignEditor * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/DesignEditor/Controller/Varien/Router/StandardTest.php b/dev/tests/unit/testsuite/Mage/DesignEditor/Controller/Varien/Router/StandardTest.php index 26f4b6563ce6d625383f24065121f7cf7b779fb9..ae8d365c12acc2e76da1a70c85e593df163b7cbd 100644 --- a/dev/tests/unit/testsuite/Mage/DesignEditor/Controller/Varien/Router/StandardTest.php +++ b/dev/tests/unit/testsuite/Mage/DesignEditor/Controller/Varien/Router/StandardTest.php @@ -21,7 +21,7 @@ * @category Mage * @package Mage_DesignEditor * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/DesignEditor/Helper/DataTest.php b/dev/tests/unit/testsuite/Mage/DesignEditor/Helper/DataTest.php index 6561e89758f248e9aa1748d070a05858f90955e3..d7975c8c7e65f332c1f8b28c52c6cdf9048a0bee 100644 --- a/dev/tests/unit/testsuite/Mage/DesignEditor/Helper/DataTest.php +++ b/dev/tests/unit/testsuite/Mage/DesignEditor/Helper/DataTest.php @@ -21,7 +21,7 @@ * @category Mage * @package Mage_DesignEditor * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/DesignEditor/Model/Change/CollectionTest.php b/dev/tests/unit/testsuite/Mage/DesignEditor/Model/Change/CollectionTest.php index f042574caba339072cc5a8b192215c6c8cd9a88a..bb1b5cac5df22909e5f0a747173d969264d02b7c 100644 --- a/dev/tests/unit/testsuite/Mage/DesignEditor/Model/Change/CollectionTest.php +++ b/dev/tests/unit/testsuite/Mage/DesignEditor/Model/Change/CollectionTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_DesignEditor * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/DesignEditor/Model/History/Compact/LayoutTest.php b/dev/tests/unit/testsuite/Mage/DesignEditor/Model/History/Compact/LayoutTest.php index f8a84afe113ec8219baf1b3ff8a7c9767a97f2ee..12c04df4b15d4edad9db089ec072e1e5cd2f6797 100644 --- a/dev/tests/unit/testsuite/Mage/DesignEditor/Model/History/Compact/LayoutTest.php +++ b/dev/tests/unit/testsuite/Mage/DesignEditor/Model/History/Compact/LayoutTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_DesignEditor * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/DesignEditor/Model/History/Renderer/LayoutUpdateTest.php b/dev/tests/unit/testsuite/Mage/DesignEditor/Model/History/Renderer/LayoutUpdateTest.php index ec331be3c58f194ff35e5d1eb95b3fe747a420d8..fefc9b9c7e669cfe252b88394c32eb733783b151 100644 --- a/dev/tests/unit/testsuite/Mage/DesignEditor/Model/History/Renderer/LayoutUpdateTest.php +++ b/dev/tests/unit/testsuite/Mage/DesignEditor/Model/History/Renderer/LayoutUpdateTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_DesignEditor * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/DesignEditor/Model/LayoutTest.php b/dev/tests/unit/testsuite/Mage/DesignEditor/Model/LayoutTest.php index b256df9f040abfa7c0cb0f66c014a242933cff8d..3b3a2778f58bf006bcbde3e29a24043a66e63102 100644 --- a/dev/tests/unit/testsuite/Mage/DesignEditor/Model/LayoutTest.php +++ b/dev/tests/unit/testsuite/Mage/DesignEditor/Model/LayoutTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_DesignEditor * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/DesignEditor/Model/ObserverTest.php b/dev/tests/unit/testsuite/Mage/DesignEditor/Model/ObserverTest.php index 315e6a234e76ee892fb79cde1b10bfeb650b00be..6fc8397ba21331f02e2d4da4035f59b84f50fc8b 100644 --- a/dev/tests/unit/testsuite/Mage/DesignEditor/Model/ObserverTest.php +++ b/dev/tests/unit/testsuite/Mage/DesignEditor/Model/ObserverTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_DesignEditor * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/DesignEditor/Model/StateTest.php b/dev/tests/unit/testsuite/Mage/DesignEditor/Model/StateTest.php index dbb1172e2fbf61ebc007f70ea9ad440272a89358..0a1d8e64d94a882b5035f4c8999fb5308d967b72 100644 --- a/dev/tests/unit/testsuite/Mage/DesignEditor/Model/StateTest.php +++ b/dev/tests/unit/testsuite/Mage/DesignEditor/Model/StateTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_DesignEditor * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_DesignEditor_Model_StateTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Mage/DesignEditor/Model/Url/DesignModeTest.php b/dev/tests/unit/testsuite/Mage/DesignEditor/Model/Url/DesignModeTest.php index 10ddc48bc630e6e445caf7fec7dcd88133d20a6d..3f677e760bb097e79eac6943ae9c41a5a09c20ce 100644 --- a/dev/tests/unit/testsuite/Mage/DesignEditor/Model/Url/DesignModeTest.php +++ b/dev/tests/unit/testsuite/Mage/DesignEditor/Model/Url/DesignModeTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_DesignEditor_Model_Url_DesignModeTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Mage/DesignEditor/Model/Url/FactoryTest.php b/dev/tests/unit/testsuite/Mage/DesignEditor/Model/Url/FactoryTest.php index 3f7409bf9ebbf02eaa957b3336b5ba9237c7b1f4..c310d9973284c4f68f6cc5ec7b2921facd8af05c 100644 --- a/dev/tests/unit/testsuite/Mage/DesignEditor/Model/Url/FactoryTest.php +++ b/dev/tests/unit/testsuite/Mage/DesignEditor/Model/Url/FactoryTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_DesignEditor_Model_Url_FactoryTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Mage/DesignEditor/Model/Url/HandleTest.php b/dev/tests/unit/testsuite/Mage/DesignEditor/Model/Url/HandleTest.php index 83954bde2e0998274d465b0a79f43370502e16c8..7803c17b02d6a0f56d57ed175db04edb95577b32 100644 --- a/dev/tests/unit/testsuite/Mage/DesignEditor/Model/Url/HandleTest.php +++ b/dev/tests/unit/testsuite/Mage/DesignEditor/Model/Url/HandleTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_DesignEditor_Model_Url_HandleTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Mage/DesignEditor/Model/Url/NavigationModeTest.php b/dev/tests/unit/testsuite/Mage/DesignEditor/Model/Url/NavigationModeTest.php index 7dfd16c7acb7107957be6cc4e97b020d7d1d8f41..be94a4d47387b1db11e764642ebb9240b9ad1b60 100644 --- a/dev/tests/unit/testsuite/Mage/DesignEditor/Model/Url/NavigationModeTest.php +++ b/dev/tests/unit/testsuite/Mage/DesignEditor/Model/Url/NavigationModeTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_DesignEditor * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/DesignEditor/Model/_files/history/layout_renderer.xml b/dev/tests/unit/testsuite/Mage/DesignEditor/Model/_files/history/layout_renderer.xml index cb2830707a6c274279e9f8508f152909a9ebce20..c7ab42e14a01aca75bbb23ea90a6129c0d29bc57 100644 --- a/dev/tests/unit/testsuite/Mage/DesignEditor/Model/_files/history/layout_renderer.xml +++ b/dev/tests/unit/testsuite/Mage/DesignEditor/Model/_files/history/layout_renderer.xml @@ -22,7 +22,7 @@ * @category Magento * @package Mage_DesignEditor * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/Mage/DesignEditor/Model/_files/sanitize.xml b/dev/tests/unit/testsuite/Mage/DesignEditor/Model/_files/sanitize.xml index 5b1b41f69b08fc3d700ae0df0a0e4ba296b61886..170e3b4352e3aeea0cf641d6bdde718e5e607593 100644 --- a/dev/tests/unit/testsuite/Mage/DesignEditor/Model/_files/sanitize.xml +++ b/dev/tests/unit/testsuite/Mage/DesignEditor/Model/_files/sanitize.xml @@ -22,7 +22,7 @@ * @category Magento * @package Mage_DesignEditor * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/Mage/DesignEditor/controllers/Adminhtml/EditorControllerTest.php b/dev/tests/unit/testsuite/Mage/DesignEditor/controllers/Adminhtml/EditorControllerTest.php index bdd71553e603677b5f3ca01a8e6e91fc13c335df..fe08d8105e52aed552f8782fa7ab671149ed72ec 100644 --- a/dev/tests/unit/testsuite/Mage/DesignEditor/controllers/Adminhtml/EditorControllerTest.php +++ b/dev/tests/unit/testsuite/Mage/DesignEditor/controllers/Adminhtml/EditorControllerTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_DesignEditor * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Directory/Model/Currency/DefaultLocatorTest.php b/dev/tests/unit/testsuite/Mage/Directory/Model/Currency/DefaultLocatorTest.php index 6553a6e64f79241f4918b5839d1a9e10e3c95f59..ec37d5da0f916141664021e750887c75c7cee37b 100644 --- a/dev/tests/unit/testsuite/Mage/Directory/Model/Currency/DefaultLocatorTest.php +++ b/dev/tests/unit/testsuite/Mage/Directory/Model/Currency/DefaultLocatorTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Directory * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Downloadable/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/LinksTest.php b/dev/tests/unit/testsuite/Mage/Downloadable/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/LinksTest.php index abbdc2fa38dcb04cc4dca942663e4c97c90c7b9c..ddf86dbc564fb5deecf1621d2627a217fa3d2737 100644 --- a/dev/tests/unit/testsuite/Mage/Downloadable/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/LinksTest.php +++ b/dev/tests/unit/testsuite/Mage/Downloadable/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/LinksTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Downloadable * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Downloadable/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/SamplesTest.php b/dev/tests/unit/testsuite/Mage/Downloadable/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/SamplesTest.php index 805015f5a1cc26f0e88b4b76206b601812e7c795..c7f22c67bd3f31d4e8ba3361e55ce65670a312b0 100644 --- a/dev/tests/unit/testsuite/Mage/Downloadable/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/SamplesTest.php +++ b/dev/tests/unit/testsuite/Mage/Downloadable/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/SamplesTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Downloadable * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Downloadable/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/TestCaseAbstract.php b/dev/tests/unit/testsuite/Mage/Downloadable/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/TestCaseAbstract.php index 4a211755598795ec5ae2dfdb1736fb88b031b2ab..d070c80af6b81aa76923165fb51da4b548f4187d 100644 --- a/dev/tests/unit/testsuite/Mage/Downloadable/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/TestCaseAbstract.php +++ b/dev/tests/unit/testsuite/Mage/Downloadable/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/TestCaseAbstract.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Downloadable * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Downloadable/Model/ObserverTest.php b/dev/tests/unit/testsuite/Mage/Downloadable/Model/ObserverTest.php index 9d91e4e3228a4a15638f8146792487f2a89649aa..2016050d0707848c6ae926431a20c5f0c1082b4e 100644 --- a/dev/tests/unit/testsuite/Mage/Downloadable/Model/ObserverTest.php +++ b/dev/tests/unit/testsuite/Mage/Downloadable/Model/ObserverTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Downloadable * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Downloadable/Model/Product/TypeTest.php b/dev/tests/unit/testsuite/Mage/Downloadable/Model/Product/TypeTest.php index 875aed90c4584b60a80c17e72964ba0c9ef3b484..ae2ffd186407efcbd40a1dea951e471ddaea6600 100644 --- a/dev/tests/unit/testsuite/Mage/Downloadable/Model/Product/TypeTest.php +++ b/dev/tests/unit/testsuite/Mage/Downloadable/Model/Product/TypeTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Downloadable * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Downloadable/Model/Sales/Order/Pdf/Items/CreditmemoTest.php b/dev/tests/unit/testsuite/Mage/Downloadable/Model/Sales/Order/Pdf/Items/CreditmemoTest.php index 65260f164c985ea10e41e65245b82256137ba57e..ff6e1e941bc521608c894761e4f4fd13420cf77d 100644 --- a/dev/tests/unit/testsuite/Mage/Downloadable/Model/Sales/Order/Pdf/Items/CreditmemoTest.php +++ b/dev/tests/unit/testsuite/Mage/Downloadable/Model/Sales/Order/Pdf/Items/CreditmemoTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Downloadable * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Eav/Model/Attribute/Data/TextTest.php b/dev/tests/unit/testsuite/Mage/Eav/Model/Attribute/Data/TextTest.php index 9174eb53d6af4d594a5d88b05ab35a968c500e27..4e259059676bc5c3d6468b530a38d8fc73b1a9b5 100644 --- a/dev/tests/unit/testsuite/Mage/Eav/Model/Attribute/Data/TextTest.php +++ b/dev/tests/unit/testsuite/Mage/Eav/Model/Attribute/Data/TextTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Eav * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Eav/Model/AttributeFactoryTest.php b/dev/tests/unit/testsuite/Mage/Eav/Model/AttributeFactoryTest.php index ea68fc2bba491ee853421ba7e17c93f663a3571c..ff2e9162fe3e18d9b1719b96a722cf40d0cee466 100644 --- a/dev/tests/unit/testsuite/Mage/Eav/Model/AttributeFactoryTest.php +++ b/dev/tests/unit/testsuite/Mage/Eav/Model/AttributeFactoryTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Eav * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Eav/Model/Entity/AbstractTest.php b/dev/tests/unit/testsuite/Mage/Eav/Model/Entity/AbstractTest.php index 9a2ca14d839837e74758a5cbd799eeb391d0298a..42fb589e7ab53e9cba29401c4d2ed8f6a19b5caa 100644 --- a/dev/tests/unit/testsuite/Mage/Eav/Model/Entity/AbstractTest.php +++ b/dev/tests/unit/testsuite/Mage/Eav/Model/Entity/AbstractTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Eav * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Eav/Model/Entity/Attribute/Backend/AbstractTest.php b/dev/tests/unit/testsuite/Mage/Eav/Model/Entity/Attribute/Backend/AbstractTest.php index 5d62df0b0a41a8275fbbffd8ce9c756e11e8137e..fe1be6e2023578b8245e37bb83fd8ad36df73b02 100644 --- a/dev/tests/unit/testsuite/Mage/Eav/Model/Entity/Attribute/Backend/AbstractTest.php +++ b/dev/tests/unit/testsuite/Mage/Eav/Model/Entity/Attribute/Backend/AbstractTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Eav * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Eav/Model/Entity/Attribute/Backend/ArrayTest.php b/dev/tests/unit/testsuite/Mage/Eav/Model/Entity/Attribute/Backend/ArrayTest.php index b3967b4286d64ce9931e3bd659fecc128f9d1b5f..fa7b1d9cc6a117c2bae8646f44c63d7f025f0a8c 100644 --- a/dev/tests/unit/testsuite/Mage/Eav/Model/Entity/Attribute/Backend/ArrayTest.php +++ b/dev/tests/unit/testsuite/Mage/Eav/Model/Entity/Attribute/Backend/ArrayTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Eav * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Eav/Model/Entity/Attribute/SetTest.php b/dev/tests/unit/testsuite/Mage/Eav/Model/Entity/Attribute/SetTest.php index 104bc6c675cabc29becaab2516ce186ce1db78fe..e599f5a2efeacc4b48d17027694c13f25d4cbbaf 100644 --- a/dev/tests/unit/testsuite/Mage/Eav/Model/Entity/Attribute/SetTest.php +++ b/dev/tests/unit/testsuite/Mage/Eav/Model/Entity/Attribute/SetTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Eav * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Eav/Model/Entity/AttributeTest.php b/dev/tests/unit/testsuite/Mage/Eav/Model/Entity/AttributeTest.php index be31aefedddc7393027e5429957c71466e0ec322..f0b3b41ab8dd81bc6c0a63a6285f00eff46288ae 100644 --- a/dev/tests/unit/testsuite/Mage/Eav/Model/Entity/AttributeTest.php +++ b/dev/tests/unit/testsuite/Mage/Eav/Model/Entity/AttributeTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Eav * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Eav/Model/FormTest.php b/dev/tests/unit/testsuite/Mage/Eav/Model/FormTest.php index e1a9f38908ac944c7edb1dbd1c8155de760a577c..872da5823d587928a627fe956087fe03d447bc6f 100644 --- a/dev/tests/unit/testsuite/Mage/Eav/Model/FormTest.php +++ b/dev/tests/unit/testsuite/Mage/Eav/Model/FormTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Eav * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Eav/Model/Resource/Entity/AttributeTest.php b/dev/tests/unit/testsuite/Mage/Eav/Model/Resource/Entity/AttributeTest.php index 57e5ab4adfcf1ba42df60c2ca2a497bad652d6a6..1aca3fb9d2112daebcafae467da1fbff417a62a3 100644 --- a/dev/tests/unit/testsuite/Mage/Eav/Model/Resource/Entity/AttributeTest.php +++ b/dev/tests/unit/testsuite/Mage/Eav/Model/Resource/Entity/AttributeTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Eav * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Eav/Model/Validator/Attribute/DataTest.php b/dev/tests/unit/testsuite/Mage/Eav/Model/Validator/Attribute/DataTest.php index 03f1e80f6276b6756e04b978dd78d6c38cf9d39c..ba39f5eb9e391267779adb44ced0c93be3a76125 100644 --- a/dev/tests/unit/testsuite/Mage/Eav/Model/Validator/Attribute/DataTest.php +++ b/dev/tests/unit/testsuite/Mage/Eav/Model/Validator/Attribute/DataTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Eav * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Eav/_files/describe_table_eav_attribute.php b/dev/tests/unit/testsuite/Mage/Eav/_files/describe_table_eav_attribute.php index 73073cb2ad6f5611614f9d37773eca8cf31ec332..5ec640d599408638fa6dd94c640f938bd3d5d28f 100644 --- a/dev/tests/unit/testsuite/Mage/Eav/_files/describe_table_eav_attribute.php +++ b/dev/tests/unit/testsuite/Mage/Eav/_files/describe_table_eav_attribute.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Eav * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/ImportExport/Block/Adminhtml/Import/Edit/BeforeTest.php b/dev/tests/unit/testsuite/Mage/ImportExport/Block/Adminhtml/Import/Edit/BeforeTest.php index f1fadace4f55288f14c9ccdfb32b58d7880235e9..c4bbdd32a31d34919a10168781bb23a8cf88ca4e 100644 --- a/dev/tests/unit/testsuite/Mage/ImportExport/Block/Adminhtml/Import/Edit/BeforeTest.php +++ b/dev/tests/unit/testsuite/Mage/ImportExport/Block/Adminhtml/Import/Edit/BeforeTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_ImportExport * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Export/Entity/Eav/Customer/AddressTest.php b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Export/Entity/Eav/Customer/AddressTest.php index e30c411c77a487030c7a15b5f28c5744af2a3eb4..2aea52ca14baa2648c6e749ba85d13721e8fde8c 100644 --- a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Export/Entity/Eav/Customer/AddressTest.php +++ b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Export/Entity/Eav/Customer/AddressTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_ImportExport * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Export/Entity/Eav/CustomerTest.php b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Export/Entity/Eav/CustomerTest.php index 2c7fd9eff843a42d180b8003af97449a1f0bb04f..576b4c90d0e6b8f8e8cfbd4fd6fe7745f9f335b7 100644 --- a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Export/Entity/Eav/CustomerTest.php +++ b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Export/Entity/Eav/CustomerTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_ImportExport * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Export/Entity/EavAbstractTest.php b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Export/Entity/EavAbstractTest.php index 85354b0e3b4f1069c6ca29bf781f9f8550c63627..35767a8d1f8518cbdf598723ef07c25bf460879a 100644 --- a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Export/Entity/EavAbstractTest.php +++ b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Export/Entity/EavAbstractTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_ImportExport * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Export/Entity/ProductTest.php b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Export/Entity/ProductTest.php index d7060436b688bb11b66a34fc11b41167967304e8..62ee03280fbdd0f4ed6341b561d62970f6d434c4 100644 --- a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Export/Entity/ProductTest.php +++ b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Export/Entity/ProductTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_ImportExport * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Export/EntityAbstractTest.php b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Export/EntityAbstractTest.php index 9b5064132d07e618251e82791f3d34e84fe2f875..4ef2ff34070fac79a7ea05572f92b80da1759ef6 100644 --- a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Export/EntityAbstractTest.php +++ b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Export/EntityAbstractTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_ImportExport * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/ImportExport/Model/ExportTest.php b/dev/tests/unit/testsuite/Mage/ImportExport/Model/ExportTest.php index dc2d22424f624471a7449e6e5d1e7f031e114776..2a3c89669f53fec13fe71872cae44f824a30c7e3 100644 --- a/dev/tests/unit/testsuite/Mage/ImportExport/Model/ExportTest.php +++ b/dev/tests/unit/testsuite/Mage/ImportExport/Model/ExportTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_ImportExport * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/AbstractTest.php b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/AbstractTest.php index 4f04091b01172115946294c8bf06a8effdef5cfb..0efa6e36d9a58982431ab4d630de1cf39a25ea5c 100644 --- a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/AbstractTest.php +++ b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/AbstractTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_ImportExport * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/CustomerCompositeTest.php b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/CustomerCompositeTest.php index 74ff73031fe5f87c573e0262ae2839869dd2ff80..e976db932ba13dfc37f45ce0ee19ffd1bef1dd10 100644 --- a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/CustomerCompositeTest.php +++ b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/CustomerCompositeTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_ImportExport * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/Customer/AddressTest.php b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/Customer/AddressTest.php index c9eb2f9a14ab4c5a21c71699e777be773d2a836f..e62d4567b6d1f51a4838a8b11bd5b93681a909f9 100644 --- a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/Customer/AddressTest.php +++ b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/Customer/AddressTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_ImportExport * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/Customer/_files/row_data_abstract_empty_email.php b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/Customer/_files/row_data_abstract_empty_email.php index 2ba8bfb1eecc71141439b6a5c6cc2db02b39a805..14beec414520f796db7cd0e46de3902657960d68 100644 --- a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/Customer/_files/row_data_abstract_empty_email.php +++ b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/Customer/_files/row_data_abstract_empty_email.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_ImportExport * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/Customer/_files/row_data_abstract_empty_website.php b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/Customer/_files/row_data_abstract_empty_website.php index dce668ecde38a81adf2270fef6cacbe0814a8c31..a5ea948ba0dd06a6069b8c3a7199bc2aee28fd8d 100644 --- a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/Customer/_files/row_data_abstract_empty_website.php +++ b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/Customer/_files/row_data_abstract_empty_website.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_ImportExport * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/Customer/_files/row_data_abstract_invalid_email.php b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/Customer/_files/row_data_abstract_invalid_email.php index e27fcffb53f98e9a933d8f0c25cc2ef655f6986a..6fc01689c68388ef070cc93b7333bab29a92e4db 100644 --- a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/Customer/_files/row_data_abstract_invalid_email.php +++ b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/Customer/_files/row_data_abstract_invalid_email.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_ImportExport * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/Customer/_files/row_data_abstract_invalid_website.php b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/Customer/_files/row_data_abstract_invalid_website.php index 6792d9ee91453738c14bb9d4d321ec881c38ea5f..04f1d317fae5fc1f56d33a5100577d73f05f2459 100644 --- a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/Customer/_files/row_data_abstract_invalid_website.php +++ b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/Customer/_files/row_data_abstract_invalid_website.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_ImportExport * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/Customer/_files/row_data_abstract_no_email.php b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/Customer/_files/row_data_abstract_no_email.php index d976eccd70e0755bd2266f94ba2fb6a259c5fd0f..c55a895c8015bb51425d7b152679895ed47fd6a2 100644 --- a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/Customer/_files/row_data_abstract_no_email.php +++ b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/Customer/_files/row_data_abstract_no_email.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_ImportExport * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/Customer/_files/row_data_abstract_no_website.php b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/Customer/_files/row_data_abstract_no_website.php index 0acc33dbb7fc1e110fe2502fd9723ed0cd1ace63..4729ec794504ff88b78dc26ab29e5bee65e587c0 100644 --- a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/Customer/_files/row_data_abstract_no_website.php +++ b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/Customer/_files/row_data_abstract_no_website.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_ImportExport * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/Customer/_files/row_data_abstract_valid.php b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/Customer/_files/row_data_abstract_valid.php index 40d4cb89c4cb5cc3fbb582d18f9c64a17ad7e01d..b030aca273194aec2122bd58ebf1d282b46dec44 100644 --- a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/Customer/_files/row_data_abstract_valid.php +++ b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/Customer/_files/row_data_abstract_valid.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_ImportExport * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/Customer/_files/row_data_address_delete_address_not_found.php b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/Customer/_files/row_data_address_delete_address_not_found.php index e59077b70e8c03753541056904db790d0c85fa0a..8cef3b8b0222263abe5e5b2bd80f4bdd9fc01873 100644 --- a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/Customer/_files/row_data_address_delete_address_not_found.php +++ b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/Customer/_files/row_data_address_delete_address_not_found.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_ImportExport * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/Customer/_files/row_data_address_delete_empty_address_id.php b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/Customer/_files/row_data_address_delete_empty_address_id.php index b6e4fb1a3a7132fd64ca9d39b194cd2a08885945..6cb0eb4306d3254f55bfcd5627a1d867e1c3c4a3 100644 --- a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/Customer/_files/row_data_address_delete_empty_address_id.php +++ b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/Customer/_files/row_data_address_delete_empty_address_id.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_ImportExport * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/Customer/_files/row_data_address_delete_no_customer.php b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/Customer/_files/row_data_address_delete_no_customer.php index 339abf26d18fa6831a2382bf56b67b1af3668f15..6b1ee2655146c588e846300c95f7e479840382b9 100644 --- a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/Customer/_files/row_data_address_delete_no_customer.php +++ b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/Customer/_files/row_data_address_delete_no_customer.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_ImportExport * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/Customer/_files/row_data_address_delete_valid.php b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/Customer/_files/row_data_address_delete_valid.php index b64ae19f830c35538b6b1872610ce5e6b973bda4..92f0994d410a01f9300eedb61894ca62d0d123d2 100644 --- a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/Customer/_files/row_data_address_delete_valid.php +++ b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/Customer/_files/row_data_address_delete_valid.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_ImportExport * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/Customer/_files/row_data_address_update_absent_required_attribute.php b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/Customer/_files/row_data_address_update_absent_required_attribute.php index 70692339bb9191af064c56b077a6ea85e691eeea..11d68fc0cab58a106754411b3688956e9903e8e9 100644 --- a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/Customer/_files/row_data_address_update_absent_required_attribute.php +++ b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/Customer/_files/row_data_address_update_absent_required_attribute.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_ImportExport * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/Customer/_files/row_data_address_update_empty_address_id.php b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/Customer/_files/row_data_address_update_empty_address_id.php index d64dc0d14de613ae78de1fc067c2b8d799b9fb5e..810e5c1c85f7aef711f8ed66adb32e4351bc9182 100644 --- a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/Customer/_files/row_data_address_update_empty_address_id.php +++ b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/Customer/_files/row_data_address_update_empty_address_id.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_ImportExport * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/Customer/_files/row_data_address_update_invalid_region.php b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/Customer/_files/row_data_address_update_invalid_region.php index 092167072d223ee7a1944d565763248b0b412f3c..605c9fde3bcadaf33e3ea29519daa09bd8d865c2 100644 --- a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/Customer/_files/row_data_address_update_invalid_region.php +++ b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/Customer/_files/row_data_address_update_invalid_region.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_ImportExport * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/Customer/_files/row_data_address_update_no_customer.php b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/Customer/_files/row_data_address_update_no_customer.php index a34bff175f053e7279fc1c4218da6b6069340000..eade6ea1ff6f5516d4ae00fa5abe2436804820bd 100644 --- a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/Customer/_files/row_data_address_update_no_customer.php +++ b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/Customer/_files/row_data_address_update_no_customer.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_ImportExport * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/Customer/_files/row_data_address_update_valid.php b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/Customer/_files/row_data_address_update_valid.php index 399af130c0a33131ec34cf7c4b8feeb81a9569a2..e4ffd9931925b94893cd6de56da804c4ab9c43a4 100644 --- a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/Customer/_files/row_data_address_update_valid.php +++ b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/Customer/_files/row_data_address_update_valid.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_ImportExport * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/CustomerAbstractTest.php b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/CustomerAbstractTest.php index 76af8e68b44b6c19f15204b3dd38301db0bbd519..862f7e48d11b8046cdaab74f99fb5b538def0d07 100644 --- a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/CustomerAbstractTest.php +++ b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/CustomerAbstractTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_ImportExport * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/CustomerTest.php b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/CustomerTest.php index 604949093a642ebde1268acc73c323a1d038d4cb..68a0a1f2905f46b0a79cb43fa4c71ba4a2628a3c 100644 --- a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/CustomerTest.php +++ b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Eav/CustomerTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_ImportExport * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/EavAbstractTest.php b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/EavAbstractTest.php index 52e6cc66cb07ba44ebaab9337d44e0ba54a27742..ce69895e99d71ead12e63605378517a8e0cc6e8a 100644 --- a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/EavAbstractTest.php +++ b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/EavAbstractTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_ImportExport * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Product/OptionTest.php b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Product/OptionTest.php index a689b6b12ce1c26bccd24410420a396d8f37b049..54e42683ae4b09e5dccdef4d2369695f018ba3fd 100644 --- a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Product/OptionTest.php +++ b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Product/OptionTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_ImportExport * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Product/_files/row_data_ambiguity_different_type.php b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Product/_files/row_data_ambiguity_different_type.php index 350274574ebe531b7b4ed90f12d7cd071fce0a4c..0ee7118b230ef9e56ce1a6dbe7a6d56040e11cea 100644 --- a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Product/_files/row_data_ambiguity_different_type.php +++ b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Product/_files/row_data_ambiguity_different_type.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_ImportExport * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Product/_files/row_data_ambiguity_several_db_rows.php b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Product/_files/row_data_ambiguity_several_db_rows.php index d2dad7aae3d64b7e621888c03c6df8b04b10e581..bde5e734f2468179592e87e14661d00f4c06e545 100644 --- a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Product/_files/row_data_ambiguity_several_db_rows.php +++ b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Product/_files/row_data_ambiguity_several_db_rows.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_ImportExport * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Product/_files/row_data_main_empty_title.php b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Product/_files/row_data_main_empty_title.php index fec4f1cec8e551ce52efee7ca21fbeba06ea5ec4..815053535ededd3d7026ccd06ee7330503ebaece 100644 --- a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Product/_files/row_data_main_empty_title.php +++ b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Product/_files/row_data_main_empty_title.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_ImportExport * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Product/_files/row_data_main_incorrect_type.php b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Product/_files/row_data_main_incorrect_type.php index b2bfb5c3159da06afd1b6da0fb1de66f22eb263b..e112cdc88d44414755b52e46f739446efdf024cf 100644 --- a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Product/_files/row_data_main_incorrect_type.php +++ b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Product/_files/row_data_main_incorrect_type.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_ImportExport * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Product/_files/row_data_main_invalid_max_characters.php b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Product/_files/row_data_main_invalid_max_characters.php index d4b8fb0ce9b5d4ce1943640d3304049af844c702..f970025b5375335889f8d9bac336ca9133534a75 100644 --- a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Product/_files/row_data_main_invalid_max_characters.php +++ b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Product/_files/row_data_main_invalid_max_characters.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_ImportExport * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Product/_files/row_data_main_invalid_price.php b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Product/_files/row_data_main_invalid_price.php index 625d7a88b8e81ab2f593655582bad69c2f6a4b0d..a5ab7acd18f39f5a86007cdf2df393ad6e2740da 100644 --- a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Product/_files/row_data_main_invalid_price.php +++ b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Product/_files/row_data_main_invalid_price.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_ImportExport * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Product/_files/row_data_main_invalid_sort_order.php b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Product/_files/row_data_main_invalid_sort_order.php index f4b665708d220b12159c76913eeb84ed3c6999cd..ad3c2b395a25bb2a80467c0b801a28cbfe080b1a 100644 --- a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Product/_files/row_data_main_invalid_sort_order.php +++ b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Product/_files/row_data_main_invalid_sort_order.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_ImportExport * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Product/_files/row_data_main_invalid_store.php b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Product/_files/row_data_main_invalid_store.php index 8eeb1e5cd470bff2e869ff393b6fbf50bae16514..f7a2897c07c674742fe2369cb4dcb196f1dfeb7c 100644 --- a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Product/_files/row_data_main_invalid_store.php +++ b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Product/_files/row_data_main_invalid_store.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_ImportExport * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Product/_files/row_data_main_max_characters_less_zero.php b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Product/_files/row_data_main_max_characters_less_zero.php index 6ad5368832b679d15b7e6b017cfa6701649d56d8..3ffa21c4377fadf69c8f587e737a8b949d679ab5 100644 --- a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Product/_files/row_data_main_max_characters_less_zero.php +++ b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Product/_files/row_data_main_max_characters_less_zero.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_ImportExport * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Product/_files/row_data_main_no_title.php b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Product/_files/row_data_main_no_title.php index 6bc5c7a1d7634bcf90965b5a2ba6f2a52774d63d..435664b5e6fc91f5a2337dfc6bef6423d959ee1b 100644 --- a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Product/_files/row_data_main_no_title.php +++ b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Product/_files/row_data_main_no_title.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_ImportExport * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Product/_files/row_data_main_sort_order_less_zero.php b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Product/_files/row_data_main_sort_order_less_zero.php index 4e1ac813390f8c225b043696c017ed7c4976871f..f2da52bb2b7ba6bc8b4ae8df50910698bcbcf429 100644 --- a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Product/_files/row_data_main_sort_order_less_zero.php +++ b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Product/_files/row_data_main_sort_order_less_zero.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_ImportExport * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Product/_files/row_data_main_valid.php b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Product/_files/row_data_main_valid.php index 73a6f4229953776c458358fb396c71028c0205f5..ed59d9df4e4fb43f1fc823218cbef294d9be7cbb 100644 --- a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Product/_files/row_data_main_valid.php +++ b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Product/_files/row_data_main_valid.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_ImportExport * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Product/_files/row_data_no_custom_option.php b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Product/_files/row_data_no_custom_option.php index bd96364a504f53d24efad9d9cd14555f79c56c05..24f0faf55e2367bf1a768a8704c234570070b907 100644 --- a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Product/_files/row_data_no_custom_option.php +++ b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Product/_files/row_data_no_custom_option.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_ImportExport * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Product/_files/row_data_secondary_incorrect_price.php b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Product/_files/row_data_secondary_incorrect_price.php index 18055153207672bb7d566df3a45a6a9ae8f7aac7..1697f559a50c4b0e5e5791b4c93e31210a575e2c 100644 --- a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Product/_files/row_data_secondary_incorrect_price.php +++ b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Product/_files/row_data_secondary_incorrect_price.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_ImportExport * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Product/_files/row_data_secondary_incorrect_row_sort.php b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Product/_files/row_data_secondary_incorrect_row_sort.php index 0399369ae6a6b0bf77a8dc261dd5780a479707a5..9a788d5226879d2f40466c1e81a2eeea6933f556 100644 --- a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Product/_files/row_data_secondary_incorrect_row_sort.php +++ b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Product/_files/row_data_secondary_incorrect_row_sort.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_ImportExport * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Product/_files/row_data_secondary_invalid_store.php b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Product/_files/row_data_secondary_invalid_store.php index 1328a0e347f7fac490b03961060cccf1ad4b406b..a8c91b7c12f51e38394a7022ac6fb3bc1466bd77 100644 --- a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Product/_files/row_data_secondary_invalid_store.php +++ b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Product/_files/row_data_secondary_invalid_store.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_ImportExport * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Product/_files/row_data_secondary_row_sort_less_zero.php b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Product/_files/row_data_secondary_row_sort_less_zero.php index d82d37721913145a25fe93d5078b10bf4e950e72..91e65378eb58149fc9c7d106c8acadb69a01d120 100644 --- a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Product/_files/row_data_secondary_row_sort_less_zero.php +++ b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Product/_files/row_data_secondary_row_sort_less_zero.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_ImportExport * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Product/_files/row_data_secondary_valid.php b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Product/_files/row_data_secondary_valid.php index f20b41d194ce40df7bf08667094fa8053cc4ce5a..f3031d0b801e5dd2a825f62179fb387984744130 100644 --- a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Product/_files/row_data_secondary_valid.php +++ b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Entity/Product/_files/row_data_secondary_valid.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_ImportExport * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/EntityAbstractTest.php b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/EntityAbstractTest.php index 75383b8309681206287e2d212f4409e210647c12..5622b45876dfccc42bbb1bc8ba6096e02c3304fe 100644 --- a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/EntityAbstractTest.php +++ b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/EntityAbstractTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_ImportExport * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Source/CsvTest.php b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Source/CsvTest.php index 819d37d65e2aef1ee54965793a06aab4ccdc5f49..47d96e9d7b7bc701024922b08c4cdf7508d4b7af 100644 --- a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Source/CsvTest.php +++ b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/Source/CsvTest.php @@ -18,7 +18,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/SourceAbstractTest.php b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/SourceAbstractTest.php index 8d11879c30f62c1a554ea242036fa97e6b8c9e4c..e2d65fb9f973a3b45ebe9d0c6c26895110ecbaaa 100644 --- a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/SourceAbstractTest.php +++ b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Import/SourceAbstractTest.php @@ -18,7 +18,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_ImportExport_Model_Import_SourceAbstractTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Resource/CollectionByPagesIteratorTest.php b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Resource/CollectionByPagesIteratorTest.php index cc873987199ad93f448db8818e94676e12efdab2..97faaf093109008e7683e0be2e17267b787eda4d 100644 --- a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Resource/CollectionByPagesIteratorTest.php +++ b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Resource/CollectionByPagesIteratorTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_ImportExport * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Resource/Customer/StorageTest.php b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Resource/Customer/StorageTest.php index d407707b6d2471bdc0aecc3079a50c4090a3b492..34483446dd6d881b6cdd81590c00d59127744613 100644 --- a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Resource/Customer/StorageTest.php +++ b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Resource/Customer/StorageTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_ImportExport * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Resource/Import/CustomerComposite/DataTest.php b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Resource/Import/CustomerComposite/DataTest.php index 2d8287bcee22ba7ecd20fa4a500a1fd2dc22b9a6..ec5340dba8fc28f67bf78b1afb1a4f0f4b6e8231 100644 --- a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Resource/Import/CustomerComposite/DataTest.php +++ b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Resource/Import/CustomerComposite/DataTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_ImportExport * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Source/Import/Behavior/BasicTest.php b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Source/Import/Behavior/BasicTest.php index 524a7f10d06841b63a6bfa78c923cd25f0655a18..9e787e88f9faa18f5794e365b39a8aa173c248c8 100644 --- a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Source/Import/Behavior/BasicTest.php +++ b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Source/Import/Behavior/BasicTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_ImportExport * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Source/Import/Behavior/CustomTest.php b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Source/Import/Behavior/CustomTest.php index 5da3e462b93f7707d867998688047e27dbda65d9..124fb049aa7dceb890a05d402755366b8398d33d 100644 --- a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Source/Import/Behavior/CustomTest.php +++ b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Source/Import/Behavior/CustomTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_ImportExport * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Source/Import/BehaviorAbstractTest.php b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Source/Import/BehaviorAbstractTest.php index dbbab5eec34390654bf380bfb73e7f89a3439890..57a6f19f26303f6c922a2c6a076fdb8cedbccf88 100644 --- a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Source/Import/BehaviorAbstractTest.php +++ b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Source/Import/BehaviorAbstractTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_ImportExport * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Source/Import/BehaviorTestCaseAbstract.php b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Source/Import/BehaviorTestCaseAbstract.php index 7bd74af50cc2d89bae294e82fdfda4f9d90062a9..68cecf7269c144f9065275c589d47d8cc59245c3 100644 --- a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Source/Import/BehaviorTestCaseAbstract.php +++ b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Source/Import/BehaviorTestCaseAbstract.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_ImportExport * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Source/Import/EntityTest.php b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Source/Import/EntityTest.php index e13f689b7c996112004df8b0ce3537f189b79ae3..018a68875f9489a71ec8cf30794beda2efc57c2c 100644 --- a/dev/tests/unit/testsuite/Mage/ImportExport/Model/Source/Import/EntityTest.php +++ b/dev/tests/unit/testsuite/Mage/ImportExport/Model/Source/Import/EntityTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_ImportExport * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Index/Model/Lock/StorageTest.php b/dev/tests/unit/testsuite/Mage/Index/Model/Lock/StorageTest.php index 137ac3b1074edfe141ae95b5d87f47b44d6d69c7..203f27499d41a43062cf4af5c68eada8c29497e7 100644 --- a/dev/tests/unit/testsuite/Mage/Index/Model/Lock/StorageTest.php +++ b/dev/tests/unit/testsuite/Mage/Index/Model/Lock/StorageTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Index * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Index/Model/Process/FileFactoryTest.php b/dev/tests/unit/testsuite/Mage/Index/Model/Process/FileFactoryTest.php index d740b59afea79148022db2935a5e99f4e4e116d7..c48cdc9c78fdbda109f290c079a998af7de0bf90 100644 --- a/dev/tests/unit/testsuite/Mage/Index/Model/Process/FileFactoryTest.php +++ b/dev/tests/unit/testsuite/Mage/Index/Model/Process/FileFactoryTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Index * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Index/Model/ProcessTest.php b/dev/tests/unit/testsuite/Mage/Index/Model/ProcessTest.php index 2ebd8500273ad975f678cab4881b49e206b77c95..f0c9ca5333de2cf8351c9be32634c753a6e0fdfe 100644 --- a/dev/tests/unit/testsuite/Mage/Index/Model/ProcessTest.php +++ b/dev/tests/unit/testsuite/Mage/Index/Model/ProcessTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Index * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Install/Model/Installer/ConsoleTest.php b/dev/tests/unit/testsuite/Mage/Install/Model/Installer/ConsoleTest.php index 8595bab76cd8083c44b86dbf1e56af7d87b38a15..444fb4d0ee553cbde5f9b3fe5300d5b42172fb04 100644 --- a/dev/tests/unit/testsuite/Mage/Install/Model/Installer/ConsoleTest.php +++ b/dev/tests/unit/testsuite/Mage/Install/Model/Installer/ConsoleTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Install * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/MageTest.php b/dev/tests/unit/testsuite/Mage/MageTest.php index 8d2a473746bc16cd50b27a8735dbb859c899f98a..bfce4314f8715beb4a755b20097a5d866bb1d0bf 100644 --- a/dev/tests/unit/testsuite/Mage/MageTest.php +++ b/dev/tests/unit/testsuite/Mage/MageTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Page/Block/Html/HeaderTest.php b/dev/tests/unit/testsuite/Mage/Page/Block/Html/HeaderTest.php index 88b21455f350f1e8716758181dfed778c8da825d..b47d9b9e477b8097f49dd2c0135a9122fde80528 100644 --- a/dev/tests/unit/testsuite/Mage/Page/Block/Html/HeaderTest.php +++ b/dev/tests/unit/testsuite/Mage/Page/Block/Html/HeaderTest.php @@ -21,7 +21,7 @@ * @category Mage * @package Mage_Page * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Payment/Block/Form/ContainerTest.php b/dev/tests/unit/testsuite/Mage/Payment/Block/Form/ContainerTest.php index 273726b3230e22f312c8558661f6f81c384e3fd1..12723960c5599e718b791bfa36fb574d4acd60be 100644 --- a/dev/tests/unit/testsuite/Mage/Payment/Block/Form/ContainerTest.php +++ b/dev/tests/unit/testsuite/Mage/Payment/Block/Form/ContainerTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Payment * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Payment/Block/Info/ContainerAbstractTest.php b/dev/tests/unit/testsuite/Mage/Payment/Block/Info/ContainerAbstractTest.php index 9499bec7cc272eb99a2c3b7294c67ab1ff8ddce1..f6deceec807edb8211f9df2cdaf3594092ab38ad 100644 --- a/dev/tests/unit/testsuite/Mage/Payment/Block/Info/ContainerAbstractTest.php +++ b/dev/tests/unit/testsuite/Mage/Payment/Block/Info/ContainerAbstractTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Payment * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Payment/Block/Info/InstructionsTest.php b/dev/tests/unit/testsuite/Mage/Payment/Block/Info/InstructionsTest.php index 50ad850bec31d989f7df5ffcab7ecdd9030e0e41..a10f43e8de9b9268c7ffc556200c4f94e686a71d 100644 --- a/dev/tests/unit/testsuite/Mage/Payment/Block/Info/InstructionsTest.php +++ b/dev/tests/unit/testsuite/Mage/Payment/Block/Info/InstructionsTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Payment * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Payment/Model/Method/BanktransferTest.php b/dev/tests/unit/testsuite/Mage/Payment/Model/Method/BanktransferTest.php index 8e07d126862e2d1a50d4fc8767296e8f48ac6b6e..5dad8c470e400d148ea8990e7b240ac14b31892f 100644 --- a/dev/tests/unit/testsuite/Mage/Payment/Model/Method/BanktransferTest.php +++ b/dev/tests/unit/testsuite/Mage/Payment/Model/Method/BanktransferTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Payment * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Payment/Model/Method/CashondeliveryTest.php b/dev/tests/unit/testsuite/Mage/Payment/Model/Method/CashondeliveryTest.php index 9ad610edef2f34e3364df72dc716c70ed37d58f6..440ad8cb50291c7934ba975e1f65b792c23a2f4b 100644 --- a/dev/tests/unit/testsuite/Mage/Payment/Model/Method/CashondeliveryTest.php +++ b/dev/tests/unit/testsuite/Mage/Payment/Model/Method/CashondeliveryTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Payment * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Review/Helper/Action/PagerTest.php b/dev/tests/unit/testsuite/Mage/Review/Helper/Action/PagerTest.php index 67f0caf7c38c7bf2c74bd4ef5f5bcbac7c972b0d..ab2c8d089db6ad6c3c323ebc3ad7bd014f916d88 100644 --- a/dev/tests/unit/testsuite/Mage/Review/Helper/Action/PagerTest.php +++ b/dev/tests/unit/testsuite/Mage/Review/Helper/Action/PagerTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Review * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Sales/Model/Billing/Agreement/OrdersUpdaterTest.php b/dev/tests/unit/testsuite/Mage/Sales/Model/Billing/Agreement/OrdersUpdaterTest.php index 19e00f70f93a6d73a3090076b24b8550764ce8c8..e45b234c105cf61cc2b7bd3cff01d0cadd1ee422 100644 --- a/dev/tests/unit/testsuite/Mage/Sales/Model/Billing/Agreement/OrdersUpdaterTest.php +++ b/dev/tests/unit/testsuite/Mage/Sales/Model/Billing/Agreement/OrdersUpdaterTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Sales * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Sales/Model/Config/OrderTest.php b/dev/tests/unit/testsuite/Mage/Sales/Model/Config/OrderTest.php index 41c65d073b6796a5a3618f19c3e75672bc6631a1..a2356101d7dfbbf3d3be33c3ab570616868914e7 100644 --- a/dev/tests/unit/testsuite/Mage/Sales/Model/Config/OrderTest.php +++ b/dev/tests/unit/testsuite/Mage/Sales/Model/Config/OrderTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Sales * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Sales/Model/Config/_files/core_totals_config.php b/dev/tests/unit/testsuite/Mage/Sales/Model/Config/_files/core_totals_config.php index a940b7be09783cb21fae5eacb7fc3e01fc4dce90..42a3a0e8bc404b1d05a74e66e335f1fc56b31f91 100644 --- a/dev/tests/unit/testsuite/Mage/Sales/Model/Config/_files/core_totals_config.php +++ b/dev/tests/unit/testsuite/Mage/Sales/Model/Config/_files/core_totals_config.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Sales * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Sales/Model/Config/_files/custom_totals_config.php b/dev/tests/unit/testsuite/Mage/Sales/Model/Config/_files/custom_totals_config.php index 3073f662941d86be25ed8504c0eac530d91669e0..477f6c4de0c5471b5df56145d95ab0dc9bf88aae 100644 --- a/dev/tests/unit/testsuite/Mage/Sales/Model/Config/_files/custom_totals_config.php +++ b/dev/tests/unit/testsuite/Mage/Sales/Model/Config/_files/custom_totals_config.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Sales * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Sales/Model/Order/Invoice/Total/ShippingTest.php b/dev/tests/unit/testsuite/Mage/Sales/Model/Order/Invoice/Total/ShippingTest.php index cbe3bebd2e865e725c837e7dc57ee96a8599a217..aa2c8fc64d5fcfc42bef38add9304fe4b08209ed 100644 --- a/dev/tests/unit/testsuite/Mage/Sales/Model/Order/Invoice/Total/ShippingTest.php +++ b/dev/tests/unit/testsuite/Mage/Sales/Model/Order/Invoice/Total/ShippingTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Sales * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Sales/Model/Order/Shipment/TrackTest.php b/dev/tests/unit/testsuite/Mage/Sales/Model/Order/Shipment/TrackTest.php index 677069103acf64c2c80d4457450629d7e2fdea9b..a6e26a3d19eb2a0a016b215377832e8e6395f168 100644 --- a/dev/tests/unit/testsuite/Mage/Sales/Model/Order/Shipment/TrackTest.php +++ b/dev/tests/unit/testsuite/Mage/Sales/Model/Order/Shipment/TrackTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Sales * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Sales/Model/Quote/ItemTest.php b/dev/tests/unit/testsuite/Mage/Sales/Model/Quote/ItemTest.php index 26a9675940c897b6bed70f556b42ed8dfbbc1671..695565055e9dc342d3ce1a4f0c8ac8116a687c1f 100644 --- a/dev/tests/unit/testsuite/Mage/Sales/Model/Quote/ItemTest.php +++ b/dev/tests/unit/testsuite/Mage/Sales/Model/Quote/ItemTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Sales * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/SalesRule/Model/Resource/Report/RuleTest.php b/dev/tests/unit/testsuite/Mage/SalesRule/Model/Resource/Report/RuleTest.php index d7b2684e2802079a61f1a679bc0413486a9ec346..130133630e240f007aee63b9bd2625e930f882fa 100644 --- a/dev/tests/unit/testsuite/Mage/SalesRule/Model/Resource/Report/RuleTest.php +++ b/dev/tests/unit/testsuite/Mage/SalesRule/Model/Resource/Report/RuleTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_SalesRule * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/SalesRule/Model/ValidatorTest.php b/dev/tests/unit/testsuite/Mage/SalesRule/Model/ValidatorTest.php index 1fbce9ad5017bc964d649905d762616e0f712f62..f8fabf3ab65438d0cb381ecf18d48fe05eb12364 100644 --- a/dev/tests/unit/testsuite/Mage/SalesRule/Model/ValidatorTest.php +++ b/dev/tests/unit/testsuite/Mage/SalesRule/Model/ValidatorTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_SalesRule * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/SalesRule/Model/_files/quote_item_downloadable.php b/dev/tests/unit/testsuite/Mage/SalesRule/Model/_files/quote_item_downloadable.php index f6924995a8346cee71f813a5cec1486d12d48bb4..3e65f36ae6d234c805df0834c67425a7a95cfff2 100644 --- a/dev/tests/unit/testsuite/Mage/SalesRule/Model/_files/quote_item_downloadable.php +++ b/dev/tests/unit/testsuite/Mage/SalesRule/Model/_files/quote_item_downloadable.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_SalesRule * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/SalesRule/Model/_files/quote_item_simple.php b/dev/tests/unit/testsuite/Mage/SalesRule/Model/_files/quote_item_simple.php index 0b97a891c60df272444375075d10f16e6f6a3352..5a82feedef9988a9f84cae61f792ef75e0061da5 100644 --- a/dev/tests/unit/testsuite/Mage/SalesRule/Model/_files/quote_item_simple.php +++ b/dev/tests/unit/testsuite/Mage/SalesRule/Model/_files/quote_item_simple.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_SalesRule * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Sitemap/Model/SitemapTest.php b/dev/tests/unit/testsuite/Mage/Sitemap/Model/SitemapTest.php index ee842eb7077b594c9a8453da4738086db3000a7a..b866fd0bbd061b31fa48a0e142f923a97e5b9498 100644 --- a/dev/tests/unit/testsuite/Mage/Sitemap/Model/SitemapTest.php +++ b/dev/tests/unit/testsuite/Mage/Sitemap/Model/SitemapTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Sitemap * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Sitemap/Model/_files/sitemap-1-1.xml b/dev/tests/unit/testsuite/Mage/Sitemap/Model/_files/sitemap-1-1.xml index 08d712a052fc6cfd24e64cd5ac937ef08f78848a..6c7325d22c4816920b398a51a9ff7b18c2abdf4a 100644 --- a/dev/tests/unit/testsuite/Mage/Sitemap/Model/_files/sitemap-1-1.xml +++ b/dev/tests/unit/testsuite/Mage/Sitemap/Model/_files/sitemap-1-1.xml @@ -22,7 +22,7 @@ * @category Magento * @package Mage_Sitemap * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/Mage/Sitemap/Model/_files/sitemap-1-2.xml b/dev/tests/unit/testsuite/Mage/Sitemap/Model/_files/sitemap-1-2.xml index 0c22a936f466248ece65f7a0324fd98c20f5305b..df2f6b2a3577b937b5aa5549c46754c87d470953 100644 --- a/dev/tests/unit/testsuite/Mage/Sitemap/Model/_files/sitemap-1-2.xml +++ b/dev/tests/unit/testsuite/Mage/Sitemap/Model/_files/sitemap-1-2.xml @@ -22,7 +22,7 @@ * @category Magento * @package Mage_Sitemap * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/Mage/Sitemap/Model/_files/sitemap-1-3.xml b/dev/tests/unit/testsuite/Mage/Sitemap/Model/_files/sitemap-1-3.xml index 0ff6f4da95211dfdffa8298467aca82b5ed5bf96..24e28dd4319fe0234914234742cfba67f28b919b 100644 --- a/dev/tests/unit/testsuite/Mage/Sitemap/Model/_files/sitemap-1-3.xml +++ b/dev/tests/unit/testsuite/Mage/Sitemap/Model/_files/sitemap-1-3.xml @@ -22,7 +22,7 @@ * @category Magento * @package Mage_Sitemap * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/Mage/Sitemap/Model/_files/sitemap-1-4.xml b/dev/tests/unit/testsuite/Mage/Sitemap/Model/_files/sitemap-1-4.xml index 0bc24c590162d63992be5321419fea7d1f38b6cb..2df35ca2058a4575d5d6c97c9599c55d36836c27 100644 --- a/dev/tests/unit/testsuite/Mage/Sitemap/Model/_files/sitemap-1-4.xml +++ b/dev/tests/unit/testsuite/Mage/Sitemap/Model/_files/sitemap-1-4.xml @@ -22,7 +22,7 @@ * @category Magento * @package Mage_Sitemap * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/Mage/Sitemap/Model/_files/sitemap-index.xml b/dev/tests/unit/testsuite/Mage/Sitemap/Model/_files/sitemap-index.xml index 4e1f2b75cf592ed74e3cc3ad52d400659c3f1983..2f3d8d4af7f4ad513e7e173d3985766108696e7f 100644 --- a/dev/tests/unit/testsuite/Mage/Sitemap/Model/_files/sitemap-index.xml +++ b/dev/tests/unit/testsuite/Mage/Sitemap/Model/_files/sitemap-index.xml @@ -22,7 +22,7 @@ * @category Magento * @package Mage_Sitemap * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/Mage/Sitemap/Model/_files/sitemap-single.xml b/dev/tests/unit/testsuite/Mage/Sitemap/Model/_files/sitemap-single.xml index dee8336d74ebcfc82f4af2758101d8bc0a787a3d..1ae134b58885d99438822cf6ffdd572f70001f88 100644 --- a/dev/tests/unit/testsuite/Mage/Sitemap/Model/_files/sitemap-single.xml +++ b/dev/tests/unit/testsuite/Mage/Sitemap/Model/_files/sitemap-single.xml @@ -22,7 +22,7 @@ * @category Magento * @package Mage_Sitemap * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/Mage/Tag/Block/Adminhtml/Catalog/Product/Edit/Tab/Tag/CustomerTest.php b/dev/tests/unit/testsuite/Mage/Tag/Block/Adminhtml/Catalog/Product/Edit/Tab/Tag/CustomerTest.php index 260df274ce18f511fcdc68ff2381a48637bfdaa3..9645cf5ec22c0705e369d46f909f1f7e80224ba8 100644 --- a/dev/tests/unit/testsuite/Mage/Tag/Block/Adminhtml/Catalog/Product/Edit/Tab/Tag/CustomerTest.php +++ b/dev/tests/unit/testsuite/Mage/Tag/Block/Adminhtml/Catalog/Product/Edit/Tab/Tag/CustomerTest.php @@ -21,7 +21,7 @@ * @category Mage * @package Mage_Tag * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Tag/Block/Adminhtml/Catalog/Product/Edit/Tab/TagTest.php b/dev/tests/unit/testsuite/Mage/Tag/Block/Adminhtml/Catalog/Product/Edit/Tab/TagTest.php index 981284511d8f2106c8d7d9b65e219a3a37fb4968..8e3eade62841277c525e0e5b1184775132d75f42 100644 --- a/dev/tests/unit/testsuite/Mage/Tag/Block/Adminhtml/Catalog/Product/Edit/Tab/TagTest.php +++ b/dev/tests/unit/testsuite/Mage/Tag/Block/Adminhtml/Catalog/Product/Edit/Tab/TagTest.php @@ -21,7 +21,7 @@ * @category Mage * @package Mage_Tag * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Tag/Block/Adminhtml/Catalog/Product/Edit/Tab/TagTestCaseAbstract.php b/dev/tests/unit/testsuite/Mage/Tag/Block/Adminhtml/Catalog/Product/Edit/Tab/TagTestCaseAbstract.php index 28294845f5bd99c49d1dca8f44fe24c471765891..1a56b34c1765abd37bf796af7f766c49f7f455af 100644 --- a/dev/tests/unit/testsuite/Mage/Tag/Block/Adminhtml/Catalog/Product/Edit/Tab/TagTestCaseAbstract.php +++ b/dev/tests/unit/testsuite/Mage/Tag/Block/Adminhtml/Catalog/Product/Edit/Tab/TagTestCaseAbstract.php @@ -21,7 +21,7 @@ * @category Mage * @package Mage_Tag * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Tag/Block/Adminhtml/Customer/Edit/Tab/TagTest.php b/dev/tests/unit/testsuite/Mage/Tag/Block/Adminhtml/Customer/Edit/Tab/TagTest.php index cde13e498d5206eb20c329c41c03b8a045c55e49..be1e3c90dd3c92ba39ae08d674da25da2a8f450c 100644 --- a/dev/tests/unit/testsuite/Mage/Tag/Block/Adminhtml/Customer/Edit/Tab/TagTest.php +++ b/dev/tests/unit/testsuite/Mage/Tag/Block/Adminhtml/Customer/Edit/Tab/TagTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Tag * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Tag/Block/Catalog/Product/Rss/LinkTest.php b/dev/tests/unit/testsuite/Mage/Tag/Block/Catalog/Product/Rss/LinkTest.php index 32a0ce67374ac8bb7932294f0a94dfec647535d1..782986bc766a22fd9aa1ffc944fc85dfcbcdff74 100644 --- a/dev/tests/unit/testsuite/Mage/Tag/Block/Catalog/Product/Rss/LinkTest.php +++ b/dev/tests/unit/testsuite/Mage/Tag/Block/Catalog/Product/Rss/LinkTest.php @@ -21,7 +21,7 @@ * @category Mage * @package Mage_Tag * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/User/Model/Acl/Loader/RoleTest.php b/dev/tests/unit/testsuite/Mage/User/Model/Acl/Loader/RoleTest.php index 9960965fb986d4804108d00061357c3ccf5ee812..5261f1af31f05e60224f0533346f918d6b1b6f2e 100644 --- a/dev/tests/unit/testsuite/Mage/User/Model/Acl/Loader/RoleTest.php +++ b/dev/tests/unit/testsuite/Mage/User/Model/Acl/Loader/RoleTest.php @@ -21,7 +21,7 @@ * @category Mage * @package Mage_User * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/User/Model/Acl/Loader/RuleTest.php b/dev/tests/unit/testsuite/Mage/User/Model/Acl/Loader/RuleTest.php index 03a2c8c66068355e362fee9e6d2e1cfca1844751..72fd741d21171325b8e8897bae51df72c179e14f 100644 --- a/dev/tests/unit/testsuite/Mage/User/Model/Acl/Loader/RuleTest.php +++ b/dev/tests/unit/testsuite/Mage/User/Model/Acl/Loader/RuleTest.php @@ -21,7 +21,7 @@ * @category Mage * @package Mage_User * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Webapi/Block/Adminhtml/Role/Edit/Tab/ResourceTest.php b/dev/tests/unit/testsuite/Mage/Webapi/Block/Adminhtml/Role/Edit/Tab/ResourceTest.php index 7cf132cf1ebdc9b0a4fcb55bba4ee386d300cefe..9a8958abc667a8ff8062808174ac1fa9e6c50fee 100644 --- a/dev/tests/unit/testsuite/Mage/Webapi/Block/Adminhtml/Role/Edit/Tab/ResourceTest.php +++ b/dev/tests/unit/testsuite/Mage/Webapi/Block/Adminhtml/Role/Edit/Tab/ResourceTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Block_Adminhtml_Role_Edit_Tab_ResourceTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Mage/Webapi/Block/Adminhtml/Role/Edit/TabsTest.php b/dev/tests/unit/testsuite/Mage/Webapi/Block/Adminhtml/Role/Edit/TabsTest.php index 22ffdc7e2638f236154e13e1ef197602b1dd08c5..b1bc38ea13c7c1762a611167dbb8c86c4b55dff6 100644 --- a/dev/tests/unit/testsuite/Mage/Webapi/Block/Adminhtml/Role/Edit/TabsTest.php +++ b/dev/tests/unit/testsuite/Mage/Webapi/Block/Adminhtml/Role/Edit/TabsTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Block_Adminhtml_Role_Edit_TabsTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Mage/Webapi/Block/Adminhtml/Role/EditTest.php b/dev/tests/unit/testsuite/Mage/Webapi/Block/Adminhtml/Role/EditTest.php index d62923299539183be9d80a48584535dc87ae9f75..ea20048df2bb43948619fb35a2500ea7f1f15a69 100644 --- a/dev/tests/unit/testsuite/Mage/Webapi/Block/Adminhtml/Role/EditTest.php +++ b/dev/tests/unit/testsuite/Mage/Webapi/Block/Adminhtml/Role/EditTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Block_Adminhtml_Role_EditTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Mage/Webapi/Block/Adminhtml/RoleTest.php b/dev/tests/unit/testsuite/Mage/Webapi/Block/Adminhtml/RoleTest.php index 4300da0d4b7969fe25f6b952f64307b19e548d2a..9cd6f2a7e1e76021ae91b3710b15e0db7594ee3c 100644 --- a/dev/tests/unit/testsuite/Mage/Webapi/Block/Adminhtml/RoleTest.php +++ b/dev/tests/unit/testsuite/Mage/Webapi/Block/Adminhtml/RoleTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Block_Adminhtml_RoleTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Mage/Webapi/Block/Adminhtml/User/EditTest.php b/dev/tests/unit/testsuite/Mage/Webapi/Block/Adminhtml/User/EditTest.php index e2b99af9bf803bd414e9b5337aaf13287baa21eb..d7cc0295cadd43000fb9eff1aefa55963f077284 100644 --- a/dev/tests/unit/testsuite/Mage/Webapi/Block/Adminhtml/User/EditTest.php +++ b/dev/tests/unit/testsuite/Mage/Webapi/Block/Adminhtml/User/EditTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Block_Adminhtml_User_EditTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Mage/Webapi/Block/Adminhtml/UserTest.php b/dev/tests/unit/testsuite/Mage/Webapi/Block/Adminhtml/UserTest.php index 289aa278863a30176b78646e5a21e893beffd5b1..096db188f9e6189c5c9103bcee5dcb1ae65d5de7 100644 --- a/dev/tests/unit/testsuite/Mage/Webapi/Block/Adminhtml/UserTest.php +++ b/dev/tests/unit/testsuite/Mage/Webapi/Block/Adminhtml/UserTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Block_Adminhtml_UserTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Mage/Webapi/Controller/Action/FactoryTest.php b/dev/tests/unit/testsuite/Mage/Webapi/Controller/Action/FactoryTest.php index 290566e70d28c1f49e6443e76d43e4efa6a6be6e..26266805ea36cc8fa174683c8ba76c4a354986d8 100644 --- a/dev/tests/unit/testsuite/Mage/Webapi/Controller/Action/FactoryTest.php +++ b/dev/tests/unit/testsuite/Mage/Webapi/Controller/Action/FactoryTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Controller_Action_FactoryTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Mage/Webapi/Controller/Dispatcher/ErrorProcessorTest.php b/dev/tests/unit/testsuite/Mage/Webapi/Controller/Dispatcher/ErrorProcessorTest.php index bba5c31dc3e6934dbbfc9d690294eb77c4302688..381d6974edef7bf0e868d3c22c38712372094513 100644 --- a/dev/tests/unit/testsuite/Mage/Webapi/Controller/Dispatcher/ErrorProcessorTest.php +++ b/dev/tests/unit/testsuite/Mage/Webapi/Controller/Dispatcher/ErrorProcessorTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Controller_Dispatcher_ErrorProcessorTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Mage/Webapi/Controller/Dispatcher/FactoryTest.php b/dev/tests/unit/testsuite/Mage/Webapi/Controller/Dispatcher/FactoryTest.php index 8b29f16be2e47146cdb362e9a0d2a3880dc7c5a3..663dc1482455dfc00afe884a1810f5953b2bd8c8 100644 --- a/dev/tests/unit/testsuite/Mage/Webapi/Controller/Dispatcher/FactoryTest.php +++ b/dev/tests/unit/testsuite/Mage/Webapi/Controller/Dispatcher/FactoryTest.php @@ -19,7 +19,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Controller_Dispatcher_FactoryTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Mage/Webapi/Controller/Dispatcher/Rest/AuthenticationTest.php b/dev/tests/unit/testsuite/Mage/Webapi/Controller/Dispatcher/Rest/AuthenticationTest.php index 4a6cabc98266b56a6488b777d422a011a4a0b5fc..1a6d438504c3995337df155db4e7a5d00a758634 100644 --- a/dev/tests/unit/testsuite/Mage/Webapi/Controller/Dispatcher/Rest/AuthenticationTest.php +++ b/dev/tests/unit/testsuite/Mage/Webapi/Controller/Dispatcher/Rest/AuthenticationTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Controller_Dispatcher_Rest_AuthenticationTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Mage/Webapi/Controller/Dispatcher/RestTest.php b/dev/tests/unit/testsuite/Mage/Webapi/Controller/Dispatcher/RestTest.php index cf060746d20b0fdf09159ed8cdc50d470193a25d..4c0136fc6f7b6c5e29a8d828672746da9fedb0ee 100644 --- a/dev/tests/unit/testsuite/Mage/Webapi/Controller/Dispatcher/RestTest.php +++ b/dev/tests/unit/testsuite/Mage/Webapi/Controller/Dispatcher/RestTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Controller_Dispatcher_RestTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Mage/Webapi/Controller/Dispatcher/Soap/AuthenticationTest.php b/dev/tests/unit/testsuite/Mage/Webapi/Controller/Dispatcher/Soap/AuthenticationTest.php index febb1eb807f1a68dcf3a6e1b45db59d8d0cf0e0c..554232b28651dd7f1139632927c3dddc44cd1495 100644 --- a/dev/tests/unit/testsuite/Mage/Webapi/Controller/Dispatcher/Soap/AuthenticationTest.php +++ b/dev/tests/unit/testsuite/Mage/Webapi/Controller/Dispatcher/Soap/AuthenticationTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Controller_Dispatcher_Soap_AuthenticationTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Mage/Webapi/Controller/Dispatcher/Soap/HandlerTest.php b/dev/tests/unit/testsuite/Mage/Webapi/Controller/Dispatcher/Soap/HandlerTest.php index c1e378d9af25953a01af59b59c672c2aeb4b8dbc..7c78ae3ab7edce925553b87a855112a0efcd86e6 100644 --- a/dev/tests/unit/testsuite/Mage/Webapi/Controller/Dispatcher/Soap/HandlerTest.php +++ b/dev/tests/unit/testsuite/Mage/Webapi/Controller/Dispatcher/Soap/HandlerTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Controller_Dispatcher_Soap_HandlerTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Mage/Webapi/Controller/Dispatcher/SoapTest.php b/dev/tests/unit/testsuite/Mage/Webapi/Controller/Dispatcher/SoapTest.php index c21fc69cb4d87224333199ea5539ed2a99c0f0dc..e4b61f9c70dc22d0779ce8aa57710be0a2446f0c 100644 --- a/dev/tests/unit/testsuite/Mage/Webapi/Controller/Dispatcher/SoapTest.php +++ b/dev/tests/unit/testsuite/Mage/Webapi/Controller/Dispatcher/SoapTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Controller_Dispatcher_SoapTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Mage/Webapi/Controller/FrontTest.php b/dev/tests/unit/testsuite/Mage/Webapi/Controller/FrontTest.php index 6fd447d454e89b7b1ef9301b0527ebb3120c9563..3e76f082a6300d40fb840c7ccf13ef2402787bbb 100644 --- a/dev/tests/unit/testsuite/Mage/Webapi/Controller/FrontTest.php +++ b/dev/tests/unit/testsuite/Mage/Webapi/Controller/FrontTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Controller_FrontTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Mage/Webapi/Controller/Request/FactoryTest.php b/dev/tests/unit/testsuite/Mage/Webapi/Controller/Request/FactoryTest.php index 4c3a66b8ab1ba597b7b0cc9ea465f05dcce2bcfe..6da7366e00713c9de4deebe2ecd6eee25b78de09 100644 --- a/dev/tests/unit/testsuite/Mage/Webapi/Controller/Request/FactoryTest.php +++ b/dev/tests/unit/testsuite/Mage/Webapi/Controller/Request/FactoryTest.php @@ -18,7 +18,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Controller_Request_FactoryTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Mage/Webapi/Controller/Request/Rest/Interpreter/FactoryTest.php b/dev/tests/unit/testsuite/Mage/Webapi/Controller/Request/Rest/Interpreter/FactoryTest.php index 8a4b66e76b0c815de183eb4c475423301edd3b66..89b3af6026650e310e5d3e253ed44f677611009c 100644 --- a/dev/tests/unit/testsuite/Mage/Webapi/Controller/Request/Rest/Interpreter/FactoryTest.php +++ b/dev/tests/unit/testsuite/Mage/Webapi/Controller/Request/Rest/Interpreter/FactoryTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Controller_Request_Rest_Interpreter_FactoryTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Mage/Webapi/Controller/Request/Rest/Interpreter/JsonTest.php b/dev/tests/unit/testsuite/Mage/Webapi/Controller/Request/Rest/Interpreter/JsonTest.php index 46feebeb225c1d5a50d52a0e5f4a077aa3fa29b4..64371705a4a4c6cc60f5f33466b164c71bc7b795 100644 --- a/dev/tests/unit/testsuite/Mage/Webapi/Controller/Request/Rest/Interpreter/JsonTest.php +++ b/dev/tests/unit/testsuite/Mage/Webapi/Controller/Request/Rest/Interpreter/JsonTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Controller_Request_Rest_Interpreter_JsonTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Mage/Webapi/Controller/Request/Rest/Interpreter/XmlTest.php b/dev/tests/unit/testsuite/Mage/Webapi/Controller/Request/Rest/Interpreter/XmlTest.php index 90878d2145a95ac79de85e64d2736d39ff64805e..4588d164aebae42ff59b258cada846efe9e4df3f 100644 --- a/dev/tests/unit/testsuite/Mage/Webapi/Controller/Request/Rest/Interpreter/XmlTest.php +++ b/dev/tests/unit/testsuite/Mage/Webapi/Controller/Request/Rest/Interpreter/XmlTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Controller_Request_Rest_Interpreter_XmlTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Mage/Webapi/Controller/Request/RestTest.php b/dev/tests/unit/testsuite/Mage/Webapi/Controller/Request/RestTest.php index 7bf702b4d80be22ba8e58b80a58e8b256119cd9a..8a25cf1e806aea17a04f8017baabc73ef10e98af 100644 --- a/dev/tests/unit/testsuite/Mage/Webapi/Controller/Request/RestTest.php +++ b/dev/tests/unit/testsuite/Mage/Webapi/Controller/Request/RestTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Controller_Request_RestTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Mage/Webapi/Controller/Request/SoapTest.php b/dev/tests/unit/testsuite/Mage/Webapi/Controller/Request/SoapTest.php index b3c8849aabd6a283573ecefcf995edf984dfbc5c..d4f8e4a45a7ca8af82ac9040a9f07f6bf3fee3aa 100644 --- a/dev/tests/unit/testsuite/Mage/Webapi/Controller/Request/SoapTest.php +++ b/dev/tests/unit/testsuite/Mage/Webapi/Controller/Request/SoapTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Controller_Request_SoapTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Mage/Webapi/Controller/RequestTest.php b/dev/tests/unit/testsuite/Mage/Webapi/Controller/RequestTest.php index 5def59a758b3d16f732de21493199953d3feb4f1..0a65d90d599cbe7a0f639a04f2bb2540253becf2 100644 --- a/dev/tests/unit/testsuite/Mage/Webapi/Controller/RequestTest.php +++ b/dev/tests/unit/testsuite/Mage/Webapi/Controller/RequestTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Controller_RequestTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Mage/Webapi/Controller/Response/FactoryTest.php b/dev/tests/unit/testsuite/Mage/Webapi/Controller/Response/FactoryTest.php index 4d01b9caafd16ebccfc2355c16a0601aae009ebc..496b9ff98363e2a75343ae153dc599a30ff787ad 100644 --- a/dev/tests/unit/testsuite/Mage/Webapi/Controller/Response/FactoryTest.php +++ b/dev/tests/unit/testsuite/Mage/Webapi/Controller/Response/FactoryTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Controller_Response_FactoryTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Mage/Webapi/Controller/Response/Rest/Renderer/FactoryTest.php b/dev/tests/unit/testsuite/Mage/Webapi/Controller/Response/Rest/Renderer/FactoryTest.php index e3088cabc617d060444e895c1b0df9d7a0daf137..2e4313d5121a7272c6078cd56a8882774909238d 100644 --- a/dev/tests/unit/testsuite/Mage/Webapi/Controller/Response/Rest/Renderer/FactoryTest.php +++ b/dev/tests/unit/testsuite/Mage/Webapi/Controller/Response/Rest/Renderer/FactoryTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Controller_Response_Rest_Renderer_FactoryTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Mage/Webapi/Controller/Response/Rest/Renderer/JsonTest.php b/dev/tests/unit/testsuite/Mage/Webapi/Controller/Response/Rest/Renderer/JsonTest.php index 8bb4e26a8fe889bcc0fe8511d753b74b2159062b..5102307865ad91091d9366d4139350cbc3b6f7eb 100644 --- a/dev/tests/unit/testsuite/Mage/Webapi/Controller/Response/Rest/Renderer/JsonTest.php +++ b/dev/tests/unit/testsuite/Mage/Webapi/Controller/Response/Rest/Renderer/JsonTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Controller_Response_Rest_Renderer_JsonTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Mage/Webapi/Controller/Response/Rest/Renderer/XmlTest.php b/dev/tests/unit/testsuite/Mage/Webapi/Controller/Response/Rest/Renderer/XmlTest.php index c71113160df134740ee3ab57e4650a3188485275..f49d0718c31c75887834f0ea32c96edafd3530a0 100644 --- a/dev/tests/unit/testsuite/Mage/Webapi/Controller/Response/Rest/Renderer/XmlTest.php +++ b/dev/tests/unit/testsuite/Mage/Webapi/Controller/Response/Rest/Renderer/XmlTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Controller_Response_Rest_Renderer_XmlTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Mage/Webapi/Controller/Response/RestTest.php b/dev/tests/unit/testsuite/Mage/Webapi/Controller/Response/RestTest.php index c914289585559562318c808440bfbe0a3f64e7c6..303f29f07ad45ee334816cb216f0302e63de1060 100644 --- a/dev/tests/unit/testsuite/Mage/Webapi/Controller/Response/RestTest.php +++ b/dev/tests/unit/testsuite/Mage/Webapi/Controller/Response/RestTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Controller_Response_RestTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Mage/Webapi/Controller/ResponseTest.php b/dev/tests/unit/testsuite/Mage/Webapi/Controller/ResponseTest.php index d82b9805eceb22605845a8caf65ff710e527f358..186f852018eea9abeb4b6b66192b4473c153dce7 100644 --- a/dev/tests/unit/testsuite/Mage/Webapi/Controller/ResponseTest.php +++ b/dev/tests/unit/testsuite/Mage/Webapi/Controller/ResponseTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Controller_ResponseTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Mage/Webapi/Controller/Router/RestTest.php b/dev/tests/unit/testsuite/Mage/Webapi/Controller/Router/RestTest.php index b5d7391667bf43002dbcecb347d0aa51178e8082..c3a9386d6cae74b0f6be9bed0dc4e4063c90db0f 100644 --- a/dev/tests/unit/testsuite/Mage/Webapi/Controller/Router/RestTest.php +++ b/dev/tests/unit/testsuite/Mage/Webapi/Controller/Router/RestTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Webapi * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Webapi/Controller/Router/Route/ApiTypeTest.php b/dev/tests/unit/testsuite/Mage/Webapi/Controller/Router/Route/ApiTypeTest.php index 58a77d0b66966b3f4415179f0d90c03a057c6fc6..a84868ecaafe8998a5c13550ea0190346759a1cb 100644 --- a/dev/tests/unit/testsuite/Mage/Webapi/Controller/Router/Route/ApiTypeTest.php +++ b/dev/tests/unit/testsuite/Mage/Webapi/Controller/Router/Route/ApiTypeTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Webapi * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Webapi/Controller/Router/Route/RestTest.php b/dev/tests/unit/testsuite/Mage/Webapi/Controller/Router/Route/RestTest.php index c3639bea1c49fb01339a8cb7edd7887a35b99f17..58c8b331d818b7705019485ce6cd4628008c13d3 100644 --- a/dev/tests/unit/testsuite/Mage/Webapi/Controller/Router/Route/RestTest.php +++ b/dev/tests/unit/testsuite/Mage/Webapi/Controller/Router/Route/RestTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Controller_Router_Route_RestTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Mage/Webapi/ExceptionTest.php b/dev/tests/unit/testsuite/Mage/Webapi/ExceptionTest.php index d899a5d4e6c47d46f7771e44b1e143c30d923d5e..224e632e6cf82414efcc702879580ad7113cd8d2 100644 --- a/dev/tests/unit/testsuite/Mage/Webapi/ExceptionTest.php +++ b/dev/tests/unit/testsuite/Mage/Webapi/ExceptionTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_ExceptionTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Mage/Webapi/Model/Acl/Role/FactoryTest.php b/dev/tests/unit/testsuite/Mage/Webapi/Model/Acl/Role/FactoryTest.php index 44132368a50c9a31f8054de067b1b1620f773732..8243e10e3ec59c56e09e86f4fa5543a005f6afc7 100644 --- a/dev/tests/unit/testsuite/Mage/Webapi/Model/Acl/Role/FactoryTest.php +++ b/dev/tests/unit/testsuite/Mage/Webapi/Model/Acl/Role/FactoryTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Model_Acl_Role_FactoryTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Mage/Webapi/Model/Acl/Role/InRoleUserUpdaterTest.php b/dev/tests/unit/testsuite/Mage/Webapi/Model/Acl/Role/InRoleUserUpdaterTest.php index 072dc681c06eeb9439b3361f7b9c4261dd278ca9..885d38fc4104329a8ec58013296c34b7127e777e 100644 --- a/dev/tests/unit/testsuite/Mage/Webapi/Model/Acl/Role/InRoleUserUpdaterTest.php +++ b/dev/tests/unit/testsuite/Mage/Webapi/Model/Acl/Role/InRoleUserUpdaterTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Model_Acl_Role_InRoleUserUpdaterTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Mage/Webapi/Model/Acl/Role/UsersUpdaterTest.php b/dev/tests/unit/testsuite/Mage/Webapi/Model/Acl/Role/UsersUpdaterTest.php index baedbf883a794e1f81db1c784b68dfe82ec8c22b..ad460cf24caacd7e1c57271759a8c38739bb7869 100644 --- a/dev/tests/unit/testsuite/Mage/Webapi/Model/Acl/Role/UsersUpdaterTest.php +++ b/dev/tests/unit/testsuite/Mage/Webapi/Model/Acl/Role/UsersUpdaterTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Model_Acl_Role_UsersUpdaterTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Mage/Webapi/Model/Acl/RoleTest.php b/dev/tests/unit/testsuite/Mage/Webapi/Model/Acl/RoleTest.php index 1c50f484aa7d910a6dc8ede57af4e89b1bee2daf..329f8141184566fb1674824f76082ff02627aba6 100644 --- a/dev/tests/unit/testsuite/Mage/Webapi/Model/Acl/RoleTest.php +++ b/dev/tests/unit/testsuite/Mage/Webapi/Model/Acl/RoleTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Model_Acl_RoleTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Mage/Webapi/Model/Acl/RuleTest.php b/dev/tests/unit/testsuite/Mage/Webapi/Model/Acl/RuleTest.php index 0a2074843976505309122b09900a0291917a9016..e5ffbe455f91c397ee8e5d86fb1af3be0f3e6d46 100644 --- a/dev/tests/unit/testsuite/Mage/Webapi/Model/Acl/RuleTest.php +++ b/dev/tests/unit/testsuite/Mage/Webapi/Model/Acl/RuleTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Model_Acl_RuleTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Mage/Webapi/Model/Acl/User/FactoryTest.php b/dev/tests/unit/testsuite/Mage/Webapi/Model/Acl/User/FactoryTest.php index b99a3c009600da34ef9d276ef9cbeeef10cbb1a5..0c9a2fb783d3c294cece930829aec0f9272fda28 100644 --- a/dev/tests/unit/testsuite/Mage/Webapi/Model/Acl/User/FactoryTest.php +++ b/dev/tests/unit/testsuite/Mage/Webapi/Model/Acl/User/FactoryTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Model_Acl_User_FactoryTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Mage/Webapi/Model/Acl/User/RoleUpdaterTest.php b/dev/tests/unit/testsuite/Mage/Webapi/Model/Acl/User/RoleUpdaterTest.php index b6617bf372d9d6244493b1aeb50b29b765764253..1e98fdb5a5b91960e8de39cfaa930589d285c50e 100644 --- a/dev/tests/unit/testsuite/Mage/Webapi/Model/Acl/User/RoleUpdaterTest.php +++ b/dev/tests/unit/testsuite/Mage/Webapi/Model/Acl/User/RoleUpdaterTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Model_Acl_User_RoleUpdaterrTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Mage/Webapi/Model/Acl/UserTest.php b/dev/tests/unit/testsuite/Mage/Webapi/Model/Acl/UserTest.php index 030676604c11c8d7fb8d3d2eca6380ac40234a0f..f1258d3906df8be0440dce7863d67eaa367b5eb6 100644 --- a/dev/tests/unit/testsuite/Mage/Webapi/Model/Acl/UserTest.php +++ b/dev/tests/unit/testsuite/Mage/Webapi/Model/Acl/UserTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Model_Acl_UserTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Mage/Webapi/Model/Authorization/Config/ReaderFactoryTest.php b/dev/tests/unit/testsuite/Mage/Webapi/Model/Authorization/Config/ReaderFactoryTest.php index d329c6615ec61253e2ad5df7b49f2ae54709fcd1..c900120d9254e68d8a8764c96aa75052dbb1fc2b 100644 --- a/dev/tests/unit/testsuite/Mage/Webapi/Model/Authorization/Config/ReaderFactoryTest.php +++ b/dev/tests/unit/testsuite/Mage/Webapi/Model/Authorization/Config/ReaderFactoryTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Model_Authorization_Config_Reader_FactoryTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Mage/Webapi/Model/Authorization/Config/ReaderTest.php b/dev/tests/unit/testsuite/Mage/Webapi/Model/Authorization/Config/ReaderTest.php index 85933c95a6c10aab2c6eb13fea13960e95337fb7..3c80c106904882950b86a767a68476bfa79a0bd4 100644 --- a/dev/tests/unit/testsuite/Mage/Webapi/Model/Authorization/Config/ReaderTest.php +++ b/dev/tests/unit/testsuite/Mage/Webapi/Model/Authorization/Config/ReaderTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Model_Authorization_Config_ReaderTest extends PHPUnit_Framework_TestCase @@ -30,6 +30,11 @@ class Mage_Webapi_Model_Authorization_Config_ReaderTest extends PHPUnit_Framewor */ protected $_reader; + /** + * @var PHPUnit_Framework_MockObject_MockObject|Mage_Core_Model_Config + */ + protected $_configMock; + /** * Initialize reader instance */ @@ -37,7 +42,15 @@ class Mage_Webapi_Model_Authorization_Config_ReaderTest extends PHPUnit_Framewor { $path = array(__DIR__, '..', '..', '_files', 'acl.xml'); $path = realpath(implode(DIRECTORY_SEPARATOR, $path)); - $this->_reader = new Mage_Webapi_Model_Authorization_Config_Reader(array($path)); + $this->_configMock = $this->getMock('Mage_Core_Model_Config', array(), array(), '', false); + $this->_configMock->expects($this->any()) + ->method('getModuleDir') + ->with('etc', 'Mage_Webapi') + ->will($this->returnValue( + realpath(__DIR__ . '/../../../../../../../../../app/code/core/Mage/Webapi/etc')) + ); + + $this->_reader = new Mage_Webapi_Model_Authorization_Config_Reader($this->_configMock, array($path)); } /** @@ -46,6 +59,7 @@ class Mage_Webapi_Model_Authorization_Config_ReaderTest extends PHPUnit_Framewor protected function tearDown() { unset($this->_reader); + unset($this->_configMock); } /** diff --git a/dev/tests/unit/testsuite/Mage/Webapi/Model/Authorization/ConfigTest.php b/dev/tests/unit/testsuite/Mage/Webapi/Model/Authorization/ConfigTest.php index 81678a4c3d0c5104ece8f60273c6769b0a853f4d..bb75a1490aedbbd4f78aefc80e06ed017f40a761 100644 --- a/dev/tests/unit/testsuite/Mage/Webapi/Model/Authorization/ConfigTest.php +++ b/dev/tests/unit/testsuite/Mage/Webapi/Model/Authorization/ConfigTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Model_Authorization_ConfigTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Mage/Webapi/Model/Authorization/Loader/ResourceTest.php b/dev/tests/unit/testsuite/Mage/Webapi/Model/Authorization/Loader/ResourceTest.php index 28265c8f6f0d54d8ebe8779d7c4d463fb95471f8..cba83036b1472293da2e8f3aa0b066436c682b6d 100644 --- a/dev/tests/unit/testsuite/Mage/Webapi/Model/Authorization/Loader/ResourceTest.php +++ b/dev/tests/unit/testsuite/Mage/Webapi/Model/Authorization/Loader/ResourceTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Model_Authorization_Loader_ResourceTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Mage/Webapi/Model/Authorization/Loader/RoleTest.php b/dev/tests/unit/testsuite/Mage/Webapi/Model/Authorization/Loader/RoleTest.php index 0c07eab6bea437eff34e6090405dae05bbcba3f1..62217937fc3f69c91d5cbfca35bff492517f7f9a 100644 --- a/dev/tests/unit/testsuite/Mage/Webapi/Model/Authorization/Loader/RoleTest.php +++ b/dev/tests/unit/testsuite/Mage/Webapi/Model/Authorization/Loader/RoleTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Model_Authorization_Loader_RoleTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Mage/Webapi/Model/Authorization/Loader/RuleTest.php b/dev/tests/unit/testsuite/Mage/Webapi/Model/Authorization/Loader/RuleTest.php index 9a6ac9d9433c31cbeb5ce3100a6abadf39435f70..8f04a84accb3fdcb0ed42cf5275a5025416dd2b3 100644 --- a/dev/tests/unit/testsuite/Mage/Webapi/Model/Authorization/Loader/RuleTest.php +++ b/dev/tests/unit/testsuite/Mage/Webapi/Model/Authorization/Loader/RuleTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Model_Authorization_Loader_RuleTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Mage/Webapi/Model/Authorization/RoleFactoryTest.php b/dev/tests/unit/testsuite/Mage/Webapi/Model/Authorization/RoleFactoryTest.php index 368fbcb4f705c7e367055d04e4639167825a937c..d2841d3ffe558b39fcf2995b5d04b30a8c36bc6d 100644 --- a/dev/tests/unit/testsuite/Mage/Webapi/Model/Authorization/RoleFactoryTest.php +++ b/dev/tests/unit/testsuite/Mage/Webapi/Model/Authorization/RoleFactoryTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Model_Authorization_Role_FactoryTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Mage/Webapi/Model/Authorization/RoleLocatorTest.php b/dev/tests/unit/testsuite/Mage/Webapi/Model/Authorization/RoleLocatorTest.php index 7835a0f2d31cedc85d25fc5d8b30df5a87481ca0..4e5dd2f8308f034d58acacaf11b703332db9eea7 100644 --- a/dev/tests/unit/testsuite/Mage/Webapi/Model/Authorization/RoleLocatorTest.php +++ b/dev/tests/unit/testsuite/Mage/Webapi/Model/Authorization/RoleLocatorTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Model_Authorization_RoleLocatorTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Mage/Webapi/Model/AuthorizationTest.php b/dev/tests/unit/testsuite/Mage/Webapi/Model/AuthorizationTest.php index c03aa6ab3ad2e7fea8291ce72883fa68211f9022..92d2a62ff7c8ce3b4af0f58d4ae9af49f02fd81e 100644 --- a/dev/tests/unit/testsuite/Mage/Webapi/Model/AuthorizationTest.php +++ b/dev/tests/unit/testsuite/Mage/Webapi/Model/AuthorizationTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Model_AuthorizationTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Mage/Webapi/Model/Resource/Acl/RoleTest.php b/dev/tests/unit/testsuite/Mage/Webapi/Model/Resource/Acl/RoleTest.php index 5ae1ed76f284e1386c4797dad4f9d23ab2da11da..d4124a66d5698b813948c923d57c5a96964e908d 100644 --- a/dev/tests/unit/testsuite/Mage/Webapi/Model/Resource/Acl/RoleTest.php +++ b/dev/tests/unit/testsuite/Mage/Webapi/Model/Resource/Acl/RoleTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Model_Resource_Acl_RoleTest extends Mage_Webapi_Model_Resource_Acl_TestAbstract diff --git a/dev/tests/unit/testsuite/Mage/Webapi/Model/Resource/Acl/RuleTest.php b/dev/tests/unit/testsuite/Mage/Webapi/Model/Resource/Acl/RuleTest.php index 21cd020c17b2a47d40faca6c3780916a5811dc8f..c0108298a672968d97be22f337a3dd79a4e5079f 100644 --- a/dev/tests/unit/testsuite/Mage/Webapi/Model/Resource/Acl/RuleTest.php +++ b/dev/tests/unit/testsuite/Mage/Webapi/Model/Resource/Acl/RuleTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Model_Resource_Acl_RuleTest extends Mage_Webapi_Model_Resource_Acl_TestAbstract diff --git a/dev/tests/unit/testsuite/Mage/Webapi/Model/Resource/Acl/TestAbstract.php b/dev/tests/unit/testsuite/Mage/Webapi/Model/Resource/Acl/TestAbstract.php index 315dcef3a7faeff7a6e248064cc2cb2e1c42274c..6b141e41b8982099e3c1560960ce02f63aefd42f 100644 --- a/dev/tests/unit/testsuite/Mage/Webapi/Model/Resource/Acl/TestAbstract.php +++ b/dev/tests/unit/testsuite/Mage/Webapi/Model/Resource/Acl/TestAbstract.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Model_Resource_Acl_TestAbstract extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Mage/Webapi/Model/Resource/Acl/UserTest.php b/dev/tests/unit/testsuite/Mage/Webapi/Model/Resource/Acl/UserTest.php index 0d3ad14e84c39f0b93a30f582177c731e3cfd582..30003fdd3eae715f00d6c0ae068c5855617e19be 100644 --- a/dev/tests/unit/testsuite/Mage/Webapi/Model/Resource/Acl/UserTest.php +++ b/dev/tests/unit/testsuite/Mage/Webapi/Model/Resource/Acl/UserTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Model_Resource_Acl_UserTest extends Mage_Webapi_Model_Resource_Acl_TestAbstract diff --git a/dev/tests/unit/testsuite/Mage/Webapi/Model/Rest/Oauth/ServerTest.php b/dev/tests/unit/testsuite/Mage/Webapi/Model/Rest/Oauth/ServerTest.php index 5fbdac36a27bbd9283d987ef894d128ccec7fa71..22ed8a882454f06c535ed3663ee7fc109cf1e2c8 100644 --- a/dev/tests/unit/testsuite/Mage/Webapi/Model/Rest/Oauth/ServerTest.php +++ b/dev/tests/unit/testsuite/Mage/Webapi/Model/Rest/Oauth/ServerTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Model_Rest_Oauth_ServerTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Mage/Webapi/Model/Soap/AutoDiscoverTest.php b/dev/tests/unit/testsuite/Mage/Webapi/Model/Soap/AutoDiscoverTest.php index 9d36eec8e42964e6dd08d64b9ea86b5f3eba9489..1b58c2199a2055a09db7bd59c215d884a865db04 100644 --- a/dev/tests/unit/testsuite/Mage/Webapi/Model/Soap/AutoDiscoverTest.php +++ b/dev/tests/unit/testsuite/Mage/Webapi/Model/Soap/AutoDiscoverTest.php @@ -22,7 +22,7 @@ use Zend\Soap\Wsdl; * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Model_Soap_AutoDiscoverTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Mage/Webapi/Model/Soap/FaultTest.php b/dev/tests/unit/testsuite/Mage/Webapi/Model/Soap/FaultTest.php index b75bca46a56c4f871375f4397c16e960e29b0556..b2d146ab456b7434d95cb9ead1b13e6e7491d74b 100644 --- a/dev/tests/unit/testsuite/Mage/Webapi/Model/Soap/FaultTest.php +++ b/dev/tests/unit/testsuite/Mage/Webapi/Model/Soap/FaultTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Model_Soap_FaultTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Mage/Webapi/Model/Soap/Security/UsernameToken/NonceStorageTest.php b/dev/tests/unit/testsuite/Mage/Webapi/Model/Soap/Security/UsernameToken/NonceStorageTest.php index 712e38896c2db555a297c049042c48a15272ef3c..38044373d0b0ed3735cef49257547901007e320f 100644 --- a/dev/tests/unit/testsuite/Mage/Webapi/Model/Soap/Security/UsernameToken/NonceStorageTest.php +++ b/dev/tests/unit/testsuite/Mage/Webapi/Model/Soap/Security/UsernameToken/NonceStorageTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Webapi * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Webapi/Model/Soap/Security/UsernameTokenTest.php b/dev/tests/unit/testsuite/Mage/Webapi/Model/Soap/Security/UsernameTokenTest.php index 5a40d70b9b7919bc0dd8c8128ee373593dfc1573..dd072623f379fe9e66b9b7524b60460780a864ae 100644 --- a/dev/tests/unit/testsuite/Mage/Webapi/Model/Soap/Security/UsernameTokenTest.php +++ b/dev/tests/unit/testsuite/Mage/Webapi/Model/Soap/Security/UsernameTokenTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Webapi * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Webapi/Model/Soap/ServerTest.php b/dev/tests/unit/testsuite/Mage/Webapi/Model/Soap/ServerTest.php index b8bdf6127b00ed47bce26a732a7213eded434751..2f9441f02b2db61fba848457a68864dcb57058f2 100644 --- a/dev/tests/unit/testsuite/Mage/Webapi/Model/Soap/ServerTest.php +++ b/dev/tests/unit/testsuite/Mage/Webapi/Model/Soap/ServerTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Model_Soap_ServerTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Mage/Webapi/Model/Soap/Wsdl/ComplexTypeStrategy/ConfigBasedTest.php b/dev/tests/unit/testsuite/Mage/Webapi/Model/Soap/Wsdl/ComplexTypeStrategy/ConfigBasedTest.php index 935dde326c850b75788fd411dc11a5342fc71380..5012207f26261d51bac06241d5dbfc763c2d4c43 100644 --- a/dev/tests/unit/testsuite/Mage/Webapi/Model/Soap/Wsdl/ComplexTypeStrategy/ConfigBasedTest.php +++ b/dev/tests/unit/testsuite/Mage/Webapi/Model/Soap/Wsdl/ComplexTypeStrategy/ConfigBasedTest.php @@ -22,7 +22,7 @@ use Zend\Soap\Wsdl; * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Model_Soap_Wsdl_ComplexTypeStrategy_ConfigBasedTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Mage/Webapi/Model/Soap/Wsdl/FactoryTest.php b/dev/tests/unit/testsuite/Mage/Webapi/Model/Soap/Wsdl/FactoryTest.php index 588db4b8a90a349826c1918c984903e32b4e1f37..9e408c207e454c6f0a3d906998366290729d0406 100644 --- a/dev/tests/unit/testsuite/Mage/Webapi/Model/Soap/Wsdl/FactoryTest.php +++ b/dev/tests/unit/testsuite/Mage/Webapi/Model/Soap/Wsdl/FactoryTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Webapi_Model_Soap_Wsdl_FactoryTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Mage/Webapi/Model/Source/Acl/RoleTest.php b/dev/tests/unit/testsuite/Mage/Webapi/Model/Source/Acl/RoleTest.php index d2346635d43fbf43fb0ddb3a7fc6a4c8e3bd17ea..cf131431b583eef8a007449323f90ba62164451e 100644 --- a/dev/tests/unit/testsuite/Mage/Webapi/Model/Source/Acl/RoleTest.php +++ b/dev/tests/unit/testsuite/Mage/Webapi/Model/Source/Acl/RoleTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Webapi * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Mage/Webapi/Model/_files/acl.xml b/dev/tests/unit/testsuite/Mage/Webapi/Model/_files/acl.xml index c9fc2d120beaee1667cc0ade3369fd6f85b85ca2..aa08f2f64e5d57f2b6e7f3620db3f3e5ef199eb5 100644 --- a/dev/tests/unit/testsuite/Mage/Webapi/Model/_files/acl.xml +++ b/dev/tests/unit/testsuite/Mage/Webapi/Model/_files/acl.xml @@ -22,7 +22,7 @@ * @category Magento * @package Mage_Webapi * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/Mage/Webapi/Model/_files/acl.xsd b/dev/tests/unit/testsuite/Mage/Webapi/Model/_files/acl.xsd index 5416737be4174827017ab4067080ed52258e253f..e6854411194c4b4db762616b0265d4bd7250fb64 100644 --- a/dev/tests/unit/testsuite/Mage/Webapi/Model/_files/acl.xsd +++ b/dev/tests/unit/testsuite/Mage/Webapi/Model/_files/acl.xsd @@ -21,7 +21,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/Mage/Webapi/_files/soap_fault/soap_fault_expected_xmls.php b/dev/tests/unit/testsuite/Mage/Webapi/_files/soap_fault/soap_fault_expected_xmls.php index 6f78b1122653beb12d8c259ed296a13c296438c2..e9b4e59956394e5381f9a94f29685d68f8e3e6dd 100644 --- a/dev/tests/unit/testsuite/Mage/Webapi/_files/soap_fault/soap_fault_expected_xmls.php +++ b/dev/tests/unit/testsuite/Mage/Webapi/_files/soap_fault/soap_fault_expected_xmls.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ return array( diff --git a/dev/tests/unit/testsuite/Mage/Wishlist/controllers/IndexControllerTest.php b/dev/tests/unit/testsuite/Mage/Wishlist/controllers/IndexControllerTest.php index e370016edbca56a5541801294dce6454c9fa5900..6bd137a298fe8cc07ba0fd544a6247eeecf468d1 100644 --- a/dev/tests/unit/testsuite/Mage/Wishlist/controllers/IndexControllerTest.php +++ b/dev/tests/unit/testsuite/Mage/Wishlist/controllers/IndexControllerTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Wishlist * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Magento/Acl/Config/ReaderTest.php b/dev/tests/unit/testsuite/Magento/Acl/Config/ReaderTest.php index 7b6d1ccfdd4bb618279e9ed047e58e1aae3f9822..71167d4e4972c4ec4b19a97a6fde692e8559e11d 100644 --- a/dev/tests/unit/testsuite/Magento/Acl/Config/ReaderTest.php +++ b/dev/tests/unit/testsuite/Magento/Acl/Config/ReaderTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Backend * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ @@ -66,4 +66,9 @@ class Magento_Acl_Config_ReaderTest extends PHPUnit_Framework_TestCase $this->assertEqualXMLStructure($expectedResources->documentElement, $actualResources->documentElement, true); $this->assertEquals($expectedResources, $actualResources); } + + public function testGetSchemaFile() + { + $this->assertFileExists($this->_model->getSchemaFile()); + } } diff --git a/dev/tests/unit/testsuite/Magento/Acl/Loader/DefaultTest.php b/dev/tests/unit/testsuite/Magento/Acl/Loader/DefaultTest.php index bb9202b2abf422aa82f616c9bd4ef996e3e96d1f..bbf0260f32056f17e07b7cc200506cabbac3445a 100644 --- a/dev/tests/unit/testsuite/Magento/Acl/Loader/DefaultTest.php +++ b/dev/tests/unit/testsuite/Magento/Acl/Loader/DefaultTest.php @@ -20,7 +20,7 @@ * * @category Magento * @package unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Magento/Acl/ResourceFactoryTest.php b/dev/tests/unit/testsuite/Magento/Acl/ResourceFactoryTest.php index 9621b55010292371a3cce47f1db93a41a99b3afb..80a4fc1b19a34e434ad76fd8b88fc63fe4a944aa 100644 --- a/dev/tests/unit/testsuite/Magento/Acl/ResourceFactoryTest.php +++ b/dev/tests/unit/testsuite/Magento/Acl/ResourceFactoryTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Magento_Acl_ResourceFactoryTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Magento/Acl/_files/acl_1.xml b/dev/tests/unit/testsuite/Magento/Acl/_files/acl_1.xml index 52ab98a6fdebfc1534b675bcb50f1f472a87e741..77d5e71ca1d11231f6f712095ad9d21953a98c88 100644 --- a/dev/tests/unit/testsuite/Magento/Acl/_files/acl_1.xml +++ b/dev/tests/unit/testsuite/Magento/Acl/_files/acl_1.xml @@ -22,7 +22,7 @@ * @category Magento * @package Framework * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/Magento/Acl/_files/acl_2.xml b/dev/tests/unit/testsuite/Magento/Acl/_files/acl_2.xml index 1ab0cb369717fe7a260d0c0577ffb957b7256b84..8282d9a0d6682d14ca619b8b2c4a0d11dfc4ffcf 100644 --- a/dev/tests/unit/testsuite/Magento/Acl/_files/acl_2.xml +++ b/dev/tests/unit/testsuite/Magento/Acl/_files/acl_2.xml @@ -22,7 +22,7 @@ * @category Magento * @package Framework * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/Magento/Acl/_files/acl_merged.xml b/dev/tests/unit/testsuite/Magento/Acl/_files/acl_merged.xml index 0234060b27fe6f2310d4aa44bf4b313481536531..5bf3be01d7148e8d2b45f98ceb7bd573b78dbd57 100644 --- a/dev/tests/unit/testsuite/Magento/Acl/_files/acl_merged.xml +++ b/dev/tests/unit/testsuite/Magento/Acl/_files/acl_merged.xml @@ -22,7 +22,7 @@ * @category Magento * @package Framework * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/Magento/Authorization/Policy/AclTest.php b/dev/tests/unit/testsuite/Magento/Authorization/Policy/AclTest.php index 128fb7cc5ac70e691dc3c45c1f59e422a4e08162..0dabec8684afd32eef9422f4f086d601cf73e52f 100644 --- a/dev/tests/unit/testsuite/Magento/Authorization/Policy/AclTest.php +++ b/dev/tests/unit/testsuite/Magento/Authorization/Policy/AclTest.php @@ -20,7 +20,7 @@ * * @category Magento * @package unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Magento/Authorization/Policy/DefaultTest.php b/dev/tests/unit/testsuite/Magento/Authorization/Policy/DefaultTest.php index 387d4b5cd1e7d1346bf8befe01e424b4bf3f7604..2ee0811a8ffa0e1e4c5b357b7a4bde531907cef4 100644 --- a/dev/tests/unit/testsuite/Magento/Authorization/Policy/DefaultTest.php +++ b/dev/tests/unit/testsuite/Magento/Authorization/Policy/DefaultTest.php @@ -20,7 +20,7 @@ * * @category Magento * @package unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Magento/Autoload/ClassMapTest.php b/dev/tests/unit/testsuite/Magento/Autoload/ClassMapTest.php index 49e9968b193f63e4d13e913f9b6f301bab929091..4beec7c93691151305aa2401e9e0b9bd66a8f3a8 100644 --- a/dev/tests/unit/testsuite/Magento/Autoload/ClassMapTest.php +++ b/dev/tests/unit/testsuite/Magento/Autoload/ClassMapTest.php @@ -18,7 +18,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Magento/Autoload/IncludePathTest.php b/dev/tests/unit/testsuite/Magento/Autoload/IncludePathTest.php index 1cff9c187d6fcc1521e255c6c660abea1791a8b9..cdb1a46d5eaa10adce8594590bcac923bbb21dd3 100644 --- a/dev/tests/unit/testsuite/Magento/Autoload/IncludePathTest.php +++ b/dev/tests/unit/testsuite/Magento/Autoload/IncludePathTest.php @@ -18,7 +18,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ @@ -63,12 +63,40 @@ class Magento_Autoload_IncludePathTest extends PHPUnit_Framework_TestCase ); } - public function testAddIncludePath() + /** + * @dataProvider addIncludePathDataProvider + * + * @param string|array $fixturePath + * @param bool $prepend + * @param string $expectedIncludePath + */ + public function testAddIncludePath($fixturePath, $prepend, $expectedIncludePath) { - $fixture = uniqid(); - $this->assertNotContains($fixture, get_include_path()); - Magento_Autoload_IncludePath::addIncludePath(array($fixture), true); - $this->assertStringStartsWith($fixture . PATH_SEPARATOR, get_include_path()); + $expectedIncludePath = str_replace('%include_path%', get_include_path(), $expectedIncludePath); + $this->assertNotEquals($expectedIncludePath, get_include_path()); + Magento_Autoload_IncludePath::addIncludePath($fixturePath, $prepend); + $this->assertEquals($expectedIncludePath, get_include_path()); + } + + public function addIncludePathDataProvider() + { + $pathSeparator = PATH_SEPARATOR; + return array( + 'prepend string' => array( + 'fixture_path', true, "fixture_path{$pathSeparator}%include_path%" + ), + 'prepend array' => array( + array('fixture_path_one', 'fixture_path_two'), true, + "fixture_path_one{$pathSeparator}fixture_path_two{$pathSeparator}%include_path%" + ), + 'append string' => array( + 'fixture_path', false, "%include_path%{$pathSeparator}fixture_path" + ), + 'append array' => array( + array('fixture_path_one', 'fixture_path_two'), false, + "%include_path%{$pathSeparator}fixture_path_one{$pathSeparator}fixture_path_two" + ), + ); } /** diff --git a/dev/tests/unit/testsuite/Magento/Autoload/_files/Ns/TestClass.php b/dev/tests/unit/testsuite/Magento/Autoload/_files/Ns/TestClass.php index b89a2a1a2027de5872f46ff4dfd6b677a51adb97..5d1b6cf07b5880222d9eccf0e3da4df295fc7266 100644 --- a/dev/tests/unit/testsuite/Magento/Autoload/_files/Ns/TestClass.php +++ b/dev/tests/unit/testsuite/Magento/Autoload/_files/Ns/TestClass.php @@ -20,7 +20,7 @@ * * @category Magento * @package unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Magento/Autoload/_files/TestClass.php b/dev/tests/unit/testsuite/Magento/Autoload/_files/TestClass.php index e7b8d462fad5756e2f01710ca543aa08fb0ebd6b..0c7f7ddc287d4acf68c10cae7d8db450c88ece3a 100644 --- a/dev/tests/unit/testsuite/Magento/Autoload/_files/TestClass.php +++ b/dev/tests/unit/testsuite/Magento/Autoload/_files/TestClass.php @@ -20,7 +20,7 @@ * * @category Magento * @package unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Magento/Autoload/_files/TestMap.php b/dev/tests/unit/testsuite/Magento/Autoload/_files/TestMap.php index 1c004f1c51ad5a583478e41b053991fdabe1697b..8ed3bc6f38aa0e749e50ded49444cc4fab6e1735 100644 --- a/dev/tests/unit/testsuite/Magento/Autoload/_files/TestMap.php +++ b/dev/tests/unit/testsuite/Magento/Autoload/_files/TestMap.php @@ -20,7 +20,7 @@ * * @category Magento * @package unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Magento/Autoload/_files/constant.php b/dev/tests/unit/testsuite/Magento/Autoload/_files/constant.php index c6a55949593fa4ef4f10ac042be03114625dc296..abd1a4ed7405a070975beba2337a78e6aa32c21d 100644 --- a/dev/tests/unit/testsuite/Magento/Autoload/_files/constant.php +++ b/dev/tests/unit/testsuite/Magento/Autoload/_files/constant.php @@ -18,7 +18,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ define('TEST_FIXTURE', $class); diff --git a/dev/tests/unit/testsuite/Magento/Config/DomTest.php b/dev/tests/unit/testsuite/Magento/Config/DomTest.php index 60d6840f462ebfed215f3399eaf4df75194f8552..4a6ffa8bde8e6bedf43cfc92a8ad37743189495a 100644 --- a/dev/tests/unit/testsuite/Magento/Config/DomTest.php +++ b/dev/tests/unit/testsuite/Magento/Config/DomTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Framework * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Magento/Config/ThemeTest.php b/dev/tests/unit/testsuite/Magento/Config/ThemeTest.php index 45a75977fdc3f72937672d8ff97702cb4cebee74..ca0443a0bc572144587ba574b4b96b101029c942 100644 --- a/dev/tests/unit/testsuite/Magento/Config/ThemeTest.php +++ b/dev/tests/unit/testsuite/Magento/Config/ThemeTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Framework * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Magento/Config/ViewTest.php b/dev/tests/unit/testsuite/Magento/Config/ViewTest.php index 2de55901cc9540a2a885ecb45a4f0e8eff237be4..985fc42a32747af74d4a8f093f5765969e04dba6 100644 --- a/dev/tests/unit/testsuite/Magento/Config/ViewTest.php +++ b/dev/tests/unit/testsuite/Magento/Config/ViewTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Framework * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Magento/Config/XsdTest.php b/dev/tests/unit/testsuite/Magento/Config/XsdTest.php index bec0c3f66e96a4eceabdad5568c1fb39f70ddb30..82b5447ea7b61e5dab84d20d71798ee7303ad164 100644 --- a/dev/tests/unit/testsuite/Magento/Config/XsdTest.php +++ b/dev/tests/unit/testsuite/Magento/Config/XsdTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Framework * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ @@ -38,7 +38,7 @@ class Magento_Config_XsdTest extends PHPUnit_Framework_TestCase $dom = new DOMDocument(); $dom->load(__DIR__ . "/_files/{$invalidXmlFile}"); libxml_use_internal_errors(true); - $result = $dom->schemaValidate(__DIR__ . "/../../../../../../lib/Magento/Config/{$xsdFile}"); + $result = $dom->schemaValidate(__DIR__ . "/../../../../../../lib/Magento/Config/etc/{$xsdFile}"); $errorsQty = count(libxml_get_errors()); libxml_use_internal_errors(false); $this->assertFalse($result); diff --git a/dev/tests/unit/testsuite/Magento/Config/_files/dom/ambiguous_merged.xml b/dev/tests/unit/testsuite/Magento/Config/_files/dom/ambiguous_merged.xml index dd17d75adf2b3732967b19927b394f77723ad6f7..d22f0190e902b4083b80988b174359752334540b 100644 --- a/dev/tests/unit/testsuite/Magento/Config/_files/dom/ambiguous_merged.xml +++ b/dev/tests/unit/testsuite/Magento/Config/_files/dom/ambiguous_merged.xml @@ -22,7 +22,7 @@ * @category Magento * @package Framework * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/Magento/Config/_files/dom/ambiguous_new_one.xml b/dev/tests/unit/testsuite/Magento/Config/_files/dom/ambiguous_new_one.xml index dd17d75adf2b3732967b19927b394f77723ad6f7..d22f0190e902b4083b80988b174359752334540b 100644 --- a/dev/tests/unit/testsuite/Magento/Config/_files/dom/ambiguous_new_one.xml +++ b/dev/tests/unit/testsuite/Magento/Config/_files/dom/ambiguous_new_one.xml @@ -22,7 +22,7 @@ * @category Magento * @package Framework * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/Magento/Config/_files/dom/ambiguous_new_two.xml b/dev/tests/unit/testsuite/Magento/Config/_files/dom/ambiguous_new_two.xml index 23b9943004cd709b188b4ef1f8f691f72c33c5c3..520167d39b2c1387df34f62245a1e3101397511d 100644 --- a/dev/tests/unit/testsuite/Magento/Config/_files/dom/ambiguous_new_two.xml +++ b/dev/tests/unit/testsuite/Magento/Config/_files/dom/ambiguous_new_two.xml @@ -22,7 +22,7 @@ * @category Magento * @package Framework * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/Magento/Config/_files/dom/ambiguous_one.xml b/dev/tests/unit/testsuite/Magento/Config/_files/dom/ambiguous_one.xml index 3d0f601e64b078fe058662f295a970a76943b59c..7dc42c05e135ec5b18ca080d1b517a8ba4f927e3 100644 --- a/dev/tests/unit/testsuite/Magento/Config/_files/dom/ambiguous_one.xml +++ b/dev/tests/unit/testsuite/Magento/Config/_files/dom/ambiguous_one.xml @@ -22,7 +22,7 @@ * @category Magento * @package Framework * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/Magento/Config/_files/dom/ambiguous_two.xml b/dev/tests/unit/testsuite/Magento/Config/_files/dom/ambiguous_two.xml index 6fc3e10d0b0c83a865b81f944a70020d51096695..fa94405413a02021107b2c99a53801d91b9a1860 100644 --- a/dev/tests/unit/testsuite/Magento/Config/_files/dom/ambiguous_two.xml +++ b/dev/tests/unit/testsuite/Magento/Config/_files/dom/ambiguous_two.xml @@ -22,7 +22,7 @@ * @category Magento * @package Framework * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/Magento/Config/_files/dom/ids.xml b/dev/tests/unit/testsuite/Magento/Config/_files/dom/ids.xml index 072a0ee31582bd89fb9d02fec459ec5dd3c77b5f..a38f2bc46b33298bbfd3aa38db7b5a9d827f4fd4 100644 --- a/dev/tests/unit/testsuite/Magento/Config/_files/dom/ids.xml +++ b/dev/tests/unit/testsuite/Magento/Config/_files/dom/ids.xml @@ -22,7 +22,7 @@ * @category Magento * @package Framework * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/Magento/Config/_files/dom/ids_merged.xml b/dev/tests/unit/testsuite/Magento/Config/_files/dom/ids_merged.xml index 0b98a8734b4dbc63cb8fef86f861feebc967a41e..4bd106587ff8ee100e8397223ab437cb63d3140c 100644 --- a/dev/tests/unit/testsuite/Magento/Config/_files/dom/ids_merged.xml +++ b/dev/tests/unit/testsuite/Magento/Config/_files/dom/ids_merged.xml @@ -22,7 +22,7 @@ * @category Magento * @package Framework * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/Magento/Config/_files/dom/ids_new.xml b/dev/tests/unit/testsuite/Magento/Config/_files/dom/ids_new.xml index cf2f8346ba21ddc7973904ad8e45b01af0400f62..c964b9424136e9a17d8cac842cb38f0fd05cc8f5 100644 --- a/dev/tests/unit/testsuite/Magento/Config/_files/dom/ids_new.xml +++ b/dev/tests/unit/testsuite/Magento/Config/_files/dom/ids_new.xml @@ -22,7 +22,7 @@ * @category Magento * @package Framework * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/Magento/Config/_files/dom/no_ids.xml b/dev/tests/unit/testsuite/Magento/Config/_files/dom/no_ids.xml index d26a7c5f633a69baa084959612795424bd765b78..2c9a2403c369c58ce9b3e04a46bf559659cc37b0 100644 --- a/dev/tests/unit/testsuite/Magento/Config/_files/dom/no_ids.xml +++ b/dev/tests/unit/testsuite/Magento/Config/_files/dom/no_ids.xml @@ -22,7 +22,7 @@ * @category Magento * @package Framework * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/Magento/Config/_files/dom/no_ids_merged.xml b/dev/tests/unit/testsuite/Magento/Config/_files/dom/no_ids_merged.xml index d4f93ca97cc1fec4e83f6022043455dcf34cc765..3ebfe45107af0304b8341ba23fbad584a022d539 100644 --- a/dev/tests/unit/testsuite/Magento/Config/_files/dom/no_ids_merged.xml +++ b/dev/tests/unit/testsuite/Magento/Config/_files/dom/no_ids_merged.xml @@ -22,7 +22,7 @@ * @category Magento * @package Framework * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/Magento/Config/_files/dom/no_ids_new.xml b/dev/tests/unit/testsuite/Magento/Config/_files/dom/no_ids_new.xml index 7c390af6d1ab32571131c013be3e1616d896438c..012c78d29d27b95cc87b17066a77ca40dc6e28b4 100644 --- a/dev/tests/unit/testsuite/Magento/Config/_files/dom/no_ids_new.xml +++ b/dev/tests/unit/testsuite/Magento/Config/_files/dom/no_ids_new.xml @@ -22,7 +22,7 @@ * @category Magento * @package Framework * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/Magento/Config/_files/packages/default/default/theme.xml b/dev/tests/unit/testsuite/Magento/Config/_files/packages/default/default/theme.xml index b86882116190a91f85eab825209f1962217e4770..63a382dd154dddf704fe5a8f4ec41308d92cd77e 100644 --- a/dev/tests/unit/testsuite/Magento/Config/_files/packages/default/default/theme.xml +++ b/dev/tests/unit/testsuite/Magento/Config/_files/packages/default/default/theme.xml @@ -22,7 +22,7 @@ * @category Magento * @package Framework * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/Magento/Config/_files/packages/default/test/theme.xml b/dev/tests/unit/testsuite/Magento/Config/_files/packages/default/test/theme.xml index ee748e1580489af54583aa9f1446ce35a68fc3b2..a40df57691561f38f922effcdf79c348c8e082ca 100644 --- a/dev/tests/unit/testsuite/Magento/Config/_files/packages/default/test/theme.xml +++ b/dev/tests/unit/testsuite/Magento/Config/_files/packages/default/test/theme.xml @@ -22,7 +22,7 @@ * @category Magento * @package Framework * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/Magento/Config/_files/packages/default/test2/theme.xml b/dev/tests/unit/testsuite/Magento/Config/_files/packages/default/test2/theme.xml index f36929d9d4671b97fe41e806960da2ce996ce7f9..0c893f32c59eabc878f0fccccfbdb140c2a7d4a9 100644 --- a/dev/tests/unit/testsuite/Magento/Config/_files/packages/default/test2/theme.xml +++ b/dev/tests/unit/testsuite/Magento/Config/_files/packages/default/test2/theme.xml @@ -22,7 +22,7 @@ * @category Magento * @package Framework * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/Magento/Config/_files/packages/test/default/theme.xml b/dev/tests/unit/testsuite/Magento/Config/_files/packages/test/default/theme.xml index 261989b11ed91e898e1331e37a67d009b37be320..5aee7141e604c82818c9ecf373cbd709de5f7442 100644 --- a/dev/tests/unit/testsuite/Magento/Config/_files/packages/test/default/theme.xml +++ b/dev/tests/unit/testsuite/Magento/Config/_files/packages/test/default/theme.xml @@ -22,7 +22,7 @@ * @category Magento * @package Framework * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/Magento/Config/_files/packages/test/external_package_descendant/theme.xml b/dev/tests/unit/testsuite/Magento/Config/_files/packages/test/external_package_descendant/theme.xml index 5b4831b4b615603c2d062f6568bd737646d1ae7f..cad496b675c4a3aeb7b80ca25cba2b7a510646fb 100644 --- a/dev/tests/unit/testsuite/Magento/Config/_files/packages/test/external_package_descendant/theme.xml +++ b/dev/tests/unit/testsuite/Magento/Config/_files/packages/test/external_package_descendant/theme.xml @@ -22,7 +22,7 @@ * @category Magento * @package Framework * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/Magento/Config/_files/sample.xsd b/dev/tests/unit/testsuite/Magento/Config/_files/sample.xsd index 71d25b348156815fd7023b1884fa316b27d04147..cc79242d2dd2db10af131b56a888ebf23cab1e50 100644 --- a/dev/tests/unit/testsuite/Magento/Config/_files/sample.xsd +++ b/dev/tests/unit/testsuite/Magento/Config/_files/sample.xsd @@ -22,7 +22,7 @@ * @category Magento * @package Framework * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/Magento/Config/_files/theme_invalid.xml b/dev/tests/unit/testsuite/Magento/Config/_files/theme_invalid.xml index 4a70e16b22631f0405be74225834d565e520c5ac..40c1038a3e9d013e2ddec9627ff4f9f83039f9b5 100644 --- a/dev/tests/unit/testsuite/Magento/Config/_files/theme_invalid.xml +++ b/dev/tests/unit/testsuite/Magento/Config/_files/theme_invalid.xml @@ -22,7 +22,7 @@ * @category Magento * @package Framework * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/Magento/Config/_files/view_invalid.xml b/dev/tests/unit/testsuite/Magento/Config/_files/view_invalid.xml index f2e62076cc3bcd5cb67dab4664fff4bf2d4839f5..a0710d4a1d023a5d6535463abf754c183567cb9f 100644 --- a/dev/tests/unit/testsuite/Magento/Config/_files/view_invalid.xml +++ b/dev/tests/unit/testsuite/Magento/Config/_files/view_invalid.xml @@ -22,7 +22,7 @@ * @category Magento * @package Framework * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/Magento/Config/_files/view_one.xml b/dev/tests/unit/testsuite/Magento/Config/_files/view_one.xml index d7f0dadd3843a437e0df9693480e078244d644e3..a06203b4bfe30c41157b6d56ba238c14f23ec4ae 100644 --- a/dev/tests/unit/testsuite/Magento/Config/_files/view_one.xml +++ b/dev/tests/unit/testsuite/Magento/Config/_files/view_one.xml @@ -22,7 +22,7 @@ * @category Magento * @package Framework * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/Magento/Config/_files/view_two.xml b/dev/tests/unit/testsuite/Magento/Config/_files/view_two.xml index 155cb8ccf45e16b0c7111742f4d23b800b6a40f3..d9011ffd555a691a93e5acf955c8e0a97584cb5e 100644 --- a/dev/tests/unit/testsuite/Magento/Config/_files/view_two.xml +++ b/dev/tests/unit/testsuite/Magento/Config/_files/view_two.xml @@ -22,7 +22,7 @@ * @category Magento * @package Framework * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/Magento/Convert/ExcelTest.php b/dev/tests/unit/testsuite/Magento/Convert/ExcelTest.php index 11705a77815cc68eeb715d717a67ec5513f79807..0f96c289892731b6dcf2f9e59bcc35bb6c724793 100644 --- a/dev/tests/unit/testsuite/Magento/Convert/ExcelTest.php +++ b/dev/tests/unit/testsuite/Magento/Convert/ExcelTest.php @@ -20,7 +20,7 @@ * * @category Magento * @package unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Magento/Crypt/_files/_cipher_info.php b/dev/tests/unit/testsuite/Magento/Crypt/_files/_cipher_info.php index f1406932f0d26da5c4be987598d13ab94831a5c4..321ac285e7aa02dc063fcb1df7ec57d5423521d6 100755 --- a/dev/tests/unit/testsuite/Magento/Crypt/_files/_cipher_info.php +++ b/dev/tests/unit/testsuite/Magento/Crypt/_files/_cipher_info.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ ?> diff --git a/dev/tests/unit/testsuite/Magento/Crypt/_files/_crypt_fixtures.php b/dev/tests/unit/testsuite/Magento/Crypt/_files/_crypt_fixtures.php index 25ab79c1d6957e259614f1bc32d67922af840d0e..ecf92efc9e015c585e2b62a5f8fb025d94d3419c 100755 --- a/dev/tests/unit/testsuite/Magento/Crypt/_files/_crypt_fixtures.php +++ b/dev/tests/unit/testsuite/Magento/Crypt/_files/_crypt_fixtures.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ ?> diff --git a/dev/tests/unit/testsuite/Magento/CryptTest.php b/dev/tests/unit/testsuite/Magento/CryptTest.php index 71f64580451105dd764493f7ea8468e10ee223f8..93774446fade5069f32eea3892e3d9d7dc75694a 100755 --- a/dev/tests/unit/testsuite/Magento/CryptTest.php +++ b/dev/tests/unit/testsuite/Magento/CryptTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Crypt * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Magento/Data/GraphTest.php b/dev/tests/unit/testsuite/Magento/Data/GraphTest.php index 6b5fd22dc787f52b8b375be5662b1340657d980c..7710c29cd0c076c1feeff1ac44876df031df419b 100644 --- a/dev/tests/unit/testsuite/Magento/Data/GraphTest.php +++ b/dev/tests/unit/testsuite/Magento/Data/GraphTest.php @@ -18,7 +18,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Magento_Data_GraphTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Magento/Data/StructureTest.php b/dev/tests/unit/testsuite/Magento/Data/StructureTest.php index ed21a9c4d8ac865f44b5193f6f83e1db25d8cbf0..f96e073e1b567e2cd351d5222ea32a3cdfdc78b9 100644 --- a/dev/tests/unit/testsuite/Magento/Data/StructureTest.php +++ b/dev/tests/unit/testsuite/Magento/Data/StructureTest.php @@ -20,7 +20,7 @@ * * @category Magento * @package unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Magento_Data_StructureTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Magento/Di/InstanceManager/ZendTest.php b/dev/tests/unit/testsuite/Magento/Di/InstanceManager/ZendTest.php index 5bf42fc62a13e9610333c8fc8cdfc51faf4ab74d..4afa8ab291f72eedae62e6a0d4fcdadc898119b2 100644 --- a/dev/tests/unit/testsuite/Magento/Di/InstanceManager/ZendTest.php +++ b/dev/tests/unit/testsuite/Magento/Di/InstanceManager/ZendTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Magento/Di/ZendTest.php b/dev/tests/unit/testsuite/Magento/Di/ZendTest.php index 0d9d7779c99d7ca4fbc22d197e3abdb45898422e..dc5960f118fc3262b86452cdd7bc98cd12b47ce8 100644 --- a/dev/tests/unit/testsuite/Magento/Di/ZendTest.php +++ b/dev/tests/unit/testsuite/Magento/Di/ZendTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Di * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Magento/Filesystem/Stream/ModeTest.php b/dev/tests/unit/testsuite/Magento/Filesystem/Stream/ModeTest.php new file mode 100644 index 0000000000000000000000000000000000000000..f39f1b1be64b24746ebda21e77f7345eeeca0c89 --- /dev/null +++ b/dev/tests/unit/testsuite/Magento/Filesystem/Stream/ModeTest.php @@ -0,0 +1,273 @@ +<?php +/** + * Unit Test for Magento_Filesystem_Stream_Mode + * + * Magento + * + * NOTICE OF LICENSE + * + * This source file is subject to the Open Software License (OSL 3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * http://opensource.org/licenses/osl-3.0.php + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@magentocommerce.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade Magento to newer + * versions in the future. If you wish to customize Magento for your + * needs please refer to http://www.magentocommerce.com for more information. + * + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) + * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) + */ +class Magento_Filesystem_Stream_ModeTest extends PHPUnit_Framework_TestCase +{ + /** + * @dataProvider modesDataProvider + * @param string $mode + * @param string $base + * @param bool $hasPlus + * @param string $flag + */ + public function testConstructor($mode, $base, $hasPlus, $flag) + { + $streamMode = new Magento_Filesystem_Stream_Mode($mode); + $this->assertAttributeEquals($base, '_base', $streamMode); + $this->assertAttributeEquals($hasPlus, '_plus', $streamMode); + $this->assertAttributeEquals($flag, '_flag', $streamMode); + $this->assertEquals($mode, $streamMode->getMode()); + } + + /** + * @return array + */ + public function modesDataProvider() + { + return array( + array('r', 'r', false, null), + array('rb', 'r', false, 'b'), + array('r+', 'r', true, null), + array('r+b', 'r', true, 'b'), + array('w', 'w', false, null), + array('wb', 'w', false, 'b'), + array('w+', 'w', true, null), + array('w+b', 'w', true, 'b'), + array('a', 'a', false, null), + array('ab', 'a', false, 'b'), + array('a+', 'a', true, null), + array('a+b', 'a', true, 'b'), + array('x', 'x', false, null), + array('xb', 'x', false, 'b'), + array('x+', 'x', true, null), + array('x+b', 'x', true, 'b'), + array('c', 'c', false, null), + array('cb', 'c', false, 'b'), + array('c+', 'c', true, null), + array('c+b', 'c', true, 'b'), + ); + } + + /** + * @dataProvider rModesDataProvider + * @param string $mode + */ + public function testAllowRead($mode) + { + $streamMode = new Magento_Filesystem_Stream_Mode($mode); + $this->assertTrue($streamMode->allowsRead()); + } + + /** + * @return array + */ + public function rModesDataProvider() + { + return array(array('r'), array('rb')) + $this->plusModesDataProvider(); + } + + /** + * @dataProvider wModesDataProvider + * @param string $mode + */ + public function testAllowsWrite($mode) + { + $streamMode = new Magento_Filesystem_Stream_Mode($mode); + $this->assertTrue($streamMode->allowsWrite()); + } + + /** + * @return array + */ + public function wModesDataProvider() + { + return array( + array('w'), array('wb'), + array('a'), array('ab'), + array('x'), array('xb'), + array('c'), array('cb'), + ) + $this->plusModesDataProvider(); + } + + /** + * @dataProvider nonXModesDataProvider + * @param string $mode + */ + public function testAllowsExistingFileOpening($mode) + { + $streamMode = new Magento_Filesystem_Stream_Mode($mode); + $this->assertTrue($streamMode->allowsExistingFileOpening()); + } + + /** + * @return array + */ + public function nonXModesDataProvider() + { + return array( + array('r'), array('rb'), + array('w'), array('wb'), + array('a'), array('ab'), + array('c'), array('cb'), + array('r+'), array('r+b'), + array('w+'), array('w+b'), + array('a+'), array('a+b'), + array('c+'), array('c+b'), + ); + } + + /** + * @dataProvider nonRModesDataProvider + * @param string $mode + */ + public function testAllowsNewFileOpening($mode) + { + $streamMode = new Magento_Filesystem_Stream_Mode($mode); + $this->assertTrue($streamMode->allowsNewFileOpening()); + } + + /** + * @return array + */ + public function nonRModesDataProvider() + { + return array( + array('x'), array('xb'), + array('w'), array('wb'), + array('a'), array('ab'), + array('c'), array('cb'), + array('w+'), array('w+b'), + array('a+'), array('a+b'), + array('c+'), array('c+b'), + ); + } + + /** + * @dataProvider onlyWModesDataProvider + * @param string $mode + */ + public function testImpliesExistingContentDeletion($mode) + { + $streamMode = new Magento_Filesystem_Stream_Mode($mode); + $this->assertTrue($streamMode->impliesExistingContentDeletion()); + } + + /** + * @return array + */ + public function onlyWModesDataProvider() + { + return array( + array('w'), array('wb'), + array('w+'), array('w+b'), + ); + } + + /** + * @dataProvider nonAModesDataProvider + * @param string $mode + */ + public function testImpliesPositioningCursorAtTheBeginning($mode) + { + $streamMode = new Magento_Filesystem_Stream_Mode($mode); + $this->assertTrue($streamMode->impliesPositioningCursorAtTheBeginning()); + } + + /** + * @return array + */ + public function nonAModesDataProvider() + { + return array( + array('r'), array('rb'), + array('x'), array('xb'), + array('w'), array('wb'), + array('c'), array('cb'), + array('w+'), array('w+b'), + array('r+'), array('r+b'), + array('c+'), array('c+b'), + ); + } + + /** + * @dataProvider onlyAModesDataProvider + * @param string $mode + */ + public function testImpliesPositioningCursorAtTheEnd($mode) + { + $streamMode = new Magento_Filesystem_Stream_Mode($mode); + $this->assertTrue($streamMode->impliesPositioningCursorAtTheEnd()); + } + + /** + * @return array + */ + public function onlyAModesDataProvider() + { + return array( + array('a'), array('ab'), + array('a+'), array('a+b'), + ); + } + + /** + * @dataProvider onlyBModesDataProvider + * @param string $mode + */ + public function testIsBinary($mode) + { + $streamMode = new Magento_Filesystem_Stream_Mode($mode); + $this->assertTrue($streamMode->isBinary()); + } + + /** + * @return array + */ + public function onlyBModesDataProvider() + { + return array( + array('rb'), array('r+b'), + array('ab'), array('a+b'), + array('wb'), array('w+b'), + array('xb'), array('x+b'), + array('cb'), array('c+b'), + ); + } + + + /** + * @return array + */ + public function plusModesDataProvider() + { + return array( + array('r+'), array('r+b'), + array('w+'), array('w+b'), + array('a+'), array('a+b'), + array('x+'), array('x+b'), + array('c+'), array('c+b'), + ); + } +} diff --git a/dev/tests/unit/testsuite/Magento/FilesystemTest.php b/dev/tests/unit/testsuite/Magento/FilesystemTest.php new file mode 100644 index 0000000000000000000000000000000000000000..f1ce61695ee307e7814354e9f029065f26db3855 --- /dev/null +++ b/dev/tests/unit/testsuite/Magento/FilesystemTest.php @@ -0,0 +1,826 @@ +<?php +/** + * Unit Test for Magento_Filesystem + * + * Magento + * + * NOTICE OF LICENSE + * + * This source file is subject to the Open Software License (OSL 3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * http://opensource.org/licenses/osl-3.0.php + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@magentocommerce.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade Magento to newer + * versions in the future. If you wish to customize Magento for your + * needs please refer to http://www.magentocommerce.com for more information. + * + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) + * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) + */ +class Magento_FilesystemTest extends PHPUnit_Framework_TestCase +{ + public function testSetWorkingDirectory() + { + $filesystem = new Magento_Filesystem($this->_getDefaultAdapterMock()); + $filesystem->setWorkingDirectory('/tmp'); + $this->assertAttributeEquals('/tmp', '_workingDirectory', $filesystem); + } + + /** + * @expectedException InvalidArgumentException + * @exceptedExceptionMessage Working directory "/tmp" does not exists + */ + public function testSetWorkingDirectoryException() + { + $adapterMock = $this->getMockBuilder('Magento_Filesystem_AdapterInterface') + ->getMock(); + $adapterMock->expects($this->once()) + ->method('isDirectory') + ->with('/tmp') + ->will($this->returnValue(false)); + $filesystem = new Magento_Filesystem($adapterMock); + $filesystem->setWorkingDirectory('/tmp'); + } + + /** + * @dataProvider allowCreateDirectoriesDataProvider + * @param bool $allow + * @param int $mode + */ + public function testSetIsAllowCreateDirectories($allow, $mode) + { + $adapterMock = $this->getMockBuilder('Magento_Filesystem_AdapterInterface') + ->getMock(); + $filesystem = new Magento_Filesystem($adapterMock); + $this->assertSame($filesystem, $filesystem->setIsAllowCreateDirectories($allow, $mode)); + $this->assertAttributeEquals($allow, '_isAllowCreateDirs', $filesystem); + if (!$mode) { + $mode = 0777; + } + $this->assertAttributeEquals($mode, '_newDirPermissions', $filesystem); + } + + /** + * @return array + */ + public function allowCreateDirectoriesDataProvider() + { + return array( + array(true, 0644), + array(false, null) + ); + } + + /** + * @dataProvider twoFilesOperationsValidDataProvider + * + * @param string $method + * @param string $checkMethod + * @param string $source + * @param string $target + * @param string|null $workingDirectory + * @param string|null $targetDir + */ + public function testTwoFilesOperation($method, $checkMethod, $source, $target, $workingDirectory = null, + $targetDir = null + ) { + $adapterMock = $this->getMockBuilder('Magento_Filesystem_AdapterInterface') + ->getMock(); + $adapterMock->expects($this->exactly(2)) + ->method('isDirectory') + ->will($this->returnValue(true)); + $adapterMock->expects($this->once()) + ->method($checkMethod) + ->will($this->returnValue(true)); + $adapterMock->expects($this->once()) + ->method($method) + ->with($source, $target); + + $filesystem = new Magento_Filesystem($adapterMock); + $filesystem->setWorkingDirectory('/tmp'); + $filesystem->$method($source, $target, $workingDirectory, $targetDir); + } + + /** + * @return array + */ + public function twoFilesOperationsValidDataProvider() + { + return array( + 'copy both tmp' => array('copy', 'isFile', '/tmp/path/file001.log', '/tmp/path/file001.bak'), + 'move both tmp' => array('rename', 'exists', '/tmp/path/file001.log', '/tmp/path/file001.bak'), + 'copy both tmp #2' => array('copy', 'isFile', '/tmp/path/file001.log', '/tmp/path/file001.bak', '/tmp'), + 'move both tmp #2' => array('rename', 'exists', '/tmp/path/file001.log', '/tmp/path/file001.bak', '/tmp'), + 'copy different' + => array('copy', 'isFile', '/tmp/path/file001.log', '/storage/file001.bak', null, '/storage'), + 'move different' + => array('rename', 'exists', '/tmp/path/file001.log', '/storage/file001.bak', null, '/storage'), + 'copy different #2' + => array('copy', 'isFile', '/tmp/path/file001.log', '/storage/file001.bak', '/tmp', '/storage'), + 'move different #2' + => array('rename', 'exists', '/tmp/path/file001.log', '/storage/file001.bak', '/tmp', '/storage'), + ); + } + + /** + * @expectedException InvalidArgumentException + * @expectedExceptionMessage Invalid path + * @dataProvider twoFilesOperationsInvalidDataProvider + * @param string $method + * @param string $source + * @param string $destination + * @param string|null $workingDirectory + * @param string|null $targetDir + */ + public function testTwoFilesOperationsIsolationException($method, $source, $destination, $workingDirectory = null, + $targetDir = null + ) { + $adapterMock = $this->_getDefaultAdapterMock(); + $adapterMock->expects($this->never()) + ->method($method); + + $filesystem = new Magento_Filesystem($adapterMock); + $filesystem->setWorkingDirectory('/tmp'); + $filesystem->$method($source, $destination, $workingDirectory, $targetDir); + } + + /** + * @return array + */ + public function twoFilesOperationsInvalidDataProvider() + { + return array( + 'copy first path invalid' => array('copy', '/tmp/../etc/passwd', '/tmp/path001'), + 'copy first path invalid #2' => array('copy', '/tmp/../etc/passwd', '/tmp/path001', '/tmp'), + 'copy second path invalid' => array('copy', '/tmp/uploaded.txt', '/tmp/../etc/passwd'), + 'copy both path invalid' => array('copy', '/tmp/../etc/passwd', '/tmp/../dev/null'), + 'rename first path invalid' => array('rename', '/tmp/../etc/passwd', '/tmp/path001'), + 'rename first path invalid #2' => array('rename', '/tmp/../etc/passwd', '/tmp/path001', '/tmp'), + 'rename second path invalid' => array('rename', '/tmp/uploaded.txt', '/tmp/../etc/passwd'), + 'rename both path invalid' => array('rename', '/tmp/../etc/passwd', '/tmp/../dev/null'), + 'copy target path invalid' => array('copy', '/tmp/passwd', '/etc/../dev/null', null, '/etc'), + 'rename target path invalid' => array('rename', '/tmp/passwd', '/etc/../dev/null', null, '/etc'), + 'copy target path invalid #2' => array('copy', '/tmp/passwd', '/etc/../dev/null', '/tmp', '/etc'), + 'rename target path invalid #2' => array('rename', '/tmp/passwd', '/etc/../dev/null', '/tmp', '/etc'), + ); + } + + public function testEnsureDirectoryExists() + { + $dir = '/tmp/path'; + $adapterMock = $this->getMockBuilder('Magento_Filesystem_AdapterInterface') + ->getMock(); + $adapterMock->expects($this->at(0)) + ->method('isDirectory') + ->with('/tmp') + ->will($this->returnValue(true)); + $adapterMock->expects($this->at(1)) + ->method('isDirectory') + ->with($dir) + ->will($this->returnValue(true)); + $adapterMock->expects($this->exactly(2)) + ->method('isDirectory'); + $adapterMock->expects($this->never()) + ->method('createDirectory'); + $filesystem = new Magento_Filesystem($adapterMock); + $filesystem->setWorkingDirectory('/tmp'); + $filesystem->ensureDirectoryExists($dir, 0644); + } + + /** + * @expectedException Magento_Filesystem_Exception + * @expectedExceptionMessage Directory '/tmp/path' doesn't exist. + */ + public function testEnsureDirectoryExistsException() + { + $dir = '/tmp/path'; + $adapterMock = $this->getMockBuilder('Magento_Filesystem_AdapterInterface') + ->getMock(); + $adapterMock->expects($this->at(0)) + ->method('isDirectory') + ->with('/tmp') + ->will($this->returnValue(true)); + $adapterMock->expects($this->at(1)) + ->method('isDirectory') + ->with($dir) + ->will($this->returnValue(false)); + $adapterMock->expects($this->exactly(2)) + ->method('isDirectory'); + $adapterMock->expects($this->never()) + ->method('createDirectory'); + $filesystem = new Magento_Filesystem($adapterMock); + $filesystem->setWorkingDirectory('/tmp'); + $filesystem->ensureDirectoryExists($dir, 0644); + } + + public function testEnsureDirectoryExistsNoDir() + { + $dir = '/tmp/path1/path2'; + $adapterMock = $this->getMockBuilder('Magento_Filesystem_AdapterInterface') + ->getMock(); + $adapterMock->expects($this->at(0)) + ->method('isDirectory') + ->with('/tmp') + ->will($this->returnValue(true)); + $adapterMock->expects($this->at(1)) + ->method('isDirectory') + ->with($dir) + ->will($this->returnValue(false)); + $adapterMock->expects($this->at(2)) + ->method('isDirectory') + ->with('/tmp/path1') + ->will($this->returnValue(false)); + $adapterMock->expects($this->at(3)) + ->method('isDirectory') + ->with('/tmp') + ->will($this->returnValue(true)); + $adapterMock->expects($this->exactly(4)) + ->method('isDirectory'); + $adapterMock->expects($this->at(4)) + ->method('createDirectory') + ->with('/tmp/path1'); + $adapterMock->expects($this->at(5)) + ->method('createDirectory') + ->with('/tmp/path1/path2'); + $adapterMock->expects($this->exactly(2)) + ->method('createDirectory'); + $filesystem = new Magento_Filesystem($adapterMock); + $filesystem->setWorkingDirectory('/tmp'); + $filesystem->setIsAllowCreateDirectories(true); + $filesystem->ensureDirectoryExists($dir, 0644); + } + + /** + * @dataProvider allowCreateDirsDataProvider + * @param bool $allowCreateDirs + */ + public function testTouch($allowCreateDirs) + { + $validPath = '/tmp/path/file.txt'; + $adapterMock = $this->getMockBuilder('Magento_Filesystem_AdapterInterface') + ->getMock(); + $adapterMock->expects($this->exactly(2)) + ->method('isDirectory') + ->will($this->returnValue(true)); + + $filesystem = new Magento_Filesystem($adapterMock); + $filesystem->setIsAllowCreateDirectories($allowCreateDirs); + $filesystem->setWorkingDirectory('/tmp'); + $filesystem->touch($validPath); + } + + /** + * @expectedException InvalidArgumentException + * @expectedExceptionMessage Invalid path + */ + public function testTouchIsolation() + { + $filesystem = new Magento_Filesystem($this->_getDefaultAdapterMock()); + $filesystem->setWorkingDirectory('/tmp'); + $filesystem->touch('/etc/passwd'); + } + + /** + * @return array + */ + public function allowCreateDirsDataProvider() + { + return array(array(true), array(false)); + } + + public function testCreateStreamCustom() + { + $path = '/tmp/test.txt'; + $streamMock = $this->getMockBuilder('Magento_Filesystem_Stream_Local') + ->disableOriginalConstructor() + ->getMock(); + $adapterMock = $this->getMockBuilder('Magento_Filesystem_Adapter_Local') + ->getMock(); + $adapterMock->expects($this->once()) + ->method('isDirectory') + ->with('/tmp') + ->will($this->returnValue(true)); + $adapterMock->expects($this->once()) + ->method('createStream') + ->with($path) + ->will($this->returnValue($streamMock)); + $filesystem = new Magento_Filesystem($adapterMock); + $filesystem->setWorkingDirectory('/tmp'); + $this->assertInstanceOf('Magento_Filesystem_Stream_Local', $filesystem->createStream($path)); + } + + /** + * @expectedException InvalidArgumentException + * @expectedExceptionMessage Invalid path + */ + public function testCreateStreamIsolation() + { + $adapterMock = $this->getMockBuilder('Magento_Filesystem_Adapter_Local') + ->getMock(); + $adapterMock->expects($this->once()) + ->method('isDirectory') + ->with('/tmp') + ->will($this->returnValue(true)); + $filesystem = new Magento_Filesystem($adapterMock); + $filesystem->setWorkingDirectory('/tmp'); + $filesystem->createStream('/tmp/../etc/test.txt'); + } + + /** + * @expectedException Magento_Filesystem_Exception + * @expectedExceptionMessage Filesystem doesn't support streams. + */ + public function testCreateStreamException() + { + $filesystem = new Magento_Filesystem($this->_getDefaultAdapterMock()); + $filesystem->setWorkingDirectory('/tmp'); + $filesystem->createStream('/tmp/test.txt'); + } + + /** + * @dataProvider modeDataProvider + * @param string|Magento_Filesystem_Stream_Mode $mode + */ + public function testCreateAndOpenStream($mode) + { + $path = '/tmp/test.txt'; + $streamMock = $this->getMockBuilder('Magento_Filesystem_Stream_Local') + ->disableOriginalConstructor() + ->getMock(); + $streamMock->expects($this->once()) + ->method('open'); + $adapterMock = $this->getMockBuilder('Magento_Filesystem_Adapter_Local') + ->getMock(); + $adapterMock->expects($this->once()) + ->method('isDirectory') + ->with('/tmp') + ->will($this->returnValue(true)); + $adapterMock->expects($this->once()) + ->method('createStream') + ->with($path) + ->will($this->returnValue($streamMock)); + $filesystem = new Magento_Filesystem($adapterMock); + $filesystem->setWorkingDirectory('/tmp'); + $this->assertInstanceOf('Magento_Filesystem_Stream_Local', $filesystem->createAndOpenStream($path, $mode)); + } + + /** + * @expectedException InvalidArgumentException + * @expectedExceptionMessage Wrong mode parameter + */ + public function testCreateAndOpenStreamException() + { + $path = '/tmp/test.txt'; + $streamMock = $this->getMockBuilder('Magento_Filesystem_Stream_Local') + ->disableOriginalConstructor() + ->getMock(); + $streamMock->expects($this->never()) + ->method('open'); + $adapterMock = $this->getMockBuilder('Magento_Filesystem_Adapter_Local') + ->getMock(); + $adapterMock->expects($this->once()) + ->method('isDirectory') + ->with('/tmp') + ->will($this->returnValue(true)); + $adapterMock->expects($this->once()) + ->method('createStream') + ->with($path) + ->will($this->returnValue($streamMock)); + $filesystem = new Magento_Filesystem($adapterMock); + $filesystem->setWorkingDirectory('/tmp'); + $this->assertInstanceOf('Magento_Filesystem_Stream_Local', + $filesystem->createAndOpenStream($path, new stdClass())); + } + + /** + * @return array + */ + public function modeDataProvider() + { + return array( + array('r'), + array(new Magento_Filesystem_Stream_Mode('w')) + ); + } + + /** + * @dataProvider adapterMethods + * @param string $method + * @param string $adapterMethod + * @param array|null $params + */ + public function testAdapterMethods($method, $adapterMethod, array $params = null) + { + $validPath = '/tmp/path/file.txt'; + $adapterMock = $this->_getDefaultAdapterMock(); + $adapterMock->expects($this->once()) + ->method($adapterMethod) + ->with($validPath); + + $filesystem = new Magento_Filesystem($adapterMock); + $filesystem->setWorkingDirectory('/tmp'); + $params = (array)$params; + array_unshift($params, $validPath); + call_user_func_array(array($filesystem, $method), $params); + } + + /** + * @return array + */ + public function adapterMethods() + { + return array( + 'exists' => array('has', 'exists'), + 'delete' => array('delete', 'delete'), + 'isFile' => array('isFile', 'isFile'), + 'isWritable' => array('isWritable', 'isWritable'), + 'isReadable' => array('isReadable', 'isReadable'), + 'getNestedKeys' => array('getNestedKeys', 'getNestedKeys'), + 'changePermissions' => array('changePermissions', 'changePermissions', array(0777, true)), + 'exists #2' => array('has', 'exists', array('/tmp')), + 'delete #2' => array('delete', 'delete', array('/tmp')), + 'isFile #2' => array('isFile', 'isFile', array('/tmp')), + 'isWritable #2' => array('isWritable', 'isWritable', array('/tmp')), + 'isReadable #2' => array('isReadable', 'isReadable', array('/tmp')), + 'getNestedKeys #2' => array('getNestedKeys', 'getNestedKeys', array('/tmp')), + 'changePermissions #2' => array('changePermissions', 'changePermissions', array(0777, true, '/tmp')), + ); + } + + /** + * @expectedException InvalidArgumentException + * @expectedExceptionMessage Invalid path + * @dataProvider adapterIsolationMethods + * @param string $method + * @param string $adapterMethod + * @param array|null $params + */ + public function testIsolationException($method, $adapterMethod, array $params = null) + { + $invalidPath = '/tmp/../etc/passwd'; + $adapterMock = $this->_getDefaultAdapterMock(); + $adapterMock->expects($this->never()) + ->method($adapterMethod); + + $filesystem = new Magento_Filesystem($adapterMock); + $filesystem->setWorkingDirectory('/tmp'); + $params = (array)$params; + array_unshift($params, $invalidPath); + call_user_func_array(array($filesystem, $method), $params); + } + + /** + * @return array + */ + public function adapterIsolationMethods() + { + return $this->adapterMethods() + + array( + 'read' => array('read', 'read'), + 'read #2' => array('read', 'read', array('/tmp')), + 'createDirectory' => array('createDirectory', 'createDirectory', array(0777)), + 'createDirectory #2' => array('createDirectory', 'createDirectory', array(0777, '/tmp')), + ); + } + + /** + * @dataProvider workingDirDataProvider + * @param string|null $workingDirectory + */ + public function testRead($workingDirectory) + { + $validPath = '/tmp/path/file.txt'; + $adapterMock = $this->_getDefaultAdapterMock(); + $adapterMock->expects($this->once()) + ->method('isFile') + ->with($validPath) + ->will($this->returnValue(true)); + $adapterMock->expects($this->once()) + ->method('read') + ->with($validPath); + + $filesystem = new Magento_Filesystem($adapterMock); + $filesystem->setWorkingDirectory('/tmp'); + $filesystem->read($validPath, $workingDirectory); + } + + /** + * @dataProvider workingDirDataProvider + * @param string|null $workingDirectory + */ + public function testCreateDirectory($workingDirectory) + { + $validPath = '/tmp/path'; + $adapterMock = $this->getMockBuilder('Magento_Filesystem_AdapterInterface') + ->getMock(); + $adapterMock->expects($this->exactly(2)) + ->method('isDirectory') + ->with('/tmp') + ->will($this->returnValue(true)); + $adapterMock->expects($this->once()) + ->method('createDirectory') + ->with($validPath); + + $filesystem = new Magento_Filesystem($adapterMock); + $filesystem->setWorkingDirectory('/tmp'); + $filesystem->createDirectory($validPath, 0777, $workingDirectory); + } + + /** + * @dataProvider workingDirDataProvider + * @param string|null $workingDirectory + */ + public function testWrite($workingDirectory) + { + $validPath = '/tmp/path/file.txt'; + $adapterMock = $this->getMockBuilder('Magento_Filesystem_AdapterInterface') + ->getMock(); + $adapterMock->expects($this->at(0)) + ->method('isDirectory') + ->with('/tmp') + ->will($this->returnValue(true)); + $adapterMock->expects($this->at(1)) + ->method('isDirectory') + ->with('/tmp/path') + ->will($this->returnValue(true)); + $adapterMock->expects($this->exactly(2)) + ->method('isDirectory'); + $adapterMock->expects($this->once()) + ->method('write') + ->with($validPath, 'TEST TEST'); + + $filesystem = new Magento_Filesystem($adapterMock); + $filesystem->setWorkingDirectory('/tmp'); + $filesystem->write($validPath, 'TEST TEST', $workingDirectory); + } + + /** + * @expectedException InvalidArgumentException + * @expectedExceptionMessage Invalid path + * @dataProvider workingDirDataProvider + * @param string|null $workingDirectory + */ + public function testWriteIsolation($workingDirectory) + { + $invalidPath = '/tmp/../path/file.txt'; + $adapterMock = $this->getMockBuilder('Magento_Filesystem_AdapterInterface') + ->getMock(); + $adapterMock->expects($this->once()) + ->method('isDirectory') + ->with('/tmp') + ->will($this->returnValue(true)); + $adapterMock->expects($this->never()) + ->method('write'); + + $filesystem = new Magento_Filesystem($adapterMock); + $filesystem->setWorkingDirectory('/tmp'); + $filesystem->write($invalidPath, 'TEST TEST', $workingDirectory); + } + + /** + * @return array + */ + public function workingDirDataProvider() + { + return array( + array(null), array('/tmp') + ); + } + + /** + * @expectedException InvalidArgumentException + * @expectedExceptionMessage "/tmp/test/file.txt" does not exists + * @dataProvider methodsWithFileChecksDataProvider + * @param string $method + * @param array|null $params + */ + public function testFileChecks($method, array $params = null) + { + $path = '/tmp/test/file.txt'; + $adapterMock = $this->getMockBuilder('Magento_Filesystem_AdapterInterface') + ->getMock(); + $adapterMock->expects($this->once()) + ->method('isDirectory') + ->with('/tmp') + ->will($this->returnValue(true)); + $adapterMock->expects($this->once()) + ->method('exists') + ->with($path) + ->will($this->returnValue(false)); + $filesystem = new Magento_Filesystem($adapterMock); + $filesystem->setWorkingDirectory('/tmp'); + $params = (array)$params; + array_unshift($params, $path); + call_user_func_array(array($filesystem, $method), $params); + } + + /** + * @return array + */ + public function methodsWithFileChecksDataProvider() + { + return array( + 'delete' => array('delete'), + 'rename' => array('rename', array('/tmp/file001.txt')) + ); + } + + /** + * @expectedException InvalidArgumentException + * @expectedExceptionMessage "/tmp/test/file.txt" does not exists + * @dataProvider methodsWithPathChecksDataProvider + * @param string $method + * @param array|null $params + */ + public function testPathChecks($method, array $params = null) + { + $path = '/tmp/test/file.txt'; + $adapterMock = $this->getMockBuilder('Magento_Filesystem_AdapterInterface') + ->getMock(); + $adapterMock->expects($this->once()) + ->method('isDirectory') + ->with('/tmp') + ->will($this->returnValue(true)); + $adapterMock->expects($this->once()) + ->method('isFile') + ->with($path) + ->will($this->returnValue(false)); + $filesystem = new Magento_Filesystem($adapterMock); + $filesystem->setWorkingDirectory('/tmp'); + $params = (array)$params; + array_unshift($params, $path); + call_user_func_array(array($filesystem, $method), $params); + } + + /** + * @return array + */ + public function methodsWithPathChecksDataProvider() + { + return array( + 'read' => array('read'), + 'copy' => array('copy', array('/tmp/file001.txt')), + ); + } + + /** + * Test isDirectory + * + * @dataProvider workingDirDataProvider + * @param string|null $workingDirectory + */ + public function testIsDirectory($workingDirectory) + { + $validPath = '/tmp/path'; + $adapterMock = $this->getMockBuilder('Magento_Filesystem_AdapterInterface') + ->getMock(); + $adapterMock->expects($this->at(0)) + ->method('isDirectory') + ->with('/tmp') + ->will($this->returnValue(true)); + $adapterMock->expects($this->at(1)) + ->method('isDirectory') + ->with($validPath) + ->will($this->returnValue(true)); + $adapterMock->expects($this->exactly(2)) + ->method('isDirectory'); + + $filesystem = new Magento_Filesystem($adapterMock); + $filesystem->setWorkingDirectory('/tmp'); + $this->assertTrue($filesystem->isDirectory($validPath, $workingDirectory)); + } + + /** + * Test isDirectory isolation + * @expectedException InvalidArgumentException + * @expectedExceptionMessage Invalid path + * @dataProvider workingDirDataProvider + * @param string|null $workingDirectory + */ + public function testIsDirectoryIsolation($workingDirectory) + { + $validPath = '/tmp/../etc/passwd'; + $filesystem = new Magento_Filesystem($this->_getDefaultAdapterMock()); + $filesystem->setWorkingDirectory('/tmp'); + $this->assertTrue($filesystem->isDirectory($validPath, $workingDirectory)); + } + + /** + * @dataProvider absolutePathDataProvider + * @param string $path + * @param string $expected + */ + public function testGetAbsolutePath($path, $expected) + { + $this->assertEquals($expected, Magento_Filesystem::getAbsolutePath($path)); + } + + /** + * @return array + */ + public function absolutePathDataProvider() + { + return array( + array('/tmp/../file.txt', '/file.txt'), + array('/tmp/../etc/mysql/file.txt', '/etc/mysql/file.txt'), + array('/tmp/../file.txt', '/file.txt'), + array('/tmp/./file.txt', '/tmp/file.txt'), + array('/tmp/./../file.txt', '/file.txt'), + array('/tmp/../../../file.txt', '/file.txt'), + array('../file.txt', '/file.txt'), + array('/../file.txt', '/file.txt'), + array('/tmp/path/file.txt', '/tmp/path/file.txt'), + array('/tmp/path', '/tmp/path'), + array('C:\\Windows', 'C:/Windows'), + array('C:\\Windows\\system32\\..', 'C:/Windows'), + ); + } + + /** + * @dataProvider pathDataProvider + * @param array $parts + * @param string $expected + * @param bool $isAbsolute + */ + public function testGetPathFromArray(array $parts, $expected, $isAbsolute) + { + $this->assertEquals($expected, Magento_Filesystem::getPathFromArray($parts, $isAbsolute)); + } + + /** + * @return array + */ + public function pathDataProvider() + { + return array( + array(array('etc', 'mysql', 'my.cnf'), '/etc/mysql/my.cnf',true), + array(array('etc', 'mysql', 'my.cnf'), 'etc/mysql/my.cnf', false), + array(array('C:', 'Windows', 'my.cnf'), 'C:/Windows/my.cnf', false), + array(array('C:', 'Windows', 'my.cnf'), 'C:/Windows/my.cnf', true), + ); + } + + /** + * @dataProvider pathDataProvider + * @param array $expected + * @param string $path + */ + public function testGetPathAsArray(array $expected, $path) + { + $this->assertEquals($expected, Magento_Filesystem::getPathAsArray($path)); + } + + /** + * @dataProvider isAbsolutePathDataProvider + * @param bool $isReal + * @param string $path + */ + public function testIsAbsolutePath($isReal, $path) + { + $this->assertEquals($isReal, Magento_Filesystem::isAbsolutePath($path)); + } + + /** + * @return array + */ + public function isAbsolutePathDataProvider() + { + return array( + array(true, '/tmp/file.txt'), + array(false, '/tmp/../etc/mysql/my.cnf'), + array(false, '/tmp/../tmp/file.txt') + ); + } + + /** + * @expectedException InvalidArgumentException + * @expectedExceptionMessage Path must contain at least one node + */ + public function testGetPathFromArrayException() + { + Magento_Filesystem::getPathFromArray(array()); + } + + /** + * @return PHPUnit_Framework_MockObject_MockObject + */ + protected function _getDefaultAdapterMock() + { + $adapterMock = $this->getMockBuilder('Magento_Filesystem_AdapterInterface') + ->getMock(); + $adapterMock->expects($this->once()) + ->method('isDirectory') + ->with('/tmp') + ->will($this->returnValue(true)); + $adapterMock->expects($this->any()) + ->method('exists') + ->will($this->returnValue(true)); + return $adapterMock; + } +} diff --git a/dev/tests/unit/testsuite/Magento/ObjectManager/ZendTest.php b/dev/tests/unit/testsuite/Magento/ObjectManager/ZendTest.php index 07872af1461186c60438b71b1c24d0b498e56cbd..95319d057662e8e1033f468359de86e75ea46d6a 100644 --- a/dev/tests/unit/testsuite/Magento/ObjectManager/ZendTest.php +++ b/dev/tests/unit/testsuite/Magento/ObjectManager/ZendTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_ObjectManager * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Magento/Profiler/Driver/FactoryTest.php b/dev/tests/unit/testsuite/Magento/Profiler/Driver/FactoryTest.php index a08455a2ae05f5ee86a52d8ccf80617acc23c71f..56441e955ce5dcd64cdde47f4a3ec9602f40f0d2 100644 --- a/dev/tests/unit/testsuite/Magento/Profiler/Driver/FactoryTest.php +++ b/dev/tests/unit/testsuite/Magento/Profiler/Driver/FactoryTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Magento_Profiler_Driver_FactoryTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Magento/Profiler/Driver/Standard/Output/CsvfileTest.php b/dev/tests/unit/testsuite/Magento/Profiler/Driver/Standard/Output/CsvfileTest.php index bb5c70ff0906515c8d44357c97bfedf451da70d2..c0618c08d5d2de655923bd05078a9f70e57e00fa 100644 --- a/dev/tests/unit/testsuite/Magento/Profiler/Driver/Standard/Output/CsvfileTest.php +++ b/dev/tests/unit/testsuite/Magento/Profiler/Driver/Standard/Output/CsvfileTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Magento_Profiler_Driver_Standard_Output_CsvfileTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Magento/Profiler/Driver/Standard/Output/FactoryTest.php b/dev/tests/unit/testsuite/Magento/Profiler/Driver/Standard/Output/FactoryTest.php index 44e4373a6e3906341e486a3ab005a4f3ef17bdbe..e804d8ec20ce0334f937086749f179786cdfb93e 100644 --- a/dev/tests/unit/testsuite/Magento/Profiler/Driver/Standard/Output/FactoryTest.php +++ b/dev/tests/unit/testsuite/Magento/Profiler/Driver/Standard/Output/FactoryTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Magento_Profiler_Driver_Standard_Output_FactoryTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Magento/Profiler/Driver/Standard/Output/FirebugTest.php b/dev/tests/unit/testsuite/Magento/Profiler/Driver/Standard/Output/FirebugTest.php index c8bc0ccacf26ed9ffaf1ab0d375639bedbed10de..99b7ae379848daa40a8380de1aa90936816db7c1 100644 --- a/dev/tests/unit/testsuite/Magento/Profiler/Driver/Standard/Output/FirebugTest.php +++ b/dev/tests/unit/testsuite/Magento/Profiler/Driver/Standard/Output/FirebugTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Magento_Profiler_Driver_Standard_Output_FirebugTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Magento/Profiler/Driver/Standard/OutputAbstractTest.php b/dev/tests/unit/testsuite/Magento/Profiler/Driver/Standard/OutputAbstractTest.php index 32ea6f4a1bfae54960666b5573d7ba40cd84112c..253fd88a55f2164179e2ce80b9898cc13fb3bb60 100644 --- a/dev/tests/unit/testsuite/Magento/Profiler/Driver/Standard/OutputAbstractTest.php +++ b/dev/tests/unit/testsuite/Magento/Profiler/Driver/Standard/OutputAbstractTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Magento_Profiler_Driver_Standard_OutputAbstractTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Magento/Profiler/Driver/Standard/StatTest.php b/dev/tests/unit/testsuite/Magento/Profiler/Driver/Standard/StatTest.php index 0fd852d8ed5e54e919e6f1bf07886709da8ba565..98d254286284971e266ce9266cb658d971927c0f 100644 --- a/dev/tests/unit/testsuite/Magento/Profiler/Driver/Standard/StatTest.php +++ b/dev/tests/unit/testsuite/Magento/Profiler/Driver/Standard/StatTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Magento_Profiler_Driver_Standard_StatTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Magento/Profiler/Driver/StandardTest.php b/dev/tests/unit/testsuite/Magento/Profiler/Driver/StandardTest.php index d552164419ef0be3811ec2f96c4d27cdc7eab29c..c9e6634d190cf317c973d91cf4e7435f0bb2b380 100644 --- a/dev/tests/unit/testsuite/Magento/Profiler/Driver/StandardTest.php +++ b/dev/tests/unit/testsuite/Magento/Profiler/Driver/StandardTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Magento_Profiler_Driver_StandardTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Magento/ProfilerTest.php b/dev/tests/unit/testsuite/Magento/ProfilerTest.php index c66eb57a33db5fea595e66a2c8df2b5134ccb817..d46b064c52735e41a4349c4dcf64d00dc533fa4e 100644 --- a/dev/tests/unit/testsuite/Magento/ProfilerTest.php +++ b/dev/tests/unit/testsuite/Magento/ProfilerTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Magento_ProfilerTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Magento/ShellTest.php b/dev/tests/unit/testsuite/Magento/ShellTest.php index e844d7a8d659a5cf443adfc107b9d5d3cab8a733..f4f8e78c819605a89df44f9a75b70abe220cc8f4 100644 --- a/dev/tests/unit/testsuite/Magento/ShellTest.php +++ b/dev/tests/unit/testsuite/Magento/ShellTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Shell * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ @@ -30,13 +30,13 @@ class Magento_ShellTest extends PHPUnit_Framework_TestCase public function testGetSetVerbose() { $shell = new Magento_Shell(false); - $this->assertFalse($shell->getVerbose()); + $this->assertFalse($shell->isVerbose()); $shell->setVerbose(true); - $this->assertTrue($shell->getVerbose()); + $this->assertTrue($shell->isVerbose()); $shell->setVerbose(false); - $this->assertFalse($shell->getVerbose()); + $this->assertFalse($shell->isVerbose()); } /** @@ -106,4 +106,12 @@ class Magento_ShellTest extends PHPUnit_Framework_TestCase $this->assertEquals(42, $e->getPrevious()->getCode()); } } + + public function testOutput() + { + $fixture = uniqid(); + $this->expectOutputString($fixture . PHP_EOL); + $shell = new Magento_Shell; + $shell->output($fixture); + } } diff --git a/dev/tests/unit/testsuite/Magento/Translate/AdapterAbstractTest.php b/dev/tests/unit/testsuite/Magento/Translate/AdapterAbstractTest.php index 2c3ec554b6bd266f71b0f4d32c488070f83a196e..648c0163d7f7fc52d8296736f864c956d79b14f6 100644 --- a/dev/tests/unit/testsuite/Magento/Translate/AdapterAbstractTest.php +++ b/dev/tests/unit/testsuite/Magento/Translate/AdapterAbstractTest.php @@ -20,7 +20,7 @@ * * @category Magento * @package unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Magento/Translate/AdapterTest.php b/dev/tests/unit/testsuite/Magento/Translate/AdapterTest.php index c3f797495bb2e1e12d124447f90ba4061246663a..fa0e85f1080c9ed994403f361ac6f7d18c5c7b40 100644 --- a/dev/tests/unit/testsuite/Magento/Translate/AdapterTest.php +++ b/dev/tests/unit/testsuite/Magento/Translate/AdapterTest.php @@ -20,7 +20,7 @@ * * @category Magento * @package unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Magento/Validator/BuilderTest.php b/dev/tests/unit/testsuite/Magento/Validator/BuilderTest.php index 6a686ac79e9c945c0c2f8f0fc94ac9cc534fdb4f..fd8a9d45d42d1f2584fabcb428a81ab5f4788f28 100644 --- a/dev/tests/unit/testsuite/Magento/Validator/BuilderTest.php +++ b/dev/tests/unit/testsuite/Magento/Validator/BuilderTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Validator * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Magento/Validator/ConfigTest.php b/dev/tests/unit/testsuite/Magento/Validator/ConfigTest.php index da2916501e71280561f484371421a97d92b7c4f1..3d642d954ae6b4bfd59e6bcc298ae7cbeca367ad 100644 --- a/dev/tests/unit/testsuite/Magento/Validator/ConfigTest.php +++ b/dev/tests/unit/testsuite/Magento/Validator/ConfigTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Magento_Validator_ConfigTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Magento/Validator/Constraint/Option/CallbackTest.php b/dev/tests/unit/testsuite/Magento/Validator/Constraint/Option/CallbackTest.php index e0b25d0e178e1b805488367749ccd66ea3c45db2..9cf041bce020bba9ff54c37a4f1dd4c0a1898c6a 100644 --- a/dev/tests/unit/testsuite/Magento/Validator/Constraint/Option/CallbackTest.php +++ b/dev/tests/unit/testsuite/Magento/Validator/Constraint/Option/CallbackTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Validator * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Magento/Validator/Constraint/OptionTest.php b/dev/tests/unit/testsuite/Magento/Validator/Constraint/OptionTest.php index 8c6628796cc5b5eceba3723201cc19e18c6e1519..368f6a1b4981056c03b684b57ca3ad728c6f4c74 100644 --- a/dev/tests/unit/testsuite/Magento/Validator/Constraint/OptionTest.php +++ b/dev/tests/unit/testsuite/Magento/Validator/Constraint/OptionTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Validator * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Magento/Validator/Constraint/PropertyTest.php b/dev/tests/unit/testsuite/Magento/Validator/Constraint/PropertyTest.php index e3058c414584ff2fd8bc57e1d2350793cf409ce4..da5034ed157f82bd68f03d4c3c06acca39ad8c7c 100644 --- a/dev/tests/unit/testsuite/Magento/Validator/Constraint/PropertyTest.php +++ b/dev/tests/unit/testsuite/Magento/Validator/Constraint/PropertyTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Validator * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Magento/Validator/ConstraintTest.php b/dev/tests/unit/testsuite/Magento/Validator/ConstraintTest.php index 223a33132b33431a0143df75db415c8ee7024618..34051f42983ee5da5582d243968a046d562de355 100644 --- a/dev/tests/unit/testsuite/Magento/Validator/ConstraintTest.php +++ b/dev/tests/unit/testsuite/Magento/Validator/ConstraintTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Validator * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Magento/Validator/Entity/PropertiesTest.php b/dev/tests/unit/testsuite/Magento/Validator/Entity/PropertiesTest.php index 78da0bdf5f56f90a9ea53c76d9745aa7568eed54..7a695f643f9821f6c243b7be4822221753cbd754 100644 --- a/dev/tests/unit/testsuite/Magento/Validator/Entity/PropertiesTest.php +++ b/dev/tests/unit/testsuite/Magento/Validator/Entity/PropertiesTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Validator * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Magento/Validator/ExceptionTest.php b/dev/tests/unit/testsuite/Magento/Validator/ExceptionTest.php index 7a8e69b8d95c74df1597eeafb240837e7b641903..4c80e176faefcc97b47bddf5f984d93a62a282d6 100644 --- a/dev/tests/unit/testsuite/Magento/Validator/ExceptionTest.php +++ b/dev/tests/unit/testsuite/Magento/Validator/ExceptionTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Validator * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Magento/Validator/StringLengthTest.php b/dev/tests/unit/testsuite/Magento/Validator/StringLengthTest.php index 93335bce8077a9e8cc5dfdfe58828ffb571b7428..cdcb065b8ff57ab84a694d9e91d4aec91c8841fd 100644 --- a/dev/tests/unit/testsuite/Magento/Validator/StringLengthTest.php +++ b/dev/tests/unit/testsuite/Magento/Validator/StringLengthTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Validator * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Magento/Validator/Test/Alnum.php b/dev/tests/unit/testsuite/Magento/Validator/Test/Alnum.php index 8aa435485168bb905fd0da508220953890936a45..e9166f1403a0fe06c067bca89f73dd39a9948cb4 100644 --- a/dev/tests/unit/testsuite/Magento/Validator/Test/Alnum.php +++ b/dev/tests/unit/testsuite/Magento/Validator/Test/Alnum.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Validator * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Magento/Validator/Test/Callback.php b/dev/tests/unit/testsuite/Magento/Validator/Test/Callback.php index 15b2a00278494b53911f5e0638fab6d36f67abcd..72aed397b0341b75a601c8aeb0bcb2dcb9825746 100644 --- a/dev/tests/unit/testsuite/Magento/Validator/Test/Callback.php +++ b/dev/tests/unit/testsuite/Magento/Validator/Test/Callback.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Validator * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Magento/Validator/Test/Int.php b/dev/tests/unit/testsuite/Magento/Validator/Test/Int.php index da5b08aacad2aa47915d2d52f2aa6fb304dd8284..d49284b6744b5ecafa855dddb677c920f8fe589a 100644 --- a/dev/tests/unit/testsuite/Magento/Validator/Test/Int.php +++ b/dev/tests/unit/testsuite/Magento/Validator/Test/Int.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Validator * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Magento/Validator/Test/NotEmpty.php b/dev/tests/unit/testsuite/Magento/Validator/Test/NotEmpty.php index 8cbba28a084c2afd8eb2d10f5cfa6f0f79753b76..4eb8faf69e2fa3cd62f28e59ad6a7e63b75dbb81 100644 --- a/dev/tests/unit/testsuite/Magento/Validator/Test/NotEmpty.php +++ b/dev/tests/unit/testsuite/Magento/Validator/Test/NotEmpty.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Validator * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Magento/Validator/Test/StringLength.php b/dev/tests/unit/testsuite/Magento/Validator/Test/StringLength.php index 24c7001245a297f3edb4f1ca790246ff935649b7..11c948b3721d034d48dac3f40f0e1e99be4a898a 100644 --- a/dev/tests/unit/testsuite/Magento/Validator/Test/StringLength.php +++ b/dev/tests/unit/testsuite/Magento/Validator/Test/StringLength.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Validator * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Magento/Validator/Test/True.php b/dev/tests/unit/testsuite/Magento/Validator/Test/True.php index d436ca747a9e74ddd7444a058035cec9b1715d14..19114cc367308b624af64c3edaa2607d9797fc22 100644 --- a/dev/tests/unit/testsuite/Magento/Validator/Test/True.php +++ b/dev/tests/unit/testsuite/Magento/Validator/Test/True.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Validator * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Magento/Validator/ValidatorAbstractTest.php b/dev/tests/unit/testsuite/Magento/Validator/ValidatorAbstractTest.php index c65c6e206bfe630740c6fe6c4c809252e68ab430..3a9446264b51fb6421941bd1289790b97192413c 100644 --- a/dev/tests/unit/testsuite/Magento/Validator/ValidatorAbstractTest.php +++ b/dev/tests/unit/testsuite/Magento/Validator/ValidatorAbstractTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Validator * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Magento/Validator/_files/validation/negative/invalid_builder_class.xml b/dev/tests/unit/testsuite/Magento/Validator/_files/validation/negative/invalid_builder_class.xml index 16e32915eb682dad257c3fc270f56f5a2f3fef7e..b94cac00a31dd3f91a19a951b202bd8e4c6446db 100644 --- a/dev/tests/unit/testsuite/Magento/Validator/_files/validation/negative/invalid_builder_class.xml +++ b/dev/tests/unit/testsuite/Magento/Validator/_files/validation/negative/invalid_builder_class.xml @@ -22,7 +22,7 @@ * @category Magento * @package Magento_Validator * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/Magento/Validator/_files/validation/negative/invalid_builder_instance.xml b/dev/tests/unit/testsuite/Magento/Validator/_files/validation/negative/invalid_builder_instance.xml index 6491835d19cba401d5b478d5d4a03e8a29178679..24b95ae5826d414e00a911b13e79abe2a3a1d773 100644 --- a/dev/tests/unit/testsuite/Magento/Validator/_files/validation/negative/invalid_builder_instance.xml +++ b/dev/tests/unit/testsuite/Magento/Validator/_files/validation/negative/invalid_builder_instance.xml @@ -22,7 +22,7 @@ * @category Magento * @package Magento_Validator * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/Magento/Validator/_files/validation/negative/invalid_child_for_option.xml b/dev/tests/unit/testsuite/Magento/Validator/_files/validation/negative/invalid_child_for_option.xml index 5ff6b80f553f0b7af1812756f952e6f22576ebeb..2401e3fe385357b05c4f852c454cc54e820a7867 100644 --- a/dev/tests/unit/testsuite/Magento/Validator/_files/validation/negative/invalid_child_for_option.xml +++ b/dev/tests/unit/testsuite/Magento/Validator/_files/validation/negative/invalid_child_for_option.xml @@ -22,7 +22,7 @@ * @category Magento * @package Magento_Validator * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/Magento/Validator/_files/validation/negative/invalid_constraint.xml b/dev/tests/unit/testsuite/Magento/Validator/_files/validation/negative/invalid_constraint.xml index 582dd80ac344a4cfd8f604bedfac4403a6ce8d2d..62e75a739cb4deae6c4814c766bf3a490c9daeae 100644 --- a/dev/tests/unit/testsuite/Magento/Validator/_files/validation/negative/invalid_constraint.xml +++ b/dev/tests/unit/testsuite/Magento/Validator/_files/validation/negative/invalid_constraint.xml @@ -22,7 +22,7 @@ * @category Magento * @package Magento_Validator * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/Magento/Validator/_files/validation/negative/invalid_content_for callback.xml b/dev/tests/unit/testsuite/Magento/Validator/_files/validation/negative/invalid_content_for callback.xml index c5a52b07d315c83ddc78a643b64de0a60984f43b..80159766b8810510ac48c7638af716dba9d657e9 100644 --- a/dev/tests/unit/testsuite/Magento/Validator/_files/validation/negative/invalid_content_for callback.xml +++ b/dev/tests/unit/testsuite/Magento/Validator/_files/validation/negative/invalid_content_for callback.xml @@ -22,7 +22,7 @@ * @category Magento * @package Magento_Validator * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/Magento/Validator/_files/validation/negative/invalid_entity_callback.xml b/dev/tests/unit/testsuite/Magento/Validator/_files/validation/negative/invalid_entity_callback.xml index 00ba519b8f5bb6f13ea7fcf116d751ce4a443f29..ab964fb80d54fdbc1480dcd9e2ac9c7d28af8417 100644 --- a/dev/tests/unit/testsuite/Magento/Validator/_files/validation/negative/invalid_entity_callback.xml +++ b/dev/tests/unit/testsuite/Magento/Validator/_files/validation/negative/invalid_entity_callback.xml @@ -22,7 +22,7 @@ * @category Magento * @package Magento_Validator * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/Magento/Validator/_files/validation/negative/invalid_method.xml b/dev/tests/unit/testsuite/Magento/Validator/_files/validation/negative/invalid_method.xml index a1adda646013fd8700e737bbb7d547a12c316893..d844e4c9fc9305e49387742df80dc8bd73898a3f 100644 --- a/dev/tests/unit/testsuite/Magento/Validator/_files/validation/negative/invalid_method.xml +++ b/dev/tests/unit/testsuite/Magento/Validator/_files/validation/negative/invalid_method.xml @@ -22,7 +22,7 @@ * @category Magento * @package Magento_Validator * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/Magento/Validator/_files/validation/negative/invalid_method_callback.xml b/dev/tests/unit/testsuite/Magento/Validator/_files/validation/negative/invalid_method_callback.xml index 7e92483cd9df95e1dc8fbccfb502b832fe0f9498..d33b5e03fb4081d7d46a0c350435848feaa2b781 100644 --- a/dev/tests/unit/testsuite/Magento/Validator/_files/validation/negative/invalid_method_callback.xml +++ b/dev/tests/unit/testsuite/Magento/Validator/_files/validation/negative/invalid_method_callback.xml @@ -22,7 +22,7 @@ * @category Magento * @package Magento_Validator * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/Magento/Validator/_files/validation/negative/multiple_callback_in_argument.xml b/dev/tests/unit/testsuite/Magento/Validator/_files/validation/negative/multiple_callback_in_argument.xml index a0ad53eb6358ac0383ef36b10408aefb0f64d921..03198346d603e583df4fde0f84bb2077a41b34ac 100644 --- a/dev/tests/unit/testsuite/Magento/Validator/_files/validation/negative/multiple_callback_in_argument.xml +++ b/dev/tests/unit/testsuite/Magento/Validator/_files/validation/negative/multiple_callback_in_argument.xml @@ -22,7 +22,7 @@ * @category Magento * @package Magento_Validator * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/Magento/Validator/_files/validation/negative/no_class_for_constraint.xml b/dev/tests/unit/testsuite/Magento/Validator/_files/validation/negative/no_class_for_constraint.xml index 344622e16d0b406bf6f538daede7527fc08c4704..e9a0647e6a382cea5bd9747d449d992d0d89d130 100644 --- a/dev/tests/unit/testsuite/Magento/Validator/_files/validation/negative/no_class_for_constraint.xml +++ b/dev/tests/unit/testsuite/Magento/Validator/_files/validation/negative/no_class_for_constraint.xml @@ -22,7 +22,7 @@ * @category Magento * @package Magento_Validator * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/Magento/Validator/_files/validation/negative/no_constraint.xml b/dev/tests/unit/testsuite/Magento/Validator/_files/validation/negative/no_constraint.xml index 0167bbdb0f9735ab5a4759fdce1c0b0253709db4..af32317c2184ad55d486090c2c773aeaa09e6bc3 100644 --- a/dev/tests/unit/testsuite/Magento/Validator/_files/validation/negative/no_constraint.xml +++ b/dev/tests/unit/testsuite/Magento/Validator/_files/validation/negative/no_constraint.xml @@ -22,7 +22,7 @@ * @category Magento * @package Magento_Validator * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/Magento/Validator/_files/validation/negative/no_name_for_entity.xml b/dev/tests/unit/testsuite/Magento/Validator/_files/validation/negative/no_name_for_entity.xml index e681adf52b9c467c8cd3d33a12a1b051bf97328e..ed0f1e7187a9f0f944f76cddb99f1a2447f62e47 100644 --- a/dev/tests/unit/testsuite/Magento/Validator/_files/validation/negative/no_name_for_entity.xml +++ b/dev/tests/unit/testsuite/Magento/Validator/_files/validation/negative/no_name_for_entity.xml @@ -22,7 +22,7 @@ * @category Magento * @package Magento_Validator * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/Magento/Validator/_files/validation/negative/no_name_for_group.xml b/dev/tests/unit/testsuite/Magento/Validator/_files/validation/negative/no_name_for_group.xml index ca6da799fc460c471d9d596f2ac03c62f5c33ec0..a0debf82b7465993e2a13712e95b93c98e063575 100644 --- a/dev/tests/unit/testsuite/Magento/Validator/_files/validation/negative/no_name_for_group.xml +++ b/dev/tests/unit/testsuite/Magento/Validator/_files/validation/negative/no_name_for_group.xml @@ -22,7 +22,7 @@ * @category Magento * @package Magento_Validator * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/Magento/Validator/_files/validation/negative/no_name_for_rule.xml b/dev/tests/unit/testsuite/Magento/Validator/_files/validation/negative/no_name_for_rule.xml index 74b96f66d781561b573fa48185b37ae7a6d0d002..0242cab0a3bcbcfecfd2c8e8573610ed0f0fd7b2 100644 --- a/dev/tests/unit/testsuite/Magento/Validator/_files/validation/negative/no_name_for_rule.xml +++ b/dev/tests/unit/testsuite/Magento/Validator/_files/validation/negative/no_name_for_rule.xml @@ -22,7 +22,7 @@ * @category Magento * @package Magento_Validator * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/Magento/Validator/_files/validation/negative/no_rule_for_reference.xml b/dev/tests/unit/testsuite/Magento/Validator/_files/validation/negative/no_rule_for_reference.xml index 44a16a1053a6c44284d6586874a6b872fb10078b..e92c815ae0216be79cb22070a2f9434084754b24 100644 --- a/dev/tests/unit/testsuite/Magento/Validator/_files/validation/negative/no_rule_for_reference.xml +++ b/dev/tests/unit/testsuite/Magento/Validator/_files/validation/negative/no_rule_for_reference.xml @@ -22,7 +22,7 @@ * @category Magento * @package Magento_Validator * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/Magento/Validator/_files/validation/negative/not_unique_use.xml b/dev/tests/unit/testsuite/Magento/Validator/_files/validation/negative/not_unique_use.xml index ac2e38c81d16ed2c205da50bf219874ae5dd2832..235c69cc7cc89e8acaec2cd7b8c53dd2c4f540f1 100644 --- a/dev/tests/unit/testsuite/Magento/Validator/_files/validation/negative/not_unique_use.xml +++ b/dev/tests/unit/testsuite/Magento/Validator/_files/validation/negative/not_unique_use.xml @@ -22,7 +22,7 @@ * @category Magento * @package Magento_Validator * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/Magento/Validator/_files/validation/positive/builder/validation.xml b/dev/tests/unit/testsuite/Magento/Validator/_files/validation/positive/builder/validation.xml index c1382e34be26e34206a2a658d0f3228f8fb8d032..79e541c899a4e2a1327b5e256c959c7074d44de1 100644 --- a/dev/tests/unit/testsuite/Magento/Validator/_files/validation/positive/builder/validation.xml +++ b/dev/tests/unit/testsuite/Magento/Validator/_files/validation/positive/builder/validation.xml @@ -22,7 +22,7 @@ * @category Magento * @package Magento_Validator * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/Magento/Validator/_files/validation/positive/module_a/validation.xml b/dev/tests/unit/testsuite/Magento/Validator/_files/validation/positive/module_a/validation.xml index 65c150d833e5f8a02950300d691ad4ef5c705e98..ff0594c5f19332c97e6512d69b8d4cfaa389beae 100644 --- a/dev/tests/unit/testsuite/Magento/Validator/_files/validation/positive/module_a/validation.xml +++ b/dev/tests/unit/testsuite/Magento/Validator/_files/validation/positive/module_a/validation.xml @@ -22,7 +22,7 @@ * @category Magento * @package Magento_Validator * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/Magento/Validator/_files/validation/positive/module_b/validation.xml b/dev/tests/unit/testsuite/Magento/Validator/_files/validation/positive/module_b/validation.xml index e9e76658fa0903009693945283c9d093e8bee55b..d125ae034e71f2aeac800d6d6e9580b67bb4f829 100644 --- a/dev/tests/unit/testsuite/Magento/Validator/_files/validation/positive/module_b/validation.xml +++ b/dev/tests/unit/testsuite/Magento/Validator/_files/validation/positive/module_b/validation.xml @@ -22,7 +22,7 @@ * @category Magento * @package Magento_Validator * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/Magento/ValidatorTest.php b/dev/tests/unit/testsuite/Magento/ValidatorTest.php index 58ce30e6764defe037147e7bf349c8748d60b1df..7c557cc66576b1fd959a41f34bf4510b45b074db 100644 --- a/dev/tests/unit/testsuite/Magento/ValidatorTest.php +++ b/dev/tests/unit/testsuite/Magento/ValidatorTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Magento_Validator * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Varien/Data/Collection/DbTest.php b/dev/tests/unit/testsuite/Varien/Data/Collection/DbTest.php index 4fdddfacff4e363865473bc9ccc2831c77e41573..27b0fe69705ecd33dd68d520ce32b6346780f2f3 100644 --- a/dev/tests/unit/testsuite/Varien/Data/Collection/DbTest.php +++ b/dev/tests/unit/testsuite/Varien/Data/Collection/DbTest.php @@ -21,7 +21,7 @@ * @category Varien * @package Varien_Data * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Varien/Data/CollectionTest.php b/dev/tests/unit/testsuite/Varien/Data/CollectionTest.php index 6aa0c622965eb2efe65b88d0066d1b0c4a70b87d..e2377e7bf83d688b7305fda0e1bd86318b744a21 100644 --- a/dev/tests/unit/testsuite/Varien/Data/CollectionTest.php +++ b/dev/tests/unit/testsuite/Varien/Data/CollectionTest.php @@ -18,7 +18,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Varien/Data/Form/Element/EditablemultiselectTest.php b/dev/tests/unit/testsuite/Varien/Data/Form/Element/EditablemultiselectTest.php index 05228765102e7021147239607125a4e5d110e34e..5467c35d54f7b5a184bcfb839e0e478ea52b4dc7 100644 --- a/dev/tests/unit/testsuite/Varien/Data/Form/Element/EditablemultiselectTest.php +++ b/dev/tests/unit/testsuite/Varien/Data/Form/Element/EditablemultiselectTest.php @@ -21,7 +21,7 @@ * @category Varien * @package Varien_Data * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Varien/Data/Form/Element/MultiselectTest.php b/dev/tests/unit/testsuite/Varien/Data/Form/Element/MultiselectTest.php index 9a891a0fee9a683f81809e79f6ac4b3845d3b02d..4ac494faeb27b325bf17440df8911511fa9cdf59 100644 --- a/dev/tests/unit/testsuite/Varien/Data/Form/Element/MultiselectTest.php +++ b/dev/tests/unit/testsuite/Varien/Data/Form/Element/MultiselectTest.php @@ -21,7 +21,7 @@ * @category Varien * @package Varien_Data * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Varien/DateTest.php b/dev/tests/unit/testsuite/Varien/DateTest.php index d37bd65ceeac50d3ddd06fc5a55048ca975d570b..8b8621f017be8645e5f320cfaf95b9ab0ce5308b 100644 --- a/dev/tests/unit/testsuite/Varien/DateTest.php +++ b/dev/tests/unit/testsuite/Varien/DateTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Varien/Db/Adapter/Pdo/MysqlTest.php b/dev/tests/unit/testsuite/Varien/Db/Adapter/Pdo/MysqlTest.php index 1a3ad233cad45b5bc733d24727f17a7e5efb3851..5c428c0b0b3b7de5c6d9508d36bf8334a69252df 100644 --- a/dev/tests/unit/testsuite/Varien/Db/Adapter/Pdo/MysqlTest.php +++ b/dev/tests/unit/testsuite/Varien/Db/Adapter/Pdo/MysqlTest.php @@ -21,7 +21,7 @@ * @category Varien * @package Varien_Data * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Varien/Db/ProfilerTest.php b/dev/tests/unit/testsuite/Varien/Db/ProfilerTest.php index d9edec8ece3ee9d45b80ab5ebc17155eb9a3756e..5443c227b0caf4f0250d9cc35aeaa9303c1a6ed9 100644 --- a/dev/tests/unit/testsuite/Varien/Db/ProfilerTest.php +++ b/dev/tests/unit/testsuite/Varien/Db/ProfilerTest.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Varien_Db_ProfilerTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Varien/Db/SelectTest.php b/dev/tests/unit/testsuite/Varien/Db/SelectTest.php index 65ba994e09c8d8b29223160b14511e63628a3341..f270dfa2fe352c717d77fc08125bc6d6d1d1bed1 100644 --- a/dev/tests/unit/testsuite/Varien/Db/SelectTest.php +++ b/dev/tests/unit/testsuite/Varien/Db/SelectTest.php @@ -21,7 +21,7 @@ * @category Varien * @package Varien_Db * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Varien/Image/Adapter/AbstractTest.php b/dev/tests/unit/testsuite/Varien/Image/Adapter/AbstractTest.php index 5488e33f0d414395931baee7c774e00c1b12eb8b..b296a39b0ebf99367628dc1183a0ed8e02846ae6 100644 --- a/dev/tests/unit/testsuite/Varien/Image/Adapter/AbstractTest.php +++ b/dev/tests/unit/testsuite/Varien/Image/Adapter/AbstractTest.php @@ -21,7 +21,7 @@ * @category Varien * @package Varien_Image * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Varien/Image/Adapter/ImageMagickTest.php b/dev/tests/unit/testsuite/Varien/Image/Adapter/ImageMagickTest.php index 00dda7dd0e76988893c2ddaedf6b54bd09e1a619..b52939a2dc8a55b32b2643b25608d9e1a9fddcc4 100644 --- a/dev/tests/unit/testsuite/Varien/Image/Adapter/ImageMagickTest.php +++ b/dev/tests/unit/testsuite/Varien/Image/Adapter/ImageMagickTest.php @@ -21,7 +21,7 @@ * @category Varien * @package Varien_Image * @subpackage unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Varien_Image_Adapter_ImageMagickTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Varien/Io/FileTest.php b/dev/tests/unit/testsuite/Varien/Io/FileTest.php index d71fbebb816145965e7db40760dadca093a0f53a..fcde91d2d2e6ee5ba013a8a82c5717de946937b8 100644 --- a/dev/tests/unit/testsuite/Varien/Io/FileTest.php +++ b/dev/tests/unit/testsuite/Varien/Io/FileTest.php @@ -18,7 +18,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Varien/ObjectTest.php b/dev/tests/unit/testsuite/Varien/ObjectTest.php index affd21ea11a1aadf65d27d8e673a8ae2bfb390f8..b00fccdd291555268d4ff201f4a598bf3adaa19c 100644 --- a/dev/tests/unit/testsuite/Varien/ObjectTest.php +++ b/dev/tests/unit/testsuite/Varien/ObjectTest.php @@ -21,7 +21,7 @@ * @category Magento * @package Mage_Core * @subpackage integration_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/Varien/Simplexml/ElementTest.php b/dev/tests/unit/testsuite/Varien/Simplexml/ElementTest.php index de3ae0feaeaca020615b7a891c8b6055244fb4b8..91d4e9985bd307d520b79a1d7790b86e19bfbe58 100644 --- a/dev/tests/unit/testsuite/Varien/Simplexml/ElementTest.php +++ b/dev/tests/unit/testsuite/Varien/Simplexml/ElementTest.php @@ -18,7 +18,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Varien_Simplexml_ElementTest extends PHPUnit_Framework_TestCase diff --git a/dev/tests/unit/testsuite/Varien/Simplexml/_files/data.xml b/dev/tests/unit/testsuite/Varien/Simplexml/_files/data.xml index a56aebef384ccee53e519d32064b164c01d658d5..4dd33c895ae37c24d47b8a8aafdc632eaea7f693 100644 --- a/dev/tests/unit/testsuite/Varien/Simplexml/_files/data.xml +++ b/dev/tests/unit/testsuite/Varien/Simplexml/_files/data.xml @@ -19,7 +19,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/Varien/Simplexml/_files/mixed_data.xml b/dev/tests/unit/testsuite/Varien/Simplexml/_files/mixed_data.xml index 883d8c6929633ffd358c9e58389531230ab2ceaa..82e48b01a45c23fa563cfd97cc13c536c0f8819d 100644 --- a/dev/tests/unit/testsuite/Varien/Simplexml/_files/mixed_data.xml +++ b/dev/tests/unit/testsuite/Varien/Simplexml/_files/mixed_data.xml @@ -19,7 +19,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/tools/migration/Acl/Db/Adapter/FactoryTest.php b/dev/tests/unit/testsuite/tools/migration/Acl/Db/Adapter/FactoryTest.php index d01d1c9da473c0f0441c69a415db0febe694f522..f7b022fec3696c5ee61570f0eef7498b0e6a4503 100644 --- a/dev/tests/unit/testsuite/tools/migration/Acl/Db/Adapter/FactoryTest.php +++ b/dev/tests/unit/testsuite/tools/migration/Acl/Db/Adapter/FactoryTest.php @@ -20,7 +20,7 @@ * * @category Tools * @package unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/tools/migration/Acl/Db/FileReaderTest.php b/dev/tests/unit/testsuite/tools/migration/Acl/Db/FileReaderTest.php index 45c79f99f7d4f8c074484c8b4710edf5c61c0152..5679a6c39db98d9b6753356f4f988c17bf72164a 100644 --- a/dev/tests/unit/testsuite/tools/migration/Acl/Db/FileReaderTest.php +++ b/dev/tests/unit/testsuite/tools/migration/Acl/Db/FileReaderTest.php @@ -20,7 +20,7 @@ * * @category Tools * @package unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/tools/migration/Acl/Db/Logger/ConsoleTest.php b/dev/tests/unit/testsuite/tools/migration/Acl/Db/Logger/ConsoleTest.php index f6886164315a67b42ac56a8e9fb2a753fec67450..8268c405b915094440d591a7aadc62e4fd850720 100644 --- a/dev/tests/unit/testsuite/tools/migration/Acl/Db/Logger/ConsoleTest.php +++ b/dev/tests/unit/testsuite/tools/migration/Acl/Db/Logger/ConsoleTest.php @@ -20,7 +20,7 @@ * * @category Tools * @package unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/tools/migration/Acl/Db/Logger/FactoryTest.php b/dev/tests/unit/testsuite/tools/migration/Acl/Db/Logger/FactoryTest.php index e8b440f3732e071f3e290a7cadd104cafed1402c..34d9120d3870e415b46cf8b4ebfdf6f12a5159eb 100644 --- a/dev/tests/unit/testsuite/tools/migration/Acl/Db/Logger/FactoryTest.php +++ b/dev/tests/unit/testsuite/tools/migration/Acl/Db/Logger/FactoryTest.php @@ -20,7 +20,7 @@ * * @category Tools * @package unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/tools/migration/Acl/Db/Logger/FileTest.php b/dev/tests/unit/testsuite/tools/migration/Acl/Db/Logger/FileTest.php index 4fcb0d822a50b8001c61b247a89f3be5d0181b62..95bd231c1afbe0c72fa7dd2650762a4d6ef13cba 100644 --- a/dev/tests/unit/testsuite/tools/migration/Acl/Db/Logger/FileTest.php +++ b/dev/tests/unit/testsuite/tools/migration/Acl/Db/Logger/FileTest.php @@ -20,7 +20,7 @@ * * @category Tools * @package unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/tools/migration/Acl/Db/LoggerAbstractTest.php b/dev/tests/unit/testsuite/tools/migration/Acl/Db/LoggerAbstractTest.php index 2817d31c7a062711f22275fa5ab1d8746c55442f..f02c009851e4d718a95d56c833015cfadbae6eb7 100644 --- a/dev/tests/unit/testsuite/tools/migration/Acl/Db/LoggerAbstractTest.php +++ b/dev/tests/unit/testsuite/tools/migration/Acl/Db/LoggerAbstractTest.php @@ -20,7 +20,7 @@ * * @category Tools * @package unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/tools/migration/Acl/Db/ReaderTest.php b/dev/tests/unit/testsuite/tools/migration/Acl/Db/ReaderTest.php index b92f0905cb19bf3d88a9e2a57a37cea4444045fd..e8b59a9d0d11830db8758eb9f092401992c4d599 100644 --- a/dev/tests/unit/testsuite/tools/migration/Acl/Db/ReaderTest.php +++ b/dev/tests/unit/testsuite/tools/migration/Acl/Db/ReaderTest.php @@ -20,7 +20,7 @@ * * @category Tools * @package unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/tools/migration/Acl/Db/UpdaterTest.php b/dev/tests/unit/testsuite/tools/migration/Acl/Db/UpdaterTest.php index 9d42e9e52208e231e8fd8b6a2b8ce9a0d74cb650..63e03f6468fe15402dc2a199b8899742983b44d3 100644 --- a/dev/tests/unit/testsuite/tools/migration/Acl/Db/UpdaterTest.php +++ b/dev/tests/unit/testsuite/tools/migration/Acl/Db/UpdaterTest.php @@ -20,7 +20,7 @@ * * @category Tools * @package unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ require_once realpath(dirname(__FILE__) . '/../../../../../../../') . '/tools/migration/Acl/Db/Updater.php'; diff --git a/dev/tests/unit/testsuite/tools/migration/Acl/Db/WriterTest.php b/dev/tests/unit/testsuite/tools/migration/Acl/Db/WriterTest.php index 7389f5a66602f094ff51040b03c1abfe554fd451..ecf9ab6aa1c46e663b7eebc8774b075b04714637 100644 --- a/dev/tests/unit/testsuite/tools/migration/Acl/Db/WriterTest.php +++ b/dev/tests/unit/testsuite/tools/migration/Acl/Db/WriterTest.php @@ -20,7 +20,7 @@ * * @category Tools * @package unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/tools/migration/Acl/GeneratorRemoveTest.php b/dev/tests/unit/testsuite/tools/migration/Acl/GeneratorRemoveTest.php index 6dcc45ef43271a40bf6ce312fe874086df7fb7bd..21ff9a66712eae3b65eba4bb49812165e3ac7fa6 100644 --- a/dev/tests/unit/testsuite/tools/migration/Acl/GeneratorRemoveTest.php +++ b/dev/tests/unit/testsuite/tools/migration/Acl/GeneratorRemoveTest.php @@ -20,7 +20,7 @@ * * @category Tools * @package unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/tools/migration/Acl/GeneratorSaveTest.php b/dev/tests/unit/testsuite/tools/migration/Acl/GeneratorSaveTest.php index 95d7597d9407b1b3d838eedd80ad80c4f2ec159d..90ba3a0a610b65790f3da34dcea364b89ca50938 100644 --- a/dev/tests/unit/testsuite/tools/migration/Acl/GeneratorSaveTest.php +++ b/dev/tests/unit/testsuite/tools/migration/Acl/GeneratorSaveTest.php @@ -20,7 +20,7 @@ * * @category Tools * @package unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/tools/migration/Acl/GeneratorTest.php b/dev/tests/unit/testsuite/tools/migration/Acl/GeneratorTest.php index a76bef483e9b2913e32f8c19dda6d33675ca9de9..7e9ba62ec971e5a166f55f3debdb4c85015fd4f4 100644 --- a/dev/tests/unit/testsuite/tools/migration/Acl/GeneratorTest.php +++ b/dev/tests/unit/testsuite/tools/migration/Acl/GeneratorTest.php @@ -20,7 +20,7 @@ * * @category Tools * @package unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/tools/migration/Acl/Menu/GeneratorTest.php b/dev/tests/unit/testsuite/tools/migration/Acl/Menu/GeneratorTest.php index d4c302887c290cbe0c78b8e312fba6792cdcf90b..1624eb74c935e2949b50c8d191558bbc7947b675 100644 --- a/dev/tests/unit/testsuite/tools/migration/Acl/Menu/GeneratorTest.php +++ b/dev/tests/unit/testsuite/tools/migration/Acl/Menu/GeneratorTest.php @@ -20,7 +20,7 @@ * * @category Tools * @package unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/tools/migration/Acl/_files/app/code/community/Namespace/Module/etc/adminhtml.xml b/dev/tests/unit/testsuite/tools/migration/Acl/_files/app/code/community/Namespace/Module/etc/adminhtml.xml index af1b7b191a1305e2e6fd7396e5ee4c6e3a88c1b1..c2cc138e5fceddd24201354abe44249a7049d415 100644 --- a/dev/tests/unit/testsuite/tools/migration/Acl/_files/app/code/community/Namespace/Module/etc/adminhtml.xml +++ b/dev/tests/unit/testsuite/tools/migration/Acl/_files/app/code/community/Namespace/Module/etc/adminhtml.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/tools/migration/Acl/_files/app/code/community/Namespace/Module/etc/adminhtml/menu.xml b/dev/tests/unit/testsuite/tools/migration/Acl/_files/app/code/community/Namespace/Module/etc/adminhtml/menu.xml index a071570a1433ea1f6abab1d4e4c3914aa631f60f..8af3fcd6ab30ec1c7683adc913422708a2c3aee9 100644 --- a/dev/tests/unit/testsuite/tools/migration/Acl/_files/app/code/community/Namespace/Module/etc/adminhtml/menu.xml +++ b/dev/tests/unit/testsuite/tools/migration/Acl/_files/app/code/community/Namespace/Module/etc/adminhtml/menu.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Module_Name - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/tools/migration/Acl/_files/app/code/core/ANamespace/Module/etc/adminhtml.xml b/dev/tests/unit/testsuite/tools/migration/Acl/_files/app/code/core/ANamespace/Module/etc/adminhtml.xml index af1b7b191a1305e2e6fd7396e5ee4c6e3a88c1b1..c2cc138e5fceddd24201354abe44249a7049d415 100644 --- a/dev/tests/unit/testsuite/tools/migration/Acl/_files/app/code/core/ANamespace/Module/etc/adminhtml.xml +++ b/dev/tests/unit/testsuite/tools/migration/Acl/_files/app/code/core/ANamespace/Module/etc/adminhtml.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/tools/migration/Acl/_files/app/code/core/ANamespace/Module/etc/adminhtml/menu.xml b/dev/tests/unit/testsuite/tools/migration/Acl/_files/app/code/core/ANamespace/Module/etc/adminhtml/menu.xml index d6f88ddb806dc57bd091bfbacea47faf1cd3df14..ab58511a8332748b5f36f45c02654ba38ac6c9a8 100644 --- a/dev/tests/unit/testsuite/tools/migration/Acl/_files/app/code/core/ANamespace/Module/etc/adminhtml/menu.xml +++ b/dev/tests/unit/testsuite/tools/migration/Acl/_files/app/code/core/ANamespace/Module/etc/adminhtml/menu.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Module - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/tools/migration/Acl/_files/app/code/core/BNamespace/Module/etc/adminhtml.xml b/dev/tests/unit/testsuite/tools/migration/Acl/_files/app/code/core/BNamespace/Module/etc/adminhtml.xml index af1b7b191a1305e2e6fd7396e5ee4c6e3a88c1b1..c2cc138e5fceddd24201354abe44249a7049d415 100644 --- a/dev/tests/unit/testsuite/tools/migration/Acl/_files/app/code/core/BNamespace/Module/etc/adminhtml.xml +++ b/dev/tests/unit/testsuite/tools/migration/Acl/_files/app/code/core/BNamespace/Module/etc/adminhtml.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/tools/migration/Acl/_files/app/code/core/BNamespace/Module/etc/adminhtml/menu.xml b/dev/tests/unit/testsuite/tools/migration/Acl/_files/app/code/core/BNamespace/Module/etc/adminhtml/menu.xml index 25f853e74c77026a87422c79f5ff09a5ea27fac4..acc9cb9e9f0374126099c96d9c6ecccae8571f56 100644 --- a/dev/tests/unit/testsuite/tools/migration/Acl/_files/app/code/core/BNamespace/Module/etc/adminhtml/menu.xml +++ b/dev/tests/unit/testsuite/tools/migration/Acl/_files/app/code/core/BNamespace/Module/etc/adminhtml/menu.xml @@ -21,7 +21,7 @@ * * @category Some * @package Some_Module - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/tools/migration/Acl/_files/app/code/local/Namespace/Module/etc/adminhtml.xml b/dev/tests/unit/testsuite/tools/migration/Acl/_files/app/code/local/Namespace/Module/etc/adminhtml.xml index af1b7b191a1305e2e6fd7396e5ee4c6e3a88c1b1..c2cc138e5fceddd24201354abe44249a7049d415 100644 --- a/dev/tests/unit/testsuite/tools/migration/Acl/_files/app/code/local/Namespace/Module/etc/adminhtml.xml +++ b/dev/tests/unit/testsuite/tools/migration/Acl/_files/app/code/local/Namespace/Module/etc/adminhtml.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Customer - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/tools/migration/Acl/_files/app/code/local/Namespace/Module/etc/adminhtml/menu.xml b/dev/tests/unit/testsuite/tools/migration/Acl/_files/app/code/local/Namespace/Module/etc/adminhtml/menu.xml index 699633634b4e86dd58d0a7a7cccdc3e8173f483e..713428a19a13fc944bbd3ca40fb8caad1e0e1047 100644 --- a/dev/tests/unit/testsuite/tools/migration/Acl/_files/app/code/local/Namespace/Module/etc/adminhtml/menu.xml +++ b/dev/tests/unit/testsuite/tools/migration/Acl/_files/app/code/local/Namespace/Module/etc/adminhtml/menu.xml @@ -21,7 +21,7 @@ * * @category Local * @package Local_Module - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/tools/migration/Acl/_files/parse_node_result.xml b/dev/tests/unit/testsuite/tools/migration/Acl/_files/parse_node_result.xml index 4ad4de982fc3db79edba4013a24748b4be5fe554..332a129e6789b5fa6663078dfdc01ebfe132edc8 100644 --- a/dev/tests/unit/testsuite/tools/migration/Acl/_files/parse_node_result.xml +++ b/dev/tests/unit/testsuite/tools/migration/Acl/_files/parse_node_result.xml @@ -21,7 +21,7 @@ * * @category Dummy * @package Module_Dummy - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/tools/migration/Acl/_files/parse_node_source.xml b/dev/tests/unit/testsuite/tools/migration/Acl/_files/parse_node_source.xml index 9766f368a8c2ff533aa9d4c2a1f86a978741c971..b238e54e4ccdb53f4f53b9d1da509e70511e667f 100644 --- a/dev/tests/unit/testsuite/tools/migration/Acl/_files/parse_node_source.xml +++ b/dev/tests/unit/testsuite/tools/migration/Acl/_files/parse_node_source.xml @@ -21,7 +21,7 @@ * * @category Dummy * @package Module_Dummy - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/tools/migration/Acl/_files/remove/empty.xml b/dev/tests/unit/testsuite/tools/migration/Acl/_files/remove/empty.xml index 3b416fd657d90539725e70d6d95e9b21837afce8..0e4e7435c8e854339777179255add13dfc078116 100644 --- a/dev/tests/unit/testsuite/tools/migration/Acl/_files/remove/empty.xml +++ b/dev/tests/unit/testsuite/tools/migration/Acl/_files/remove/empty.xml @@ -21,7 +21,7 @@ * * @category Dummy * @package Module_Dummy - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/tools/migration/Acl/_files/remove/not_empty.xml b/dev/tests/unit/testsuite/tools/migration/Acl/_files/remove/not_empty.xml index ec508ea4341eaab4dd1cd409fadb45b310ed0688..290d9952cc04404777f3eee0b84362f29b218cab 100644 --- a/dev/tests/unit/testsuite/tools/migration/Acl/_files/remove/not_empty.xml +++ b/dev/tests/unit/testsuite/tools/migration/Acl/_files/remove/not_empty.xml @@ -21,7 +21,7 @@ * * @category Dummy * @package Module_Dummy - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/tools/migration/Acl/_files/save/adminhtml.xml b/dev/tests/unit/testsuite/tools/migration/Acl/_files/save/adminhtml.xml index 9766f368a8c2ff533aa9d4c2a1f86a978741c971..b238e54e4ccdb53f4f53b9d1da509e70511e667f 100644 --- a/dev/tests/unit/testsuite/tools/migration/Acl/_files/save/adminhtml.xml +++ b/dev/tests/unit/testsuite/tools/migration/Acl/_files/save/adminhtml.xml @@ -21,7 +21,7 @@ * * @category Dummy * @package Module_Dummy - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/tools/migration/Acl/_files/update_child_acl_nodes_result.xml b/dev/tests/unit/testsuite/tools/migration/Acl/_files/update_child_acl_nodes_result.xml index f883db1fbc76ee33a804d60e4b0fd8e78a45586c..98cecac2c9fed4fb80e5642a9dc01281586275cb 100644 --- a/dev/tests/unit/testsuite/tools/migration/Acl/_files/update_child_acl_nodes_result.xml +++ b/dev/tests/unit/testsuite/tools/migration/Acl/_files/update_child_acl_nodes_result.xml @@ -21,7 +21,7 @@ * * @category Category * @package Module_Name - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/tools/migration/Acl/_files/update_child_acl_nodes_source.xml b/dev/tests/unit/testsuite/tools/migration/Acl/_files/update_child_acl_nodes_source.xml index 32136da96c78863385f33527a35316726946728a..467fe18fd671c8738f0d74a566d0f9b3ae4296e2 100644 --- a/dev/tests/unit/testsuite/tools/migration/Acl/_files/update_child_acl_nodes_source.xml +++ b/dev/tests/unit/testsuite/tools/migration/Acl/_files/update_child_acl_nodes_source.xml @@ -21,7 +21,7 @@ * * @category Category * @package Module_Name - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/tools/migration/Acl/_files/update_menu_attributes_result.xml b/dev/tests/unit/testsuite/tools/migration/Acl/_files/update_menu_attributes_result.xml index 517563082c5bc3f4ba7dbaf060c22b1d5eb6d3cc..7bbb01dd6a8fc4ee9dc6660e28428d1174f1f205 100644 --- a/dev/tests/unit/testsuite/tools/migration/Acl/_files/update_menu_attributes_result.xml +++ b/dev/tests/unit/testsuite/tools/migration/Acl/_files/update_menu_attributes_result.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Module_Name - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/tools/migration/Acl/_files/update_menu_attributes_source.xml b/dev/tests/unit/testsuite/tools/migration/Acl/_files/update_menu_attributes_source.xml index 68d89207cc319f5cfc86c1445e06c080c03ef818..ba447add6ef354875e58a325264a1ea8d6c3cfb2 100644 --- a/dev/tests/unit/testsuite/tools/migration/Acl/_files/update_menu_attributes_source.xml +++ b/dev/tests/unit/testsuite/tools/migration/Acl/_files/update_menu_attributes_source.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Module_Name - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/tools/migration/System/Configuration/GeneratorTest.php b/dev/tests/unit/testsuite/tools/migration/System/Configuration/GeneratorTest.php index 889cf721fd9e7e6147aab2266c763ec0e6dd1532..2fcb1fb98f2812dd18534d7dad39107ac87bff15 100644 --- a/dev/tests/unit/testsuite/tools/migration/System/Configuration/GeneratorTest.php +++ b/dev/tests/unit/testsuite/tools/migration/System/Configuration/GeneratorTest.php @@ -20,7 +20,7 @@ * * @category Magento * @package tools - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/tools/migration/System/Configuration/Logger/ConsoleTest.php b/dev/tests/unit/testsuite/tools/migration/System/Configuration/Logger/ConsoleTest.php index 3358854b0d6f24f8cb52a993f41fa6e26d72346a..69bc3eb810184a04d0f2e2487c31fb8dffd51de4 100644 --- a/dev/tests/unit/testsuite/tools/migration/System/Configuration/Logger/ConsoleTest.php +++ b/dev/tests/unit/testsuite/tools/migration/System/Configuration/Logger/ConsoleTest.php @@ -20,7 +20,7 @@ * * @category Tools * @package unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/tools/migration/System/Configuration/Logger/FactoryTest.php b/dev/tests/unit/testsuite/tools/migration/System/Configuration/Logger/FactoryTest.php index a844be759713459df8a24198890cf72473ef6290..598a3898d016c592056138e7e2bf53c3997ccd0e 100644 --- a/dev/tests/unit/testsuite/tools/migration/System/Configuration/Logger/FactoryTest.php +++ b/dev/tests/unit/testsuite/tools/migration/System/Configuration/Logger/FactoryTest.php @@ -20,7 +20,7 @@ * * @category Tools * @package unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/tools/migration/System/Configuration/Logger/FileTest.php b/dev/tests/unit/testsuite/tools/migration/System/Configuration/Logger/FileTest.php index 3d5cd2477a3e2afb98004d7b4e10797100b5df9b..f0c3ff9a3578e45934aaf6e13bda2dfbdb2c8126 100644 --- a/dev/tests/unit/testsuite/tools/migration/System/Configuration/Logger/FileTest.php +++ b/dev/tests/unit/testsuite/tools/migration/System/Configuration/Logger/FileTest.php @@ -20,7 +20,7 @@ * * @category Tools * @package unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/tools/migration/System/Configuration/LoggerAbstractTest.php b/dev/tests/unit/testsuite/tools/migration/System/Configuration/LoggerAbstractTest.php index 885ee089679de4ea4b0233e30a9ac0b5dade994b..62d3afe6e9e527dbe7c4c9adbd49705897510fe0 100644 --- a/dev/tests/unit/testsuite/tools/migration/System/Configuration/LoggerAbstractTest.php +++ b/dev/tests/unit/testsuite/tools/migration/System/Configuration/LoggerAbstractTest.php @@ -20,7 +20,7 @@ * * @category Tools * @package unit_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/tools/migration/System/Configuration/Mapper/FieldTest.php b/dev/tests/unit/testsuite/tools/migration/System/Configuration/Mapper/FieldTest.php index 614d71d013541ebd465c7ba48daa4df219655267..74b49e7ea70a8b5625f640d5d9b43be7ecddd074 100644 --- a/dev/tests/unit/testsuite/tools/migration/System/Configuration/Mapper/FieldTest.php +++ b/dev/tests/unit/testsuite/tools/migration/System/Configuration/Mapper/FieldTest.php @@ -20,7 +20,7 @@ * * @category Magento * @package tools - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/tools/migration/System/Configuration/Mapper/GroupTest.php b/dev/tests/unit/testsuite/tools/migration/System/Configuration/Mapper/GroupTest.php index d5bb511d24935978b725ace4b04cc0a95ea04fd6..132d0d618d7ca705c8941f20677c5a9a0ffab1d0 100644 --- a/dev/tests/unit/testsuite/tools/migration/System/Configuration/Mapper/GroupTest.php +++ b/dev/tests/unit/testsuite/tools/migration/System/Configuration/Mapper/GroupTest.php @@ -20,7 +20,7 @@ * * @category Magento * @package tools - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/tools/migration/System/Configuration/Mapper/SectionTest.php b/dev/tests/unit/testsuite/tools/migration/System/Configuration/Mapper/SectionTest.php index ec6bd45f1e49d064e4d7cfefca2440b25de7b7fe..adc7c5f9b4a0dde46d8a8de11654701cf941e3da 100644 --- a/dev/tests/unit/testsuite/tools/migration/System/Configuration/Mapper/SectionTest.php +++ b/dev/tests/unit/testsuite/tools/migration/System/Configuration/Mapper/SectionTest.php @@ -20,7 +20,7 @@ * * @category Magento * @package tools - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/tools/migration/System/Configuration/Mapper/TabTest.php b/dev/tests/unit/testsuite/tools/migration/System/Configuration/Mapper/TabTest.php index 82a22cd1f2916838786007f67ad76822b081d8a3..b8cd76eb77ed3bc3ebc4e72bcf36d38326ecbbb7 100644 --- a/dev/tests/unit/testsuite/tools/migration/System/Configuration/Mapper/TabTest.php +++ b/dev/tests/unit/testsuite/tools/migration/System/Configuration/Mapper/TabTest.php @@ -20,7 +20,7 @@ * * @category Magento * @package tools - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/tools/migration/System/Configuration/MapperTest.php b/dev/tests/unit/testsuite/tools/migration/System/Configuration/MapperTest.php index 0d9c58e3b059b5b4eb09b516d7ede495b62df499..16804b6f0fd241fab238c5b0a3c0f2b2ac207cad 100644 --- a/dev/tests/unit/testsuite/tools/migration/System/Configuration/MapperTest.php +++ b/dev/tests/unit/testsuite/tools/migration/System/Configuration/MapperTest.php @@ -20,7 +20,7 @@ * * @category Magento * @package tools - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/tools/migration/System/Configuration/ParserTest.php b/dev/tests/unit/testsuite/tools/migration/System/Configuration/ParserTest.php index be3f4de05aadae0169443f23fcea5759f710c304..9f1002f2fb52e7d1d12141f2747874f294f059c9 100644 --- a/dev/tests/unit/testsuite/tools/migration/System/Configuration/ParserTest.php +++ b/dev/tests/unit/testsuite/tools/migration/System/Configuration/ParserTest.php @@ -20,7 +20,7 @@ * * @category Magento * @package tools - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/tools/migration/System/Configuration/ReaderTest.php b/dev/tests/unit/testsuite/tools/migration/System/Configuration/ReaderTest.php index 0ead099e9e9fa8319e5deb8e44b3205408e90cbf..a335f443e739b263d7b86b08eea5570ca7f740ae 100644 --- a/dev/tests/unit/testsuite/tools/migration/System/Configuration/ReaderTest.php +++ b/dev/tests/unit/testsuite/tools/migration/System/Configuration/ReaderTest.php @@ -20,7 +20,7 @@ * * @category Magento * @package tools - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/tools/migration/System/Configuration/_files/convertedConfiguration.xml b/dev/tests/unit/testsuite/tools/migration/System/Configuration/_files/convertedConfiguration.xml index f25bdb67e46867828180b512f30c5a1293121943..86cd7bc621f50930c314c7c8386e4666597c00f7 100644 --- a/dev/tests/unit/testsuite/tools/migration/System/Configuration/_files/convertedConfiguration.xml +++ b/dev/tests/unit/testsuite/tools/migration/System/Configuration/_files/convertedConfiguration.xml @@ -21,7 +21,7 @@ * * @category Dummy * @package Module_Dummy - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/dev/tests/unit/testsuite/tools/migration/System/Configuration/_files/mappedConfiguration.php b/dev/tests/unit/testsuite/tools/migration/System/Configuration/_files/mappedConfiguration.php index 02a490e9872745d37195f050b0188642908cbcc6..9c0be9a7824c7ec3066f4309b43ab916761021bf 100644 --- a/dev/tests/unit/testsuite/tools/migration/System/Configuration/_files/mappedConfiguration.php +++ b/dev/tests/unit/testsuite/tools/migration/System/Configuration/_files/mappedConfiguration.php @@ -20,7 +20,7 @@ * * @category Dummy * @package Module_Dummy - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/tools/migration/System/FileManagerTest.php b/dev/tests/unit/testsuite/tools/migration/System/FileManagerTest.php index 80d496303c831d09bff72aa558adb95fe19a6567..e8cc4c9b00b19d81e5453e7021d49a7712bf571d 100644 --- a/dev/tests/unit/testsuite/tools/migration/System/FileManagerTest.php +++ b/dev/tests/unit/testsuite/tools/migration/System/FileManagerTest.php @@ -20,7 +20,7 @@ * * @category Magento * @package tools - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/unit/testsuite/tools/migration/System/Writer/FactoryTest.php b/dev/tests/unit/testsuite/tools/migration/System/Writer/FactoryTest.php index bdf7bf4c8cd11fc09aa0bbf59ff0d1f30497aed9..1f6397e759263e38589afb2e6b1e3dff93a34b7b 100644 --- a/dev/tests/unit/testsuite/tools/migration/System/Writer/FactoryTest.php +++ b/dev/tests/unit/testsuite/tools/migration/System/Writer/FactoryTest.php @@ -20,7 +20,7 @@ * * @category Magento * @package tools - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tools/batch_tests/batch.bat b/dev/tools/batch_tests/batch.bat deleted file mode 100644 index 33ed6c72255f59d29bc1731d9b8b51ce12178987..0000000000000000000000000000000000000000 --- a/dev/tools/batch_tests/batch.bat +++ /dev/null @@ -1,6 +0,0 @@ -@echo off - -if "%PHPBIN%" == "" set PHPBIN=%PHP_PEAR_PHP_BIN% -if not exist "%PHPBIN%" for %%i in (php.exe) do set PHPBIN=%%~$PATH:i - -"%PHPBIN%" batch.php diff --git a/dev/tools/batch_tests/batch.php b/dev/tools/batch_tests/batch.php deleted file mode 100644 index 3179df004e943fbe2245358e8d41c686bfefaed7..0000000000000000000000000000000000000000 --- a/dev/tools/batch_tests/batch.php +++ /dev/null @@ -1,66 +0,0 @@ -<?php -/** - * Magento - * - * NOTICE OF LICENSE - * - * This source file is subject to the Open Software License (OSL 3.0) - * that is bundled with this package in the file LICENSE.txt. - * It is also available through the world-wide-web at this URL: - * http://opensource.org/licenses/osl-3.0.php - * If you did not receive a copy of the license and are unable to - * obtain it through the world-wide-web, please send an email - * to license@magentocommerce.com so we can send you a copy immediately. - * - * DISCLAIMER - * - * Do not edit or add to this file if you wish to upgrade Magento to newer - * versions in the future. If you wish to customize Magento for your - * needs please refer to http://www.magentocommerce.com for more information. - * - * @category Magento - * @package tools - * @subpackage batch_tests - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) - * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) - */ - -$tests = array( - 'unit' => array('../../tests/unit', ''), - 'unit-performance' => array('../../tests/performance/framework/tests/unit', ''), - 'unit-static' => array('../../tests/static/framework/tests/unit', ''), - 'unit-integration' => array('../../tests/integration/framework/tests/unit', ''), - 'integration' => array('../../tests/integration', ''), - 'static' => array('../../tests/static', ''), -); -$arguments = getopt('', array('all')); -if (isset($arguments['all'])) { - $tests['integration-integrity'] = array('../../tests/integration', ' testsuite/integrity'); - $tests['static'][1] = ' -c phpunit-all.xml.dist'; -} - -$failures = array(); -foreach ($tests as $row) { - list($dir, $options) = $row; - $dirName = realpath(__DIR__ . '/' . $dir); - chdir($dirName); - $command = 'phpunit' . $options; - $message = $dirName . '> ' . $command; - echo "\n\n"; - echo str_pad("---- {$message} ", 70, '-'); - echo "\n\n"; - passthru($command, $returnVal); - if ($returnVal) { - $failures[] = $message; - } -} - -echo "\n" , str_repeat('-', 70), "\n"; -if ($failures) { - echo "\nFAILED - " . count($failures) . ' of ' . count($tests) . ":\n"; - foreach ($failures as $message) { - echo ' - ' . $message . "\n"; - } -} else { - echo "\nPASSED (" . count($tests) . ")\n"; -} diff --git a/dev/tools/batch_tests/batch.sh b/dev/tools/batch_tests/batch.sh deleted file mode 100755 index 907ab8c170980a612d0751d2e75d1cc15734ec38..0000000000000000000000000000000000000000 --- a/dev/tools/batch_tests/batch.sh +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/sh -php batch.php diff --git a/dev/tools/classmap/fs_generator.php b/dev/tools/classmap/fs_generator.php index 793d34928b9dee48c4b593a7f1cd82f77e5fffca..76f3030c2a748557dce5cbe1a48c6361cf60a043 100644 --- a/dev/tools/classmap/fs_generator.php +++ b/dev/tools/classmap/fs_generator.php @@ -20,7 +20,7 @@ * * @category Magento * @package tools - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tools/classmap/log_generator.php b/dev/tools/classmap/log_generator.php index 314ab96e5f387fb70f780d329767264d34013e1e..61c6206d5c3060b1e367db11a9007b1cc1730bee 100644 --- a/dev/tools/classmap/log_generator.php +++ b/dev/tools/classmap/log_generator.php @@ -20,7 +20,7 @@ * * @category Magento * @package tools - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tools/classmap/logger.php b/dev/tools/classmap/logger.php index f24dff7376135f344ee87266b7de1784aaca8f19..eb1d3225fc968ee173a892ab61ccd1f1e2b3e810 100644 --- a/dev/tools/classmap/logger.php +++ b/dev/tools/classmap/logger.php @@ -20,7 +20,7 @@ * * @category Magento * @package tools - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tools/di/compiler.php b/dev/tools/di/compiler.php index b24bc2f5aba7115a029ac33fa2dd9ddeb7014b09..41790602b1c619f67152e7417b2a24422c676935 100644 --- a/dev/tools/di/compiler.php +++ b/dev/tools/di/compiler.php @@ -20,7 +20,7 @@ * * @category Tools * @package DI - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ @@ -42,7 +42,6 @@ Magento_Autoload_IncludePath::addIncludePath(array( BP . DS . 'app' . DS . 'code' . DS . 'core', BP . DS . 'lib', )); -Mage::setRoot(); $definitions = array(); class ArrayDefinitionCompiler diff --git a/dev/tools/license_placeholder/blacklist.php b/dev/tools/license_placeholder/blacklist.php deleted file mode 100644 index 333c0d14509c4de13fbeca76a47c4ba12f9e2a4c..0000000000000000000000000000000000000000 --- a/dev/tools/license_placeholder/blacklist.php +++ /dev/null @@ -1,65 +0,0 @@ -<?php -/** - * Files excluded from license notices replacement - * - * Magento - * - * NOTICE OF LICENSE - * - * This source file is subject to the Open Software License (OSL 3.0) - * that is bundled with this package in the file LICENSE.txt. - * It is also available through the world-wide-web at this URL: - * http://opensource.org/licenses/osl-3.0.php - * If you did not receive a copy of the license and are unable to - * obtain it through the world-wide-web, please send an email - * to license@magentocommerce.com so we can send you a copy immediately. - * - * DISCLAIMER - * - * Do not edit or add to this file if you wish to upgrade Magento to newer - * versions in the future. If you wish to customize Magento for your - * needs please refer to http://www.magentocommerce.com for more information. - * - * @category build - * @package license - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) - * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) - */ - -return array( - 'app/code/core/*/*/etc/{wsi,wsdl,wsdl2}.xml', - 'app/code/core/Zend', - 'app/design/frontend/*/*/js/dnd.js', - 'app/design/frontend/*/*/js/modernizr.js', - 'app/design/frontend/enterprise/fixed/js/jqzoom', - 'app/etc/local.xml', - 'dev/build/publication/license', - 'dev/tests/functional', - 'dev/tests/integration/tmp', - 'dev/tests/static/report', - 'dev/tests/static/testsuite/Php/Exemplar/_files/phpcs', - 'dev/tests/static/testsuite/Php/Exemplar/_files/phpmd/input', - 'dev/tests/static/testsuite/Php/Exemplar/_files/phpmd_ruleset.xsd', - 'downloader/js/prototype.js', - 'lib/Apache', - 'lib/PEAR', - 'lib/phpseclib', - 'lib/Zend', - 'pub/lib/calendar', - 'pub/lib/extjs', - 'pub/lib/firebug', - 'pub/lib/flash', - 'pub/lib/jquery', - 'pub/lib/lib/boxover.js', - 'pub/lib/lib/ccard.js', - 'pub/lib/lib/ds-sleight.js', - 'pub/lib/lib/FABridge.js', - 'pub/lib/mage/adminhtml/hash.js', - 'pub/lib/prototype', - 'pub/lib/scriptaculous', - 'pub/lib/tiny_mce', - 'pub/lib/globalize', - 'pub/lib/jquery', - 'pub/media', - 'var', -); diff --git a/dev/tools/license_placeholder/replace.php b/dev/tools/license_placeholder/replace.php deleted file mode 100644 index fd23f90803d7962bcbd2765db5fd3028c57ad2a0..0000000000000000000000000000000000000000 --- a/dev/tools/license_placeholder/replace.php +++ /dev/null @@ -1,100 +0,0 @@ -<?php -/** - * Automated replacement of license notice into placeholders - * - * Magento - * - * NOTICE OF LICENSE - * - * This source file is subject to the Open Software License (OSL 3.0) - * that is bundled with this package in the file LICENSE.txt. - * It is also available through the world-wide-web at this URL: - * http://opensource.org/licenses/osl-3.0.php - * If you did not receive a copy of the license and are unable to - * obtain it through the world-wide-web, please send an email - * to license@magentocommerce.com so we can send you a copy immediately. - * - * DISCLAIMER - * - * Do not edit or add to this file if you wish to upgrade Magento to newer - * versions in the future. If you wish to customize Magento for your - * needs please refer to http://www.magentocommerce.com for more information. - * - * @category Magento - * @package tools - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) - * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) - */ - -$sourceDir = realpath(__DIR__ . '/../../..'); - -// scan for files (split up into several calls to overcome maximum limitation of 260 chars in glob pattern) -$files = globDir($sourceDir, '*.{xml,xml.template,xml.additional,xml.dist,xml.sample,xsd,mxml}', GLOB_BRACE); -$files = array_merge($files, globDir($sourceDir, '*.{php,php.sample,phtml,html,htm,css,js,as,sql}', GLOB_BRACE)); - -// exclude files from blacklist -$blacklist = require __DIR__ . '/blacklist.php'; -foreach ($blacklist as $item) { - $excludeDirs = glob("{$sourceDir}/{$item}", GLOB_ONLYDIR) ?: array(); - foreach ($excludeDirs as $excludeDir) { - foreach ($files as $i => $file) { - if (0 === strpos($file, $excludeDir)) { - unset($files[$i]); - } - } - } - if (!$excludeDirs) { - $excludeFiles = glob("{$sourceDir}/{$item}", GLOB_BRACE) ?: array(); - foreach ($excludeFiles as $excludeFile) { - $i = array_search($excludeFile, $files); - if (false !== $i) { - unset($files[$i]); - } - } - } -} - -// replace -$licensePlaceholder = ' * {license}' . "\n"; -$replacements = array( - array('/\s\*\sMagento.+?NOTICE OF LICENSE.+?DISCLAIMER.+?@/s', $licensePlaceholder . " *\n * @"), - array('/\ \*\ \{license_notice\}\s/s', $licensePlaceholder), -); -foreach ($files as $file) { - $content = file_get_contents($file); - $newContent = $content; - foreach ($replacements as $row) { - list($regex, $replacement) = $row; - $newContent = preg_replace($regex, $replacement, $content); - if ($newContent != $content) { - break; - } - } - $newContent = preg_replace('/^\s\*\s@copyright.+?$/m', '', $newContent); - $newContent = preg_replace('/^\s\*\s@license.+$/m', '', $newContent); - $newContent = preg_replace('/(\{license\}.+?)\n\n\ \*/s', '\\1' . " *", $newContent); - if ($newContent != $content) { - file_put_contents($file, $newContent); - } -} - -/** - * Perform a glob search in specified directory - * - * @param string $dir - * @param string $filesPattern - * @param int $flags - * @return array - */ -function globDir($dir, $filesPattern, $flags) -{ - if (!$dir || !is_dir($dir)) { - return array(); - } - $result = glob($dir . '/' . $filesPattern, $flags) ?: array(); - $dirs = glob($dir . '/*', GLOB_ONLYDIR) ?: array(); - foreach ($dirs as $innerDir) { - $result = array_merge($result, globDir($innerDir, $filesPattern, $flags)); - } - return $result; -} diff --git a/dev/tools/migration/Acl/Db/Adapter/Factory.php b/dev/tools/migration/Acl/Db/Adapter/Factory.php index a8f45dcca9ff6f1ce053b48c589da9baf5ab3a26..cfd7a7f057471a440ae0ad80cdda21da31f6e89a 100644 --- a/dev/tools/migration/Acl/Db/Adapter/Factory.php +++ b/dev/tools/migration/Acl/Db/Adapter/Factory.php @@ -20,7 +20,7 @@ * * @category Magento * @package tools - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tools/migration/Acl/Db/FileReader.php b/dev/tools/migration/Acl/Db/FileReader.php index e0d0f8c206aca88910b7934c44277422d292aba9..a48647dfa8fd225d742abb864ef41c3fe41c339e 100644 --- a/dev/tools/migration/Acl/Db/FileReader.php +++ b/dev/tools/migration/Acl/Db/FileReader.php @@ -20,7 +20,7 @@ * * @category Magento * @package tools - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tools/migration/Acl/Db/Logger/Console.php b/dev/tools/migration/Acl/Db/Logger/Console.php index 02b92d44bc136dd5b5d83859bbe26aea6663c9cc..0621c51a4bbfaf87000b59f6bdc21a8ee0d2c08f 100644 --- a/dev/tools/migration/Acl/Db/Logger/Console.php +++ b/dev/tools/migration/Acl/Db/Logger/Console.php @@ -20,7 +20,7 @@ * * @category Magento * @package tools - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tools/migration/Acl/Db/Logger/Factory.php b/dev/tools/migration/Acl/Db/Logger/Factory.php index 5d6a6eb6427ad66e04f2813bc3603ee3d621b54f..50867dab901507a8d7632d4f416b3391aad6992f 100644 --- a/dev/tools/migration/Acl/Db/Logger/Factory.php +++ b/dev/tools/migration/Acl/Db/Logger/Factory.php @@ -20,7 +20,7 @@ * * @category Magento * @package tools - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tools/migration/Acl/Db/Logger/File.php b/dev/tools/migration/Acl/Db/Logger/File.php index eab8e59718bd5c89775d2b73e5ea9e2d47914973..0cd822f974bcff1bb6e4472e9ccb8795a12d9e5a 100644 --- a/dev/tools/migration/Acl/Db/Logger/File.php +++ b/dev/tools/migration/Acl/Db/Logger/File.php @@ -20,7 +20,7 @@ * * @category Magento * @package tools - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tools/migration/Acl/Db/LoggerAbstract.php b/dev/tools/migration/Acl/Db/LoggerAbstract.php index cddddbf995a1b27eda71ea3d89597569a4d19a81..d462bae78cba51e8206b1199a016d650755f8f02 100644 --- a/dev/tools/migration/Acl/Db/LoggerAbstract.php +++ b/dev/tools/migration/Acl/Db/LoggerAbstract.php @@ -20,7 +20,7 @@ * * @category Magento * @package tools - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tools/migration/Acl/Db/Reader.php b/dev/tools/migration/Acl/Db/Reader.php index 39e83edbea24ff3e7eb6694c70248c3c7413a070..f5b2bf1367521d0e89895c99ad0d94d47710fa6b 100644 --- a/dev/tools/migration/Acl/Db/Reader.php +++ b/dev/tools/migration/Acl/Db/Reader.php @@ -20,7 +20,7 @@ * * @category Magento * @package tools - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tools/migration/Acl/Db/Updater.php b/dev/tools/migration/Acl/Db/Updater.php index 63d7df834f44f3ad97c948e35fe032b7b155d25c..3fb67f87d3aae15de442567eec172d1d922e2454 100644 --- a/dev/tools/migration/Acl/Db/Updater.php +++ b/dev/tools/migration/Acl/Db/Updater.php @@ -20,7 +20,7 @@ * * @category Magento * @package tools - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tools/migration/Acl/Db/Writer.php b/dev/tools/migration/Acl/Db/Writer.php index 4219aaf2b914537fad784d4337e4c85215ce0ef0..16da63f3bee53b3c54dc5e353614abc90f3da6b4 100644 --- a/dev/tools/migration/Acl/Db/Writer.php +++ b/dev/tools/migration/Acl/Db/Writer.php @@ -20,7 +20,7 @@ * * @category Magento * @package tools - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tools/migration/Acl/FileManager.php b/dev/tools/migration/Acl/FileManager.php index e9caf9c99892feecfd7fbf09d5af827c68396cb8..c51396f1b81fc4779c492ae1ba2b1f68217baf01 100644 --- a/dev/tools/migration/Acl/FileManager.php +++ b/dev/tools/migration/Acl/FileManager.php @@ -20,7 +20,7 @@ * * @category Magento * @package tools - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tools/migration/Acl/Formatter.php b/dev/tools/migration/Acl/Formatter.php index 2c882b00acb6db8b4284cabc985bed1f24835d4c..74e13de8fe25a1ad5cb2abc536e95ebc78db9eeb 100644 --- a/dev/tools/migration/Acl/Formatter.php +++ b/dev/tools/migration/Acl/Formatter.php @@ -20,7 +20,7 @@ * * @category Magento * @package tools - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tools/migration/Acl/Generator.php b/dev/tools/migration/Acl/Generator.php index 65ce46305e181bd4d8368c26c89da30a4e40f194..90a915a8b7060bdb596d6979319eb2027ec2e478 100644 --- a/dev/tools/migration/Acl/Generator.php +++ b/dev/tools/migration/Acl/Generator.php @@ -20,7 +20,7 @@ * * @category Magento * @package tools - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ require_once ( __DIR__ . '/Menu/Generator.php'); diff --git a/dev/tools/migration/Acl/Menu/Generator.php b/dev/tools/migration/Acl/Menu/Generator.php index f15491613fc183b458184fdb0e6697074cccec24..a2844a3df95962fa45e9d0f183f9f9a2f97c9b82 100644 --- a/dev/tools/migration/Acl/Menu/Generator.php +++ b/dev/tools/migration/Acl/Menu/Generator.php @@ -20,7 +20,7 @@ * * @category Magento * @package tools - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tools/migration/Acl/db.php b/dev/tools/migration/Acl/db.php index 77dc004dafb6e4a42697d555c40d7fd6d2426505..697f3b95ddb76a6578709e8a60b027e49bda2831 100644 --- a/dev/tools/migration/Acl/db.php +++ b/dev/tools/migration/Acl/db.php @@ -20,7 +20,7 @@ * * @category Tools * @package acl_db - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tools/migration/System/Configuration/Formatter.php b/dev/tools/migration/System/Configuration/Formatter.php index 189aae4d82a3eb25b90eaefd9b091a1a9d407653..1644cbbbbf9977fb91d6b875a79c313bea28fd4e 100644 --- a/dev/tools/migration/System/Configuration/Formatter.php +++ b/dev/tools/migration/System/Configuration/Formatter.php @@ -20,7 +20,7 @@ * * @category Magento * @package tools - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tools/migration/System/Configuration/Generator.php b/dev/tools/migration/System/Configuration/Generator.php index e35d1f61d12bb73774895ceaf0f9ab38685ea023..caac33378477745b70a7b5cbfc95f8e18c88a29e 100644 --- a/dev/tools/migration/System/Configuration/Generator.php +++ b/dev/tools/migration/System/Configuration/Generator.php @@ -20,7 +20,7 @@ * * @category Magento * @package tools - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ @@ -66,7 +66,7 @@ class Tools_Migration_System_Configuration_Generator $this->_basePath = realpath(dirname(__FILE__) . '/../../../../../'); $this->_fileSchemaPath = $this->_basePath - . '/app/code/core/Mage/Backend/Model/Config/Structure/system_file.xsd'; + . '/app/code/core/Mage/Backend/etc/system_file.xsd'; } /** diff --git a/dev/tools/migration/System/Configuration/Logger/Console.php b/dev/tools/migration/System/Configuration/Logger/Console.php index e4c23da1ac7c241e831e7a1979e0e3d1f6c691b8..493ea527630795b637ad96eefb91324a06d60bab 100644 --- a/dev/tools/migration/System/Configuration/Logger/Console.php +++ b/dev/tools/migration/System/Configuration/Logger/Console.php @@ -20,7 +20,7 @@ * * @category Magento * @package tools - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tools/migration/System/Configuration/Logger/Factory.php b/dev/tools/migration/System/Configuration/Logger/Factory.php index 4be5b213bce03eea1b79ac28b97cbc07e9234d3b..0363aa63bfe536a34223b50ffa8ed5dc73275ba4 100644 --- a/dev/tools/migration/System/Configuration/Logger/Factory.php +++ b/dev/tools/migration/System/Configuration/Logger/Factory.php @@ -20,7 +20,7 @@ * * @category Magento * @package tools - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tools/migration/System/Configuration/Logger/File.php b/dev/tools/migration/System/Configuration/Logger/File.php index 5e558a73b60b9aff5ce05e4fd2884c83bf87f604..768719c64bf5f6b2aa49dc6d1a57e6034cff2306 100644 --- a/dev/tools/migration/System/Configuration/Logger/File.php +++ b/dev/tools/migration/System/Configuration/Logger/File.php @@ -20,7 +20,7 @@ * * @category Magento * @package tools - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tools/migration/System/Configuration/LoggerAbstract.php b/dev/tools/migration/System/Configuration/LoggerAbstract.php index ae579e878bb83bb44da2cb44b6c3f9528a4e5827..ae200ffaec106e24958d7b833a5267b17070ab60 100644 --- a/dev/tools/migration/System/Configuration/LoggerAbstract.php +++ b/dev/tools/migration/System/Configuration/LoggerAbstract.php @@ -20,7 +20,7 @@ * * @category Magento * @package tools - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tools/migration/System/Configuration/Mapper.php b/dev/tools/migration/System/Configuration/Mapper.php index 65e169efd27924c194a6491d8c3be08fa3869f76..db5aac0c1d7b056048b578b571bc0fa9fbe83c7b 100644 --- a/dev/tools/migration/System/Configuration/Mapper.php +++ b/dev/tools/migration/System/Configuration/Mapper.php @@ -20,7 +20,7 @@ * * @category Magento * @package tools - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tools/migration/System/Configuration/Mapper/Abstract.php b/dev/tools/migration/System/Configuration/Mapper/Abstract.php index 437eb0c2959f78eafd7b43873b99c78cc607e7f5..99081cfa6a89521c834f42579a057e9ab9c9473a 100644 --- a/dev/tools/migration/System/Configuration/Mapper/Abstract.php +++ b/dev/tools/migration/System/Configuration/Mapper/Abstract.php @@ -20,7 +20,7 @@ * * @category Magento * @package tools - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tools/migration/System/Configuration/Mapper/Field.php b/dev/tools/migration/System/Configuration/Mapper/Field.php index d49d26971eaf116f912d078d41a7f51c972de3fb..1ccc09130d4c5f8b109000e1ada8316a3da14536 100644 --- a/dev/tools/migration/System/Configuration/Mapper/Field.php +++ b/dev/tools/migration/System/Configuration/Mapper/Field.php @@ -20,7 +20,7 @@ * * @category Magento * @package tools - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tools/migration/System/Configuration/Mapper/Group.php b/dev/tools/migration/System/Configuration/Mapper/Group.php index c745002d2a91a1c34e6c4062f95bf2a3840e9ea4..bf9f80af0eaa6cc0670398cda1d8f99e657a2307 100644 --- a/dev/tools/migration/System/Configuration/Mapper/Group.php +++ b/dev/tools/migration/System/Configuration/Mapper/Group.php @@ -20,7 +20,7 @@ * * @category Magento * @package tools - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tools/migration/System/Configuration/Mapper/Section.php b/dev/tools/migration/System/Configuration/Mapper/Section.php index 4137ec8f6a48e37acd9fec6507ffc90739ce6f34..c983a76edfeb7e06abd93afc0e35bba891a290ed 100644 --- a/dev/tools/migration/System/Configuration/Mapper/Section.php +++ b/dev/tools/migration/System/Configuration/Mapper/Section.php @@ -20,7 +20,7 @@ * * @category Magento * @package tools - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tools/migration/System/Configuration/Mapper/Tab.php b/dev/tools/migration/System/Configuration/Mapper/Tab.php index cf860b46d65cefd2bea900ba99d7d41b1a2d768b..56646d9b2e83df7a5871737759c49a65cddbdbb0 100644 --- a/dev/tools/migration/System/Configuration/Mapper/Tab.php +++ b/dev/tools/migration/System/Configuration/Mapper/Tab.php @@ -20,7 +20,7 @@ * * @category Magento * @package tools - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tools/migration/System/Configuration/Parser.php b/dev/tools/migration/System/Configuration/Parser.php index 4213be11f5663ec0fe2f9f75b97bb197d91d2fe0..bb2668b0162c733aa795cb08e908f2fbc0f2bc56 100644 --- a/dev/tools/migration/System/Configuration/Parser.php +++ b/dev/tools/migration/System/Configuration/Parser.php @@ -20,7 +20,7 @@ * * @category Magento * @package tools - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tools/migration/System/Configuration/Reader.php b/dev/tools/migration/System/Configuration/Reader.php index f27232fed79c964c5a4552438b637a7b70cf70d3..9a6a841bd1f1524a2eeba98095c5fe35da74dacd 100644 --- a/dev/tools/migration/System/Configuration/Reader.php +++ b/dev/tools/migration/System/Configuration/Reader.php @@ -20,7 +20,7 @@ * * @category Magento * @package tools - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tools/migration/System/FileManager.php b/dev/tools/migration/System/FileManager.php index b9f65372f60489f7607546603794ab5357573704..434b0b84a71729ff9aa3a61a39d7adff507041f5 100644 --- a/dev/tools/migration/System/FileManager.php +++ b/dev/tools/migration/System/FileManager.php @@ -20,7 +20,7 @@ * * @category Magento * @package tools - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tools/migration/System/FileReader.php b/dev/tools/migration/System/FileReader.php index 2b1c7f764deb0d0445f5bd3926122df01a313f88..adbfb37862b5ae658dfc740c214bedeb0b5eb5f0 100644 --- a/dev/tools/migration/System/FileReader.php +++ b/dev/tools/migration/System/FileReader.php @@ -20,7 +20,7 @@ * * @category Magento * @package tools - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tools/migration/System/Writer/Factory.php b/dev/tools/migration/System/Writer/Factory.php index ce2ae9279d73cdb742fbc850ada4c28c4dc49bcd..7959f692b0b9650d0822746c8263c85fb78b2ea7 100644 --- a/dev/tools/migration/System/Writer/Factory.php +++ b/dev/tools/migration/System/Writer/Factory.php @@ -20,7 +20,7 @@ * * @category Magento * @package tools - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tools/migration/System/Writer/FileSystem.php b/dev/tools/migration/System/Writer/FileSystem.php index 59e7366061ed75c8ad8c5390dd431d94534aa785..5b10ab2c32ab0afa4886611401bf5e994007ff5a 100644 --- a/dev/tools/migration/System/Writer/FileSystem.php +++ b/dev/tools/migration/System/Writer/FileSystem.php @@ -20,7 +20,7 @@ * * @category Magento * @package tools - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tools/migration/System/Writer/Memory.php b/dev/tools/migration/System/Writer/Memory.php index c0a0dd1f7d21a3483d63f55672451b19069089ea..9f279ae24c8145ab322c086728b9d397a86aa553 100644 --- a/dev/tools/migration/System/Writer/Memory.php +++ b/dev/tools/migration/System/Writer/Memory.php @@ -20,7 +20,7 @@ * * @category Magento * @package tools - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tools/migration/System/WriterInterface.php b/dev/tools/migration/System/WriterInterface.php index 7a3969a324d6e1ebc627423d71f9344fc14c49aa..9887acd7db4b8950667a24c5c469983ce531d10a 100644 --- a/dev/tools/migration/System/WriterInterface.php +++ b/dev/tools/migration/System/WriterInterface.php @@ -20,7 +20,7 @@ * * @category Magento * @package tools - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tools/migration/acl.php b/dev/tools/migration/acl.php index d9ce343b72b40fc378bbb0fcfae17d4249023e7b..804d0c661340bbe945bde53d860e83f6f5b3ea26 100644 --- a/dev/tools/migration/acl.php +++ b/dev/tools/migration/acl.php @@ -20,7 +20,7 @@ * * @category Tools * @package acl - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tools/migration/aliases_map/cms_content_tables_ce.php b/dev/tools/migration/aliases_map/cms_content_tables_ce.php index 5e77a8af1affcdc0629b8bb133da137910fc0b0c..f6415d19d34cb955c5cb9c986f0e3657b26d5899 100644 --- a/dev/tools/migration/aliases_map/cms_content_tables_ce.php +++ b/dev/tools/migration/aliases_map/cms_content_tables_ce.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tools/migration/aliases_map/composite_modules_ce.php b/dev/tools/migration/aliases_map/composite_modules_ce.php index 403376e1ec414824cf1f3237afdb2a602acd592e..82ca6e11af927e3c613bbc80a48638f336f38c32 100644 --- a/dev/tools/migration/aliases_map/composite_modules_ce.php +++ b/dev/tools/migration/aliases_map/composite_modules_ce.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tools/migration/factory_names.php b/dev/tools/migration/factory_names.php index 1fb632242cff6a15587ddc2430b6b757bfa346e8..79aa6b12cba8862968be6c801ed4d5d25bd3686a 100644 --- a/dev/tools/migration/factory_names.php +++ b/dev/tools/migration/factory_names.php @@ -22,7 +22,7 @@ * * @category Magento * @package tools - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ require realpath(dirname(dirname(dirname(__DIR__)))) . '/dev/tests/static/framework/bootstrap.php'; diff --git a/dev/tools/migration/factory_table_names.php b/dev/tools/migration/factory_table_names.php index 5894a22f12aa22e2632b9b7ee45203a68c58e838..517e148175a769a71e0a4cf682247063ae6d8c48 100644 --- a/dev/tools/migration/factory_table_names.php +++ b/dev/tools/migration/factory_table_names.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tools/migration/factory_table_names/blacklist_ce.php b/dev/tools/migration/factory_table_names/blacklist_ce.php index cbc57b04f6e3e4327d9c5e7baa4abcd994229f85..a045061d248a7c0cadec4c4e6e7ec04ed42de84c 100644 --- a/dev/tools/migration/factory_table_names/blacklist_ce.php +++ b/dev/tools/migration/factory_table_names/blacklist_ce.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tools/migration/factory_table_names/replace_ce.php b/dev/tools/migration/factory_table_names/replace_ce.php index 346b47965a49b636c946cc477710cd28204a6254..6ea42a473c0d65e3e81585d4343e8ebd113fd89e 100644 --- a/dev/tools/migration/factory_table_names/replace_ce.php +++ b/dev/tools/migration/factory_table_names/replace_ce.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tools/migration/get_aliases_map.php b/dev/tools/migration/get_aliases_map.php index 4cb32427650f7f4a4b84289ed54ae4cd15a23a8f..15cf124ff1f7d3740732134c9c5c6de358ab522e 100644 --- a/dev/tools/migration/get_aliases_map.php +++ b/dev/tools/migration/get_aliases_map.php @@ -22,7 +22,7 @@ * * @category Magento * @package tools - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tools/migration/system_config.php b/dev/tools/migration/system_config.php index 06e983cb1083dfd3c3af500f47da3b8faf29b46b..96817f4b66382b8cd4795746a04dc80454cf0cc0 100644 --- a/dev/tools/migration/system_config.php +++ b/dev/tools/migration/system_config.php @@ -20,7 +20,7 @@ * * @category Tools * @package system_configuration - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tools/migration/themes_view.php b/dev/tools/migration/themes_view.php index 7e0cf18f1683f15fb44ba0fc550cea8e45b38043..febc8a3b3078f3b806faffe6bc72b8dd59e5c09c 100644 --- a/dev/tools/migration/themes_view.php +++ b/dev/tools/migration/themes_view.php @@ -20,7 +20,7 @@ * * @category Tools * @package system_configuration - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tools/tests.php b/dev/tools/tests.php new file mode 100644 index 0000000000000000000000000000000000000000..bec96966603d9286b2a2a865be598b0a52b1337e --- /dev/null +++ b/dev/tools/tests.php @@ -0,0 +1,85 @@ +<?php +/** + * Batch tool for running all or some of tests + * + * Magento + * + * NOTICE OF LICENSE + * + * This source file is subject to the Open Software License (OSL 3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * http://opensource.org/licenses/osl-3.0.php + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@magentocommerce.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade Magento to newer + * versions in the future. If you wish to customize Magento for your + * needs please refer to http://www.magentocommerce.com for more information. + * + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) + * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) + */ + +$commands = array( + 'unit' => array('../tests/unit', ''), + 'unit-performance' => array('../tests/performance/framework/tests/unit', ''), + 'unit-static' => array('../tests/static/framework/tests/unit', ''), + 'unit-integration' => array('../tests/integration/framework/tests/unit', ''), + 'integration' => array('../tests/integration', ''), + 'integration-integrity' => array('../tests/integration', ' testsuite/integrity'), + 'static-default' => array('../tests/static', ''), + 'static-legacy' => array('../tests/static', ' testsuite/Legacy'), + 'static-integration' => array('../tests/static', ' testsuite/Exemplar'), +); +$types = array( + 'all' => array_keys($commands), + 'unit' => array('unit', 'unit-performance', 'unit-static', 'unit-integration'), + 'integration' => array('integration'), + 'integration-all' => array('integration', 'integration-integrity'), + 'static' => array('static-default'), + 'static-all' => array('static-default', 'static-legacy', 'static-integration'), + 'integrity' => array('static-default', 'static-legacy', 'integration-integrity'), + 'legacy' => array('static-legacy'), + 'default' => array( + 'unit', 'unit-performance', 'unit-static', 'unit-integration', 'integration', 'static-default' + ), +); + +$arguments = getopt('', array('type::')); +if (!isset($arguments['type'])) { + $arguments['type'] = 'default'; +} elseif (!isset($types[$arguments['type']])) { + echo "Invalid type: '{$arguments['type']}'. Available types: " . implode(', ', array_keys($types)) . "\n\n"; + exit(1); +} + +$failures = array(); +$runCommands = $types[$arguments['type']]; +foreach ($runCommands as $key) { + list($dir, $options) = $commands[$key]; + $dirName = realpath(__DIR__ . '/' . $dir); + chdir($dirName); + $command = 'phpunit' . $options; + $message = $dirName . '> ' . $command; + echo "\n\n"; + echo str_pad("---- {$message} ", 70, '-'); + echo "\n\n"; + passthru($command, $returnVal); + if ($returnVal) { + $failures[] = $message; + } +} + +echo "\n" , str_repeat('-', 70), "\n"; +if ($failures) { + echo "\nFAILED - " . count($failures) . ' of ' . count($runCommands) . ":\n"; + foreach ($failures as $message) { + echo ' - ' . $message . "\n"; + } +} else { + echo "\nPASSED (" . count($runCommands) . ")\n"; +} diff --git a/downloader/Maged/Connect.php b/downloader/Maged/Connect.php index 0ade1223b34e79a9a0dd33925d026550ed62bb54..e6eba430a63299389d49424e96f6a689133cf5b4 100644 --- a/downloader/Maged/Connect.php +++ b/downloader/Maged/Connect.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/Maged/Connect/Frontend.php b/downloader/Maged/Connect/Frontend.php index 36fb98a08c20c131e322603ba1985532ea8c98b2..5dda1d506504e969b79f6b71cc98e2cc48b36d41 100644 --- a/downloader/Maged/Connect/Frontend.php +++ b/downloader/Maged/Connect/Frontend.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/Maged/Controller.php b/downloader/Maged/Controller.php index 9cad80c1bc14b534f1fd7c334b6c857232eb55a0..e4ca50a09e6a7500dc01e154f2b280529c6a9352 100755 --- a/downloader/Maged/Controller.php +++ b/downloader/Maged/Controller.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/Maged/Exception.php b/downloader/Maged/Exception.php index 01847b3157c0c77d95e57e783fb0a8518cdf248b..818211ea55b82a1f725007949cacec901c769c38 100755 --- a/downloader/Maged/Exception.php +++ b/downloader/Maged/Exception.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/Maged/Model.php b/downloader/Maged/Model.php index a98ae3e0d1b851e24a3590b471dfe236e6c4e08d..65b96159d94b1088dc74f8e0bd3044d3a9554d64 100755 --- a/downloader/Maged/Model.php +++ b/downloader/Maged/Model.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/Maged/Model/Config.php b/downloader/Maged/Model/Config.php index 5d6b30a7e6aceed089d1e5e91eef413d6bdf898c..b9af972b7b495b0a5ee6be19012344ebf652a14c 100644 --- a/downloader/Maged/Model/Config.php +++ b/downloader/Maged/Model/Config.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/Maged/Model/Config/Abstract.php b/downloader/Maged/Model/Config/Abstract.php index c8744592020ba63802528449857c27edab43eb84..4d8aeb7f7179e28de6018be6131e0433d41584f3 100644 --- a/downloader/Maged/Model/Config/Abstract.php +++ b/downloader/Maged/Model/Config/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/Maged/Model/Config/Community.php b/downloader/Maged/Model/Config/Community.php index 91eeb97a1dfa51430f99b92657a744f73769799c..37bcf3f59143fba90221dbdf8d872e8560ef6906 100644 --- a/downloader/Maged/Model/Config/Community.php +++ b/downloader/Maged/Model/Config/Community.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/Maged/Model/Config/Interface.php b/downloader/Maged/Model/Config/Interface.php index fc5bde8d1a00fff233b007ce6855eab740c3ff92..7fa120ef39a57004135367fbdc12dbcf83b3143f 100644 --- a/downloader/Maged/Model/Config/Interface.php +++ b/downloader/Maged/Model/Config/Interface.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/Maged/Model/Connect.php b/downloader/Maged/Model/Connect.php index 6eba0483d8504066844150842898e70aced432f4..5cea58eb8a600c9bea8bc2f01d9e0afedbf682d1 100644 --- a/downloader/Maged/Model/Connect.php +++ b/downloader/Maged/Model/Connect.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/Maged/Model/Connect/Request.php b/downloader/Maged/Model/Connect/Request.php index 5e26833f0bf78df357a1e9322704d50c3012ff09..9bd69f7233208add33429e1ce5bbbfaa0b397c52 100644 --- a/downloader/Maged/Model/Connect/Request.php +++ b/downloader/Maged/Model/Connect/Request.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/Maged/Model/Dowloader.php b/downloader/Maged/Model/Dowloader.php index 14849f5807c147d77bfbe601f4a6f3887861b631..ce231b77524b99e6267fe9764fdb23bdb85b13b3 100755 --- a/downloader/Maged/Model/Dowloader.php +++ b/downloader/Maged/Model/Dowloader.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/Maged/Model/Session.php b/downloader/Maged/Model/Session.php index 0557230ba5bcdece3396be32c8f0ac025e8d53c7..dfb85442279001f2c16f6421d2d81a62d29bc1f6 100644 --- a/downloader/Maged/Model/Session.php +++ b/downloader/Maged/Model/Session.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/Maged/View.php b/downloader/Maged/View.php index 6c002a7ac41e1738a3171de64589e1f4d1de876c..21ece3c34e78bfad3ab7604f733d914ea28216c2 100755 --- a/downloader/Maged/View.php +++ b/downloader/Maged/View.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/index.php b/downloader/index.php index d3910366d1c2d211a8163c547bbde3dffe95f38a..a61ddcf3d1338403db740bf2fcc61edefa951be9 100755 --- a/downloader/index.php +++ b/downloader/index.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/lib/Mage/Archive.php b/downloader/lib/Mage/Archive.php index 1bd56600eb8962fe13f717e792e2d7e8e8ebfbbe..b07dc845c8e97159ac6e155edcb895e38c04597d 100644 --- a/downloader/lib/Mage/Archive.php +++ b/downloader/lib/Mage/Archive.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Archive - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/lib/Mage/Archive/Abstract.php b/downloader/lib/Mage/Archive/Abstract.php index 8955536c31ee29e0a3a67e117353819fc5179aea..2ba5521037e14e43403354831fccb1e278fed8c3 100644 --- a/downloader/lib/Mage/Archive/Abstract.php +++ b/downloader/lib/Mage/Archive/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Archive - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/lib/Mage/Archive/Bz.php b/downloader/lib/Mage/Archive/Bz.php index 0610e8ab563b09789c2973b97310c75d37d6038c..ea267736fd2219e67592e5007b8730aa4011f32c 100644 --- a/downloader/lib/Mage/Archive/Bz.php +++ b/downloader/lib/Mage/Archive/Bz.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Archive - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/lib/Mage/Archive/Gz.php b/downloader/lib/Mage/Archive/Gz.php index 1f537796c467769cb300b5cb15f6e4a9668a8d68..724be100f0a566ced0017cd42d15e8bbd80ddaf5 100644 --- a/downloader/lib/Mage/Archive/Gz.php +++ b/downloader/lib/Mage/Archive/Gz.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Archive - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/lib/Mage/Archive/Helper/File.php b/downloader/lib/Mage/Archive/Helper/File.php index 2eaf4b50f76a39044f75e366e4f6b4aef84d5f67..3ddd1722bd71b2a7659839e396744dfd14c7716b 100755 --- a/downloader/lib/Mage/Archive/Helper/File.php +++ b/downloader/lib/Mage/Archive/Helper/File.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Archive - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/lib/Mage/Archive/Helper/File/Bz.php b/downloader/lib/Mage/Archive/Helper/File/Bz.php index 64bf5e810ff9d46c205da3ef096268ea0a7de1e5..4a83728564049209625d62affa572969464c3fe5 100755 --- a/downloader/lib/Mage/Archive/Helper/File/Bz.php +++ b/downloader/lib/Mage/Archive/Helper/File/Bz.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Archive - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/lib/Mage/Archive/Helper/File/Gz.php b/downloader/lib/Mage/Archive/Helper/File/Gz.php index 99210b4e513a535d0e4694b2d696a6f12cac975c..fd2eba400e85da49e9d494963b47576a6b57cbd0 100755 --- a/downloader/lib/Mage/Archive/Helper/File/Gz.php +++ b/downloader/lib/Mage/Archive/Helper/File/Gz.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Archive - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/lib/Mage/Archive/Interface.php b/downloader/lib/Mage/Archive/Interface.php index 3765a8b7cface44a642ae276caa1b3fe1c82a3a0..e16fea525c7365dcbcc51c1c90ff6935273be950 100644 --- a/downloader/lib/Mage/Archive/Interface.php +++ b/downloader/lib/Mage/Archive/Interface.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Archive - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/lib/Mage/Archive/Tar.php b/downloader/lib/Mage/Archive/Tar.php index b2bec6d5312ba6921769180dbfdb8621d75f2362..69943433b6ba4025a704b899a00e3b9c78fdc816 100644 --- a/downloader/lib/Mage/Archive/Tar.php +++ b/downloader/lib/Mage/Archive/Tar.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Archive - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/lib/Mage/Autoload/Simple.php b/downloader/lib/Mage/Autoload/Simple.php index fdf6f5c75659f17ab8c2b3e9b97bc21f278e3675..44a507b8ef70a3031c12bf13f78d0ea04b7264f7 100644 --- a/downloader/lib/Mage/Autoload/Simple.php +++ b/downloader/lib/Mage/Autoload/Simple.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Autoload - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/lib/Mage/Backup.php b/downloader/lib/Mage/Backup.php index a374d356c68335eeac3bb104317f9851318c3cea..135234cf48c44dc363e1ec9eb1a6c43c8aa9c093 100755 --- a/downloader/lib/Mage/Backup.php +++ b/downloader/lib/Mage/Backup.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backup - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/lib/Mage/Backup/Abstract.php b/downloader/lib/Mage/Backup/Abstract.php index b2abeedabe070122ba28836c174d37de84f54086..d2f8f6804ae69f091a93f7dfd8c22877fbd767c6 100755 --- a/downloader/lib/Mage/Backup/Abstract.php +++ b/downloader/lib/Mage/Backup/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backup - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ /** diff --git a/downloader/lib/Mage/Backup/Archive/Tar.php b/downloader/lib/Mage/Backup/Archive/Tar.php index 69a5051356fe3c840d76b07d780989a141a34628..eab5f72404a64c75b154f2cf000a269beb6eb1a7 100644 --- a/downloader/lib/Mage/Backup/Archive/Tar.php +++ b/downloader/lib/Mage/Backup/Archive/Tar.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backup - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/lib/Mage/Backup/Db.php b/downloader/lib/Mage/Backup/Db.php index a1ede2e253bff67012e073a859eb766820a2da26..9637cae1974c2220b46171f647555269d7909239 100755 --- a/downloader/lib/Mage/Backup/Db.php +++ b/downloader/lib/Mage/Backup/Db.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backup - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/lib/Mage/Backup/Exception.php b/downloader/lib/Mage/Backup/Exception.php index 0b323ce3b60406ecc6ef3a87df10794a15c09379..59cf46e68944b775a63dc7d72ddaadb3e2fae7a1 100755 --- a/downloader/lib/Mage/Backup/Exception.php +++ b/downloader/lib/Mage/Backup/Exception.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backup - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/lib/Mage/Backup/Exception/CantLoadSnapshot.php b/downloader/lib/Mage/Backup/Exception/CantLoadSnapshot.php index 9ea707fab04518cb6e8bbbfcb4d7043025e617a1..0c798b3b645ca78dcf79fd3c63891e54299a226c 100755 --- a/downloader/lib/Mage/Backup/Exception/CantLoadSnapshot.php +++ b/downloader/lib/Mage/Backup/Exception/CantLoadSnapshot.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backup - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/lib/Mage/Backup/Exception/FtpConnectionFailed.php b/downloader/lib/Mage/Backup/Exception/FtpConnectionFailed.php index 4df3862237a695fb84af1688b0e4a5ff6c5569b1..af40a2217ed45f1df5137826a3e5a4c83ca55dc5 100755 --- a/downloader/lib/Mage/Backup/Exception/FtpConnectionFailed.php +++ b/downloader/lib/Mage/Backup/Exception/FtpConnectionFailed.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backup - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/lib/Mage/Backup/Exception/FtpValidationFailed.php b/downloader/lib/Mage/Backup/Exception/FtpValidationFailed.php index 12f3c92bb4f284feb51d9e91fb13a499c15c7371..1bfc5839e06a9dccf0791968688d39472963b9a2 100755 --- a/downloader/lib/Mage/Backup/Exception/FtpValidationFailed.php +++ b/downloader/lib/Mage/Backup/Exception/FtpValidationFailed.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backup - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/lib/Mage/Backup/Exception/NotEnoughFreeSpace.php b/downloader/lib/Mage/Backup/Exception/NotEnoughFreeSpace.php index f00e7dd9b4b08287c7e94b94d507eaead82bb918..4961e875f0e2a0603fea395b9989589b357f33d1 100755 --- a/downloader/lib/Mage/Backup/Exception/NotEnoughFreeSpace.php +++ b/downloader/lib/Mage/Backup/Exception/NotEnoughFreeSpace.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backup - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/lib/Mage/Backup/Exception/NotEnoughPermissions.php b/downloader/lib/Mage/Backup/Exception/NotEnoughPermissions.php index 0a858e99808cd293141d5546f1eb873db29b5e4a..8aba2b9d6e655409892e6172ca6ec312c39b8dcf 100755 --- a/downloader/lib/Mage/Backup/Exception/NotEnoughPermissions.php +++ b/downloader/lib/Mage/Backup/Exception/NotEnoughPermissions.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backup - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/lib/Mage/Backup/Filesystem.php b/downloader/lib/Mage/Backup/Filesystem.php index a6a66e9946d0d5f3c23f271112f5423f58be1f35..8c5cdd5bd6a76640e9af7aa4af3774ccbfb9ebfa 100755 --- a/downloader/lib/Mage/Backup/Filesystem.php +++ b/downloader/lib/Mage/Backup/Filesystem.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backup - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/lib/Mage/Backup/Filesystem/Helper.php b/downloader/lib/Mage/Backup/Filesystem/Helper.php index 867cea921360b48633c44a2c64562041a68db1a4..1433093168ed62d6834321f4f268b9c15c30326f 100755 --- a/downloader/lib/Mage/Backup/Filesystem/Helper.php +++ b/downloader/lib/Mage/Backup/Filesystem/Helper.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backup - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/lib/Mage/Backup/Filesystem/Iterator/File.php b/downloader/lib/Mage/Backup/Filesystem/Iterator/File.php index 29da92f8ac0b16362c07868a4ca6d4a54de35f21..577ad01dbc4462eaafb17c35f2e3623eaf55e550 100644 --- a/downloader/lib/Mage/Backup/Filesystem/Iterator/File.php +++ b/downloader/lib/Mage/Backup/Filesystem/Iterator/File.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backup - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/lib/Mage/Backup/Filesystem/Iterator/Filter.php b/downloader/lib/Mage/Backup/Filesystem/Iterator/Filter.php index 0b170ea8e869812df654d3510b848e8aabc5a351..bdd862aa14bf60dae53221067d7ab7df2eaced53 100755 --- a/downloader/lib/Mage/Backup/Filesystem/Iterator/Filter.php +++ b/downloader/lib/Mage/Backup/Filesystem/Iterator/Filter.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backup - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/lib/Mage/Backup/Filesystem/Rollback/Abstract.php b/downloader/lib/Mage/Backup/Filesystem/Rollback/Abstract.php index 241b3334086faeb51634cf141f381410de20ccd5..43e42835e471d568d553804d3737f504aa5581cc 100755 --- a/downloader/lib/Mage/Backup/Filesystem/Rollback/Abstract.php +++ b/downloader/lib/Mage/Backup/Filesystem/Rollback/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backup - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/lib/Mage/Backup/Filesystem/Rollback/Fs.php b/downloader/lib/Mage/Backup/Filesystem/Rollback/Fs.php index 4add87a7dc4dd8b30e1c6a62b00d0761565862a8..dacb5af802dddfef79f287d2e1805f111280aa5c 100755 --- a/downloader/lib/Mage/Backup/Filesystem/Rollback/Fs.php +++ b/downloader/lib/Mage/Backup/Filesystem/Rollback/Fs.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backup - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/lib/Mage/Backup/Filesystem/Rollback/Ftp.php b/downloader/lib/Mage/Backup/Filesystem/Rollback/Ftp.php index 09518ec004b9f92dd714cb2d4b25e815c1b57a8e..72345b063d96bc2dd89b2e19636d69ff52265917 100755 --- a/downloader/lib/Mage/Backup/Filesystem/Rollback/Ftp.php +++ b/downloader/lib/Mage/Backup/Filesystem/Rollback/Ftp.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backup - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/lib/Mage/Backup/Interface.php b/downloader/lib/Mage/Backup/Interface.php index b97c0814adeb8b77b71f5236e67ec42a7e99aeff..e1b9645488c25bbc04d547978a60e123dc7a315c 100755 --- a/downloader/lib/Mage/Backup/Interface.php +++ b/downloader/lib/Mage/Backup/Interface.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backup - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/lib/Mage/Backup/Media.php b/downloader/lib/Mage/Backup/Media.php index 3b187161f8ee163321322d73d0321a85950380f7..27e6770737f11f84b46317286dc48555697ce4be 100644 --- a/downloader/lib/Mage/Backup/Media.php +++ b/downloader/lib/Mage/Backup/Media.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backup - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/lib/Mage/Backup/Nomedia.php b/downloader/lib/Mage/Backup/Nomedia.php index a26b535dc48c154c459f24c306e4f257616158da..94419ae8e5459bc5980bf600d53cfdfae7e60538 100755 --- a/downloader/lib/Mage/Backup/Nomedia.php +++ b/downloader/lib/Mage/Backup/Nomedia.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backup - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/lib/Mage/Backup/Snapshot.php b/downloader/lib/Mage/Backup/Snapshot.php index 118dbc0be0a6f86d7c3ca1e2d6ab8e8aac94603c..b3205d85992c835714a6bc676c9be0cdff9492a3 100755 --- a/downloader/lib/Mage/Backup/Snapshot.php +++ b/downloader/lib/Mage/Backup/Snapshot.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backup - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/lib/Mage/Connect/Channel/Generator.php b/downloader/lib/Mage/Connect/Channel/Generator.php index 476c7e243d1de2ab1061fa412060a0a264e01c8f..66905b99442af47a84df7abd7e285d79ce6943f1 100644 --- a/downloader/lib/Mage/Connect/Channel/Generator.php +++ b/downloader/lib/Mage/Connect/Channel/Generator.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/lib/Mage/Connect/Channel/Parser.php b/downloader/lib/Mage/Connect/Channel/Parser.php index 2417f24daaebca30df79f194dc84fd8bd120e45a..fe14b5352ef6bc7919dc9f71a7a8ab6825c0901d 100644 --- a/downloader/lib/Mage/Connect/Channel/Parser.php +++ b/downloader/lib/Mage/Connect/Channel/Parser.php @@ -20,6 +20,6 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/lib/Mage/Connect/Channel/VO.php b/downloader/lib/Mage/Connect/Channel/VO.php index b8c17ef51e197992ddd1535557e218194e69ad91..20d3381cde709b0d2d528805e671cfde8eb15f88 100644 --- a/downloader/lib/Mage/Connect/Channel/VO.php +++ b/downloader/lib/Mage/Connect/Channel/VO.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/lib/Mage/Connect/Command.php b/downloader/lib/Mage/Connect/Command.php index f129e600258cb66f34257ddbe0982f43d4cb38ac..c42238a32b13636d3de825208c0f149a77e7cf3d 100644 --- a/downloader/lib/Mage/Connect/Command.php +++ b/downloader/lib/Mage/Connect/Command.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/lib/Mage/Connect/Command/Channels.php b/downloader/lib/Mage/Connect/Command/Channels.php index b4b72faa8b0811e253be176f6962333d5628f642..f688ffb2858ce008109699716d900ab951a8a23c 100644 --- a/downloader/lib/Mage/Connect/Command/Channels.php +++ b/downloader/lib/Mage/Connect/Command/Channels.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/lib/Mage/Connect/Command/Channels_Header.php b/downloader/lib/Mage/Connect/Command/Channels_Header.php index 101d1afb4d73ebf0279a9e050ea95c0dd3930350..2325fa4ae0384c03c8b45f20066f2057c843e201 100644 --- a/downloader/lib/Mage/Connect/Command/Channels_Header.php +++ b/downloader/lib/Mage/Connect/Command/Channels_Header.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/lib/Mage/Connect/Command/Config.php b/downloader/lib/Mage/Connect/Command/Config.php index e5fdd7fbf2ea82e63f52be5df6c3370e6c394a7f..3aebeb8eeda3b1f2dcf2ed0f0fc4fb7b4551b76d 100644 --- a/downloader/lib/Mage/Connect/Command/Config.php +++ b/downloader/lib/Mage/Connect/Command/Config.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/lib/Mage/Connect/Command/Config_Header.php b/downloader/lib/Mage/Connect/Command/Config_Header.php index f4368b130283efb996013e0a10608d9e72a58165..b3d2fde57caf80d461f4ea235e6f04049c3ccf1f 100644 --- a/downloader/lib/Mage/Connect/Command/Config_Header.php +++ b/downloader/lib/Mage/Connect/Command/Config_Header.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/lib/Mage/Connect/Command/Install.php b/downloader/lib/Mage/Connect/Command/Install.php index c2495bcf99486c834cc397c32f4ae05a5a501733..a2a937e79391dc51f96241f92c2d6ec42c3949c5 100644 --- a/downloader/lib/Mage/Connect/Command/Install.php +++ b/downloader/lib/Mage/Connect/Command/Install.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ final class Mage_Connect_Command_Install extends Mage_Connect_Command diff --git a/downloader/lib/Mage/Connect/Command/Install_Header.php b/downloader/lib/Mage/Connect/Command/Install_Header.php index ced562a654e6457b6e7fd092df562c4dbee7c939..9b97e2a12e307872f43f019858139fcf78c7d89d 100644 --- a/downloader/lib/Mage/Connect/Command/Install_Header.php +++ b/downloader/lib/Mage/Connect/Command/Install_Header.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/lib/Mage/Connect/Command/Package.php b/downloader/lib/Mage/Connect/Command/Package.php index f4bd3e22981fecdcff9abd49c4656f30ce499041..8ef501ac9bd1bf45158acf59a57e045d6e34901f 100644 --- a/downloader/lib/Mage/Connect/Command/Package.php +++ b/downloader/lib/Mage/Connect/Command/Package.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/lib/Mage/Connect/Command/Package_Header.php b/downloader/lib/Mage/Connect/Command/Package_Header.php index 242faec46d3371fb50e300b58c9b1c60f2cdab64..386adeb539402a9f46e7bbbf74962735dd607536 100644 --- a/downloader/lib/Mage/Connect/Command/Package_Header.php +++ b/downloader/lib/Mage/Connect/Command/Package_Header.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/lib/Mage/Connect/Command/Registry.php b/downloader/lib/Mage/Connect/Command/Registry.php index f645ae37f81183cecddc95c00f5da1251e8a2e27..e32a4ce89ed8426772bcbbfd81d57b24e2fec6ca 100644 --- a/downloader/lib/Mage/Connect/Command/Registry.php +++ b/downloader/lib/Mage/Connect/Command/Registry.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/lib/Mage/Connect/Command/Registry_Header.php b/downloader/lib/Mage/Connect/Command/Registry_Header.php index 0c8045e1cffe6a46a8a92b099e26b87987294b7c..f041da83ab81b12ab7096c620f5466a60878d6c3 100644 --- a/downloader/lib/Mage/Connect/Command/Registry_Header.php +++ b/downloader/lib/Mage/Connect/Command/Registry_Header.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/lib/Mage/Connect/Command/Remote.php b/downloader/lib/Mage/Connect/Command/Remote.php index 030559784d0abefdb1975344240e7dea7136b0df..b9f93946a344e4c80e5a90ecbec6d2386b12c1d0 100644 --- a/downloader/lib/Mage/Connect/Command/Remote.php +++ b/downloader/lib/Mage/Connect/Command/Remote.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/lib/Mage/Connect/Command/Remote_Header.php b/downloader/lib/Mage/Connect/Command/Remote_Header.php index 1ce23be78f3c0953276d6a21ad65bb90f8c5fdf2..f84d61328e8695c644f98a24bda116c1c6fac6c9 100644 --- a/downloader/lib/Mage/Connect/Command/Remote_Header.php +++ b/downloader/lib/Mage/Connect/Command/Remote_Header.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/lib/Mage/Connect/Config.php b/downloader/lib/Mage/Connect/Config.php index c6fb62b3a9d7784c78406a9ef2c51083139f6fca..a17e06c70c3673ddbdefae1e377ffca0633b6708 100644 --- a/downloader/lib/Mage/Connect/Config.php +++ b/downloader/lib/Mage/Connect/Config.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/lib/Mage/Connect/Converter.php b/downloader/lib/Mage/Connect/Converter.php index 3c6fb458a027bc4b74fc83feeb7776e3ae1651ce..726170db034056fc0fb3f3ac97793020c4236f44 100644 --- a/downloader/lib/Mage/Connect/Converter.php +++ b/downloader/lib/Mage/Connect/Converter.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/lib/Mage/Connect/Frontend.php b/downloader/lib/Mage/Connect/Frontend.php index a129e13acf388cbcd006004cab9a6b7a920f9130..2ab56f05294bff68941b39a44cfe388a71a2d76e 100644 --- a/downloader/lib/Mage/Connect/Frontend.php +++ b/downloader/lib/Mage/Connect/Frontend.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Connect_Frontend diff --git a/downloader/lib/Mage/Connect/Frontend/CLI.php b/downloader/lib/Mage/Connect/Frontend/CLI.php index 8c3c195a2648d47beef65349c6a5b20862cf6bb7..fb4c224333698bdfcbce2e8bcbe732d96f348275 100644 --- a/downloader/lib/Mage/Connect/Frontend/CLI.php +++ b/downloader/lib/Mage/Connect/Frontend/CLI.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/lib/Mage/Connect/Ftp.php b/downloader/lib/Mage/Connect/Ftp.php index c64c5c193719cf437b71a8ee6753bf713f183c95..94ba5118e9a47714907877eaaf535ad3112224f7 100644 --- a/downloader/lib/Mage/Connect/Ftp.php +++ b/downloader/lib/Mage/Connect/Ftp.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/lib/Mage/Connect/Loader.php b/downloader/lib/Mage/Connect/Loader.php index d9ba5f39a889f48194b8b98dd35ec7351b342b7f..489fca847580eed518fa14f754d2320885049e94 100644 --- a/downloader/lib/Mage/Connect/Loader.php +++ b/downloader/lib/Mage/Connect/Loader.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/lib/Mage/Connect/Loader/Ftp.php b/downloader/lib/Mage/Connect/Loader/Ftp.php index ef931bede0e398eef007ccb8a638eec14d506d62..ea433302fb2806d0f7195d624b6f418bd67fee7c 100644 --- a/downloader/lib/Mage/Connect/Loader/Ftp.php +++ b/downloader/lib/Mage/Connect/Loader/Ftp.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/lib/Mage/Connect/Package.php b/downloader/lib/Mage/Connect/Package.php index 7804e7093713933d2cd65d131d5ad5e998703b73..818389181ea7e46b505545eb3e00bbc814eb6bd1 100644 --- a/downloader/lib/Mage/Connect/Package.php +++ b/downloader/lib/Mage/Connect/Package.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/lib/Mage/Connect/Package/Hotfix.php b/downloader/lib/Mage/Connect/Package/Hotfix.php index 7e3ba1ab1bd13e17003d4f32fb99b1bd778c0ce9..5bc7d79116eb2e312db30f149fbe5cfa5e022d66 100644 --- a/downloader/lib/Mage/Connect/Package/Hotfix.php +++ b/downloader/lib/Mage/Connect/Package/Hotfix.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/lib/Mage/Connect/Package/Reader.php b/downloader/lib/Mage/Connect/Package/Reader.php index abb9b437857dce226632abdc307f9c6e8e91582b..758dd905cad140e39bb04415ee02d537ce440fba 100644 --- a/downloader/lib/Mage/Connect/Package/Reader.php +++ b/downloader/lib/Mage/Connect/Package/Reader.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/lib/Mage/Connect/Package/Target.php b/downloader/lib/Mage/Connect/Package/Target.php index 69e557961a3962124797d77468961baa82e43a31..b452ae044031323fb3ba3b6fd20021b0bdce7d05 100644 --- a/downloader/lib/Mage/Connect/Package/Target.php +++ b/downloader/lib/Mage/Connect/Package/Target.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/lib/Mage/Connect/Package/VO.php b/downloader/lib/Mage/Connect/Package/VO.php index c05fef77b9e89ca93d5e0072e33617e545278076..dccd0e07962e0f7f94c30bfcae3200fe5b6044ca 100644 --- a/downloader/lib/Mage/Connect/Package/VO.php +++ b/downloader/lib/Mage/Connect/Package/VO.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/lib/Mage/Connect/Package/Writer.php b/downloader/lib/Mage/Connect/Package/Writer.php index 75ed9c89bdcdc60c40554c61032e6464ecde8393..e167128b7bb96111a37592e76100ed7b55600dbf 100644 --- a/downloader/lib/Mage/Connect/Package/Writer.php +++ b/downloader/lib/Mage/Connect/Package/Writer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/lib/Mage/Connect/Packager.php b/downloader/lib/Mage/Connect/Packager.php index f96ec0eac7cbd8bd2fad29dc2d86405044761228..54308ffcff3e3af8b82d3f28c0b376a723256d1a 100644 --- a/downloader/lib/Mage/Connect/Packager.php +++ b/downloader/lib/Mage/Connect/Packager.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/lib/Mage/Connect/Rest.php b/downloader/lib/Mage/Connect/Rest.php index 6534b8ad937aa0891d839da5b7943e73ddac8bc9..8fe3aef483c9cf95e0b6f8aa90ac4f57d81af589 100644 --- a/downloader/lib/Mage/Connect/Rest.php +++ b/downloader/lib/Mage/Connect/Rest.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/lib/Mage/Connect/Singleconfig.php b/downloader/lib/Mage/Connect/Singleconfig.php index 212d5f8545a53043b9a7529172b5bb34d3cd9e30..9aede9186cf484c6a4b5134a4b218b899e9ea848 100644 --- a/downloader/lib/Mage/Connect/Singleconfig.php +++ b/downloader/lib/Mage/Connect/Singleconfig.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/lib/Mage/Connect/Structures/Graph.php b/downloader/lib/Mage/Connect/Structures/Graph.php index e3743bc73456440e2fb43379711fc656d88fcc97..fa8267dc0a1a1022d8efd93f8e21cdb6bb80290a 100644 --- a/downloader/lib/Mage/Connect/Structures/Graph.php +++ b/downloader/lib/Mage/Connect/Structures/Graph.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/lib/Mage/Connect/Structures/Node.php b/downloader/lib/Mage/Connect/Structures/Node.php index ce53ed277eb537fdc043f39adcdefb52f3459e6a..40e072f8827490c3a5a6432a318d1979f610d89c 100644 --- a/downloader/lib/Mage/Connect/Structures/Node.php +++ b/downloader/lib/Mage/Connect/Structures/Node.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/lib/Mage/Connect/Validator.php b/downloader/lib/Mage/Connect/Validator.php index d6da87272903e16eb6552dc2b0de05a325ddc448..500e3a216e9be94effd614df477217649e00b85f 100644 --- a/downloader/lib/Mage/Connect/Validator.php +++ b/downloader/lib/Mage/Connect/Validator.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/lib/Mage/DB/Exception.php b/downloader/lib/Mage/DB/Exception.php index 764e88961c7a40efe5bf11fbe50805ee6dfd9562..fa5c62e670b2de3b5e00e0e9d7b61fa2c308b7c7 100644 --- a/downloader/lib/Mage/DB/Exception.php +++ b/downloader/lib/Mage/DB/Exception.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_DB - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/lib/Mage/DB/Mysqli.php b/downloader/lib/Mage/DB/Mysqli.php index 2319ef08ef0273d82e2358d2e59318bdb9f43973..e2dbad672e17dc45a55db3093c6c050c00804c7f 100644 --- a/downloader/lib/Mage/DB/Mysqli.php +++ b/downloader/lib/Mage/DB/Mysqli.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_DB - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/lib/Mage/Exception.php b/downloader/lib/Mage/Exception.php index 7e16bced70db347e512afd1aa9ce33d43f2e4b41..cb0f672e627ee2d4ae57cdfe0d0e879ea0c7e097 100644 --- a/downloader/lib/Mage/Exception.php +++ b/downloader/lib/Mage/Exception.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/lib/Mage/HTTP/Client.php b/downloader/lib/Mage/HTTP/Client.php index 0e01e6f99b547de64426ef32754a9245614d640c..ecf7d522d39389c367503024c584bc136f10adce 100644 --- a/downloader/lib/Mage/HTTP/Client.php +++ b/downloader/lib/Mage/HTTP/Client.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_HTTP - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/lib/Mage/HTTP/Client/Curl.php b/downloader/lib/Mage/HTTP/Client/Curl.php index 49a59e81a67930b0f48d5d15e82e11d63cc4332a..e1522e49ee08c611e34193e49961e695d7f3d944 100644 --- a/downloader/lib/Mage/HTTP/Client/Curl.php +++ b/downloader/lib/Mage/HTTP/Client/Curl.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_HTTP - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/lib/Mage/HTTP/Client/Socket.php b/downloader/lib/Mage/HTTP/Client/Socket.php index 629631203477ddfed768b7ce83769028d262a050..c50b923601caa91f3ef5a06ea708292293e01bc9 100644 --- a/downloader/lib/Mage/HTTP/Client/Socket.php +++ b/downloader/lib/Mage/HTTP/Client/Socket.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_HTTP - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/lib/Mage/HTTP/IClient.php b/downloader/lib/Mage/HTTP/IClient.php index 2d83196340252d4ff99193f1cc8234208a2200e9..79e607bdd67b9cf48a68b5a0fe12c2e82b2f7ad4 100644 --- a/downloader/lib/Mage/HTTP/IClient.php +++ b/downloader/lib/Mage/HTTP/IClient.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_HTTP - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/lib/Mage/System/Args.php b/downloader/lib/Mage/System/Args.php index 4d872d63771dd040e50d9b02578e86d11bc23d1f..f59517e7a7d943e9cb19b2a1080954f0218bf4da 100644 --- a/downloader/lib/Mage/System/Args.php +++ b/downloader/lib/Mage/System/Args.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/lib/Mage/System/Dirs.php b/downloader/lib/Mage/System/Dirs.php index f01b8bfae590c6e53c8ab1e5bcde50689a7442ed..218ad501cae2cbebcd2dc4265f120abe984960dc 100644 --- a/downloader/lib/Mage/System/Dirs.php +++ b/downloader/lib/Mage/System/Dirs.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_System - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_System_Dirs diff --git a/downloader/lib/Mage/System/Ftp.php b/downloader/lib/Mage/System/Ftp.php index b7632c6a29ebc1969034a7a9f34633ddb571ac47..037c09848e60c90d9f2da14039324ff83222987a 100755 --- a/downloader/lib/Mage/System/Ftp.php +++ b/downloader/lib/Mage/System/Ftp.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_System - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/lib/Mage/Xml/Generator.php b/downloader/lib/Mage/Xml/Generator.php index 6a847b377e98284b163030adba5e33bc66e7a071..1e2cf90d75deeaf5b6f76ca52b529a9b1c5525d8 100644 --- a/downloader/lib/Mage/Xml/Generator.php +++ b/downloader/lib/Mage/Xml/Generator.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Xml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Xml_Generator diff --git a/downloader/lib/Mage/Xml/Parser.php b/downloader/lib/Mage/Xml/Parser.php index 0a0280a9bc7f2f95bfa2776ad49c5913d54576ea..bc4433e465910835c386d9b50a318c38f0016163 100644 --- a/downloader/lib/Mage/Xml/Parser.php +++ b/downloader/lib/Mage/Xml/Parser.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Xml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Xml_Parser diff --git a/downloader/mage.php b/downloader/mage.php index d31e9abd9df50072c8538d8ab013bf301f7cf15f..d6239be1f76976187c1fcf327e0b43354a18e939 100644 --- a/downloader/mage.php +++ b/downloader/mage.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/downloader/skin/boxes.css b/downloader/skin/boxes.css index 4e714caad78b9ebdfdd6eba4f5a613bb3a7db476..51afa822034344481e4c69c9c16c7c9341d12822 100644 --- a/downloader/skin/boxes.css +++ b/downloader/skin/boxes.css @@ -19,7 +19,7 @@ * * @category design * @package default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /* diff --git a/downloader/skin/ie7boxes.css b/downloader/skin/ie7boxes.css index 9306f2e8a4b604a7d1b4c30acc02a8bf8283affe..ec0933029412668cdb4c28b82380a3a9560f3a66 100644 --- a/downloader/skin/ie7boxes.css +++ b/downloader/skin/ie7boxes.css @@ -19,7 +19,7 @@ * * @category design * @package default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ .main { height:auto !important; } diff --git a/downloader/skin/ieboxes.css b/downloader/skin/ieboxes.css index d33dd044951da3c0b95a63ca63b7573f231dc5a1..4f90527f2341b075d0d879ca67f4fd2b9312b78e 100644 --- a/downloader/skin/ieboxes.css +++ b/downloader/skin/ieboxes.css @@ -19,7 +19,7 @@ * * @category design * @package default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ button, .form-button { filter:chroma(color=#000000); overflow:visible; width:auto; } diff --git a/downloader/skin/install/boxes.css b/downloader/skin/install/boxes.css index 32b1a0df2e8c6691da72562e239c8a46c49dc773..ec2c727719c40199ed0786318a40e07d44d337c9 100644 --- a/downloader/skin/install/boxes.css +++ b/downloader/skin/install/boxes.css @@ -19,7 +19,7 @@ * * @category design * @package default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/downloader/skin/install/clears.css b/downloader/skin/install/clears.css index c9ace976bc77e3f6d50ac8aa8bb219b44b3310f3..4d150395280163a0252c05654cdf2c76ff0e8975 100644 --- a/downloader/skin/install/clears.css +++ b/downloader/skin/install/clears.css @@ -19,7 +19,7 @@ * * @category design * @package default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/downloader/skin/install/ie7minus.css b/downloader/skin/install/ie7minus.css index 8e0fff981c628a3c5e15dabf87e738fc6bc71f46..9173eb23ba009d4bd95ee0d9ee9668d653397461 100644 --- a/downloader/skin/install/ie7minus.css +++ b/downloader/skin/install/ie7minus.css @@ -19,7 +19,7 @@ * * @category design * @package default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/downloader/skin/install/iestyles.css b/downloader/skin/install/iestyles.css index 271c9af6e508a889f735948419bd8ddb4e6183f2..1b13416d631cdc0282ba10740be2864ee6af2486 100644 --- a/downloader/skin/install/iestyles.css +++ b/downloader/skin/install/iestyles.css @@ -19,7 +19,7 @@ * * @category design * @package default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ .col2-set, diff --git a/downloader/skin/install/reset.css b/downloader/skin/install/reset.css index f30ef5c8633e727417c51128fc3269ada256bdcb..b610c581a00132d5d1617c639915ffde667399f1 100644 --- a/downloader/skin/install/reset.css +++ b/downloader/skin/install/reset.css @@ -19,7 +19,7 @@ * * @category design * @package default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /******************************************/ diff --git a/downloader/target.xml b/downloader/target.xml index 0f6c097ff9ffc4b3fda0e6b476a04f6e48b2f574..b22dce987279b3b08d4a266df5093ef21d590f32 100644 --- a/downloader/target.xml +++ b/downloader/target.xml @@ -21,7 +21,7 @@ * * @category design * @package default_default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/downloader/template/connect/iframe.phtml b/downloader/template/connect/iframe.phtml index bec15ce2a09d6e5e605824d6ea8d0db64df9bf29..8b0c5f0c69697af1b5ad9aeeb027d86f6a13c06a 100644 --- a/downloader/template/connect/iframe.phtml +++ b/downloader/template/connect/iframe.phtml @@ -20,7 +20,7 @@ * * @category design * @package default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/downloader/template/connect/packages.phtml b/downloader/template/connect/packages.phtml index ea9a0a679cfb6b43e4efb5b0c6d2382a6a78e57b..f191d39cbc1da175fa43540abd6d621f24130f95 100644 --- a/downloader/template/connect/packages.phtml +++ b/downloader/template/connect/packages.phtml @@ -20,7 +20,7 @@ * * @category design * @package default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/downloader/template/connect/packages_prepare.phtml b/downloader/template/connect/packages_prepare.phtml index e5a29213ebc7db66fa4df2798e15c6b7676683f8..a1ce956cb91aa5a75704c29e27bc6480526afd31 100644 --- a/downloader/template/connect/packages_prepare.phtml +++ b/downloader/template/connect/packages_prepare.phtml @@ -20,7 +20,7 @@ * * @category design * @package default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/downloader/template/exception.phtml b/downloader/template/exception.phtml index d2ea14c490f0e7e6ca3f1026be93e8df56238c74..8ba952606ca0dae8e1ad5f4fdbb07dc49725806c 100644 --- a/downloader/template/exception.phtml +++ b/downloader/template/exception.phtml @@ -20,7 +20,7 @@ * * @category design * @package default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/downloader/template/footer.phtml b/downloader/template/footer.phtml index c9ce9102982e9079e3efb93e56047edb6c7d1848..7d5695f832f55dd2cdb2af6295ae8039fa03900e 100755 --- a/downloader/template/footer.phtml +++ b/downloader/template/footer.phtml @@ -20,7 +20,7 @@ * * @category design * @package default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/downloader/template/header.phtml b/downloader/template/header.phtml index 1bdd9134114098a1677b5fab36eb167bf14b2b7e..4ad7faac24223d24cc198f402ecb93b1de6ddd84 100644 --- a/downloader/template/header.phtml +++ b/downloader/template/header.phtml @@ -20,7 +20,7 @@ * * @category design * @package default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/downloader/template/index.phtml b/downloader/template/index.phtml index 1077626d77f48fe40542db4f983098a62bc3bb13..d3bc549ed93598fcb6bc8c7c87ddb2162c47bf98 100755 --- a/downloader/template/index.phtml +++ b/downloader/template/index.phtml @@ -20,7 +20,7 @@ * * @category design * @package default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/downloader/template/install/download.phtml b/downloader/template/install/download.phtml index 72de9c4031019d6ec53fec62fb178062737085f9..dea9bf8a33927575ee985858c8b67a9f6ae3f92c 100644 --- a/downloader/template/install/download.phtml +++ b/downloader/template/install/download.phtml @@ -20,7 +20,7 @@ * * @category design * @package default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/downloader/template/install/footer.phtml b/downloader/template/install/footer.phtml index 334de32ff93297ef8b173fe5c1e7c932aca02056..a3a8925db885d22830453165cc25eeb9a71f5be0 100644 --- a/downloader/template/install/footer.phtml +++ b/downloader/template/install/footer.phtml @@ -20,7 +20,7 @@ * * @category design * @package default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/downloader/template/install/header.phtml b/downloader/template/install/header.phtml index 1679a6b81fd27194717e451080190e5ec606358e..3a76d601b6b100fb797fdd31d45c7a4b2828f21c 100644 --- a/downloader/template/install/header.phtml +++ b/downloader/template/install/header.phtml @@ -20,7 +20,7 @@ * * @category design * @package default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/downloader/template/install/writable.phtml b/downloader/template/install/writable.phtml index 65d130d746bb6b59482c66024886ea05f5993a2b..3eb5757d5139356e43d03e0ebae8002e9fed4ebc 100644 --- a/downloader/template/install/writable.phtml +++ b/downloader/template/install/writable.phtml @@ -20,7 +20,7 @@ * * @category design * @package default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/downloader/template/login.phtml b/downloader/template/login.phtml index 0aa531777079dfcf47760286d427bb4fd3514119..69498ca13df3811764a2da3a290644b18de50288 100755 --- a/downloader/template/login.phtml +++ b/downloader/template/login.phtml @@ -20,7 +20,7 @@ * * @category design * @package default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/downloader/template/messages.phtml b/downloader/template/messages.phtml index 014205c165d120cabf1ca36ca4c47d1d46218d24..d463f69f1f468a8248ef533ed1e7e2c716b93676 100755 --- a/downloader/template/messages.phtml +++ b/downloader/template/messages.phtml @@ -20,7 +20,7 @@ * * @category design * @package default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/downloader/template/noroute.phtml b/downloader/template/noroute.phtml index fcaaa507a3d66f1657b0eb186943a21d2349dd72..4badc5c366295d64d57de85341c6e383807b2bbf 100755 --- a/downloader/template/noroute.phtml +++ b/downloader/template/noroute.phtml @@ -20,7 +20,7 @@ * * @category design * @package default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/downloader/template/settings.phtml b/downloader/template/settings.phtml index 56cd9d0bc00fb59554f4ee3246ae9881d0aa91f9..5b751f900c6dfd81dd95668ac80e9bb69cf18b5b 100755 --- a/downloader/template/settings.phtml +++ b/downloader/template/settings.phtml @@ -20,7 +20,7 @@ * * @category design * @package default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/downloader/template/writable.phtml b/downloader/template/writable.phtml index d690d914e2ee096a45069ee5ff9bc9235df95311..e0d03cddf277785661eb765b6a71856458a9e460 100755 --- a/downloader/template/writable.phtml +++ b/downloader/template/writable.phtml @@ -20,7 +20,7 @@ * * @category design * @package default - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/index.php b/index.php index 27bc03f67b2ccde1fb41cb1ef4d178c23f3bdf74..3c539f7b347275ccca57dd356ba5073cbf94476e 100644 --- a/index.php +++ b/index.php @@ -1,5 +1,7 @@ <?php /** + * Application entry point + * * Magento * * NOTICE OF LICENSE @@ -20,20 +22,11 @@ * * @category Mage * @package Mage - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ -require_once 'app/bootstrap.php'; - -/* Store or website code */ -$mageRunCode = isset($_SERVER['MAGE_RUN_CODE']) ? $_SERVER['MAGE_RUN_CODE'] : ''; -/* Run store or run website */ -$mageRunType = isset($_SERVER['MAGE_RUN_TYPE']) ? $_SERVER['MAGE_RUN_TYPE'] : 'store'; -/* Additional local.xml file from environment variable */ -$options = array(); -if (!empty($_SERVER['MAGE_LOCAL_CONFIG'])) { - $options['local_config'] = $_SERVER['MAGE_LOCAL_CONFIG']; -} +require_once __DIR__ . '/app/bootstrap.php'; -Mage::run($mageRunCode, $mageRunType); +$appOptions = new Mage_Core_Model_App_Options($_SERVER); +Mage::run($appOptions->getRunCode(), $appOptions->getRunType(), $appOptions->getRunOptions()); diff --git a/index.php.sample b/index.php.sample index 01811a5361af4c15917b622992d7688e2d6cec05..4070e1621e48a312bb8658e05375138b5ca277aa 100644 --- a/index.php.sample +++ b/index.php.sample @@ -20,20 +20,11 @@ * * @category Mage * @package Mage - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ -$bootstrapFile = 'app/bootstrap.php'; +require_once __DIR__ . '/app/bootstrap.php'; -/* Store or website code */ -$mageRunCode = isset($_SERVER['MAGE_RUN_CODE']) ? $_SERVER['MAGE_RUN_CODE'] : ''; -/* Run store or run website */ -$mageRunType = isset($_SERVER['MAGE_RUN_TYPE']) ? $_SERVER['MAGE_RUN_TYPE'] : 'store'; -/* Additional local.xml file from environment variable */ -$options = array(); -if (!empty($_SERVER['MAGE_LOCAL_CONFIG'])) { - $options['local_config'] = $_SERVER['MAGE_LOCAL_CONFIG']; -} - -Mage::run($mageRunCode, $mageRunType, $options); +$appOptions = new Mage_Core_Model_App_Options($_SERVER); +Mage::run($appOptions->getRunCode(), $appOptions->getRunType(), $appOptions->getRunOptions()); diff --git a/lib/Mage/Archive.php b/lib/Mage/Archive.php index bff6bc7d0fa731b54d4f1b1821c7fb1ace387234..39a133570c6bcb1a95aba0b961070fc00b3687ab 100644 --- a/lib/Mage/Archive.php +++ b/lib/Mage/Archive.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Archive - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Mage/Archive/Abstract.php b/lib/Mage/Archive/Abstract.php index 8955536c31ee29e0a3a67e117353819fc5179aea..2ba5521037e14e43403354831fccb1e278fed8c3 100644 --- a/lib/Mage/Archive/Abstract.php +++ b/lib/Mage/Archive/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Archive - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Mage/Archive/Bz.php b/lib/Mage/Archive/Bz.php index 553925e543b88cb61b15b1e056cda94f0787bf68..23550c3cc88e8a22c6c18890d6391192ce23bb04 100644 --- a/lib/Mage/Archive/Bz.php +++ b/lib/Mage/Archive/Bz.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Archive - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Mage/Archive/Gz.php b/lib/Mage/Archive/Gz.php index 0c1a7f653239d56890cd5acc5ce76b16b7593ef3..7b632ec431dec7f6e2be7c375a9b033f32145bb6 100644 --- a/lib/Mage/Archive/Gz.php +++ b/lib/Mage/Archive/Gz.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Archive - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Mage/Archive/Helper/File.php b/lib/Mage/Archive/Helper/File.php index 2eaf4b50f76a39044f75e366e4f6b4aef84d5f67..3ddd1722bd71b2a7659839e396744dfd14c7716b 100644 --- a/lib/Mage/Archive/Helper/File.php +++ b/lib/Mage/Archive/Helper/File.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Archive - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Mage/Archive/Helper/File/Bz.php b/lib/Mage/Archive/Helper/File/Bz.php index bc9a00762ecb62d1d43fd934458d65ade3c5c8b0..ff81f72a2b39b51b95c423bf20441ec77b882b2d 100644 --- a/lib/Mage/Archive/Helper/File/Bz.php +++ b/lib/Mage/Archive/Helper/File/Bz.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Archive - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Mage/Archive/Helper/File/Gz.php b/lib/Mage/Archive/Helper/File/Gz.php index 99210b4e513a535d0e4694b2d696a6f12cac975c..fd2eba400e85da49e9d494963b47576a6b57cbd0 100644 --- a/lib/Mage/Archive/Helper/File/Gz.php +++ b/lib/Mage/Archive/Helper/File/Gz.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Archive - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Mage/Archive/Interface.php b/lib/Mage/Archive/Interface.php index 35aeb92e4df24ad2149cf3881a1b577316a27fd5..d312406a85696366f4bc43f91248970c41444b28 100644 --- a/lib/Mage/Archive/Interface.php +++ b/lib/Mage/Archive/Interface.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Archive - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Mage/Archive/Tar.php b/lib/Mage/Archive/Tar.php index b2bec6d5312ba6921769180dbfdb8621d75f2362..69943433b6ba4025a704b899a00e3b9c78fdc816 100644 --- a/lib/Mage/Archive/Tar.php +++ b/lib/Mage/Archive/Tar.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Archive - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Mage/Autoload/Simple.php b/lib/Mage/Autoload/Simple.php index 803bd85db38958f827080128d928e464f6aa783d..0cded9c54751a10ccb71896030475dbed2e68121 100644 --- a/lib/Mage/Autoload/Simple.php +++ b/lib/Mage/Autoload/Simple.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Mage/Backup.php b/lib/Mage/Backup.php index 9aa9bf2a4ee9c3ab7723feb9b85c88d8937ad395..c45f50dee4d938a8f5a81e7da340696ef252c069 100644 --- a/lib/Mage/Backup.php +++ b/lib/Mage/Backup.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backup - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Mage/Backup/Abstract.php b/lib/Mage/Backup/Abstract.php index b2abeedabe070122ba28836c174d37de84f54086..d2f8f6804ae69f091a93f7dfd8c22877fbd767c6 100644 --- a/lib/Mage/Backup/Abstract.php +++ b/lib/Mage/Backup/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backup - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ /** diff --git a/lib/Mage/Backup/Archive/Tar.php b/lib/Mage/Backup/Archive/Tar.php index 335af1769871991d3e9bd886fa4714d606dbd61b..250792f800efe44cf17a917e847af8e8185d881d 100644 --- a/lib/Mage/Backup/Archive/Tar.php +++ b/lib/Mage/Backup/Archive/Tar.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backup - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Mage/Backup/Db.php b/lib/Mage/Backup/Db.php index a1ede2e253bff67012e073a859eb766820a2da26..9637cae1974c2220b46171f647555269d7909239 100644 --- a/lib/Mage/Backup/Db.php +++ b/lib/Mage/Backup/Db.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backup - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Mage/Backup/Exception.php b/lib/Mage/Backup/Exception.php index 0b323ce3b60406ecc6ef3a87df10794a15c09379..59cf46e68944b775a63dc7d72ddaadb3e2fae7a1 100644 --- a/lib/Mage/Backup/Exception.php +++ b/lib/Mage/Backup/Exception.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backup - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Mage/Backup/Exception/CantLoadSnapshot.php b/lib/Mage/Backup/Exception/CantLoadSnapshot.php index ed8b41e7cb868930767483a0e17d0c4802101266..a4324637cefdda82993dee14df7df77af7bd95dc 100644 --- a/lib/Mage/Backup/Exception/CantLoadSnapshot.php +++ b/lib/Mage/Backup/Exception/CantLoadSnapshot.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backup - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Mage/Backup/Exception/FtpConnectionFailed.php b/lib/Mage/Backup/Exception/FtpConnectionFailed.php index b61df50da63d712338b7c99d3055212f68dcd449..fbfec0a94e50c239484f3f986f193ba7c06cca7c 100644 --- a/lib/Mage/Backup/Exception/FtpConnectionFailed.php +++ b/lib/Mage/Backup/Exception/FtpConnectionFailed.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backup - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Mage/Backup/Exception/FtpValidationFailed.php b/lib/Mage/Backup/Exception/FtpValidationFailed.php index 70ae995051342e6f19e4a1194e1bd5982a51e98f..3599a4c387866cac2f175da0c0fb8225915cd652 100644 --- a/lib/Mage/Backup/Exception/FtpValidationFailed.php +++ b/lib/Mage/Backup/Exception/FtpValidationFailed.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backup - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Mage/Backup/Exception/NotEnoughFreeSpace.php b/lib/Mage/Backup/Exception/NotEnoughFreeSpace.php index 090fc242a9d10c2712a8e481a39ebba49df9b74a..b4c926d101e46d746b73351a3cd6f9b9864fb7bc 100644 --- a/lib/Mage/Backup/Exception/NotEnoughFreeSpace.php +++ b/lib/Mage/Backup/Exception/NotEnoughFreeSpace.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backup - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Mage/Backup/Exception/NotEnoughPermissions.php b/lib/Mage/Backup/Exception/NotEnoughPermissions.php index e0cb46df7fd4c2ff5072514b479e5b03557641ef..bdb513375529dd7f1c1e0309b709bab64176e656 100644 --- a/lib/Mage/Backup/Exception/NotEnoughPermissions.php +++ b/lib/Mage/Backup/Exception/NotEnoughPermissions.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backup - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Mage/Backup/Filesystem.php b/lib/Mage/Backup/Filesystem.php index a6a66e9946d0d5f3c23f271112f5423f58be1f35..8c5cdd5bd6a76640e9af7aa4af3774ccbfb9ebfa 100644 --- a/lib/Mage/Backup/Filesystem.php +++ b/lib/Mage/Backup/Filesystem.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backup - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Mage/Backup/Filesystem/Helper.php b/lib/Mage/Backup/Filesystem/Helper.php index 4e877ca9ff49f4438ae506597458a1aabb177e13..a4061e298e96464b0a6fb06a9feb93613872cb2c 100644 --- a/lib/Mage/Backup/Filesystem/Helper.php +++ b/lib/Mage/Backup/Filesystem/Helper.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backup - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Mage/Backup/Filesystem/Iterator/File.php b/lib/Mage/Backup/Filesystem/Iterator/File.php index 29da92f8ac0b16362c07868a4ca6d4a54de35f21..577ad01dbc4462eaafb17c35f2e3623eaf55e550 100644 --- a/lib/Mage/Backup/Filesystem/Iterator/File.php +++ b/lib/Mage/Backup/Filesystem/Iterator/File.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backup - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Mage/Backup/Filesystem/Iterator/Filter.php b/lib/Mage/Backup/Filesystem/Iterator/Filter.php index 1c95840e7d965c59d0be2ac75047978cb63c0ce7..ad2210552d2d757624d7e2a5db1f5afccb2fb0f6 100644 --- a/lib/Mage/Backup/Filesystem/Iterator/Filter.php +++ b/lib/Mage/Backup/Filesystem/Iterator/Filter.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backup - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Mage/Backup/Filesystem/Rollback/Abstract.php b/lib/Mage/Backup/Filesystem/Rollback/Abstract.php index fc0dc97d900ffa7020f03a5eee2ca8ef011757d8..f181a217c0538227fb71f245c78263a3cab8fdfb 100644 --- a/lib/Mage/Backup/Filesystem/Rollback/Abstract.php +++ b/lib/Mage/Backup/Filesystem/Rollback/Abstract.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backup - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Mage/Backup/Filesystem/Rollback/Fs.php b/lib/Mage/Backup/Filesystem/Rollback/Fs.php index 9340e03888be1d671735f9542011aefca1db70bc..09b83e30346069b263ff2f5eb4db43866b540822 100644 --- a/lib/Mage/Backup/Filesystem/Rollback/Fs.php +++ b/lib/Mage/Backup/Filesystem/Rollback/Fs.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backup - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Mage/Backup/Filesystem/Rollback/Ftp.php b/lib/Mage/Backup/Filesystem/Rollback/Ftp.php index 74d366a2f62392ab73e47b89c082f812219bb996..c2f05536b5ffdda6b1032f61b93fa7f0c4f8b529 100644 --- a/lib/Mage/Backup/Filesystem/Rollback/Ftp.php +++ b/lib/Mage/Backup/Filesystem/Rollback/Ftp.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backup - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Mage/Backup/Interface.php b/lib/Mage/Backup/Interface.php index b97c0814adeb8b77b71f5236e67ec42a7e99aeff..e1b9645488c25bbc04d547978a60e123dc7a315c 100644 --- a/lib/Mage/Backup/Interface.php +++ b/lib/Mage/Backup/Interface.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backup - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Mage/Backup/Media.php b/lib/Mage/Backup/Media.php index 3b187161f8ee163321322d73d0321a85950380f7..27e6770737f11f84b46317286dc48555697ce4be 100644 --- a/lib/Mage/Backup/Media.php +++ b/lib/Mage/Backup/Media.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backup - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Mage/Backup/Nomedia.php b/lib/Mage/Backup/Nomedia.php index a26b535dc48c154c459f24c306e4f257616158da..94419ae8e5459bc5980bf600d53cfdfae7e60538 100644 --- a/lib/Mage/Backup/Nomedia.php +++ b/lib/Mage/Backup/Nomedia.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backup - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Mage/Backup/Snapshot.php b/lib/Mage/Backup/Snapshot.php index 118dbc0be0a6f86d7c3ca1e2d6ab8e8aac94603c..b3205d85992c835714a6bc676c9be0cdff9492a3 100644 --- a/lib/Mage/Backup/Snapshot.php +++ b/lib/Mage/Backup/Snapshot.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Backup - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Mage/Connect/Channel/Generator.php b/lib/Mage/Connect/Channel/Generator.php index e65f89f4c6678763f1e4f57fda3864b5233ac33d..31c04f927e1702e31ec989aa4bd33a6721b6476e 100644 --- a/lib/Mage/Connect/Channel/Generator.php +++ b/lib/Mage/Connect/Channel/Generator.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Mage/Connect/Channel/Parser.php b/lib/Mage/Connect/Channel/Parser.php index 39a7537dd0472377e3ee511d90101c4484e0479b..d8b2c3bcece6af6ccfd5a6cc17dd67e762755b63 100644 --- a/lib/Mage/Connect/Channel/Parser.php +++ b/lib/Mage/Connect/Channel/Parser.php @@ -20,6 +20,6 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ \ No newline at end of file diff --git a/lib/Mage/Connect/Channel/VO.php b/lib/Mage/Connect/Channel/VO.php index 62249340bb6236269a5f05f1ae862e04130e1be8..2bffdd6025ce06ebe7273e50dfe93f43ab4bd955 100644 --- a/lib/Mage/Connect/Channel/VO.php +++ b/lib/Mage/Connect/Channel/VO.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Mage/Connect/Command.php b/lib/Mage/Connect/Command.php index 818a9fa7c6491e584e24dfc7b4dbd9070dd342cd..ed66d3153a9a9a8a3636b75831aba85fd6043a5e 100644 --- a/lib/Mage/Connect/Command.php +++ b/lib/Mage/Connect/Command.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Mage/Connect/Command/Channels.php b/lib/Mage/Connect/Command/Channels.php index b4b72faa8b0811e253be176f6962333d5628f642..f688ffb2858ce008109699716d900ab951a8a23c 100644 --- a/lib/Mage/Connect/Command/Channels.php +++ b/lib/Mage/Connect/Command/Channels.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Mage/Connect/Command/Channels_Header.php b/lib/Mage/Connect/Command/Channels_Header.php index 2c12b24a4a50677f7543189dff08e1e3c6df5ef8..0c621ee018f4655716cda3d265abb57c88211712 100644 --- a/lib/Mage/Connect/Command/Channels_Header.php +++ b/lib/Mage/Connect/Command/Channels_Header.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Mage/Connect/Command/Config.php b/lib/Mage/Connect/Command/Config.php index dea4c6b4243895664b110b454406df194f31b6ce..ea76cd8385317c9751932c5e88932614c40926e0 100644 --- a/lib/Mage/Connect/Command/Config.php +++ b/lib/Mage/Connect/Command/Config.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Mage/Connect/Command/Config_Header.php b/lib/Mage/Connect/Command/Config_Header.php index 0dace693340fd3e519cc3e97dbc9880441172202..7724352d19f8675e988c0370aa2f8ecae06948d4 100644 --- a/lib/Mage/Connect/Command/Config_Header.php +++ b/lib/Mage/Connect/Command/Config_Header.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Mage/Connect/Command/Install.php b/lib/Mage/Connect/Command/Install.php index e718d877a5686033fc411654a1b3f06ac3866dbf..f7621590ed1a751dfcc99a9230c90387431d23e1 100644 --- a/lib/Mage/Connect/Command/Install.php +++ b/lib/Mage/Connect/Command/Install.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Mage/Connect/Command/Install_Header.php b/lib/Mage/Connect/Command/Install_Header.php index 33723fbffdc586168a1f10f3894a6ed912d933bc..99a4e4342e426c6a240e8750a803ef5a5d46f7c8 100644 --- a/lib/Mage/Connect/Command/Install_Header.php +++ b/lib/Mage/Connect/Command/Install_Header.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Mage/Connect/Command/Package.php b/lib/Mage/Connect/Command/Package.php index 45e6dbe86a375da609158b1e62799d799ab96afe..c9ca93bb884948c743300ab0578822214d0ed733 100644 --- a/lib/Mage/Connect/Command/Package.php +++ b/lib/Mage/Connect/Command/Package.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Mage/Connect/Command/Package_Header.php b/lib/Mage/Connect/Command/Package_Header.php index d57953ae3be8f7a51d10251acfd8781c5957e082..ecdc42c66d60b13e912b80b9c4b90fc37c3bcbc8 100644 --- a/lib/Mage/Connect/Command/Package_Header.php +++ b/lib/Mage/Connect/Command/Package_Header.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Mage/Connect/Command/Registry.php b/lib/Mage/Connect/Command/Registry.php index 4c6350dc45aa49deb0f248fb4fbb89e82de483f2..0643f6bb94222dd536cdbcd6d19ebc0f3684acb7 100644 --- a/lib/Mage/Connect/Command/Registry.php +++ b/lib/Mage/Connect/Command/Registry.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Mage/Connect/Command/Registry_Header.php b/lib/Mage/Connect/Command/Registry_Header.php index 2b01e63ab7c7f3869c1d9b339b29da84e11a9a08..da1f72c940deb58e7a8d68437449d43e52b81ee4 100644 --- a/lib/Mage/Connect/Command/Registry_Header.php +++ b/lib/Mage/Connect/Command/Registry_Header.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Mage/Connect/Command/Remote.php b/lib/Mage/Connect/Command/Remote.php index 0f3ee38ca2e11bb4f5b25a09b2578ea926ec8764..ca1956d31b2e23be4cdbd1b87ea0bf4c530a7aac 100644 --- a/lib/Mage/Connect/Command/Remote.php +++ b/lib/Mage/Connect/Command/Remote.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Mage/Connect/Command/Remote_Header.php b/lib/Mage/Connect/Command/Remote_Header.php index 007d368dfdb9190338a86dbb40111dfa26aa3c23..6441fbbeb497cc80b7cf753c95ee353eeec3aefa 100644 --- a/lib/Mage/Connect/Command/Remote_Header.php +++ b/lib/Mage/Connect/Command/Remote_Header.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Mage/Connect/Config.php b/lib/Mage/Connect/Config.php index bf427c422f24e56a9dd07e42c6e5b8142353a1fb..282dba6d34d889f329c835f9210a44ca63bdc0c9 100644 --- a/lib/Mage/Connect/Config.php +++ b/lib/Mage/Connect/Config.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Mage/Connect/Converter.php b/lib/Mage/Connect/Converter.php index 78c033061eeb482acef67c7330ad33116d91e8c8..e05bb1883cacdd2a11730aebbca3485a7ae8d0e0 100644 --- a/lib/Mage/Connect/Converter.php +++ b/lib/Mage/Connect/Converter.php @@ -21,7 +21,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Mage/Connect/Frontend.php b/lib/Mage/Connect/Frontend.php index 8c589564c473e4d459a33f699f8fb74fab0b5169..a5c5e9aaa68d3e4a903fd87cbf367a3d0f7a395a 100644 --- a/lib/Mage/Connect/Frontend.php +++ b/lib/Mage/Connect/Frontend.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Mage/Connect/Frontend/CLI.php b/lib/Mage/Connect/Frontend/CLI.php index 7df3ab2527f0722dfc6acca5c41bd022ace0abe2..1897f32a19f42f83c35d0601539f08bd4f9fae12 100644 --- a/lib/Mage/Connect/Frontend/CLI.php +++ b/lib/Mage/Connect/Frontend/CLI.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Mage/Connect/Ftp.php b/lib/Mage/Connect/Ftp.php index 54b150c00dc348c60cce1e4ac5a12d2a29274c8d..1da66ffaf8c50a0ee790d4d7949515eb7aa6a123 100644 --- a/lib/Mage/Connect/Ftp.php +++ b/lib/Mage/Connect/Ftp.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Mage/Connect/Loader.php b/lib/Mage/Connect/Loader.php index 1f0471efe731a025ed3fa99789d209f64b3abffc..ff8491cd019d4df5adaaad6db3d5327463a301f6 100644 --- a/lib/Mage/Connect/Loader.php +++ b/lib/Mage/Connect/Loader.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Mage/Connect/Loader/Ftp.php b/lib/Mage/Connect/Loader/Ftp.php index 568d85572904bd7e0d3d7a825e107ce8013a7e37..61af493f7583d48b757ff02113f8d10926b27ba2 100644 --- a/lib/Mage/Connect/Loader/Ftp.php +++ b/lib/Mage/Connect/Loader/Ftp.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Mage/Connect/Package.php b/lib/Mage/Connect/Package.php index 269977db0b58f7ee1ae1c27a9a6aafb5b0843196..3f2223ced0ee15af52699de0c59ee056f3d8c33c 100644 --- a/lib/Mage/Connect/Package.php +++ b/lib/Mage/Connect/Package.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Mage/Connect/Package/Hotfix.php b/lib/Mage/Connect/Package/Hotfix.php index 7aec356be86a7e43e0871392f152fc540ff3b41b..02e7999f189e07dea9f0a9adc19a477f11e44256 100644 --- a/lib/Mage/Connect/Package/Hotfix.php +++ b/lib/Mage/Connect/Package/Hotfix.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Mage/Connect/Package/Reader.php b/lib/Mage/Connect/Package/Reader.php index 7ea5fdd6e040b356bcb6b9e034f267d72f8c9f92..3a071d2c42b2d803073c9e8975ab2e6fe6a780e3 100644 --- a/lib/Mage/Connect/Package/Reader.php +++ b/lib/Mage/Connect/Package/Reader.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Mage/Connect/Package/Target.php b/lib/Mage/Connect/Package/Target.php index b6c2db613876df6c9a6ebe55452407e44bf8676a..d602ddc33f9c6569806e3d2eec14210a38f8ccff 100644 --- a/lib/Mage/Connect/Package/Target.php +++ b/lib/Mage/Connect/Package/Target.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Mage/Connect/Package/VO.php b/lib/Mage/Connect/Package/VO.php index 488d903880fe852a1a6c9faf2b8211eac431c182..68e5d945e4cb7d66dc5ba0760608b6eba03ee76a 100644 --- a/lib/Mage/Connect/Package/VO.php +++ b/lib/Mage/Connect/Package/VO.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Mage/Connect/Package/Writer.php b/lib/Mage/Connect/Package/Writer.php index f418828f8e96527439efdbe96164832bc31b6495..47a0dda46924a37cb39bcc378c9fcf3e43bdc9c0 100644 --- a/lib/Mage/Connect/Package/Writer.php +++ b/lib/Mage/Connect/Package/Writer.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Mage/Connect/Packager.php b/lib/Mage/Connect/Packager.php index afc58faffcc8f81a42697bc5e59a532a873d11d5..26a1d2b99986f09fb4422f6e7af4a8a49d946ae3 100644 --- a/lib/Mage/Connect/Packager.php +++ b/lib/Mage/Connect/Packager.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Mage/Connect/Rest.php b/lib/Mage/Connect/Rest.php index 39f5ca32ed2a2539a26b3c0a4c182e2035ab3343..e6508878d4c4ecadc5cac14be57b99d1fe4dc42f 100644 --- a/lib/Mage/Connect/Rest.php +++ b/lib/Mage/Connect/Rest.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Mage/Connect/Singleconfig.php b/lib/Mage/Connect/Singleconfig.php index 43b03432779eb63a42d6c0ed9304bfd6e41dbf34..4facc71a4e94473e20d1f6a0af9220d4d80228e7 100644 --- a/lib/Mage/Connect/Singleconfig.php +++ b/lib/Mage/Connect/Singleconfig.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Mage/Connect/Structures/Graph.php b/lib/Mage/Connect/Structures/Graph.php index e3743bc73456440e2fb43379711fc656d88fcc97..fa8267dc0a1a1022d8efd93f8e21cdb6bb80290a 100644 --- a/lib/Mage/Connect/Structures/Graph.php +++ b/lib/Mage/Connect/Structures/Graph.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Mage/Connect/Structures/Node.php b/lib/Mage/Connect/Structures/Node.php index ce53ed277eb537fdc043f39adcdefb52f3459e6a..40e072f8827490c3a5a6432a318d1979f610d89c 100644 --- a/lib/Mage/Connect/Structures/Node.php +++ b/lib/Mage/Connect/Structures/Node.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Mage/Connect/Validator.php b/lib/Mage/Connect/Validator.php index 8a098c32d0464d94c0c869731db1c8ce19a477c7..dc4025bf1bcb0a8e4a198bab65d13a42330f31e2 100644 --- a/lib/Mage/Connect/Validator.php +++ b/lib/Mage/Connect/Validator.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Mage/DB/Exception.php b/lib/Mage/DB/Exception.php index af2144edccad6c242957cb836ab4785551a7ac40..ade5b50e1fcc49884df3230507a3403739a0f226 100644 --- a/lib/Mage/DB/Exception.php +++ b/lib/Mage/DB/Exception.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Db - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Mage/DB/Mysqli.php b/lib/Mage/DB/Mysqli.php index fa5f7e557c2abc72b770478c2e9d984cc5cd056f..f86cabd29f939d7df5ca5b52c743590c1ce63ff5 100644 --- a/lib/Mage/DB/Mysqli.php +++ b/lib/Mage/DB/Mysqli.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Db - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Mage/Exception.php b/lib/Mage/Exception.php index adcc53792e66601ef54bf644ebfb2a0f0d920a8b..833c28834c10fecafaaba29de678ab798549a7cc 100644 --- a/lib/Mage/Exception.php +++ b/lib/Mage/Exception.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Mage/HTTP/Client.php b/lib/Mage/HTTP/Client.php index 3c9f6dbba8e1a6f33f2c442a4734a7440d1381cb..10ae4333f6ac99a8dc777817bd2726236e6586a3 100644 --- a/lib/Mage/HTTP/Client.php +++ b/lib/Mage/HTTP/Client.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Mage/HTTP/Client/Curl.php b/lib/Mage/HTTP/Client/Curl.php index ed6b91858a66bfa17fcccaeaaded3e80fdbeea96..c0fd0170f18425bf32795d004b113b664734336d 100644 --- a/lib/Mage/HTTP/Client/Curl.php +++ b/lib/Mage/HTTP/Client/Curl.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Mage/HTTP/Client/Socket.php b/lib/Mage/HTTP/Client/Socket.php index 7b5159ef978e76ede94aa2c67869d1dd6db4303e..284d9fb869d23b87b502a92e157673803d567a83 100644 --- a/lib/Mage/HTTP/Client/Socket.php +++ b/lib/Mage/HTTP/Client/Socket.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Mage/HTTP/IClient.php b/lib/Mage/HTTP/IClient.php index 0c2ee10b0c2e045a9fb5b7b793367007905e1648..856dcd40d07ed496652119741a91c8f9e67abd21 100644 --- a/lib/Mage/HTTP/IClient.php +++ b/lib/Mage/HTTP/IClient.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Connect - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Mage/System/Args.php b/lib/Mage/System/Args.php index 8adad3d66abb5e44c6d249b6a94d3974f9b91f14..88adb5c272fa128fc5656217671ed783a04a5059 100644 --- a/lib/Mage/System/Args.php +++ b/lib/Mage/System/Args.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_System - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Mage/System/Dirs.php b/lib/Mage/System/Dirs.php index 7bdfa94109a52f67d81687b23d0b89617659c44a..195ae4dcb744dfc7a5ea49df63dacb6ea22d3623 100644 --- a/lib/Mage/System/Dirs.php +++ b/lib/Mage/System/Dirs.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_System - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Mage/System/Ftp.php b/lib/Mage/System/Ftp.php index c8b15894dd5a60bd927c223bf1102e0db21064ea..5a7783243c39654cb5be5b4adbc136f5dff5f9e7 100644 --- a/lib/Mage/System/Ftp.php +++ b/lib/Mage/System/Ftp.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_System - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Mage/Xml/Generator.php b/lib/Mage/Xml/Generator.php index 6a847b377e98284b163030adba5e33bc66e7a071..1e2cf90d75deeaf5b6f76ca52b529a9b1c5525d8 100644 --- a/lib/Mage/Xml/Generator.php +++ b/lib/Mage/Xml/Generator.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Xml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Xml_Generator diff --git a/lib/Mage/Xml/Parser.php b/lib/Mage/Xml/Parser.php index b10191bf7eaac52953b8eafdb5bfcff821c08f1d..d2da356d0aabe334c5aa8b08586b7e88ddec828e 100644 --- a/lib/Mage/Xml/Parser.php +++ b/lib/Mage/Xml/Parser.php @@ -20,7 +20,7 @@ * * @category Mage * @package Mage_Xml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Magento/Acl.php b/lib/Magento/Acl.php index b0c49a3e69ae71240d35b2d1564fd41ce89e9716..95b977c461703392e0cb577761a68e3bd3d44922 100644 --- a/lib/Magento/Acl.php +++ b/lib/Magento/Acl.php @@ -21,7 +21,7 @@ * @category Magento * @package Framework * @subpackage Acl - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Magento/Acl/Config/Reader.php b/lib/Magento/Acl/Config/Reader.php index cd52cebfdb366f23a9c4d04b93ef61f2c71b1edb..16969223587f41623759c4d8e07d3bd2e76c1812 100644 --- a/lib/Magento/Acl/Config/Reader.php +++ b/lib/Magento/Acl/Config/Reader.php @@ -21,7 +21,7 @@ * @category Magento * @package Framework * @subpackage ACL - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ @@ -42,7 +42,7 @@ class Magento_Acl_Config_Reader extends Magento_Config_XmlAbstract */ public function getSchemaFile() { - return __DIR__ . '/acl.xsd'; + return __DIR__ . '/../etc/acl.xsd'; } /** diff --git a/lib/Magento/Acl/Config/Reader/Dom.php b/lib/Magento/Acl/Config/Reader/Dom.php index 30a2ef5a409373aab508a04233fe330d3d8c788f..66a16778468446499d9a6344f2e531d79137b2cb 100644 --- a/lib/Magento/Acl/Config/Reader/Dom.php +++ b/lib/Magento/Acl/Config/Reader/Dom.php @@ -21,7 +21,7 @@ * @category Magento * @package Framework * @subpackage ACL - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Magento/Acl/Config/ReaderInterface.php b/lib/Magento/Acl/Config/ReaderInterface.php index 5232f1854e1ebf59a12655433540b031492bcde7..ab0a7319d13d8218b07ab7c6fc95550591e84fc9 100644 --- a/lib/Magento/Acl/Config/ReaderInterface.php +++ b/lib/Magento/Acl/Config/ReaderInterface.php @@ -21,7 +21,7 @@ * @category Magento * @package Framework * @subpackage ACL - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Magento/Acl/Loader.php b/lib/Magento/Acl/Loader.php index e3f00887b0b52483519cb31ef02c55deb4f296ef..4b8442c3aec75ff48e40f13cf02a3b2f4c1f37fc 100644 --- a/lib/Magento/Acl/Loader.php +++ b/lib/Magento/Acl/Loader.php @@ -21,7 +21,7 @@ * @category Magento * @package Framework * @subpackage ACL - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Magento/Acl/Loader/Default.php b/lib/Magento/Acl/Loader/Default.php index 6d181f22f80aad0af0e04050c5facc84ba9e40c3..de05e220846995deeafa0d9f9ded7a043fcdc6f7 100644 --- a/lib/Magento/Acl/Loader/Default.php +++ b/lib/Magento/Acl/Loader/Default.php @@ -21,7 +21,7 @@ * @category Magento * @package Framework * @subpackage Acl - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Magento/Acl/Resource.php b/lib/Magento/Acl/Resource.php index 918dcaf034a12c6f984cc293cb2635ac79e1218a..b9f6ad341cb9344916dcf706d6826c3ec9d530b0 100644 --- a/lib/Magento/Acl/Resource.php +++ b/lib/Magento/Acl/Resource.php @@ -21,7 +21,7 @@ * @category Magento * @package Framework * @subpackage Acl - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Magento/Acl/ResourceFactory.php b/lib/Magento/Acl/ResourceFactory.php index 308a7001c0d33f92720e4b9563787152aa86a2ba..abd876f0a6158c24762103b7f16684601f1ffad1 100644 --- a/lib/Magento/Acl/ResourceFactory.php +++ b/lib/Magento/Acl/ResourceFactory.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Magento_Acl_ResourceFactory diff --git a/lib/Magento/Acl/Role/Registry.php b/lib/Magento/Acl/Role/Registry.php index bd9d3c26cc3bf525155c8bb3a4b8cc99cba23580..26315154d86aba9f1d18158c1d51b859797176bd 100644 --- a/lib/Magento/Acl/Role/Registry.php +++ b/lib/Magento/Acl/Role/Registry.php @@ -21,7 +21,7 @@ * @category Magento * @package Framework * @subpackage Acl - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ @@ -50,7 +50,7 @@ class Magento_Acl_Role_Registry extends Zend_Acl_Role_Registry } catch (Zend_Acl_Role_Registry_Exception $e) { throw new Zend_Acl_Role_Registry_Exception("Child Role id '$roleId' does not exist"); } - + if (!is_array($parents)) { $parents = array($parents); } diff --git a/lib/Magento/Acl/Config/acl.xsd b/lib/Magento/Acl/etc/acl.xsd similarity index 98% rename from lib/Magento/Acl/Config/acl.xsd rename to lib/Magento/Acl/etc/acl.xsd index be2b545a1d8a4a4b8f685c0d4c43a253dd435617..c05634d16ed078cb9431e0d14c5bae2a78280935 100644 --- a/lib/Magento/Acl/Config/acl.xsd +++ b/lib/Magento/Acl/etc/acl.xsd @@ -22,7 +22,7 @@ * @category Magento * @package Framework * @subpackage Config - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/lib/Magento/Authorization/Policy.php b/lib/Magento/Authorization/Policy.php index 767bc734008683ad7e8c0c273f18927492f2d0ce..2c7912c09f5d0cb95f1935981cb3e7cbe1a4300d 100644 --- a/lib/Magento/Authorization/Policy.php +++ b/lib/Magento/Authorization/Policy.php @@ -21,7 +21,7 @@ * @category Magento * @package Framework * @subpackage Authorization - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Magento/Authorization/Policy/Acl.php b/lib/Magento/Authorization/Policy/Acl.php index c42014fae83479a3ef3903ba5bbfe3e441a73d5e..35198a2cd02a390530cdc5144504755886607ab2 100644 --- a/lib/Magento/Authorization/Policy/Acl.php +++ b/lib/Magento/Authorization/Policy/Acl.php @@ -21,7 +21,7 @@ * @category Magento * @package Framework * @subpackage Authorization - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Magento/Authorization/Policy/Default.php b/lib/Magento/Authorization/Policy/Default.php index 25c6684599ac23183e7103b6c10f833a8cb39a73..eb18a791a1f832a570dd9de4882a8d6ce6187a3c 100644 --- a/lib/Magento/Authorization/Policy/Default.php +++ b/lib/Magento/Authorization/Policy/Default.php @@ -21,7 +21,7 @@ * @category Magento * @package Framework * @subpackage Authorization - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Magento/Authorization/RoleLocator.php b/lib/Magento/Authorization/RoleLocator.php index 351c475b9c3a3bad216c465a7841e4fc86674d8d..fffa53e56cb3f6c3035829cc63a8041aaa1aa60e 100644 --- a/lib/Magento/Authorization/RoleLocator.php +++ b/lib/Magento/Authorization/RoleLocator.php @@ -21,7 +21,7 @@ * @category Magento * @package Framework * @subpackage Authorization - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Magento/Authorization/RoleLocator/Default.php b/lib/Magento/Authorization/RoleLocator/Default.php index 2f44e089d1d6cab7f5a779fae0d331e68590661e..3e8eb83b84a0a93dc209b28cc81b26162c159de4 100644 --- a/lib/Magento/Authorization/RoleLocator/Default.php +++ b/lib/Magento/Authorization/RoleLocator/Default.php @@ -21,7 +21,7 @@ * @category Magento * @package Framework * @subpackage Authorization - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Magento/Autoload/ClassMap.php b/lib/Magento/Autoload/ClassMap.php index e02e018acbb8402bf8249246c23144b73dc22468..c9537e168ec7c7b0aa1e0f17107f02b9458bade9 100644 --- a/lib/Magento/Autoload/ClassMap.php +++ b/lib/Magento/Autoload/ClassMap.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Magento_Autoload_ClassMap diff --git a/lib/Magento/Autoload/IncludePath.php b/lib/Magento/Autoload/IncludePath.php index c0741e7f86bb2074b66d1f40bfaef716b25b4ad5..869b874cc59c8d7afff1c7e8f4567fcc3925460b 100644 --- a/lib/Magento/Autoload/IncludePath.php +++ b/lib/Magento/Autoload/IncludePath.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Magento_Autoload_IncludePath @@ -46,18 +46,22 @@ class Magento_Autoload_IncludePath } /** - * Append specified path(s) to include_path + * Add specified path(s) to the current include_path * * @param string|array $path + * @param bool $prepend Whether to prepend paths or to append them */ - public static function addIncludePath($path) + public static function addIncludePath($path, $prepend = true) { - $result = implode(PATH_SEPARATOR, (array)$path); + $includePathExtra = implode(PATH_SEPARATOR, (array)$path); $includePath = get_include_path(); - if ($includePath) { - $result = $result . PATH_SEPARATOR . $includePath; + $pathSeparator = $includePath && $includePathExtra ? PATH_SEPARATOR : ''; + if ($prepend) { + $includePath = $includePathExtra . $pathSeparator . $includePath; + } else { + $includePath = $includePath . $pathSeparator . $includePathExtra; } - set_include_path($result); + set_include_path($includePath); } /** diff --git a/lib/Magento/Config/Dom.php b/lib/Magento/Config/Dom.php index 2b0fb770bbc711b426cb89fa4755a748bb84bb53..25fcc554ea0a4f02904789a82284e3b63f141437 100644 --- a/lib/Magento/Config/Dom.php +++ b/lib/Magento/Config/Dom.php @@ -21,7 +21,7 @@ * @category Magento * @package Framework * @subpackage Config - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ @@ -95,12 +95,7 @@ class Magento_Config_Dom */ protected function _mergeNode(DOMElement $node, $parentPath) { - /* Identify node path based on parent path and node attributes */ - $path = $parentPath . '/' . $node->tagName; - $idAttribute = $this->_findIdAttribute($path); - if ($idAttribute && $id = $node->getAttribute($idAttribute)) { - $path .= "[@{$idAttribute}='{$id}']"; - } + $path = $this->_getNodePathByParent($node, $parentPath); $matchedNode = $this->_getMatchedNode($path); @@ -130,6 +125,23 @@ class Magento_Config_Dom } } + /** + * Identify node path based on parent path and node attributes + * + * @param DOMElement $node + * @param string $parentPath + * @return string + */ + protected function _getNodePathByParent(DOMElement $node, $parentPath) + { + $path = $parentPath . '/' . $node->tagName; + $idAttribute = $this->_findIdAttribute($path); + if ($idAttribute && $value = $node->getAttribute($idAttribute)) { + $path .= "[@{$idAttribute}='{$value}']"; + } + return $path; + } + /** * Determine whether an XPath matches registered identifiable attribute * diff --git a/lib/Magento/Config/Dom/ValidationException.php b/lib/Magento/Config/Dom/ValidationException.php index ffd381a0dd09473af435071e9bb1aa5062aa18bf..6f186292656fba880c471cb434530c34744cc547 100644 --- a/lib/Magento/Config/Dom/ValidationException.php +++ b/lib/Magento/Config/Dom/ValidationException.php @@ -21,7 +21,7 @@ * @category Magento * @package Framework * @subpackage Config - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Magento/Config/Theme.php b/lib/Magento/Config/Theme.php index 84a57ee63b432f16c99e373ebbcf8571cb270d23..acc09923a17f14c61518ef72ec57d6539aeeedf5 100644 --- a/lib/Magento/Config/Theme.php +++ b/lib/Magento/Config/Theme.php @@ -21,7 +21,7 @@ * @category Magento * @package Framework * @subpackage Config - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ @@ -37,7 +37,7 @@ class Magento_Config_Theme extends Magento_Config_XmlAbstract */ public function getSchemaFile() { - return __DIR__ . '/theme.xsd'; + return __DIR__ . '/etc/theme.xsd'; } /** @@ -192,7 +192,7 @@ class Magento_Config_Theme extends Magento_Config_XmlAbstract * @param string $theme * @return bool */ - public function getFeatured($package, $theme) + public function isFeatured($package, $theme) { $this->_ensureThemeExists($package, $theme); return $this->_data[$package]['themes'][$theme]['featured']; diff --git a/lib/Magento/Config/View.php b/lib/Magento/Config/View.php index 4894a987efc6430da3729ec7fa9aabb0cd147880..ee7407a1549a31ebae9445a74becfc981dec17be 100644 --- a/lib/Magento/Config/View.php +++ b/lib/Magento/Config/View.php @@ -21,7 +21,7 @@ * @category Magento * @package Framework * @subpackage Config - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ @@ -37,7 +37,7 @@ class Magento_Config_View extends Magento_Config_XmlAbstract */ public function getSchemaFile() { - return __DIR__ . '/view.xsd'; + return __DIR__ . '/etc/view.xsd'; } /** diff --git a/lib/Magento/Config/XmlAbstract.php b/lib/Magento/Config/XmlAbstract.php index ac61814535ab6fa5b4f1d2ba18281ef54eeda870..7bc72827990bf58809a4336ac35e2fcd129329bb 100644 --- a/lib/Magento/Config/XmlAbstract.php +++ b/lib/Magento/Config/XmlAbstract.php @@ -21,7 +21,7 @@ * @category Magento * @package Framework * @subpackage Config - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Magento/Config/theme.xsd b/lib/Magento/Config/etc/theme.xsd similarity index 98% rename from lib/Magento/Config/theme.xsd rename to lib/Magento/Config/etc/theme.xsd index 1071382b0d04f663d5d960e6a55a3b08e020f194..dbf2b3a0f5ae0062ef75891a3d68a56f0ece804f 100644 --- a/lib/Magento/Config/theme.xsd +++ b/lib/Magento/Config/etc/theme.xsd @@ -22,7 +22,7 @@ * @category Magento * @package Framework * @subpackage Config - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/lib/Magento/Config/view.xsd b/lib/Magento/Config/etc/view.xsd similarity index 97% rename from lib/Magento/Config/view.xsd rename to lib/Magento/Config/etc/view.xsd index d3348004734a8db0d475a5e6ed28978a63009761..64c13f7c6879cba146b95c665be5e988d342e910 100644 --- a/lib/Magento/Config/view.xsd +++ b/lib/Magento/Config/etc/view.xsd @@ -22,7 +22,7 @@ * @category Magento * @package Framework * @subpackage Config - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/lib/Magento/Controller/Router/Route/Factory.php b/lib/Magento/Controller/Router/Route/Factory.php index 69b4e69dfbf2f1c86a4742d8dc187f64b1611dac..0d19a78ab82ea65292e5f367e13742795509b646 100644 --- a/lib/Magento/Controller/Router/Route/Factory.php +++ b/lib/Magento/Controller/Router/Route/Factory.php @@ -2,7 +2,7 @@ /** * Router route factory. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) */ class Magento_Controller_Router_Route_Factory { diff --git a/lib/Magento/Convert/Excel.php b/lib/Magento/Convert/Excel.php index 2df3193b87ab724a9e69ef3d873b56fe3c1a2680..5b2e5d4d9a736f2ea347daa066238a9c6cdae289 100644 --- a/lib/Magento/Convert/Excel.php +++ b/lib/Magento/Convert/Excel.php @@ -20,7 +20,7 @@ * * @category Magento * @package Magento_Convert - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Magento/Crypt.php b/lib/Magento/Crypt.php index da1eb508fc279d413f32916e903b3d55ef415931..023962f0becb08efaa9bb6052a33dfea06b84ca3 100755 --- a/lib/Magento/Crypt.php +++ b/lib/Magento/Crypt.php @@ -20,7 +20,7 @@ * * @category Magento * @package Magento_Crypt - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Magento/Data/Graph.php b/lib/Magento/Data/Graph.php index 2fa8bc44f4ff29320c5b01950157b3102ac73a25..aa77c1f90637e6c906c26010befff3776de10862 100644 --- a/lib/Magento/Data/Graph.php +++ b/lib/Magento/Data/Graph.php @@ -2,7 +2,7 @@ /** * Graph data structure * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Magento_Data_Graph @@ -49,28 +49,28 @@ class Magento_Data_Graph $this->_nodes[$node] = $node; } foreach ($relations as $pair) { - list($from, $to) = $pair; - $this->addRelation($from, $to); + list($fromNode, $toNode) = $pair; + $this->addRelation($fromNode, $toNode); } } /** * Set a relation between nodes * - * @param string|int $from - * @param string|int $to + * @param string|int $fromNode + * @param string|int $toNode * @return Magento_Data_Graph * @throws InvalidArgumentException */ - public function addRelation($from, $to) + public function addRelation($fromNode, $toNode) { - if ($from == $to) { - throw new InvalidArgumentException("Graph node '{$from}' is linked to itself."); + if ($fromNode == $toNode) { + throw new InvalidArgumentException("Graph node '{$fromNode}' is linked to itself."); } - $this->_assertNode($from, true); - $this->_assertNode($to, true); - $this->_from[$from][$to] = $to; - $this->_to[$to][$from] = $from; + $this->_assertNode($fromNode, true); + $this->_assertNode($toNode, true); + $this->_from[$fromNode][$toNode] = $toNode; + $this->_to[$toNode][$fromNode] = $fromNode; return $this; } @@ -129,41 +129,41 @@ class Magento_Data_Graph * Returns path as array of nodes or empty array if path does not exist. * Only first found path is returned. It will be not necessary the shortest or optimal in any way. * - * @param string|int $from - * @param string|int $to + * @param string|int $fromNode + * @param string|int $toNode * @param int $mode * @return array */ - public function dfs($from, $to, $mode = self::DIRECTIONAL) + public function dfs($fromNode, $toNode, $mode = self::DIRECTIONAL) { - $this->_assertNode($from, true); - $this->_assertNode($to, true); - return $this->_dfs($from, $to, $this->getRelations($mode)); + $this->_assertNode($fromNode, true); + $this->_assertNode($toNode, true); + return $this->_dfs($fromNode, $toNode, $this->getRelations($mode)); } /** * Recursive sub-routine of dfs() * - * @param string|int $from - * @param string|int $to + * @param string|int $fromNode + * @param string|int $toNode * @param array $graph * @param array &$visited * @param array $stack * @return array * @link http://en.wikipedia.org/wiki/Depth-first_search */ - protected function _dfs($from, $to, $graph, &$visited = array(), $stack = array()) + protected function _dfs($fromNode, $toNode, $graph, &$visited = array(), $stack = array()) { - $stack[] = $from; - $visited[$from] = $from; - if (isset($graph[$from][$to])) { - $stack[] = $to; + $stack[] = $fromNode; + $visited[$fromNode] = $fromNode; + if (isset($graph[$fromNode][$toNode])) { + $stack[] = $toNode; return $stack; } - if (isset($graph[$from])) { - foreach ($graph[$from] as $node) { + if (isset($graph[$fromNode])) { + foreach ($graph[$fromNode] as $node) { if (!isset($visited[$node])) { - $result = $this->_dfs($node, $to, $graph, $visited, $stack); + $result = $this->_dfs($node, $toNode, $graph, $visited, $stack); if ($result) { return $result; } diff --git a/lib/Magento/Data/Structure.php b/lib/Magento/Data/Structure.php index c16ee2c3d80bef5a979a9a71e6feb740b2ca128a..fba81c1acdb13c30f83402ee8353809c3724e2f7 100644 --- a/lib/Magento/Data/Structure.php +++ b/lib/Magento/Data/Structure.php @@ -4,7 +4,7 @@ * * @category Magento * @package Magento_Data - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Magento_Data_Structure @@ -42,11 +42,11 @@ class Magento_Data_Structure public function importElements(array $elements) { $this->_elements = $elements; - foreach ($elements as $id => $element) { - if (is_numeric($id)) { - throw new Magento_Exception("Element ID must not be numeric: '{$id}'."); + foreach ($elements as $elementId => $element) { + if (is_numeric($elementId)) { + throw new Magento_Exception("Element ID must not be numeric: '{$elementId}'."); } - $this->_assertParentRelation($id); + $this->_assertParentRelation($elementId); if (isset($element[self::GROUPS])) { $groups = $element[self::GROUPS]; $this->_assertArray($groups); @@ -55,8 +55,8 @@ class Magento_Data_Structure if ($group !== array_flip($group)) { throw new Magento_Exception("Invalid format of group '{$groupName}': " . var_export($group, 1)); } - foreach ($group as $elementId) { - $this->_assertElementExists($elementId); + foreach ($group as $groupElementId) { + $this->_assertElementExists($groupElementId); } } } @@ -66,20 +66,20 @@ class Magento_Data_Structure /** * Verify relations of parent-child * - * @param string $id + * @param string $elementId * @throws Magento_Exception */ - protected function _assertParentRelation($id) + protected function _assertParentRelation($elementId) { - $element = $this->_elements[$id]; + $element = $this->_elements[$elementId]; // element presence in its parent's nested set if (isset($element[self::PARENT])) { $parentId = $element[self::PARENT]; $this->_assertElementExists($parentId); - if (empty($this->_elements[$parentId][self::CHILDREN][$id])) { + if (empty($this->_elements[$parentId][self::CHILDREN][$elementId])) { throw new Magento_Exception( - "Broken parent-child relation: the '{$id}' is not in the nested set of '{$parentId}'." + "Broken parent-child relation: the '{$elementId}' is not in the nested set of '{$parentId}'." ); } } @@ -91,13 +91,13 @@ class Magento_Data_Structure if ($children !== array_flip(array_flip($children))) { throw new Magento_Exception('Invalid format of children: ' . var_export($children, 1)); } - foreach ($children as $childId => $alias) { + foreach (array_keys($children) as $childId) { $this->_assertElementExists($childId); if (!isset($this->_elements[$childId][self::PARENT]) - || $id !== $this->_elements[$childId][self::PARENT] + || $elementId !== $this->_elements[$childId][self::PARENT] ) { throw new Magento_Exception( - "Broken parent-child relation: the '{$childId}' is supposed to have '{$id}' as parent." + "Broken parent-child relation: the '{$childId}' is supposed to have '{$elementId}' as parent." ); } } @@ -117,41 +117,41 @@ class Magento_Data_Structure /** * Create new element * - * @param string $id + * @param string $elementId * @param array $data * @throws Magento_Exception if an element with this id already exists */ - public function createElement($id, array $data) + public function createElement($elementId, array $data) { - if (isset($this->_elements[$id])) { - throw new Magento_Exception("Element with ID '{$id}' already exists."); + if (isset($this->_elements[$elementId])) { + throw new Magento_Exception("Element with ID '{$elementId}' already exists."); } - $this->_elements[$id] = array(); + $this->_elements[$elementId] = array(); foreach ($data as $key => $value) { - $this->setAttribute($id, $key, $value); + $this->setAttribute($elementId, $key, $value); } } /** * Get existing element * - * @param string $id + * @param string $elementId * @return array|bool */ - public function getElement($id) + public function getElement($elementId) { - return isset($this->_elements[$id]) ? $this->_elements[$id] : false; + return isset($this->_elements[$elementId]) ? $this->_elements[$elementId] : false; } /** * Whether specified element exists * - * @param string $id + * @param string $elementId * @return bool */ - public function hasElement($id) + public function hasElement($elementId) { - return isset($this->_elements[$id]); + return isset($this->_elements[$elementId]); } /** @@ -160,14 +160,14 @@ class Magento_Data_Structure * Can recursively delete all child elements. * Returns false if there was no element found, therefore was nothing to delete. * - * @param string $id + * @param string $elementId * @param bool $recursive * @return bool */ - public function unsetElement($id, $recursive = true) + public function unsetElement($elementId, $recursive = true) { - if (isset($this->_elements[$id][self::CHILDREN])) { - foreach (array_keys($this->_elements[$id][self::CHILDREN]) as $childId) { + if (isset($this->_elements[$elementId][self::CHILDREN])) { + foreach (array_keys($this->_elements[$elementId][self::CHILDREN]) as $childId) { $this->_assertElementExists($childId); if ($recursive) { $this->unsetElement($childId, $recursive); @@ -176,8 +176,8 @@ class Magento_Data_Structure } } } - $wasFound = isset($this->_elements[$id]); - unset($this->_elements[$id]); + $wasFound = isset($this->_elements[$elementId]); + unset($this->_elements[$elementId]); return $wasFound; } @@ -582,13 +582,13 @@ class Magento_Data_Structure /** * Check if specified element exists * - * @param string $id + * @param string $elementId * @throws Magento_Exception if doesn't exist */ - private function _assertElementExists($id) + private function _assertElementExists($elementId) { - if (!isset($this->_elements[$id])) { - throw new Magento_Exception("No element found with ID '{$id}'."); + if (!isset($this->_elements[$elementId])) { + throw new Magento_Exception("No element found with ID '{$elementId}'."); } } diff --git a/lib/Magento/Date/Jquery/Calendar.php b/lib/Magento/Date/Jquery/Calendar.php index c129ca050ee2ebc76686d976603337ab819e1228..218f36b081728bcf4139fa370f178e530d370fe3 100644 --- a/lib/Magento/Date/Jquery/Calendar.php +++ b/lib/Magento/Date/Jquery/Calendar.php @@ -20,7 +20,7 @@ * * @category Magento * @package Magento_Date_Jquery - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Magento/Di.php b/lib/Magento/Di.php index b10d0893556933ea601494c44a5325309bda0817..4211f59798d972e37a48b8531001d4d9c44a8701 100644 --- a/lib/Magento/Di.php +++ b/lib/Magento/Di.php @@ -20,7 +20,7 @@ * * @category Magento * @package Magento_Di - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Magento/Di/Definition/ArrayDefinition.php b/lib/Magento/Di/Definition/ArrayDefinition.php index eb7565f4a7d1fd9b9c33cabd8d8283c5356ce461..77f36770d78cdf4b458917ee7cdb3137393db315 100644 --- a/lib/Magento/Di/Definition/ArrayDefinition.php +++ b/lib/Magento/Di/Definition/ArrayDefinition.php @@ -20,7 +20,7 @@ * * @category Magento * @package Magento_Di - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Magento/Di/Definition/ArrayDefinition/Zend.php b/lib/Magento/Di/Definition/ArrayDefinition/Zend.php index 7c55a9a9f90a2855174291d1f14548f3fc00334e..9c63ea250ed74ef6481f68839c9729fcf49f64a4 100644 --- a/lib/Magento/Di/Definition/ArrayDefinition/Zend.php +++ b/lib/Magento/Di/Definition/ArrayDefinition/Zend.php @@ -20,7 +20,7 @@ * * @category Magento * @package Magento_Di - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Magento/Di/Definition/CompilerDefinition.php b/lib/Magento/Di/Definition/CompilerDefinition.php index 5beb1b201c1de478af203581ad9cef2549c069ce..97107d3750e60a2f54bcd4c3fa820c93b1c4d1e7 100644 --- a/lib/Magento/Di/Definition/CompilerDefinition.php +++ b/lib/Magento/Di/Definition/CompilerDefinition.php @@ -20,7 +20,7 @@ * * @category Magento * @package Magento_Di - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Magento/Di/Definition/CompilerDefinition/Zend.php b/lib/Magento/Di/Definition/CompilerDefinition/Zend.php index 3d772c919fa09f9118d0cb5c0d301a4815a6e5af..514948958779b47211a1144806883b28e26d7c30 100644 --- a/lib/Magento/Di/Definition/CompilerDefinition/Zend.php +++ b/lib/Magento/Di/Definition/CompilerDefinition/Zend.php @@ -20,7 +20,7 @@ * * @category Magento * @package Magento_Di - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Magento/Di/Definition/RuntimeDefinition.php b/lib/Magento/Di/Definition/RuntimeDefinition.php index 7946e3c3314d6bc08365819ce8af42a4c6942803..ca011efd0ee8b844c45cd02965afd5361106ec2d 100644 --- a/lib/Magento/Di/Definition/RuntimeDefinition.php +++ b/lib/Magento/Di/Definition/RuntimeDefinition.php @@ -20,7 +20,7 @@ * * @category Magento * @package Magento_Di - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Magento/Di/Definition/RuntimeDefinition/Zend.php b/lib/Magento/Di/Definition/RuntimeDefinition/Zend.php index 74abcae547c41d638e2f438a65bdde85550b071f..48f3ef893880562ba37539e84176115c10c91353 100644 --- a/lib/Magento/Di/Definition/RuntimeDefinition/Zend.php +++ b/lib/Magento/Di/Definition/RuntimeDefinition/Zend.php @@ -20,7 +20,7 @@ * * @category Magento * @package Magento_Di - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Magento/Di/DefinitionList/Zend.php b/lib/Magento/Di/DefinitionList/Zend.php index 10c16555f4b8fe454fb9d644cedce93c01bef5a0..61fd1c99656d6ccf131dda21ddab2435f4cddeb1 100644 --- a/lib/Magento/Di/DefinitionList/Zend.php +++ b/lib/Magento/Di/DefinitionList/Zend.php @@ -20,7 +20,7 @@ * * @category Magento * @package Magento_Di - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Magento/Di/InstanceManager.php b/lib/Magento/Di/InstanceManager.php index bb56e4280fb8c99a0e72ca16c1d627047d9f5894..2cc14cf0686e5d559e94d8d117c872fb4d804a83 100644 --- a/lib/Magento/Di/InstanceManager.php +++ b/lib/Magento/Di/InstanceManager.php @@ -20,7 +20,7 @@ * * @category Magento * @package Magento_Di - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Magento/Di/InstanceManager/Zend.php b/lib/Magento/Di/InstanceManager/Zend.php index 189bd76d2ad3ab4a5fea5cf7f23149f3edfa1c2c..a73db62b951afde756783b27b5d44f86031d5b7b 100644 --- a/lib/Magento/Di/InstanceManager/Zend.php +++ b/lib/Magento/Di/InstanceManager/Zend.php @@ -20,7 +20,7 @@ * * @category Magento * @package Magento_Di - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Magento/Di/Zend.php b/lib/Magento/Di/Zend.php index 3d49d95faedcb62157104fcab45c36a47e2bdb92..159dc4bdd3a64ef24f7be244f3ce1a80308d1590 100644 --- a/lib/Magento/Di/Zend.php +++ b/lib/Magento/Di/Zend.php @@ -20,7 +20,7 @@ * * @category Magento * @package Magento_Di - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Magento/DomDocument/Factory.php b/lib/Magento/DomDocument/Factory.php index d1b94e4aaf95a1eacd603910714eb7afe1102b23..5f7bde0ff6356b8f33d25fdc4784b00d8fe63e01 100644 --- a/lib/Magento/DomDocument/Factory.php +++ b/lib/Magento/DomDocument/Factory.php @@ -2,7 +2,7 @@ /** * DOM document factory. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) */ class Magento_DomDocument_Factory { diff --git a/lib/Magento/Exception.php b/lib/Magento/Exception.php index f7d42e56da475682c8f96c9f184ad15f31d04f35..642ad98efe1f8f94b68a018563aa7fe95d3a62d1 100755 --- a/lib/Magento/Exception.php +++ b/lib/Magento/Exception.php @@ -20,7 +20,7 @@ * * @category Magento * @package Magento_Exception - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Magento/Filesystem.php b/lib/Magento/Filesystem.php new file mode 100644 index 0000000000000000000000000000000000000000..6121d38745c51d7fa033fa2569195b71154c02fb --- /dev/null +++ b/lib/Magento/Filesystem.php @@ -0,0 +1,479 @@ +<?php +/** + * Magento filesystem facade + * + * Magento + * + * NOTICE OF LICENSE + * + * This source file is subject to the Open Software License (OSL 3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * http://opensource.org/licenses/osl-3.0.php + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@magentocommerce.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade Magento to newer + * versions in the future. If you wish to customize Magento for your + * needs please refer to http://www.magentocommerce.com for more information. + * + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) + * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) + */ +class Magento_Filesystem +{ + const DIRECTORY_SEPARATOR = '/'; + + /** + * @var Magento_Filesystem_AdapterInterface + */ + protected $_adapter; + + /** + * @var string + */ + protected $_workingDirectory; + + /** + * @var bool + */ + protected $_isAllowCreateDirs = false; + + /** + * @var int + */ + protected $_newDirPermissions = 0777; + + /** + * Initialize adapter and default working directory. + * + * @param Magento_Filesystem_AdapterInterface $adapter + */ + public function __construct(Magento_Filesystem_AdapterInterface $adapter) + { + $this->_adapter = $adapter; + $this->_workingDirectory = self::getAbsolutePath(self::getPathFromArray(array(__DIR__, '..', '..'))); + } + + /** + * Sets working directory to restrict operations with filesystem. + * + * @param string $dir + * @return Magento_Filesystem + * @throws InvalidArgumentException + */ + public function setWorkingDirectory($dir) + { + if (!$this->_adapter->isDirectory($dir)) { + throw new InvalidArgumentException(sprintf('Working directory "%s" does not exists', $dir)); + } + $this->_workingDirectory = $dir; + return $this; + } + + /** + * Allows to create directories when process operations + * + * @param bool $allow + * @param int $permissions + * @return Magento_Filesystem + */ + public function setIsAllowCreateDirectories($allow, $permissions = null) + { + $this->_isAllowCreateDirs = (bool)$allow; + if (null !== $permissions) { + $this->_newDirPermissions = $permissions; + } + return $this; + } + + /** + * Checks the file existence. + * + * @param string $key + * @param string|null $workingDirectory + * @return bool + */ + public function has($key, $workingDirectory = null) + { + return $this->_adapter->exists($this->_getCheckedPath($key, $workingDirectory)); + } + + /** + * Reads content of the file. + * + * @param string $key + * @param string|null $workingDirectory + * @return string + */ + public function read($key, $workingDirectory = null) + { + $path = $this->_getCheckedPath($key, $workingDirectory); + $this->_checkFileExists($path); + return $this->_adapter->read($path); + } + + /** + * Writes content into the file. + * + * @param string $key + * @param string $content + * @param string|null $workingDirectory + * @return int The number of bytes that were written. + */ + public function write($key, $content, $workingDirectory = null) + { + $path = $this->_getCheckedPath($key, $workingDirectory); + $this->ensureDirectoryExists(dirname($path)); + return $this->_adapter->write($path, $content); + } + + /** + * Deletes the key. + * + * @param string $key + * @param string|null $workingDirectory + * @return bool + */ + public function delete($key, $workingDirectory = null) + { + $path = $this->_getCheckedPath($key, $workingDirectory); + $this->_checkExists($path); + return $this->_adapter->delete($path); + } + + /** + * Renames the file. + * + * @param string $source + * @param string $target + * @param string|null $workingDirectory + * @param string|null $targetDirectory + * @return bool + */ + public function rename($source, $target, $workingDirectory = null, $targetDirectory = null) + { + if ($workingDirectory && null === $targetDirectory) { + $targetDirectory = $workingDirectory; + } + $sourcePath = $this->_getCheckedPath($source, $workingDirectory); + $targetPath = $this->_getCheckedPath($target, $targetDirectory); + $this->_checkExists($sourcePath); + $this->ensureDirectoryExists(dirname($targetPath), $this->_newDirPermissions, $targetDirectory); + return $this->_adapter->rename($sourcePath, $targetPath); + } + + /** + * Copy the file. + * + * @param string $source + * @param string $target + * @param string|null $workingDirectory + * @param string|null $targetDirectory + * @return bool + */ + public function copy($source, $target, $workingDirectory = null, $targetDirectory = null) + { + if ($workingDirectory && null === $targetDirectory) { + $targetDirectory = $workingDirectory; + } + $sourcePath = $this->_getCheckedPath($source, $workingDirectory); + $targetPath = $this->_getCheckedPath($target, $targetDirectory); + $this->_checkFileExists($sourcePath); + $this->ensureDirectoryExists(dirname($targetPath), $this->_newDirPermissions, $targetDirectory); + return $this->_adapter->copy($sourcePath, $targetPath); + } + + + /** + * Check if key is directory. + * + * @param string $key + * @param string|null $workingDirectory + * @return bool + */ + public function isDirectory($key, $workingDirectory = null) + { + return $this->_adapter->isDirectory($this->_getCheckedPath($key, $workingDirectory)); + } + + /** + * Check if key is file. + * + * @param string $key + * @param string|null $workingDirectory + * @return bool + */ + public function isFile($key, $workingDirectory = null) + { + return $this->_adapter->isFile($this->_getCheckedPath($key, $workingDirectory)); + } + + /** + * Check if key exists and is writable + * + * @param string $key + * @param string|null $workingDirectory + * @return bool + */ + public function isWritable($key, $workingDirectory = null) + { + return $this->_adapter->isWritable($this->_getCheckedPath($key, $workingDirectory)); + } + + /** + * Check if key exists and is readable + * + * @param string $key + * @param string|null $workingDirectory + * @return bool + */ + public function isReadable($key, $workingDirectory = null) + { + return $this->_adapter->isReadable($this->_getCheckedPath($key, $workingDirectory)); + } + + /** + * Change permissions of key + * + * @param string $key + * @param int $permissions + * @param bool $recursively + * @param string|null $workingDirectory + */ + public function changePermissions($key, $permissions, $recursively = false, $workingDirectory = null) + { + $this->_adapter->changePermissions($this->_getCheckedPath($key, $workingDirectory), $permissions, $recursively); + } + + /** + * Gets list of all nested keys + * + * @param string $key + * @param string|null $workingDirectory + * @return array + */ + public function getNestedKeys($key, $workingDirectory = null) + { + return $this->_adapter->getNestedKeys($this->_getCheckedPath($key, $workingDirectory)); + } + + /** + * Creates new directory + * + * @param string $key + * @param int $permissions + * @param string|null $workingDirectory + */ + public function createDirectory($key, $permissions = 0777, $workingDirectory = null) + { + $path = $this->_getCheckedPath($key, $workingDirectory); + $parentPath = dirname($path); + if (!$this->isDirectory($parentPath)) { + $this->createDirectory($parentPath, $permissions, $workingDirectory); + } + $this->_adapter->createDirectory($path, $permissions); + } + + /** + * Create directory if it does not exists. + * + * @param string $key + * @param int $permissions + * @param string|null $workingDirectory + * @throws Magento_Filesystem_Exception + */ + public function ensureDirectoryExists($key, $permissions = 0777, $workingDirectory = null) + { + if (!$this->isDirectory($key, $workingDirectory)) { + if ($this->_isAllowCreateDirs) { + $this->createDirectory($key, $permissions, $workingDirectory); + } else { + throw new Magento_Filesystem_Exception("Directory '$key' doesn't exist."); + } + } + } + + /** + * Sets access and modification time of file. + * + * @param string $key + * @param string|null $workingDirectory + */ + public function touch($key, $workingDirectory = null) + { + $key = $this->_getCheckedPath($key, $workingDirectory); + $this->ensureDirectoryExists(dirname($key), $this->_newDirPermissions); + $this->_adapter->touch($key); + } + + /** + * Creates stream object + * + * @param string $key + * @param string|null $workingDirectory + * @return Magento_Filesystem_StreamInterface + * @throws Magento_Filesystem_Exception + */ + public function createStream($key, $workingDirectory = null) + { + $key = $this->_getCheckedPath($key, $workingDirectory); + if ($this->_adapter instanceof Magento_Filesystem_Stream_FactoryInterface) { + return $this->_adapter->createStream($key); + } else { + throw new Magento_Filesystem_Exception("Filesystem doesn't support streams."); + } + } + + /** + * Creates stream object and opens it + * + * @param string $key + * @param Magento_Filesystem_Stream_Mode|string $mode + * @return Magento_Filesystem_StreamInterface + * @throws InvalidArgumentException + */ + public function createAndOpenStream($key, $mode) + { + $stream = $this->createStream($key); + if (is_string($mode)) { + $mode = new Magento_Filesystem_Stream_Mode($mode); + } elseif (!$mode instanceof Magento_Filesystem_Stream_Mode) { + throw new InvalidArgumentException('Wrong mode parameter'); + } + $stream->open($mode); + return $stream; + } + + /** + * Check that file exists + * + * @param string $path + * @throws InvalidArgumentException + */ + protected function _checkFileExists($path) + { + if (!$this->_adapter->isFile($path)) { + throw new InvalidArgumentException(sprintf('"%s" does not exists', $path)); + } + } + + /** + * Check that file or directory exists + * + * @param string $path + * @throws InvalidArgumentException + */ + protected function _checkExists($path) + { + if (!$this->_adapter->exists($path)) { + throw new InvalidArgumentException(sprintf('"%s" does not exists', $path)); + } + } + + /** + * Get absolute checked path + * + * @param string $key + * @param string|null $workingDirectory + * @return string + */ + protected function _getCheckedPath($key, $workingDirectory = null) + { + $path = self::getAbsolutePath($key); + $this->_checkPath($path, $workingDirectory); + return $path; + } + + /** + * Check path isolation + * + * @param string $key + * @param string|null $workingDirectory + * @throws InvalidArgumentException + */ + protected function _checkPath($key, $workingDirectory = null) + { + if (!$workingDirectory) { + $workingDirectory = $this->_workingDirectory; + } + if ($workingDirectory) { + if (0 !== strpos($key, $workingDirectory)) { + throw new InvalidArgumentException('Invalid path'); + } + } + } + + /** + * Get absolute path. + * + * @param string $key + * @return string + */ + public static function getAbsolutePath($key) + { + $path = self::getPathAsArray($key); + $realPath = array(); + foreach ($path as $dir) { + if ('.' == $dir) { + continue; + } + if ('..' == $dir) { + if (count($realPath) > 0) { + array_pop($realPath); + } + continue; + } + $realPath[] = $dir; + } + return self::getPathFromArray($realPath); + } + + /** + * Get path as string from array. + * + * @param array $path + * @param bool $isAbsolute + * @return string + * @throws InvalidArgumentException + */ + public static function getPathFromArray(array $path, $isAbsolute = true) + { + if (!count($path)) { + throw new InvalidArgumentException('Path must contain at least one node'); + } + $isWindows = preg_match('/\w:/', $path[0]); + $path = implode(self::DIRECTORY_SEPARATOR, $path); + if ($isAbsolute && !$isWindows) { + return self::DIRECTORY_SEPARATOR . ltrim($path, self::DIRECTORY_SEPARATOR); + } else { + return $path; + } + } + + /** + * Get path as array + * + * @param string $path + * @return array + */ + public static function getPathAsArray($path) + { + $path = str_replace('\\', self::DIRECTORY_SEPARATOR, $path); + return explode(self::DIRECTORY_SEPARATOR, ltrim($path, self::DIRECTORY_SEPARATOR)); + } + + /** + * Check is path absolute + * + * @param string $path + * @return bool + */ + public static function isAbsolutePath($path) + { + return $path == self::getAbsolutePath($path); + } +} diff --git a/lib/Magento/Filesystem/Adapter/Local.php b/lib/Magento/Filesystem/Adapter/Local.php new file mode 100644 index 0000000000000000000000000000000000000000..9c66478b43df106e1ff51d13232a93204d806fe6 --- /dev/null +++ b/lib/Magento/Filesystem/Adapter/Local.php @@ -0,0 +1,273 @@ +<?php +/** + * Adapter for local filesystem + * + * Magento + * + * NOTICE OF LICENSE + * + * This source file is subject to the Open Software License (OSL 3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * http://opensource.org/licenses/osl-3.0.php + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@magentocommerce.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade Magento to newer + * versions in the future. If you wish to customize Magento for your + * needs please refer to http://www.magentocommerce.com for more information. + * + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) + * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) + */ +class Magento_Filesystem_Adapter_Local implements + Magento_Filesystem_AdapterInterface, + Magento_Filesystem_Stream_FactoryInterface +{ + /** + * Checks the file existence. + * + * @param string $key + * @return bool + */ + public function exists($key) + { + return file_exists($key); + } + + /** + * Reads content of the file. + * + * @param string $key + * @return string + */ + public function read($key) + { + return file_get_contents($key); + } + + /** + * Writes content into the file. + * + * @param string $key + * @param string $content + * @return bool true if write was success + */ + public function write($key, $content) + { + return (bool)file_put_contents($key, $content); + } + + /** + * Renames the file. + * + * @param string $source + * @param string $target + * @return bool + */ + public function rename($source, $target) + { + return rename($source, $target); + } + + /** + * Copy the file. + * + * @param string $source + * @param string $target + * @return bool + */ + public function copy($source, $target) + { + return copy($source, $target); + } + + /** + * Deletes the file or directory recursively. + * + * @param string $key + * @throws Magento_Filesystem_Exception + */ + public function delete($key) + { + if (!file_exists($key) && !is_link($key)) { + return; + } + + if (is_file($key) || is_link($key)) { + if (true !== @unlink($key)) { + throw new Magento_Filesystem_Exception(sprintf('Failed to remove file %s', $key)); + } + return; + } + + $this->_deleteNestedKeys($key); + + if (true !== @rmdir($key)) { + throw new Magento_Filesystem_Exception(sprintf('Failed to remove directory %s', $key)); + } + } + + /** + * Deletes all nested keys + * + * @param string $key + * @throws Magento_Filesystem_Exception + */ + protected function _deleteNestedKeys($key) + { + foreach ($this->getNestedKeys($key) as $nestedKey) { + if (is_dir($nestedKey) && !is_link($nestedKey) && true !== @rmdir($nestedKey)) { + throw new Magento_Filesystem_Exception(sprintf('Failed to remove directory %s', $nestedKey)); + } else { + // https://bugs.php.net/bug.php?id=52176 + if (defined('PHP_WINDOWS_VERSION_MAJOR') && is_dir($nestedKey) && true !== @rmdir($nestedKey)) { + throw new Magento_Filesystem_Exception(sprintf('Failed to remove file %s', $nestedKey)); + } elseif (true !== @unlink($nestedKey)) { + throw new Magento_Filesystem_Exception(sprintf('Failed to remove file %s', $nestedKey)); + } + } + } + } + + /** + * Changes permissions of filesystem key + * + * @param string $key + * @param int $permissions + * @param bool $recursively + * @throws Magento_Filesystem_Exception + */ + public function changePermissions($key, $permissions, $recursively) + { + if (!@chmod($key, $permissions)) { + throw new Magento_Filesystem_Exception(sprintf('Failed to change mode of %s', $key)); + } + + if (is_dir($key) && $recursively) { + foreach ($this->getNestedKeys($key) as $nestedKey) { + if (!@chmod($nestedKey, $permissions)) { + throw new Magento_Filesystem_Exception(sprintf('Failed to change mode of %s', $nestedKey)); + } + } + } + } + + /** + * Gets list of all nested keys + * + * @param string $key + * @return array + * @throws Magento_Filesystem_Exception + */ + public function getNestedKeys($key) + { + $result = array(); + + if (!is_dir($key)) { + throw new Magento_Filesystem_Exception(sprintf('The directory "%s" does not exist.', $key)); + } + + try { + $iterator = new RecursiveIteratorIterator( + new RecursiveDirectoryIterator($key, FilesystemIterator::SKIP_DOTS | FilesystemIterator::UNIX_PATHS), + RecursiveIteratorIterator::CHILD_FIRST + ); + } catch (Exception $e) { + $iterator = new EmptyIterator; + } + + + /** @var SplFileInfo $file */ + foreach ($iterator as $file) { + $result[] = $file->getPathname(); + } + + return $result; + } + + /** + * Check if key is a directory. + * + * @param string $key + * @return bool + */ + public function isDirectory($key) + { + return is_dir($key); + } + + /** + * Check if key is a file. + * + * @param string $key + * @return bool + */ + public function isFile($key) + { + return is_file($key); + } + + /** + * Check if key exists and is writable + * + * @param string $key + * @return bool + */ + public function isWritable($key) + { + return is_writable($key); + } + + /** + * Check if key exists and is readable + * + * @param string $key + * @return bool + */ + public function isReadable($key) + { + return is_readable($key); + } + + /** + * Creates new directory + * + * @param string $key + * @param int $mode + * @throws Magento_Filesystem_Exception + */ + public function createDirectory($key, $mode) + { + if (!@mkdir($key, $mode, true)) { + throw new Magento_Filesystem_Exception(sprintf('Failed to create %s', $key)); + } + } + + /** + * Touches a file + * + * @param string $key + * @throws Magento_Filesystem_Exception + */ + public function touch($key) + { + if (!@touch($key)) { + throw new Magento_Filesystem_Exception(sprintf('Failed to touch %s', $key)); + } + } + + /** + * Create stream object + * + * @param string $path + * @return Magento_Filesystem_Stream_Local + */ + public function createStream($path) + { + return new Magento_Filesystem_Stream_Local($path); + } +} diff --git a/lib/Magento/Filesystem/AdapterInterface.php b/lib/Magento/Filesystem/AdapterInterface.php new file mode 100644 index 0000000000000000000000000000000000000000..f080126ba616703be673da89a40523b7614ae216 --- /dev/null +++ b/lib/Magento/Filesystem/AdapterInterface.php @@ -0,0 +1,146 @@ +<?php +/** + * Interface of Magento filesystem adapter + * + * Magento + * + * NOTICE OF LICENSE + * + * This source file is subject to the Open Software License (OSL 3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * http://opensource.org/licenses/osl-3.0.php + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@magentocommerce.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade Magento to newer + * versions in the future. If you wish to customize Magento for your + * needs please refer to http://www.magentocommerce.com for more information. + * + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) + * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) + */ +interface Magento_Filesystem_AdapterInterface +{ + /** + * Checks the file existence. + * + * @param string $key + * @return bool + */ + public function exists($key); + + /** + * Reads content of the file. + * + * @param string $key + * @return string + */ + public function read($key); + + /** + * Writes content into the file. + * + * @param string $key + * @param string $content + * @return bool true if write was success + */ + public function write($key, $content); + + /** + * Renames the file. + * + * @param string $source + * @param string $target + * @return bool + */ + public function rename($source, $target); + + /** + * Copy the file. + * + * @param string $source + * @param string $target + * @return bool + */ + public function copy($source, $target); + + /** + * Deletes the file or directory recursively. + * + * @param string $key + * @throws Magento_Filesystem_Exception + */ + public function delete($key); + + /** + * Changes permissions of filesystem key + * + * @param string $key + * @param int $permissions + * @param bool $recursively + * @throws Magento_Filesystem_Exception + */ + public function changePermissions($key, $permissions, $recursively); + + /** + * Gets list of all nested keys + * + * @param string $key + * @return array + * @throws Magento_Filesystem_Exception + */ + public function getNestedKeys($key); + + /** + * Check if key is directory. + * + * @param string $key + * @return bool + */ + public function isDirectory($key); + + /** + * Check if key is file. + * + * @param string $key + * @return bool + */ + public function isFile($key); + + /** + * Check if file exists and is writable + * + * @param string $key + * @return bool + */ + public function isWritable($key); + + /** + * Check if file exists and is readable + * + * @param string $key + * @return bool + */ + public function isReadable($key); + + /** + * Creates new directory + * + * @param string $key + * @param int $mode + * @throws Magento_Filesystem_Exception If cannot create directory + */ + public function createDirectory($key, $mode); + + /** + * Touches a file + * + * @param string $key + * @throws Magento_Filesystem_Exception + */ + public function touch($key); +} diff --git a/lib/Magento/Filesystem/Exception.php b/lib/Magento/Filesystem/Exception.php new file mode 100644 index 0000000000000000000000000000000000000000..4f1095997f78c99b3769e6d890aad8a1a58311a6 --- /dev/null +++ b/lib/Magento/Filesystem/Exception.php @@ -0,0 +1,29 @@ +<?php +/** + * Magento filesystem exception + * + * Magento + * + * NOTICE OF LICENSE + * + * This source file is subject to the Open Software License (OSL 3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * http://opensource.org/licenses/osl-3.0.php + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@magentocommerce.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade Magento to newer + * versions in the future. If you wish to customize Magento for your + * needs please refer to http://www.magentocommerce.com for more information. + * + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) + * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) + */ +class Magento_Filesystem_Exception extends Exception +{ + +} diff --git a/dev/build/publication/license/Osl.php b/lib/Magento/Filesystem/Stream/FactoryInterface.php similarity index 57% rename from dev/build/publication/license/Osl.php rename to lib/Magento/Filesystem/Stream/FactoryInterface.php index 6a6006ba272e6bae08a5489175f1875b75ac2385..4682485cc99d17847ae92131c5b3783e12950c61 100644 --- a/dev/build/publication/license/Osl.php +++ b/lib/Magento/Filesystem/Stream/FactoryInterface.php @@ -1,27 +1,7 @@ <?php /** - * {license_notice} + * Interface of Magento filesystem stream factory * - * @category build - * @package license - * @copyright {copyright} - * @license {license_link} - */ - -/** - * AFL license information class - * - */ -class Osl extends LicenseAbstract -{ - /** - * Prepare short information about license - * - * @return string - */ - public function getNotice() - { - return <<<EOT * Magento * * NOTICE OF LICENSE @@ -39,17 +19,17 @@ class Osl extends LicenseAbstract * Do not edit or add to this file if you wish to upgrade Magento to newer * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. -EOT; - - } - + * + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) + * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) + */ +interface Magento_Filesystem_Stream_FactoryInterface +{ /** - * Prepare data for phpdoc attribute "license" + * Create stream object * - * @return string + * @param string $key + * @return Magento_Filesystem_StreamInterface */ - public function getLink() - { - return 'http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)'; - } + public function createStream($key); } diff --git a/lib/Magento/Filesystem/Stream/Local.php b/lib/Magento/Filesystem/Stream/Local.php new file mode 100644 index 0000000000000000000000000000000000000000..c1f8d46ef5a797c780e7feb046d09dde88dead97 --- /dev/null +++ b/lib/Magento/Filesystem/Stream/Local.php @@ -0,0 +1,272 @@ +<?php +/** + * Magento filesystem local stream + * + * Magento + * + * NOTICE OF LICENSE + * + * This source file is subject to the Open Software License (OSL 3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * http://opensource.org/licenses/osl-3.0.php + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@magentocommerce.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade Magento to newer + * versions in the future. If you wish to customize Magento for your + * needs please refer to http://www.magentocommerce.com for more information. + * + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) + * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) + */ +class Magento_Filesystem_Stream_Local implements Magento_Filesystem_StreamInterface +{ + /** + * @var Magento_Filesystem + */ + protected $_filesystem; + + /** + * Stream path + * + * @var string + */ + protected $_path; + + /** + * Stream mode + * + * @var Magento_Filesystem_Stream_Mode + */ + protected $_mode; + + /** + * Stream file resource handle + * + * @var + */ + protected $_fileHandle; + + /** + * Constructor + * + * @param string $path + */ + public function __construct($path) + { + $this->_path = $path; + } + + /** + * Opens the stream in the specified mode + * + * @param Magento_Filesystem_Stream_Mode $mode + * @throws Magento_Filesystem_Exception If stream cannot be opened + */ + public function open(Magento_Filesystem_Stream_Mode $mode) + { + $fileHandle = @fopen($this->_path, $mode->getMode()); + if (false === $fileHandle) { + throw new Magento_Filesystem_Exception(sprintf('The stream "%s" cannot be opened', $this->_path)); + } + $this->_mode = $mode; + $this->_fileHandle = $fileHandle; + } + + /** + * Reads the specified number of bytes from the current position. + * + * @param integer $count The number of bytes to read + * @return string + * @throws Magento_Filesystem_Exception If stream wasn't read. + */ + public function read($count) + { + $this->_assertReadable(); + $result = @fread($this->_fileHandle, $count); + if ($result === false) { + throw new Magento_Filesystem_Exception('Read of the stream caused an error.'); + } + return $result; + } + + /** + * Reads one CSV row from the stream + * + * @param int $count [optional] <p> + * Must be greater than the longest line (in characters) to be found in + * the CSV file (allowing for trailing line-end characters). It became + * optional in PHP 5. Omitting this parameter (or setting it to 0 in PHP + * 5.0.4 and later) the maximum line length is not limited, which is + * slightly slower. + * @param string $delimiter + * @param string $enclosure + * @return array|bool false on end of file + * @throws Magento_Filesystem_Exception + */ + public function readCsv($count = 0, $delimiter = ',', $enclosure = '"') + { + $this->_assertReadable(); + $result = @fgetcsv($this->_fileHandle, $count); + if ($result === false && $this->eof()) { + return false; + } + if (!is_array($result)) { + throw new Magento_Filesystem_Exception('Read of the stream caused an error.'); + } + return $result; + } + + /** + * Writes the data to stream. + * + * @param string $data + * @return integer + * @throws Magento_Filesystem_Exception + */ + public function write($data) + { + $this->_assertWritable(); + $result = @fwrite($this->_fileHandle, $data); + if (false === $result) { + throw new Magento_Filesystem_Exception('Write to the stream caused an error.'); + } + return $result; + } + + /** + * Writes one CSV row to the stream. + * + * @param array $data + * @param string $delimiter + * @param string $enclosure + * @return integer + * @throws Magento_Filesystem_Exception + */ + public function writeCsv(array $data, $delimiter = ',', $enclosure = '"') + { + $this->_assertWritable(); + $result = fputcsv($this->_fileHandle, $data, $delimiter, $enclosure); + if (false === $result) { + throw new Magento_Filesystem_Exception('Write to the stream caused an error.'); + } + return $result; + } + + /** + * Closes the stream. + * + * @throws Magento_Filesystem_Exception + */ + public function close() + { + $this->_assertOpened(); + $result = @fclose($this->_fileHandle); + + if (false === $result) { + throw new Magento_Filesystem_Exception('Close of the stream caused an error.'); + } + + $this->_mode = null; + $this->_fileHandle = null; + } + + /** + * Flushes the output. + * + * @throws Magento_Filesystem_Exception + */ + public function flush() + { + $this->_assertOpened(); + $result = @fflush($this->_fileHandle); + if (!$result) { + throw new Magento_Filesystem_Exception('Flush of the stream caused an error.'); + } + } + + /** + * Seeks to the specified offset + * + * @param int $offset + * @param int $whence + * @throws Magento_Filesystem_Exception + */ + public function seek($offset, $whence = SEEK_SET) + { + $this->_assertOpened(); + $result = fseek($this->_fileHandle, $offset, $whence); + if (0 !== $result) { + throw new Magento_Filesystem_Exception('seek operation on the stream caused an error.'); + } + } + + /** + * Returns the current position + * + * @return int + * @throws Magento_Filesystem_Exception + */ + public function tell() + { + $this->_assertOpened(); + $result = ftell($this->_fileHandle); + if (false === $result) { + throw new Magento_Filesystem_Exception('tell operation on the stream caused an error.'); + } + return $result; + } + + /** + * Checks if the current position is the end-of-file + * + * @return bool + */ + public function eof() + { + $this->_assertOpened(); + return (bool)@feof($this->_fileHandle); + } + + /** + * Asserts the stream is readable + * + * @throws Magento_Filesystem_Exception + */ + protected function _assertReadable() + { + $this->_assertOpened(); + if (false === $this->_mode->allowsRead()) { + throw new Magento_Filesystem_Exception('The stream does not allow read.'); + } + } + + /** + * Asserts the stream is writable + * + * @throws Magento_Filesystem_Exception + */ + protected function _assertWritable() + { + $this->_assertOpened(); + if (false === $this->_mode->allowsWrite()) { + throw new Magento_Filesystem_Exception('The stream does not allow write.'); + } + } + + /** + * Asserts the stream is opened + * + * @throws Magento_Filesystem_Exception + */ + protected function _assertOpened() + { + if (!$this->_fileHandle) { + throw new Magento_Filesystem_Exception(sprintf('The stream "%s" is not opened', $this->_path)); + } + } +} diff --git a/lib/Magento/Filesystem/Stream/Mode.php b/lib/Magento/Filesystem/Stream/Mode.php new file mode 100644 index 0000000000000000000000000000000000000000..f3493a445329460f8f1c07442f27225c1568f7b7 --- /dev/null +++ b/lib/Magento/Filesystem/Stream/Mode.php @@ -0,0 +1,170 @@ +<?php +/** + * Magento filesystem stream mode + * + * Magento + * + * NOTICE OF LICENSE + * + * This source file is subject to the Open Software License (OSL 3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * http://opensource.org/licenses/osl-3.0.php + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@magentocommerce.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade Magento to newer + * versions in the future. If you wish to customize Magento for your + * needs please refer to http://www.magentocommerce.com for more information. + * + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) + * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) + */ +class Magento_Filesystem_Stream_Mode +{ + /** + * A stream mode as for the use of fopen() + * + * @var string + */ + protected $_mode; + + /** + * Base mode (e.g "r", "w", "a") + * + * @var string + */ + protected $_base; + + /** + * Is mode has plus (e.g. "w+") + * + * @var string + */ + protected $_plus; + + /** + * Additional mode of stream (e.g. "rb") + * + * @var string + */ + protected $_flag; + + /** + * Constructor + * + * @param string $mode + */ + public function __construct($mode) + { + $this->_mode = $mode; + + $mode = substr($mode, 0, 3); + $rest = substr($mode, 1); + + $this->_base = substr($mode, 0, 1); + $this->_plus = false !== strpos($rest, '+'); + $this->_flag = trim($rest, '+'); + } + + /** + * Returns the underlying mode + * + * @return string + */ + public function getMode() + { + return $this->_mode; + } + + /** + * Indicates whether the mode allows to read + * + * @return bool + */ + public function allowsRead() + { + if ($this->_plus) { + return true; + } + + return 'r' === $this->_base; + } + + /** + * Checks whether the mode allows to write. + * + * @return bool + */ + public function allowsWrite() + { + if ($this->_plus) { + return true; + } + + return 'r' !== $this->_base; + } + + /** + * Checks whether the mode allows to open an existing file. + * + * @return bool + */ + public function allowsExistingFileOpening() + { + return 'x' !== $this->_base; + } + + /** + * Checks whether the mode allows to create a new file. + * + * @return bool + */ + public function allowsNewFileOpening() + { + return 'r' !== $this->_base; + } + + /** + * Indicates whether the mode implies to delete the existing content of the file when it already exists + * + * @return bool + */ + public function impliesExistingContentDeletion() + { + return 'w' === $this->_base; + } + + /** + * Indicates whether the mode implies positioning the cursor at the beginning of the file + * + * @return bool + */ + public function impliesPositioningCursorAtTheBeginning() + { + return 'a' !== $this->_base; + } + + /** + * Indicates whether the mode implies positioning the cursor at the end of the file + * + * @return bool + */ + public function impliesPositioningCursorAtTheEnd() + { + return 'a' === $this->_base; + } + + /** + * Indicates whether the stream is in binary mode + * + * @return bool + */ + public function isBinary() + { + return 'b' === $this->_flag; + } +} diff --git a/lib/Magento/Filesystem/StreamInterface.php b/lib/Magento/Filesystem/StreamInterface.php new file mode 100644 index 0000000000000000000000000000000000000000..17a53e14083fb4ff84fc686263a504b4dfdf9731 --- /dev/null +++ b/lib/Magento/Filesystem/StreamInterface.php @@ -0,0 +1,119 @@ +<?php +/** + * Interface of Magento filesystem stream + * + * Magento + * + * NOTICE OF LICENSE + * + * This source file is subject to the Open Software License (OSL 3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * http://opensource.org/licenses/osl-3.0.php + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@magentocommerce.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade Magento to newer + * versions in the future. If you wish to customize Magento for your + * needs please refer to http://www.magentocommerce.com for more information. + * + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) + * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) + */ +interface Magento_Filesystem_StreamInterface +{ + /** + * Opens the stream in the specified mode + * + * @param Magento_Filesystem_Stream_Mode $mode + * @throws Magento_Filesystem_Exception + */ + public function open(Magento_Filesystem_Stream_Mode $mode); + + /** + * Reads the specified number of bytes from the current position. + * + * @param integer $count The number of bytes to read + * @return string + * @throws Magento_Filesystem_Exception + */ + public function read($count); + + /** + * Reads one CSV row from the stream + * + * @param int $count [optional] <p> + * Must be greater than the longest line (in characters) to be found in + * the CSV file (allowing for trailing line-end characters). It became + * optional in PHP 5. Omitting this parameter (or setting it to 0 in PHP + * 5.0.4 and later) the maximum line length is not limited, which is + * slightly slower. + * @param string $delimiter + * @param string $enclosure + * @return array|bool false on end of file + * @throws Magento_Filesystem_Exception + */ + public function readCsv($count = 0, $delimiter = ',', $enclosure = '"'); + + /** + * Writes the data to stream. + * + * @param string $data + * @return integer + * @throws Magento_Filesystem_Exception + */ + public function write($data); + + /** + * Writes one CSV row to the stream + * + * @param array $data + * @param string $delimiter + * @param string $enclosure + * @return integer + * @throws Magento_Filesystem_Exception + */ + public function writeCsv(array $data, $delimiter = ',', $enclosure = '"'); + + /** + * Closes the stream. + * + * @throws Magento_Filesystem_Exception + */ + public function close(); + + /** + * Flushes the output. + * + * @throws Magento_Filesystem_Exception + */ + public function flush(); + + /** + * Seeks to the specified offset + * + * @param int $offset + * @param int $whence + * @throws Magento_Filesystem_Exception + */ + public function seek($offset, $whence = SEEK_SET); + + /** + * Returns the current position + * + * @return int + * @throws Magento_Filesystem_Exception + */ + public function tell(); + + /** + * Checks if the current position is the end-of-file + * + * @return bool + * @throws Magento_Filesystem_Exception + */ + public function eof(); +} diff --git a/lib/Magento/ObjectManager.php b/lib/Magento/ObjectManager.php index 9c92119acf5866a8e035dc020fde2defa073a61f..e11c07de71f8c3913f7e60157620c6f9f1375dca 100644 --- a/lib/Magento/ObjectManager.php +++ b/lib/Magento/ObjectManager.php @@ -20,7 +20,7 @@ * * @category Magento * @package Magento_ObjectManager - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Magento/ObjectManager/Factory.php b/lib/Magento/ObjectManager/Factory.php index 32b2b4a2c51667de2d09d27829da0465cf3bb932..09cfddcf6bb2032e577a840c34b67c9a0feea233 100644 --- a/lib/Magento/ObjectManager/Factory.php +++ b/lib/Magento/ObjectManager/Factory.php @@ -20,7 +20,7 @@ * * @category Magento * @package Magento_ObjectManager - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Magento/ObjectManager/Zend.php b/lib/Magento/ObjectManager/Zend.php index dac5cf332b1201c7c241a806953349d6749ae794..b838e01c6316c01fe9de95a95a762931ecf6d34b 100644 --- a/lib/Magento/ObjectManager/Zend.php +++ b/lib/Magento/ObjectManager/Zend.php @@ -20,7 +20,7 @@ * * @category Magento * @package Magento_ObjectManager - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Magento/Profiler.php b/lib/Magento/Profiler.php index 004e9c7240645ef9e9d6c94cbe8ea2b7943bb3be..745425a8a6b4bb0cd8005171a05828be4b981799 100644 --- a/lib/Magento/Profiler.php +++ b/lib/Magento/Profiler.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Magento_Profiler diff --git a/lib/Magento/Profiler/Driver/Factory.php b/lib/Magento/Profiler/Driver/Factory.php index ccd8f75663cf84879391174ef06c1cf543f49f20..3d9a9da870a2ac60811bc8c057e85906e3ee63d4 100644 --- a/lib/Magento/Profiler/Driver/Factory.php +++ b/lib/Magento/Profiler/Driver/Factory.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Magento_Profiler_Driver_Factory diff --git a/lib/Magento/Profiler/Driver/Standard.php b/lib/Magento/Profiler/Driver/Standard.php index 4cad7991aad05bd6420ea3a833869c4060eac51e..ef758af6668f3a5fa617808374b2be7b4af3637f 100644 --- a/lib/Magento/Profiler/Driver/Standard.php +++ b/lib/Magento/Profiler/Driver/Standard.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Magento_Profiler_Driver_Standard implements Magento_Profiler_DriverInterface diff --git a/lib/Magento/Profiler/Driver/Standard/Output/Csvfile.php b/lib/Magento/Profiler/Driver/Standard/Output/Csvfile.php index e98a82b148df305da8b633e4add6f48439cb4c80..ab0ef63a4e7e16c8dc570d3237b0a153803b85be 100644 --- a/lib/Magento/Profiler/Driver/Standard/Output/Csvfile.php +++ b/lib/Magento/Profiler/Driver/Standard/Output/Csvfile.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Magento_Profiler_Driver_Standard_Output_Csvfile extends Magento_Profiler_Driver_Standard_OutputAbstract @@ -65,6 +65,7 @@ class Magento_Profiler_Driver_Standard_Output_Csvfile extends Magento_Profiler_D protected function _parseFilePath(array $config = null) { $result = isset($config['filePath']) ? $config['filePath'] : self::DEFAULT_FILEPATH; + $result = str_replace(array('\\', '/'), DIRECTORY_SEPARATOR, $result); if (isset($config['baseDir'])) { $result = rtrim($config['baseDir'], DIRECTORY_SEPARATOR) diff --git a/lib/Magento/Profiler/Driver/Standard/Output/Factory.php b/lib/Magento/Profiler/Driver/Standard/Output/Factory.php index a9cc92d55e3157e71034222c26076816bbd589fa..54baad81edfd33ab0901e248ed8c3035f10fdb56 100644 --- a/lib/Magento/Profiler/Driver/Standard/Output/Factory.php +++ b/lib/Magento/Profiler/Driver/Standard/Output/Factory.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Magento_Profiler_Driver_Standard_Output_Factory diff --git a/lib/Magento/Profiler/Driver/Standard/Output/Firebug.php b/lib/Magento/Profiler/Driver/Standard/Output/Firebug.php index 0a8ecb1c1113f9ca3eb19aa3de20bb6f490e96e6..a8ec6f5e2afe11d8053196aa22fc739f56335634 100644 --- a/lib/Magento/Profiler/Driver/Standard/Output/Firebug.php +++ b/lib/Magento/Profiler/Driver/Standard/Output/Firebug.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Magento_Profiler_Driver_Standard_Output_Firebug extends Magento_Profiler_Driver_Standard_OutputAbstract diff --git a/lib/Magento/Profiler/Driver/Standard/Output/Html.php b/lib/Magento/Profiler/Driver/Standard/Output/Html.php index 681765856e5c5575334f48544cc8f7d50879e3c9..7dfe83fb0cafaed392da2bbc81c5ea746e77d10f 100644 --- a/lib/Magento/Profiler/Driver/Standard/Output/Html.php +++ b/lib/Magento/Profiler/Driver/Standard/Output/Html.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Magento_Profiler_Driver_Standard_Output_Html extends Magento_Profiler_Driver_Standard_OutputAbstract diff --git a/lib/Magento/Profiler/Driver/Standard/OutputAbstract.php b/lib/Magento/Profiler/Driver/Standard/OutputAbstract.php index 14bf8872019a691b41039d3d14e68cb70332c840..86791cd0cba5afc1ba11230dba71237d36d30301 100644 --- a/lib/Magento/Profiler/Driver/Standard/OutputAbstract.php +++ b/lib/Magento/Profiler/Driver/Standard/OutputAbstract.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ abstract class Magento_Profiler_Driver_Standard_OutputAbstract diff --git a/lib/Magento/Profiler/Driver/Standard/OutputInterface.php b/lib/Magento/Profiler/Driver/Standard/OutputInterface.php index a1bed70db45b12e4616d0c65f00019ce02232925..0390aa701cab29f7d81a7cc7cc4b8cc09677c6d6 100644 --- a/lib/Magento/Profiler/Driver/Standard/OutputInterface.php +++ b/lib/Magento/Profiler/Driver/Standard/OutputInterface.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ interface Magento_Profiler_Driver_Standard_OutputInterface diff --git a/lib/Magento/Profiler/Driver/Standard/Stat.php b/lib/Magento/Profiler/Driver/Standard/Stat.php index 03df13a7c365bf3001028b8e8e2daead200be847..afbd4b4746210ebb05d5e3188a3a618f24ccb2ad 100644 --- a/lib/Magento/Profiler/Driver/Standard/Stat.php +++ b/lib/Magento/Profiler/Driver/Standard/Stat.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Magento_Profiler_Driver_Standard_Stat diff --git a/lib/Magento/Profiler/DriverInterface.php b/lib/Magento/Profiler/DriverInterface.php index a79fda8bb0cdd8765bbaaba446b9d452a4f61ef3..141c3ca916fa40342f064299be54ebbf6f70207c 100644 --- a/lib/Magento/Profiler/DriverInterface.php +++ b/lib/Magento/Profiler/DriverInterface.php @@ -22,7 +22,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ interface Magento_Profiler_DriverInterface diff --git a/lib/Magento/Shell.php b/lib/Magento/Shell.php index cf549c8c0980776632da7fa46957b7d6d51d6bbc..175c38181a5e9f2f80a65bc9ee9c0dac84e8bbe6 100644 --- a/lib/Magento/Shell.php +++ b/lib/Magento/Shell.php @@ -20,7 +20,7 @@ * * @category Magento * @package Magento_Shell - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ @@ -63,7 +63,7 @@ class Magento_Shell * * @return bool */ - public function getVerbose() + public function isVerbose() { return $this->_isVerbose; } @@ -81,12 +81,12 @@ class Magento_Shell $arguments = array_map('escapeshellarg', $arguments); $command = vsprintf("$command 2>&1", $arguments); // Output errors to STDOUT instead of STDERR if ($this->_isVerbose) { - echo $command . PHP_EOL; + $this->output($command); } exec($command, $output, $exitCode); $output = implode(PHP_EOL, $output); if ($this->_isVerbose) { - echo $output . PHP_EOL; + $this->output($output); } if ($exitCode) { $commandError = new Exception($output, $exitCode); @@ -94,4 +94,14 @@ class Magento_Shell } return $output; } + + /** + * Echo the specified message + * + * @param string $message + */ + public function output($message) + { + echo $message . PHP_EOL; + } } diff --git a/lib/Magento/Translate/Adapter.php b/lib/Magento/Translate/Adapter.php index bd96498c56164d8d0d7a47b59fe23eada1c4f7dd..8ae91e0343fdbd8532dfe7b09e9d6406ef079057 100644 --- a/lib/Magento/Translate/Adapter.php +++ b/lib/Magento/Translate/Adapter.php @@ -21,7 +21,7 @@ * @category Magento * @package Framework * @subpackage Translate - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Magento/Translate/AdapterAbstract.php b/lib/Magento/Translate/AdapterAbstract.php index 0c1eccf7b649219e0458bbff10c2835299f035b2..7b142f5ec4c75f45e1ce0758762827b5bc018aa6 100644 --- a/lib/Magento/Translate/AdapterAbstract.php +++ b/lib/Magento/Translate/AdapterAbstract.php @@ -21,7 +21,7 @@ * @category Magento * @package Framework * @subpackage Translate - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Magento/Translate/AdapterInterface.php b/lib/Magento/Translate/AdapterInterface.php index 053954aecf980fe27c04614c1520cb75e3c3a0c1..988ea5b3cbfe1cb1b9690c7f8852a9642e6acd74 100644 --- a/lib/Magento/Translate/AdapterInterface.php +++ b/lib/Magento/Translate/AdapterInterface.php @@ -21,7 +21,7 @@ * @category Magento * @package Framework * @subpackage Translate - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Magento/Validator.php b/lib/Magento/Validator.php index e0c1c8a33ea26abe838eab7ba2444a4ffc78a12f..02baa2b6f2c1697af4a8a0da0f5f3cc8d4c0df9f 100644 --- a/lib/Magento/Validator.php +++ b/lib/Magento/Validator.php @@ -20,7 +20,7 @@ * * @category Magento * @package Magento_Validator - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Magento/Validator/Alnum.php b/lib/Magento/Validator/Alnum.php index ca44a78765214f5262820f31620b7a356f9fccaf..2bb993c46d391a33588601323d3a2d950d8db9c6 100644 --- a/lib/Magento/Validator/Alnum.php +++ b/lib/Magento/Validator/Alnum.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Magento_Validator_Alnum extends Zend_Validate_Alnum implements Magento_Validator_ValidatorInterface diff --git a/lib/Magento/Validator/Builder.php b/lib/Magento/Validator/Builder.php index 7c5fb18d2f20aa99feccb26e0b6749e43a664379..d79ddabc05fb4444e60d5250530780641da5719d 100644 --- a/lib/Magento/Validator/Builder.php +++ b/lib/Magento/Validator/Builder.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Magento_Validator_Builder diff --git a/lib/Magento/Validator/Config.php b/lib/Magento/Validator/Config.php index 4dd9b21a73b2406d626431abc0fcf94ecc100790..8de034a8020c8dd8044bf589db9e5d04bc1c7066 100644 --- a/lib/Magento/Validator/Config.php +++ b/lib/Magento/Validator/Config.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Magento_Validator_Config extends Magento_Config_XmlAbstract @@ -397,7 +397,7 @@ class Magento_Validator_Config extends Magento_Config_XmlAbstract */ public function getSchemaFile() { - return __DIR__ . '/validation.xsd'; + return __DIR__ . '/etc/validation.xsd'; } /** diff --git a/lib/Magento/Validator/Constraint.php b/lib/Magento/Validator/Constraint.php index 495fbdf5c3d0f59a2d78f2becedf74c470c321ec..fcb9b4140f1651ed86610bddc11b969d5e7f2f32 100644 --- a/lib/Magento/Validator/Constraint.php +++ b/lib/Magento/Validator/Constraint.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Magento_Validator_Constraint extends Magento_Validator_ValidatorAbstract diff --git a/lib/Magento/Validator/Constraint/Option.php b/lib/Magento/Validator/Constraint/Option.php index 3a57b0457e052d27578bbcb9cf2c46415d1a3172..d898ea073cc9c8e0c5624f21aaaa070eb31cedf7 100644 --- a/lib/Magento/Validator/Constraint/Option.php +++ b/lib/Magento/Validator/Constraint/Option.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Magento_Validator_Constraint_Option implements Magento_Validator_Constraint_OptionInterface diff --git a/lib/Magento/Validator/Constraint/Option/Callback.php b/lib/Magento/Validator/Constraint/Option/Callback.php index 6372386dde140d9eab2aed3212c19f956a5ca2f6..118d82901ee22ab79fbc4640ae976a6cb55d1715 100644 --- a/lib/Magento/Validator/Constraint/Option/Callback.php +++ b/lib/Magento/Validator/Constraint/Option/Callback.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Magento_Validator_Constraint_Option_Callback implements Magento_Validator_Constraint_OptionInterface diff --git a/lib/Magento/Validator/Constraint/OptionInterface.php b/lib/Magento/Validator/Constraint/OptionInterface.php index db8aecf0824d69fa7bf124f57d6cf73945259b76..f985944934cb69f3cb5972f72a6cde6b494402a7 100644 --- a/lib/Magento/Validator/Constraint/OptionInterface.php +++ b/lib/Magento/Validator/Constraint/OptionInterface.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ interface Magento_Validator_Constraint_OptionInterface diff --git a/lib/Magento/Validator/Constraint/Property.php b/lib/Magento/Validator/Constraint/Property.php index a73cdacdcad911f4115274a3ab973edba4614f04..b8481f7d3ebaaf16fdc5275ad574c06f6e146f12 100644 --- a/lib/Magento/Validator/Constraint/Property.php +++ b/lib/Magento/Validator/Constraint/Property.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Magento_Validator_Constraint_Property extends Magento_Validator_Constraint diff --git a/lib/Magento/Validator/EmailAddress.php b/lib/Magento/Validator/EmailAddress.php index 78a23b931191cddb1735a5c91abcd03d65b5e321..49be1f5b8fe8d24c49694e4395f0541cba7ec169 100644 --- a/lib/Magento/Validator/EmailAddress.php +++ b/lib/Magento/Validator/EmailAddress.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Magento_Validator_EmailAddress extends Zend_Validate_EmailAddress diff --git a/lib/Magento/Validator/Entity/Properties.php b/lib/Magento/Validator/Entity/Properties.php index 2f9b6e804531ddcea4cfc630689fadf5a9a9077c..8e4718a3c694ba95c2d85f4bc72a0fcc206b715b 100644 --- a/lib/Magento/Validator/Entity/Properties.php +++ b/lib/Magento/Validator/Entity/Properties.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Magento_Validator_Entity_Properties extends Magento_Validator_ValidatorAbstract diff --git a/lib/Magento/Validator/Exception.php b/lib/Magento/Validator/Exception.php index 70acfd698f4d6acba006ec049cfc1b3f4e7c09a9..c240cca097cc7c69d6accc3ec7c88800b5710889 100644 --- a/lib/Magento/Validator/Exception.php +++ b/lib/Magento/Validator/Exception.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Magento_Validator_Exception extends Exception diff --git a/lib/Magento/Validator/Int.php b/lib/Magento/Validator/Int.php index 906a35544273b298567ff5ec6dd75bcbe529dfd3..9ca97fe7bec14001cefeca4a401558ddc94aaabc 100644 --- a/lib/Magento/Validator/Int.php +++ b/lib/Magento/Validator/Int.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Magento_Validator_Int extends Zend_Validate_Int implements Magento_Validator_ValidatorInterface diff --git a/lib/Magento/Validator/NotEmpty.php b/lib/Magento/Validator/NotEmpty.php index 6b553714cc092bc4d43ad610883adad66e5b1c1d..c1e7cb5cacb88c03d0f1f74f4b468a706a58f379 100644 --- a/lib/Magento/Validator/NotEmpty.php +++ b/lib/Magento/Validator/NotEmpty.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Magento_Validator_NotEmpty extends Zend_Validate_NotEmpty implements Magento_Validator_ValidatorInterface diff --git a/lib/Magento/Validator/StringLength.php b/lib/Magento/Validator/StringLength.php index 7091709fde3dac794d0543a06d4ca1abacecbcda..7c380eb05c7fdfa36b0229235001ca898e4a1ff7 100644 --- a/lib/Magento/Validator/StringLength.php +++ b/lib/Magento/Validator/StringLength.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Magento_Validator_StringLength extends Zend_Validate_StringLength implements Magento_Validator_ValidatorInterface diff --git a/lib/Magento/Validator/ValidatorAbstract.php b/lib/Magento/Validator/ValidatorAbstract.php index 065dc2ea64824d4122ba2eeffc29cff69a580f15..03dc7faa2dd2b47dd1be2833be8700a9855a7e7d 100644 --- a/lib/Magento/Validator/ValidatorAbstract.php +++ b/lib/Magento/Validator/ValidatorAbstract.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ abstract class Magento_Validator_ValidatorAbstract implements Magento_Validator_ValidatorInterface diff --git a/lib/Magento/Validator/ValidatorInterface.php b/lib/Magento/Validator/ValidatorInterface.php index eb48f88433a9a4dab82efb2c4869bc326ddc855f..0c879641afacf2ad013433a5b5859e1515916b3f 100644 --- a/lib/Magento/Validator/ValidatorInterface.php +++ b/lib/Magento/Validator/ValidatorInterface.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ interface Magento_Validator_ValidatorInterface extends Zend_Validate_Interface diff --git a/lib/Magento/Validator/validation.xsd b/lib/Magento/Validator/etc/validation.xsd similarity index 99% rename from lib/Magento/Validator/validation.xsd rename to lib/Magento/Validator/etc/validation.xsd index 05ff65fcd9aef4866ef206793e762db4b4a7eb4c..ea0bfc797453a7772e2a1e3c64717d8b9e9c92f9 100644 --- a/lib/Magento/Validator/validation.xsd +++ b/lib/Magento/Validator/etc/validation.xsd @@ -21,7 +21,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/lib/Varien/Cache/Backend/Database.php b/lib/Varien/Cache/Backend/Database.php index cca03f3083a3b681ed0aedbedb266cebdb4e613c..c0e6b83f5fb65da0bceadb2613c79cdfccd1953e 100644 --- a/lib/Varien/Cache/Backend/Database.php +++ b/lib/Varien/Cache/Backend/Database.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Cache - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Cache/Backend/Eaccelerator.php b/lib/Varien/Cache/Backend/Eaccelerator.php index 42481be33e0327c38d41f09e0a7c6b51db26ef68..858687a72f0059a2590102cf4598795304b3066c 100644 --- a/lib/Varien/Cache/Backend/Eaccelerator.php +++ b/lib/Varien/Cache/Backend/Eaccelerator.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Cache - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Cache/Backend/Memcached.php b/lib/Varien/Cache/Backend/Memcached.php index 93ee0cd094700c7f6199c64aed619ce4d884bda1..fef4f64986d0e2ca40566c7b6beddbe81da7c04d 100644 --- a/lib/Varien/Cache/Backend/Memcached.php +++ b/lib/Varien/Cache/Backend/Memcached.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Cache - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Cache/Core.php b/lib/Varien/Cache/Core.php index 83b2a57dabe6ca2200be24530d99136873d7e7dd..8e7c4743acc0e0ff54d9ec1a0ef74e0ae311d9d2 100644 --- a/lib/Varien/Cache/Core.php +++ b/lib/Varien/Cache/Core.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Cache - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Convert/Container/Abstract.php b/lib/Varien/Convert/Container/Abstract.php index 2408d080121349a366850b3199418b20e9a24e95..df1798765bb2d4914d53fa96a354721050ecbdaf 100644 --- a/lib/Varien/Convert/Container/Abstract.php +++ b/lib/Varien/Convert/Container/Abstract.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Convert - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Convert/Exception.php b/lib/Varien/Convert/Exception.php index b1af42994a8ac40354c5b0121dd43c4ba5d8400d..4f4f79b2243db9b70f4bd1fcc81fb5c537c2d8ec 100644 --- a/lib/Varien/Convert/Exception.php +++ b/lib/Varien/Convert/Exception.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Convert - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Convert/Mapper/Column.php b/lib/Varien/Convert/Mapper/Column.php index 5597ec0c499f6e25c4c43680a5cb91a276cd2d41..9fc8d8054ac2892f7b4e58c95f48cfaee90676a7 100644 --- a/lib/Varien/Convert/Mapper/Column.php +++ b/lib/Varien/Convert/Mapper/Column.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Convert - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Convert/Mapper/Interface.php b/lib/Varien/Convert/Mapper/Interface.php index 5e17e0f2ed49493e1c4f1f6b3160d402c92e6370..7090125a671af21d406f1ee43d0e7f2ea1f64429 100644 --- a/lib/Varien/Convert/Mapper/Interface.php +++ b/lib/Varien/Convert/Mapper/Interface.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Convert - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Data/Collection.php b/lib/Varien/Data/Collection.php index 4cb24057d5f4a4f2829b4ba67a0952f8a2e54f4e..68ce10f37f957cc64cf58d1c06f4203ef4d92eb9 100644 --- a/lib/Varien/Data/Collection.php +++ b/lib/Varien/Data/Collection.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Data - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Data/Collection/Db.php b/lib/Varien/Data/Collection/Db.php index 5c891927438f6e0010c2f13143b920c06b91b45b..760d590c71436fc4ee7f0f2314ace0fa813607aa 100644 --- a/lib/Varien/Data/Collection/Db.php +++ b/lib/Varien/Data/Collection/Db.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Data - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Data/Collection/Factory.php b/lib/Varien/Data/Collection/Factory.php index edb2a5dea390c149efbbd5a74b8ded572506d63e..48be1a58c1a1e985a3e7a524af8fc0cc83eccc61 100644 --- a/lib/Varien/Data/Collection/Factory.php +++ b/lib/Varien/Data/Collection/Factory.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Data - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Data/Collection/Filesystem.php b/lib/Varien/Data/Collection/Filesystem.php index 02d0a701df4cd421cac9feef07568aafb8d0532b..260923662db2f566a397f95081651c5c2ec49329 100644 --- a/lib/Varien/Data/Collection/Filesystem.php +++ b/lib/Varien/Data/Collection/Filesystem.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Data - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Data/Form.php b/lib/Varien/Data/Form.php index 7c4f4fdda5678fdf562a1eb8b35bee053db6b8b8..9483fbb775a1c5220a54078b0a2b6667ad549910 100644 --- a/lib/Varien/Data/Form.php +++ b/lib/Varien/Data/Form.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Data - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Data/Form/Abstract.php b/lib/Varien/Data/Form/Abstract.php index dc697ea58ff25a48d40c1c4d5d42f33cd29501f0..a6e5b9ac93e6049aa1bf73ea5796a8adb32eae4c 100644 --- a/lib/Varien/Data/Form/Abstract.php +++ b/lib/Varien/Data/Form/Abstract.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Data - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Data/Form/Element/Abstract.php b/lib/Varien/Data/Form/Element/Abstract.php index 536be200d5f84f422699c7177b996e31088d3ca1..53ae59a5c7c7641d1ede4ac2db8020748817a369 100644 --- a/lib/Varien/Data/Form/Element/Abstract.php +++ b/lib/Varien/Data/Form/Element/Abstract.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Data - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Data/Form/Element/Button.php b/lib/Varien/Data/Form/Element/Button.php index 2ae7003e8850d4b495620aed795744b192728871..296d93b5a0d241714c6c3ad64885ebecf2edc605 100644 --- a/lib/Varien/Data/Form/Element/Button.php +++ b/lib/Varien/Data/Form/Element/Button.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Data - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Data/Form/Element/Checkbox.php b/lib/Varien/Data/Form/Element/Checkbox.php index fc3fe6a9f85384b8f84d813ab62278dd3867f206..0e4162df0edd6bf542ec0cabc785332c124aec6a 100644 --- a/lib/Varien/Data/Form/Element/Checkbox.php +++ b/lib/Varien/Data/Form/Element/Checkbox.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Data - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Data/Form/Element/Checkboxes.php b/lib/Varien/Data/Form/Element/Checkboxes.php index a0f2fc7591f4629789aa6779132411f60cff9458..1bf8ba182c37b81c2b0938c46f2ecae7b29ef90d 100644 --- a/lib/Varien/Data/Form/Element/Checkboxes.php +++ b/lib/Varien/Data/Form/Element/Checkboxes.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Data - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Data/Form/Element/Collection.php b/lib/Varien/Data/Form/Element/Collection.php index aa3e8882363a3ead7c697ae13755afee0d1434a7..55798c5d909717e5538c1d3ac117e3e4b2f80e56 100644 --- a/lib/Varien/Data/Form/Element/Collection.php +++ b/lib/Varien/Data/Form/Element/Collection.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Data - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Data/Form/Element/Column.php b/lib/Varien/Data/Form/Element/Column.php index b3f76142e0e44b425394cd3a329d76353f78f3c8..ea1466c4fd552421cb2ff05000555e0b3ed9250c 100644 --- a/lib/Varien/Data/Form/Element/Column.php +++ b/lib/Varien/Data/Form/Element/Column.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Data - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Data/Form/Element/Date.php b/lib/Varien/Data/Form/Element/Date.php index d305449b65c53a8f345fed62a4d1116f0748305b..5178fbf56aeed34ccaa7b733cc450a908d0e4497 100644 --- a/lib/Varien/Data/Form/Element/Date.php +++ b/lib/Varien/Data/Form/Element/Date.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Data - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Data/Form/Element/Editablemultiselect.php b/lib/Varien/Data/Form/Element/Editablemultiselect.php index 9215b3e3d8ba1cb0e9a3c3d945a98f6b1df90605..11cf4b682d89b3ed9385eea1071aa2e4cbe5a7ba 100644 --- a/lib/Varien/Data/Form/Element/Editablemultiselect.php +++ b/lib/Varien/Data/Form/Element/Editablemultiselect.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Data - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Data/Form/Element/Editor.php b/lib/Varien/Data/Form/Element/Editor.php index 933cd9ac7634750f09f138c54d4af26878216969..ac211238ae300068054c7d0ae039bd72278be369 100644 --- a/lib/Varien/Data/Form/Element/Editor.php +++ b/lib/Varien/Data/Form/Element/Editor.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Data - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Data/Form/Element/Fieldset.php b/lib/Varien/Data/Form/Element/Fieldset.php index bf4606c63db74540841170b55ec243595d42ad9f..61c6459d2d03426810f4075618280105b2c9d090 100644 --- a/lib/Varien/Data/Form/Element/Fieldset.php +++ b/lib/Varien/Data/Form/Element/Fieldset.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Data - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Data/Form/Element/File.php b/lib/Varien/Data/Form/Element/File.php index 935c8fed987d096d538a3ba864f19711161d48d2..e2500dc11ae7d90384d63ff16cc04d3558f64784 100644 --- a/lib/Varien/Data/Form/Element/File.php +++ b/lib/Varien/Data/Form/Element/File.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Data - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Data/Form/Element/Gallery.php b/lib/Varien/Data/Form/Element/Gallery.php index d9185fdec66f8c0bbaabeea10b83a7197a82bfa3..8d62c0f6e086a3a54c0b91abc0c39975a37215ed 100644 --- a/lib/Varien/Data/Form/Element/Gallery.php +++ b/lib/Varien/Data/Form/Element/Gallery.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Data - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Data/Form/Element/Hidden.php b/lib/Varien/Data/Form/Element/Hidden.php index f867e2cdc40d168b679721dc7e45958702b58746..37cc3b137e8473e4c942d25893e44b36adcd8620 100644 --- a/lib/Varien/Data/Form/Element/Hidden.php +++ b/lib/Varien/Data/Form/Element/Hidden.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Data - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Data/Form/Element/Image.php b/lib/Varien/Data/Form/Element/Image.php index ff5b5819c60147fc14e3bb641426aa47f8a6f72d..1175233c114214a0e60ebe244d750fed3ad200f2 100644 --- a/lib/Varien/Data/Form/Element/Image.php +++ b/lib/Varien/Data/Form/Element/Image.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Data - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Data/Form/Element/Imagefile.php b/lib/Varien/Data/Form/Element/Imagefile.php index fb4abc18520b3e8041d0d5c7f3cf5d70827a8fc3..b1bb332b5d789c87428e5c2ba413f96bc75473a6 100644 --- a/lib/Varien/Data/Form/Element/Imagefile.php +++ b/lib/Varien/Data/Form/Element/Imagefile.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Data - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Data/Form/Element/Label.php b/lib/Varien/Data/Form/Element/Label.php index 96a3e9cf7a82dd3da66cafe0a39014e3412fd997..554c329eb01ff9156d6a06a123b69dd085340451 100644 --- a/lib/Varien/Data/Form/Element/Label.php +++ b/lib/Varien/Data/Form/Element/Label.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Data - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Data/Form/Element/Link.php b/lib/Varien/Data/Form/Element/Link.php index 3609bfec0aff406169bd1038d031b89084993508..38d7d785ba8646ddd5fe135f1698a211120a7699 100644 --- a/lib/Varien/Data/Form/Element/Link.php +++ b/lib/Varien/Data/Form/Element/Link.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Data - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Data/Form/Element/Multiline.php b/lib/Varien/Data/Form/Element/Multiline.php index 52de5c598430ba7e7e84fcdcf0c243b6280956fe..14f2c7c83f76e48f1f82f9154468acd33ab07a25 100644 --- a/lib/Varien/Data/Form/Element/Multiline.php +++ b/lib/Varien/Data/Form/Element/Multiline.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Data - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Data/Form/Element/Multiselect.php b/lib/Varien/Data/Form/Element/Multiselect.php index 56295ffc9e12036d7d6e869a238e9bc79a696496..fd57459bc83ccc8753146ba1244a94ab8928038c 100644 --- a/lib/Varien/Data/Form/Element/Multiselect.php +++ b/lib/Varien/Data/Form/Element/Multiselect.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Data - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Data/Form/Element/Note.php b/lib/Varien/Data/Form/Element/Note.php index cba16e6f88efc22331fab203b597ac90fb980cc7..ab72f22ea79899e7e31e84ac86c543bf9c100498 100644 --- a/lib/Varien/Data/Form/Element/Note.php +++ b/lib/Varien/Data/Form/Element/Note.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Data - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Data/Form/Element/Obscure.php b/lib/Varien/Data/Form/Element/Obscure.php index 6cca68ecef05dc8ae92adc6432b4514d6e2f29a1..9f67395cb518a558637526c6f94cb72a585f8514 100644 --- a/lib/Varien/Data/Form/Element/Obscure.php +++ b/lib/Varien/Data/Form/Element/Obscure.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Data - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Data/Form/Element/Password.php b/lib/Varien/Data/Form/Element/Password.php index 48c1cfb1fdec8c14982f2b47dcc52f2b1538293f..1528debb5d6512feb24d57c85884727e78b61fbe 100644 --- a/lib/Varien/Data/Form/Element/Password.php +++ b/lib/Varien/Data/Form/Element/Password.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Data - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Data/Form/Element/Radio.php b/lib/Varien/Data/Form/Element/Radio.php index 97da164d4c1fd6e39c1ea29bd43bc08fe32a082c..81cc3599d0743d431f53ca156d4c26450655a5b0 100644 --- a/lib/Varien/Data/Form/Element/Radio.php +++ b/lib/Varien/Data/Form/Element/Radio.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Data - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Data/Form/Element/Radios.php b/lib/Varien/Data/Form/Element/Radios.php index 5e65839f846d710cb8e9dcd0fe6b2041a74886c5..3928d525237bf18101420e5bf43dd744e565b8d8 100644 --- a/lib/Varien/Data/Form/Element/Radios.php +++ b/lib/Varien/Data/Form/Element/Radios.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Data - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Data/Form/Element/Renderer/Interface.php b/lib/Varien/Data/Form/Element/Renderer/Interface.php index 6c33bf48c67b83e5ff78e1a686783eaff3a5d60f..ac9aabd23f0dad3264bb5c6e6c14ced8c02f3069 100644 --- a/lib/Varien/Data/Form/Element/Renderer/Interface.php +++ b/lib/Varien/Data/Form/Element/Renderer/Interface.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Data - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Data/Form/Element/Reset.php b/lib/Varien/Data/Form/Element/Reset.php index a9cb7ecaa6dc97294574846f96d018ca9a82ebe0..782851ce25ad288c9d6ad386f0597df8560b84f7 100644 --- a/lib/Varien/Data/Form/Element/Reset.php +++ b/lib/Varien/Data/Form/Element/Reset.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Data - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Data/Form/Element/Select.php b/lib/Varien/Data/Form/Element/Select.php index 8967d866a25d709ca248223f9633d818e5ec0a93..f45b3161c112ab20213e13f79d5019be8e964368 100644 --- a/lib/Varien/Data/Form/Element/Select.php +++ b/lib/Varien/Data/Form/Element/Select.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Data - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Data/Form/Element/Submit.php b/lib/Varien/Data/Form/Element/Submit.php index f955266c9b91622511fe5180b5a27f46d966a785..da904170bb68cc6f28bb0b0aeeda8a2af75cebd1 100644 --- a/lib/Varien/Data/Form/Element/Submit.php +++ b/lib/Varien/Data/Form/Element/Submit.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Data - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Data/Form/Element/Text.php b/lib/Varien/Data/Form/Element/Text.php index 09cc50c7777f2b283bc243fa83df2123b550ef9a..3763ab891e3695b4fa7a9e1a1e61109c2ab0ee31 100644 --- a/lib/Varien/Data/Form/Element/Text.php +++ b/lib/Varien/Data/Form/Element/Text.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Data - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Data/Form/Element/Textarea.php b/lib/Varien/Data/Form/Element/Textarea.php index 54a988ff862508be50ac33e7543ec3d9cbc11c38..232ec0bf4503ae06d9d58b558538a121af530758 100644 --- a/lib/Varien/Data/Form/Element/Textarea.php +++ b/lib/Varien/Data/Form/Element/Textarea.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Data - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Data/Form/Element/Time.php b/lib/Varien/Data/Form/Element/Time.php index d4c1a57d006b5ee971d704bbb2b6465244ee75ea..358707c8220d1d91df8053d69bbb4b2ae26f1bfc 100644 --- a/lib/Varien/Data/Form/Element/Time.php +++ b/lib/Varien/Data/Form/Element/Time.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Data - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Data/Form/Factory.php b/lib/Varien/Data/Form/Factory.php index 70dcc3e2e69212383a104e46ea2ad3ca9aaaa3f7..3e8763c9e5df8abee63ad41588dd4873bf7c9baf 100644 --- a/lib/Varien/Data/Form/Factory.php +++ b/lib/Varien/Data/Form/Factory.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Data - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Data/Form/Filter/Date.php b/lib/Varien/Data/Form/Filter/Date.php index 5eb59cfbeb0262f38b3b2a905c3381bc20a61c05..2c63417faaffbae6cb6cdfce77c934877019ec43 100644 --- a/lib/Varien/Data/Form/Filter/Date.php +++ b/lib/Varien/Data/Form/Filter/Date.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Data - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Data/Form/Filter/Escapehtml.php b/lib/Varien/Data/Form/Filter/Escapehtml.php index dfeabaddc754105a715bbea08ccfdf77d176f736..a5d4b68d95ec016796eba5d9d618a9b1948485c9 100644 --- a/lib/Varien/Data/Form/Filter/Escapehtml.php +++ b/lib/Varien/Data/Form/Filter/Escapehtml.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Data - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Data/Form/Filter/Interface.php b/lib/Varien/Data/Form/Filter/Interface.php index a30ba3451861a785fee9746e0f39f5435944dcf6..0763633b488df2846b0a4fa926c94e9e71b46002 100644 --- a/lib/Varien/Data/Form/Filter/Interface.php +++ b/lib/Varien/Data/Form/Filter/Interface.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Data - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Data/Form/Filter/Striptags.php b/lib/Varien/Data/Form/Filter/Striptags.php index 0fe5de7dd97f34630c046de32cf2de5d60bec60a..a201370810b80d3bde80835461745837bb8af89d 100644 --- a/lib/Varien/Data/Form/Filter/Striptags.php +++ b/lib/Varien/Data/Form/Filter/Striptags.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Data - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Data/Tree.php b/lib/Varien/Data/Tree.php index 6d960ac002b9dabe1a7ed023908517ef5018aa04..19c462c33bbd2b90cdb9d1767ee7329e8150aaf3 100644 --- a/lib/Varien/Data/Tree.php +++ b/lib/Varien/Data/Tree.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Data - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Data/Tree/Db.php b/lib/Varien/Data/Tree/Db.php index 70e0491b5a02d1657cef2ffe3085427d2af5bce9..1a0c94997379cf3ab96895118800e8f65b06e972 100644 --- a/lib/Varien/Data/Tree/Db.php +++ b/lib/Varien/Data/Tree/Db.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Data - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Data/Tree/Dbp.php b/lib/Varien/Data/Tree/Dbp.php index 340c6579da4e5e0ea95494fbb64265c9ccb25f55..699551442600e42bdc4bf9dccadfeaf6e52c628d 100644 --- a/lib/Varien/Data/Tree/Dbp.php +++ b/lib/Varien/Data/Tree/Dbp.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Data - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Data/Tree/Node.php b/lib/Varien/Data/Tree/Node.php index d62c403fbdc5f7f4a327cc68492877cc63ca27ee..80405d3aed71433661573cb6d22372209186cd13 100644 --- a/lib/Varien/Data/Tree/Node.php +++ b/lib/Varien/Data/Tree/Node.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Data - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Data/Tree/Node/Collection.php b/lib/Varien/Data/Tree/Node/Collection.php index 38312333cf3696f7da2846e0847dbeee5d65a4f7..3db281ff51b429aefa44ce07c397180dcc7c07c7 100644 --- a/lib/Varien/Data/Tree/Node/Collection.php +++ b/lib/Varien/Data/Tree/Node/Collection.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Data - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Date.php b/lib/Varien/Date.php index 65e9b055ccc6cb28cfd08e06c027f299163ddd3e..c50d4214b2923b080eb8e78a8ad1aa3278b5ff25 100644 --- a/lib/Varien/Date.php +++ b/lib/Varien/Date.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Date - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Db/Adapter/Interface.php b/lib/Varien/Db/Adapter/Interface.php index 79ed3e12007d2a98018c90b5aa00f729ba8af939..27d49b18c2112dfa6c65633ee6e0440ae8589198 100644 --- a/lib/Varien/Db/Adapter/Interface.php +++ b/lib/Varien/Db/Adapter/Interface.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Db - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Db/Adapter/Mysqli.php b/lib/Varien/Db/Adapter/Mysqli.php index 5d65e01c573fd0ee097b4912f73fce036308e2f0..8c174bd7db416df41045626ea18041af64e6a148 100644 --- a/lib/Varien/Db/Adapter/Mysqli.php +++ b/lib/Varien/Db/Adapter/Mysqli.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Db - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Db/Adapter/Pdo/Mysql.php b/lib/Varien/Db/Adapter/Pdo/Mysql.php index ba09d85d4d90597ea678c2137f86f4379cdd7fa7..b2c45adad511a54a4809f04504bd87be2d745ecb 100644 --- a/lib/Varien/Db/Adapter/Pdo/Mysql.php +++ b/lib/Varien/Db/Adapter/Pdo/Mysql.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Varien_Db_Adapter_Pdo_Mysql extends Zend_Db_Adapter_Pdo_Mysql implements Varien_Db_Adapter_Interface diff --git a/lib/Varien/Db/Ddl/Table.php b/lib/Varien/Db/Ddl/Table.php index b5ebb841bb8af38132a1a5d54e67faefdcea8061..69d9c16d1e8e953691c2e62900a19b4f825a072b 100644 --- a/lib/Varien/Db/Ddl/Table.php +++ b/lib/Varien/Db/Ddl/Table.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Db - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Db/Exception.php b/lib/Varien/Db/Exception.php index f17971776b4615ea72d5f0aefc5f4b475f7b98d0..b2bf8362f87b1aa247d86c2681df7bbb5862bd71 100644 --- a/lib/Varien/Db/Exception.php +++ b/lib/Varien/Db/Exception.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Db - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Db/Helper.php b/lib/Varien/Db/Helper.php index 1130547f093b3250d05b4ed38d5118be9a762e72..31e1e97fe02efd92dee57df4e2b6c54c6a28052e 100644 --- a/lib/Varien/Db/Helper.php +++ b/lib/Varien/Db/Helper.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Db - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Db/Profiler.php b/lib/Varien/Db/Profiler.php index 0737dc14e21762839eb834e24daec284d0fee89c..83b9edf4377f88ed4d351f15d2aee7e54804abb3 100644 --- a/lib/Varien/Db/Profiler.php +++ b/lib/Varien/Db/Profiler.php @@ -20,7 +20,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Varien_Db_Profiler extends Zend_Db_Profiler diff --git a/lib/Varien/Db/Select.php b/lib/Varien/Db/Select.php index 861641785903f8cf3e1084f3ee2743d68930794b..578a13b0e945da2b2996b225deb6a59d2d1fd2db 100644 --- a/lib/Varien/Db/Select.php +++ b/lib/Varien/Db/Select.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Db - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Db/Statement/Parameter.php b/lib/Varien/Db/Statement/Parameter.php index 250122ce59671357f47b9d555e33217640ca56b3..581e62ae90ec8ff40afd9d263651711c1dad1a2b 100644 --- a/lib/Varien/Db/Statement/Parameter.php +++ b/lib/Varien/Db/Statement/Parameter.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Db - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Db/Statement/Pdo/Mysql.php b/lib/Varien/Db/Statement/Pdo/Mysql.php index 60554cf7cd2bd58e5ef861e756e48fbdf999716f..f62df29e3db879ec16795e202f15ea10007f0278 100644 --- a/lib/Varien/Db/Statement/Pdo/Mysql.php +++ b/lib/Varien/Db/Statement/Pdo/Mysql.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Db - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Db/Tree.php b/lib/Varien/Db/Tree.php index f7d8552179df66873c25052f8d6c0ebda2382e1e..c669e9d5e95d5afdf56c86764f7837fc04df3721 100644 --- a/lib/Varien/Db/Tree.php +++ b/lib/Varien/Db/Tree.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Db - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Db/Tree/Exception.php b/lib/Varien/Db/Tree/Exception.php index de52f52cf0fc3ff1d0c24e5ccd2183bbdd992daa..8e33506e6d20481c53ac5fe097a73aa3a8932886 100644 --- a/lib/Varien/Db/Tree/Exception.php +++ b/lib/Varien/Db/Tree/Exception.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Db - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Db/Tree/Node.php b/lib/Varien/Db/Tree/Node.php index 9a4180da43a90234e215575e9288673355bd5812..5b4a850fb9116ade71122e0b1587af037868eab7 100644 --- a/lib/Varien/Db/Tree/Node.php +++ b/lib/Varien/Db/Tree/Node.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Db - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Db/Tree/Node/Exception.php b/lib/Varien/Db/Tree/Node/Exception.php index c12b070ca526bce54a2be1a2ad9245fa733847bb..56a3816f4a3848f48d4d3c5f12c2deac0051ab6c 100644 --- a/lib/Varien/Db/Tree/Node/Exception.php +++ b/lib/Varien/Db/Tree/Node/Exception.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Db - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Db/Tree/NodeSet.php b/lib/Varien/Db/Tree/NodeSet.php index 23606388bbf42c98480b7cf31e3cf016753f67ea..a84dcf5282a4302655a566911245f6be625de31b 100644 --- a/lib/Varien/Db/Tree/NodeSet.php +++ b/lib/Varien/Db/Tree/NodeSet.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Db - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Db/Tree/NodeSet/Exception.php b/lib/Varien/Db/Tree/NodeSet/Exception.php index 18579ef71dd0a7fe86e78e954759c896c3f7809d..f8a7875c37a2a77caa87a7420cab552602d18c30 100644 --- a/lib/Varien/Db/Tree/NodeSet/Exception.php +++ b/lib/Varien/Db/Tree/NodeSet/Exception.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Db - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Debug.php b/lib/Varien/Debug.php index c5f19dea724db2816c4a8862cf668f38df824494..baf60b245ea6767d8f2d2e845eb60e038de4b890 100644 --- a/lib/Varien/Debug.php +++ b/lib/Varien/Debug.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Debug - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Directory/Collection.php b/lib/Varien/Directory/Collection.php index b240acf553a185c1b881f9f79f9aae99ab1399d3..a652f8b83863e2cc266eb360d5d9932fa47a16ae 100644 --- a/lib/Varien/Directory/Collection.php +++ b/lib/Varien/Directory/Collection.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Directory - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Directory/Factory.php b/lib/Varien/Directory/Factory.php index 4de9ffb628fbc10727c06542235b0e46b45b0212..ad3552257af6c762380e722d0643dd7312b23bb8 100644 --- a/lib/Varien/Directory/Factory.php +++ b/lib/Varien/Directory/Factory.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Directory - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Directory/IFactory.php b/lib/Varien/Directory/IFactory.php index 293a0589aa843dd6d3e8d9d205b147a4893563f9..748648912d47b97f04dd1d71a9ccc6cc2df62ba9 100644 --- a/lib/Varien/Directory/IFactory.php +++ b/lib/Varien/Directory/IFactory.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Directory - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Event.php b/lib/Varien/Event.php index e604158236aee0db212b714b7cfbced376c25de2..193b236c171bf04698fd4dd9d3b9ab8cbf07a57c 100644 --- a/lib/Varien/Event.php +++ b/lib/Varien/Event.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Event - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Event/Collection.php b/lib/Varien/Event/Collection.php index 9bfa7dfe099ba605de90517c979f17293de311aa..df5a1754b82c4c2684375efd194a14bc02f344a6 100644 --- a/lib/Varien/Event/Collection.php +++ b/lib/Varien/Event/Collection.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Event - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Event/Observer.php b/lib/Varien/Event/Observer.php index 2e90fec94eae93c7f55741480b174b4fa3032660..b37fc16af0064a8ced590480211160a4c332273a 100644 --- a/lib/Varien/Event/Observer.php +++ b/lib/Varien/Event/Observer.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Event - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Event/Observer/Collection.php b/lib/Varien/Event/Observer/Collection.php index 031d2d1470d396fbcc7956ee7fbe0ca1af5e581c..6067465d07daa2a783068e2a80bb1bfbd8504ed9 100644 --- a/lib/Varien/Event/Observer/Collection.php +++ b/lib/Varien/Event/Observer/Collection.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Event - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Event/Observer/Cron.php b/lib/Varien/Event/Observer/Cron.php index 7a5c028c71f9a8a047c2fb2264eb1bfde7e52e1a..c6e22a3df7ed4ec7bc7f39ab3eb6fa041be2483d 100644 --- a/lib/Varien/Event/Observer/Cron.php +++ b/lib/Varien/Event/Observer/Cron.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Event - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Event/Observer/Regex.php b/lib/Varien/Event/Observer/Regex.php index 068c25098cc88cc18b5b7d7cd0b0c6bcdceddd6d..e211e118b719d0ac377f8e3efc32cca3b498f6bb 100644 --- a/lib/Varien/Event/Observer/Regex.php +++ b/lib/Varien/Event/Observer/Regex.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Event - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Exception.php b/lib/Varien/Exception.php index e65885aa640c6f657fef49465ff515fb3ae0cd72..8da6b1a4b2d5233d0a7f2bd44d412663b074942f 100644 --- a/lib/Varien/Exception.php +++ b/lib/Varien/Exception.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Exception - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/File/Csv.php b/lib/Varien/File/Csv.php index 0fb2deffda8c5aa9be230ac06b8d75393018a7fd..8ee88eb4020fa53467c38d656e9af183ca62860c 100644 --- a/lib/Varien/File/Csv.php +++ b/lib/Varien/File/Csv.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_File - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/File/CsvMulty.php b/lib/Varien/File/CsvMulty.php index 4cb3e62b3de9d649c8a801e1beccceb9f85fdd7b..1f09448a0e610f2d4e277aa6c66f095c7320fc2e 100644 --- a/lib/Varien/File/CsvMulty.php +++ b/lib/Varien/File/CsvMulty.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_File - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/File/Object.php b/lib/Varien/File/Object.php index c06cdf5f4d75cacb7b28040b9a2599772a467ebf..d42364c8b2e885f59675b69ea2b2230434fc0334 100644 --- a/lib/Varien/File/Object.php +++ b/lib/Varien/File/Object.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_File - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/File/Transfer/Adapter/Http.php b/lib/Varien/File/Transfer/Adapter/Http.php index 200559a670268bb766b7bc1a19effe6c3d9e1f7c..d72b1ac0d4274b2a201a0f2fb6e015d30420ec5a 100644 --- a/lib/Varien/File/Transfer/Adapter/Http.php +++ b/lib/Varien/File/Transfer/Adapter/Http.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_File - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/File/Uploader.php b/lib/Varien/File/Uploader.php index 17119d9fbcb26bfd845a8531224f3ebaf81c966a..b93661a51bb03e071058aa132c3037067fa99ee2 100644 --- a/lib/Varien/File/Uploader.php +++ b/lib/Varien/File/Uploader.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_File - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Filter/Array.php b/lib/Varien/Filter/Array.php index 71eecd38fcd984e48f09f2ed972b84df387ca6e2..59e79148ddb29f24c790f98cc94c866f665b1517 100644 --- a/lib/Varien/Filter/Array.php +++ b/lib/Varien/Filter/Array.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Filter - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Filter/Array/Grid.php b/lib/Varien/Filter/Array/Grid.php index a832ad155975bd76fe294a31007d2129ef4c5ce2..88054da76bba885ac3b37ec38bff4e4e9fdcad74 100644 --- a/lib/Varien/Filter/Array/Grid.php +++ b/lib/Varien/Filter/Array/Grid.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Filter - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Filter/Email.php b/lib/Varien/Filter/Email.php index 88bd629378d5a96332ebfa9a86aeb03867dc390c..f12c387ee81310e38b2e8628d3485104b57cef45 100644 --- a/lib/Varien/Filter/Email.php +++ b/lib/Varien/Filter/Email.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Filter - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Filter/Money.php b/lib/Varien/Filter/Money.php index 9359224f7997ba966c462122f7a8761fc5e2fd34..4f6c425910d1095b19e4fff6c2f7c471f941fa85 100644 --- a/lib/Varien/Filter/Money.php +++ b/lib/Varien/Filter/Money.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Filter - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Filter/Object.php b/lib/Varien/Filter/Object.php index 9bafee03e232311e840e7ee15d1be3956723c1be..3d7267c836eefad0b7907cd13dc27b052b9c3448 100644 --- a/lib/Varien/Filter/Object.php +++ b/lib/Varien/Filter/Object.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Filter - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Filter/Object/Grid.php b/lib/Varien/Filter/Object/Grid.php index 90d096ecf420a612811d192a207d433ea3786940..7b5af92a77956436d5cfca8b9bae13247e1e7005 100644 --- a/lib/Varien/Filter/Object/Grid.php +++ b/lib/Varien/Filter/Object/Grid.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Filter - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Filter/Sprintf.php b/lib/Varien/Filter/Sprintf.php index 9f04b2fff4fbe74d8826cab55823a7debd5910a2..785da5888feec6e25eb0d0eb70c8269600e8c610 100644 --- a/lib/Varien/Filter/Sprintf.php +++ b/lib/Varien/Filter/Sprintf.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Filter - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Filter/Template.php b/lib/Varien/Filter/Template.php index 36afea1d09e86aa96aba1df18451ba671a805331..67e66c1753674a8849aa4e3d40cddfad017dbf0d 100644 --- a/lib/Varien/Filter/Template.php +++ b/lib/Varien/Filter/Template.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Filter - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Filter/Template/Simple.php b/lib/Varien/Filter/Template/Simple.php index 69d596083639be922f42a3bd550474c8eea315e3..15e570854315e2bd528c789514e5c6619bdc8b68 100644 --- a/lib/Varien/Filter/Template/Simple.php +++ b/lib/Varien/Filter/Template/Simple.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Filter - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Filter/Template/Tokenizer/Abstract.php b/lib/Varien/Filter/Template/Tokenizer/Abstract.php index 4d06aa5b83681b109c239e95e32ace8edff60a38..58c5eb3ef46ce8b2d77408ada7b7cd4315bc23b7 100644 --- a/lib/Varien/Filter/Template/Tokenizer/Abstract.php +++ b/lib/Varien/Filter/Template/Tokenizer/Abstract.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Filter - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Filter/Template/Tokenizer/Parameter.php b/lib/Varien/Filter/Template/Tokenizer/Parameter.php index c54b6d33783c81c616d557e2362b5c78e4ee7f63..8e5a796c7313761aef34c9a51de1a5ef1ba54df9 100644 --- a/lib/Varien/Filter/Template/Tokenizer/Parameter.php +++ b/lib/Varien/Filter/Template/Tokenizer/Parameter.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Filter - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Filter/Template/Tokenizer/Variable.php b/lib/Varien/Filter/Template/Tokenizer/Variable.php index 76da96756becf4a53649106235a8f2dd63e80a3d..c6165c912f157fee5923b40d04f3cafc678731f1 100644 --- a/lib/Varien/Filter/Template/Tokenizer/Variable.php +++ b/lib/Varien/Filter/Template/Tokenizer/Variable.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Filter - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Gdata/Gshopping/Content.php b/lib/Varien/Gdata/Gshopping/Content.php index 7b14341a7726793385da735b9c0188a850f047b4..c780b2271a5222c0935169ddf951d8c52fa7b557 100644 --- a/lib/Varien/Gdata/Gshopping/Content.php +++ b/lib/Varien/Gdata/Gshopping/Content.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Gdata - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Gdata/Gshopping/Entry.php b/lib/Varien/Gdata/Gshopping/Entry.php index 9d585758667d427464412495e7c5737dabcfc94e..4986eb4ad06136a6436e4048cd25a8517406a575 100644 --- a/lib/Varien/Gdata/Gshopping/Entry.php +++ b/lib/Varien/Gdata/Gshopping/Entry.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Gdata - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Gdata/Gshopping/Extension/Attribute.php b/lib/Varien/Gdata/Gshopping/Extension/Attribute.php index 1cb5cbdf7e9ad9096c99ddec945f69ed4ef2e087..e70ac72676d363c1dc36563e13ce98801c921fb5 100644 --- a/lib/Varien/Gdata/Gshopping/Extension/Attribute.php +++ b/lib/Varien/Gdata/Gshopping/Extension/Attribute.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Gdata - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Gdata/Gshopping/Extension/Control.php b/lib/Varien/Gdata/Gshopping/Extension/Control.php index 8f40401101c493a58374f9b00770f8b102544713..46ea382093ec75b5ba3887b1a54a7750944d461d 100644 --- a/lib/Varien/Gdata/Gshopping/Extension/Control.php +++ b/lib/Varien/Gdata/Gshopping/Extension/Control.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Gdata - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Gdata/Gshopping/Extension/Shipping.php b/lib/Varien/Gdata/Gshopping/Extension/Shipping.php index 8b9474b5032b1433c1a496a297f7b1cb887b2216..4ade0306c25c7cedbad44f56388fa662d47f8aa8 100644 --- a/lib/Varien/Gdata/Gshopping/Extension/Shipping.php +++ b/lib/Varien/Gdata/Gshopping/Extension/Shipping.php @@ -21,7 +21,7 @@ * * @category Varien * @package Varien_Gdata - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Gdata/Gshopping/Extension/Tax.php b/lib/Varien/Gdata/Gshopping/Extension/Tax.php index 593b2a30129d1ea394b4beb6801e93d6ca5934e3..28905fa09d0efa7aa87c9cad729480a1209425dd 100644 --- a/lib/Varien/Gdata/Gshopping/Extension/Tax.php +++ b/lib/Varien/Gdata/Gshopping/Extension/Tax.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Gdata - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Gdata/Gshopping/HttpException.php b/lib/Varien/Gdata/Gshopping/HttpException.php index 6f2642b26eaef51dbba9b7ad1e86cd594ee11961..92ea46dc99bc88581f7cdf1513212b3dfbc29476 100644 --- a/lib/Varien/Gdata/Gshopping/HttpException.php +++ b/lib/Varien/Gdata/Gshopping/HttpException.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Gdata - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Gdata/Gshopping/ItemQuery.php b/lib/Varien/Gdata/Gshopping/ItemQuery.php index d3f8c5340b12d6d6e4e71f54787d2424c5c5c6df..6911519a17b73d9e0b20aaf1fedf7f03ac7557e7 100644 --- a/lib/Varien/Gdata/Gshopping/ItemQuery.php +++ b/lib/Varien/Gdata/Gshopping/ItemQuery.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Gdata - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Http/Adapter/Curl.php b/lib/Varien/Http/Adapter/Curl.php index 374bc95b30a801b6769d361114f186c7d92c12cd..afb0feabb494db7d3c3b5260db1a40571f2bcc82 100644 --- a/lib/Varien/Http/Adapter/Curl.php +++ b/lib/Varien/Http/Adapter/Curl.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Http - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Http/Client.php b/lib/Varien/Http/Client.php index e46a462efd2cf7d59256830ba10095cb2a96e049..73e270af4ef6a48b7abece3990a0bbbf5462c41f 100644 --- a/lib/Varien/Http/Client.php +++ b/lib/Varien/Http/Client.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Http - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Image.php b/lib/Varien/Image.php index f7dca9234bdd5d373384e42c7462cc0b87003469..3fd5ff94ea06f45686e454f7a86128695bd96496 100644 --- a/lib/Varien/Image.php +++ b/lib/Varien/Image.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Image - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Image/Adapter.php b/lib/Varien/Image/Adapter.php index a483fb19b16813cc604764f3f1c0794cf336c8ff..dfb5243ee271674e9d52060bb1703fdfc2513c20 100644 --- a/lib/Varien/Image/Adapter.php +++ b/lib/Varien/Image/Adapter.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Image - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Image/Adapter/Abstract.php b/lib/Varien/Image/Adapter/Abstract.php index a16b690e9541f486fbd7484f79331210c8776156..a7ccc855de898468c45ef6ccd28dbb0c784ad114 100644 --- a/lib/Varien/Image/Adapter/Abstract.php +++ b/lib/Varien/Image/Adapter/Abstract.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Image - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Image/Adapter/Gd2.php b/lib/Varien/Image/Adapter/Gd2.php index d77e2f3a213a598b1e1375bae2cead97014c8d1f..9a91a5d5bd7cab0c4e90cea30cae4a54d77890d4 100644 --- a/lib/Varien/Image/Adapter/Gd2.php +++ b/lib/Varien/Image/Adapter/Gd2.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Image - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Image/Adapter/ImageMagick.php b/lib/Varien/Image/Adapter/ImageMagick.php index ee3b418b8d19bc88de4c419772846e88be109071..2b70c52007017c2903d3c5dfee7abe072fa1afd5 100644 --- a/lib/Varien/Image/Adapter/ImageMagick.php +++ b/lib/Varien/Image/Adapter/ImageMagick.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Image - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Io/Abstract.php b/lib/Varien/Io/Abstract.php index 40ae01f002e421a416fd88d32f575d0fd4d207d0..fe20958538ddf29617d93ff090a7ff11e526b57c 100644 --- a/lib/Varien/Io/Abstract.php +++ b/lib/Varien/Io/Abstract.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Io - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Io/Exception.php b/lib/Varien/Io/Exception.php index 0d3f646ef61d2f6a99cfd626beb0a9db9159936e..d2eca0ef8c975bace21c8bc4735a98c13c8e6376 100644 --- a/lib/Varien/Io/Exception.php +++ b/lib/Varien/Io/Exception.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Convert - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Io/File.php b/lib/Varien/Io/File.php index d911dc23560255eebf4dd385ceac2f21252e168c..d0c1ee1d79c6e90611ca0762e53296fcfc4d0e0e 100644 --- a/lib/Varien/Io/File.php +++ b/lib/Varien/Io/File.php @@ -18,7 +18,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Io/Ftp.php b/lib/Varien/Io/Ftp.php index d72147c739aa68a5008f1660189a4bac25ae6043..01f1acd15f1929db5188a33f2298aefe499fcaae 100644 --- a/lib/Varien/Io/Ftp.php +++ b/lib/Varien/Io/Ftp.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Io - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Io/Interface.php b/lib/Varien/Io/Interface.php index 9a4798ec3af848806a187d6012a4adc5eff05916..2653dcafa4657b5d2da50a53709c141faa6b22b0 100644 --- a/lib/Varien/Io/Interface.php +++ b/lib/Varien/Io/Interface.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Io - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Io/Sftp.php b/lib/Varien/Io/Sftp.php index ac88529c6dc50d3f87a3c01944cd5c7bde26c649..58c6625ad469920e7567a9f42d86153d1e973c8e 100644 --- a/lib/Varien/Io/Sftp.php +++ b/lib/Varien/Io/Sftp.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Io - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Object.php b/lib/Varien/Object.php index a856daac01f174b24a3bb495310f4c92e7d49fe5..e3695af3c6e1d6208e572ef0226a6d255fc39114 100644 --- a/lib/Varien/Object.php +++ b/lib/Varien/Object.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Object - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Object/Cache.php b/lib/Varien/Object/Cache.php index cb673e7d1b43b180f7102d42c3c2e03d5217b6b6..8fdee1d5a36e35a2d6b2566e567d0727fbe3b785 100644 --- a/lib/Varien/Object/Cache.php +++ b/lib/Varien/Object/Cache.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Object - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Object/Factory.php b/lib/Varien/Object/Factory.php index 16466c4d07460a079addf930be7cff4233bcf474..684d3d672f70cddaa7a2545ca4a72cd03d7e6c6a 100644 --- a/lib/Varien/Object/Factory.php +++ b/lib/Varien/Object/Factory.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Object - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Object/Mapper.php b/lib/Varien/Object/Mapper.php index a875a44db240d1d5531a42c34df4e92da5c1a2ee..2620bfcc63ebf721341a55d2a06aec3d424e9d6d 100644 --- a/lib/Varien/Object/Mapper.php +++ b/lib/Varien/Object/Mapper.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Object - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Pear.php b/lib/Varien/Pear.php index 576496201aa0ce348944d9131563d2a3c003946e..6783da4ebd6d22468323b8fca2addb2d19240075 100644 --- a/lib/Varien/Pear.php +++ b/lib/Varien/Pear.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Pear - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Pear/Frontend.php b/lib/Varien/Pear/Frontend.php index 595521b481c8d2271000dfbd73cb4942ecbe1cf8..22c1fbbe4ec537bbdaea6722b7fce1a0b8bdc981 100644 --- a/lib/Varien/Pear/Frontend.php +++ b/lib/Varien/Pear/Frontend.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Pear - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Pear/Package.php b/lib/Varien/Pear/Package.php index deca97c8c880159fe19e2394c471c33d966292b4..ab7b6387bb52306aa8adac7a2c5952b922150b7b 100644 --- a/lib/Varien/Pear/Package.php +++ b/lib/Varien/Pear/Package.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Pear - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Pear/Registry.php b/lib/Varien/Pear/Registry.php index 1b96370ac838b1acfdb15f6de097300ea2378b92..95fcaf72d829fce0d475c8c7b2b5d541711e7086 100644 --- a/lib/Varien/Pear/Registry.php +++ b/lib/Varien/Pear/Registry.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Pear - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Simplexml/Config.php b/lib/Varien/Simplexml/Config.php index de686a83528414e6f265e62940da4274ff3c4f25..173a9eabac7a854e10253106b40744b9f7c02db9 100644 --- a/lib/Varien/Simplexml/Config.php +++ b/lib/Varien/Simplexml/Config.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Simplexml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Simplexml/Config/Cache/Abstract.php b/lib/Varien/Simplexml/Config/Cache/Abstract.php index 7e36140366495a799cd79c126ac76642eb6c9975..cc7a782f11bb8a885b8211727fdd6c629c2648dc 100644 --- a/lib/Varien/Simplexml/Config/Cache/Abstract.php +++ b/lib/Varien/Simplexml/Config/Cache/Abstract.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Simplexml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Simplexml/Config/Cache/File.php b/lib/Varien/Simplexml/Config/Cache/File.php index 8aacc989e0fece99ee5eac44e1c5ee256bb35e6e..eb9f3479a1a0acf319f18a8987081ffb36b89afd 100644 --- a/lib/Varien/Simplexml/Config/Cache/File.php +++ b/lib/Varien/Simplexml/Config/Cache/File.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Simplexml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Simplexml/Element.php b/lib/Varien/Simplexml/Element.php index 81ff2dadfb6c0a9291e0b8f0134723f3bd1ab459..09cd1be25ff8084f2eab6aaf3aae1db5757da660 100644 --- a/lib/Varien/Simplexml/Element.php +++ b/lib/Varien/Simplexml/Element.php @@ -20,7 +20,7 @@ * * @category Varien * @package Varien_Simplexml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/flex/uploader/uploader.mxml b/lib/flex/uploader/uploader.mxml index 617266831b3cca0d730329c0a3793041ec322b48..7185a3b12724a2134c419a17fb71f07d05c2b114 100644 --- a/lib/flex/uploader/uploader.mxml +++ b/lib/flex/uploader/uploader.mxml @@ -19,7 +19,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/lib/flex/uploader/uploaderSingle.mxml b/lib/flex/uploader/uploaderSingle.mxml index 56a92daf0373296b266973d0ef5ffba38dcb2705..1485e85c3b95a4c50597f6b999134a2c4df649cd 100644 --- a/lib/flex/uploader/uploaderSingle.mxml +++ b/lib/flex/uploader/uploaderSingle.mxml @@ -19,7 +19,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/lib/flex/varien/varien/upload/Uploader.as b/lib/flex/varien/varien/upload/Uploader.as index a02086d3c8440d525437ecf71247b4b55a7e29ba..d6b8707c60f570b72acf337d7a9c4774cc19c466 100644 --- a/lib/flex/varien/varien/upload/Uploader.as +++ b/lib/flex/varien/varien/upload/Uploader.as @@ -17,7 +17,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ package varien.upload diff --git a/lib/flex/varien/varien/upload/UploaderEvent.as b/lib/flex/varien/varien/upload/UploaderEvent.as index e82b35a51e8b980f6c6eba2ef74ffd335b96d6c1..7801cd9e0a872137664baae9afd37e4ead9a26b4 100644 --- a/lib/flex/varien/varien/upload/UploaderEvent.as +++ b/lib/flex/varien/varien/upload/UploaderEvent.as @@ -17,7 +17,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ package varien.upload diff --git a/lib/flex/varien/varien/upload/UploaderSingle.as b/lib/flex/varien/varien/upload/UploaderSingle.as index 14c6e119ce8ec7060bc16fbf59c0962368b9a7a9..f98803b236ff2b157a32b6b444a3aedf0820efeb 100644 --- a/lib/flex/varien/varien/upload/UploaderSingle.as +++ b/lib/flex/varien/varien/upload/UploaderSingle.as @@ -17,7 +17,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ package varien.upload diff --git a/pub/cron.php b/pub/cron.php index a99adc0a99ac47fc0489f1fc329d7b05b46035a7..104b7fdd88ea681d8615f099a8266d34cf7ca92c 100644 --- a/pub/cron.php +++ b/pub/cron.php @@ -1,5 +1,7 @@ <?php /** + * Scheduled jobs entry point + * * Magento * * NOTICE OF LICENSE @@ -20,27 +22,18 @@ * * @category Mage * @package Mage - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ require dirname(__DIR__) . '/app/bootstrap.php'; -if (!Mage::isInstalled()) { - echo "Application is not installed yet, please complete install wizard first."; - exit; -} - -// Only for urls -// Don't remove this -$_SERVER['SCRIPT_NAME'] = str_replace(basename(__FILE__), 'index.php', $_SERVER['SCRIPT_NAME']); -$_SERVER['SCRIPT_FILENAME'] = str_replace(basename(__FILE__), 'index.php', $_SERVER['SCRIPT_FILENAME']); - -Mage::app('admin')->setUseSessionInUrl(false); - +Mage::register('custom_entry_point', true); umask(0); try { + Mage::app('admin')->setUseSessionInUrl(false); + Mage::app()->requireInstalledInstance(); Mage::getConfig()->init()->loadEventObservers('crontab'); Mage::app()->addEventArea('crontab'); Mage::dispatchEvent('default'); diff --git a/pub/errors/404.php b/pub/errors/404.php index 360e33d71ede07be50244e703ed73b7e050888f9..6f42534fbb2e5b0768572eb8c69630da0f1e0e3d 100644 --- a/pub/errors/404.php +++ b/pub/errors/404.php @@ -20,7 +20,7 @@ * * @category Mage * @package Errors - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/pub/errors/503.php b/pub/errors/503.php index e2752c35690617a5e05be40cfd464945e4316068..0567be05822f249d093d4ee2316089d6713be8e6 100644 --- a/pub/errors/503.php +++ b/pub/errors/503.php @@ -20,7 +20,7 @@ * * @category Mage * @package Errors - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/pub/errors/default/404.phtml b/pub/errors/default/404.phtml index 0d8a19de198f09240302de6df4aa6411fb02e812..d0d3a23dd2d6d6ae0301ce52366ec8dc5615605f 100644 --- a/pub/errors/default/404.phtml +++ b/pub/errors/default/404.phtml @@ -20,7 +20,7 @@ * * @category Mage * @package Errors - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/pub/errors/default/503.phtml b/pub/errors/default/503.phtml index 74080999b9605adcc1a4a9735981b91aeccf400f..4da73ee46c4dbed6b521c96ebd58fab44608357f 100644 --- a/pub/errors/default/503.phtml +++ b/pub/errors/default/503.phtml @@ -20,7 +20,7 @@ * * @category Mage * @package Errors - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/pub/errors/default/css/styles.css b/pub/errors/default/css/styles.css index 9be4f5e83d11a1ca263fd09387ed7a59d0c4816c..82b1fa45ff0903c3eb2474a0e12d4a1b17aac363 100644 --- a/pub/errors/default/css/styles.css +++ b/pub/errors/default/css/styles.css @@ -19,7 +19,7 @@ * * @category Mage * @package Errors - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /* Reset ================================================================================= */ diff --git a/pub/errors/default/page.phtml b/pub/errors/default/page.phtml index a0a587e5551d250a37fa334775c9a440574a8759..cdb5fbf4a4ba4d1316b487fa425b04ea8c96f672 100644 --- a/pub/errors/default/page.phtml +++ b/pub/errors/default/page.phtml @@ -20,7 +20,7 @@ * * @category Mage * @package Errors - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/pub/errors/default/report.phtml b/pub/errors/default/report.phtml index ddf6d903e84e1104e35aeca7fa2e62d944036cae..8e2bfeabd8d982f7d054902a35cf2b53bc99c569 100644 --- a/pub/errors/default/report.phtml +++ b/pub/errors/default/report.phtml @@ -20,7 +20,7 @@ * * @category Mage * @package Errors - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> diff --git a/pub/errors/design.xml b/pub/errors/design.xml index 816db71b0f768fd7c6be12b5fc2ad04ca21f961d..1289c57f2c73b31870c4eba47d6f074432388fe9 100644 --- a/pub/errors/design.xml +++ b/pub/errors/design.xml @@ -21,7 +21,7 @@ * * @category Mage * @package Errors - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/pub/errors/local.xml.sample b/pub/errors/local.xml.sample index 1671ab0a2797459dba0db53e150f4280bb515ca9..4cfed1e5c745895f235aae97b129c7086e3509bf 100644 --- a/pub/errors/local.xml.sample +++ b/pub/errors/local.xml.sample @@ -21,7 +21,7 @@ * * @category Mage * @package Errors - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ --> diff --git a/pub/errors/processor.php b/pub/errors/processor.php index d8b0f89637ee7a91b29f57c8ba0d413529b2c423..95e34426517e80f048eb59f7464ae3aeaffa4ebb 100644 --- a/pub/errors/processor.php +++ b/pub/errors/processor.php @@ -20,7 +20,7 @@ * * @category Mage * @package Errors - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/pub/errors/report.php b/pub/errors/report.php index 17c906547d1884bf2b1e3b36e0a0c2e687229f9c..b706d8db273ad4bd95035789ba20d728f6a1a427 100644 --- a/pub/errors/report.php +++ b/pub/errors/report.php @@ -20,7 +20,7 @@ * * @category Mage * @package Errors - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/pub/get.php b/pub/get.php index 22d5469a74487b337e7af5f32789973016f6d067..2e2c763d1fbf18ed1ccaec05c45e6c7c1f8fddbe 100644 --- a/pub/get.php +++ b/pub/get.php @@ -1,6 +1,7 @@ <?php - /** + * Public media files entry point + * * Magento * * NOTICE OF LICENSE @@ -21,10 +22,11 @@ * * @category Mage * @package Mage - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ -require_once '../app/bootstrap.php'; + +require_once __DIR__ . '/../app/bootstrap.php'; $varDirectory = BP . DS . Mage_Core_Model_Config_Options::VAR_DIRECTORY; $publicDirectory = BP . DS . Mage_Core_Model_Config_Options::PUB_DIRECTORY; @@ -59,22 +61,14 @@ if ($mediaDirectory) { sendFile($filePath); } -/* Store or website code */ -$mageRunCode = isset($_SERVER['MAGE_RUN_CODE']) ? $_SERVER['MAGE_RUN_CODE'] : ''; - -/* Run store or run website */ -$mageRunType = isset($_SERVER['MAGE_RUN_TYPE']) ? $_SERVER['MAGE_RUN_TYPE'] : 'store'; - +$appOptions = new Mage_Core_Model_App_Options($_SERVER); if (empty($mediaDirectory)) { - Mage::init($mageRunCode, $mageRunType); + Mage::init($appOptions->getRunCode(), $appOptions->getRunType(), $appOptions->getRunOptions()); } else { - Mage::init( - $mageRunCode, - $mageRunType, - array('cache' => array('disallow_save' => true)), - array('Mage_Core') - ); + $appRunOptions = array_merge($appOptions->getRunOptions(), array('cache' => array('disallow_save' => true))); + Mage::init($appOptions->getRunCode(), $appOptions->getRunType(), $appRunOptions, array('Mage_Core')); } +Mage::app()->requireInstalledInstance(); if (!$mediaDirectory) { $config = Mage_Core_Model_File_Storage::getScriptConfig(); diff --git a/pub/index.php b/pub/index.php index 0a58c6f2a5fb72938bf0cab6c88a76b1b3c5bec6..64099054a49a596545fac937519eeaa5548518c9 100644 --- a/pub/index.php +++ b/pub/index.php @@ -1,5 +1,7 @@ <?php /** + * Public alias for the application entry point + * * Magento * * NOTICE OF LICENSE @@ -20,20 +22,8 @@ * * @category Mage * @package Mage - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ -require_once '../app/bootstrap.php'; - -/* Store or website code */ -$mageRunCode = isset($_SERVER['MAGE_RUN_CODE']) ? $_SERVER['MAGE_RUN_CODE'] : ''; -/* Run store or run website */ -$mageRunType = isset($_SERVER['MAGE_RUN_TYPE']) ? $_SERVER['MAGE_RUN_TYPE'] : 'store'; -/* Additional local.xml file from environment variable */ -$options = array(); -if (!empty($_SERVER['MAGE_LOCAL_CONFIG'])) { - $options['local_config'] = $_SERVER['MAGE_LOCAL_CONFIG']; -} - -Mage::run($mageRunCode, $mageRunType, $options); +require __DIR__ . '/../index.php'; diff --git a/pub/lib/jquery/jquery-1.7.1.min.js b/pub/lib/jquery/jquery-1.7.1.min.js deleted file mode 100644 index 198b3ff07d801dffa2c42fcf3b67eb3295eef85f..0000000000000000000000000000000000000000 --- a/pub/lib/jquery/jquery-1.7.1.min.js +++ /dev/null @@ -1,4 +0,0 @@ -/*! jQuery v1.7.1 jquery.com | jquery.org/license */ -(function(a,b){function cy(a){return f.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}function cv(a){if(!ck[a]){var b=c.body,d=f("<"+a+">").appendTo(b),e=d.css("display");d.remove();if(e==="none"||e===""){cl||(cl=c.createElement("iframe"),cl.frameBorder=cl.width=cl.height=0),b.appendChild(cl);if(!cm||!cl.createElement)cm=(cl.contentWindow||cl.contentDocument).document,cm.write((c.compatMode==="CSS1Compat"?"<!doctype html>":"")+"<html><body>"),cm.close();d=cm.createElement(a),cm.body.appendChild(d),e=f.css(d,"display"),b.removeChild(cl)}ck[a]=e}return ck[a]}function cu(a,b){var c={};f.each(cq.concat.apply([],cq.slice(0,b)),function(){c[this]=a});return c}function ct(){cr=b}function cs(){setTimeout(ct,0);return cr=f.now()}function cj(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function ci(){try{return new a.XMLHttpRequest}catch(b){}}function cc(a,c){a.dataFilter&&(c=a.dataFilter(c,a.dataType));var d=a.dataTypes,e={},g,h,i=d.length,j,k=d[0],l,m,n,o,p;for(g=1;g<i;g++){if(g===1)for(h in a.converters)typeof h=="string"&&(e[h.toLowerCase()]=a.converters[h]);l=k,k=d[g];if(k==="*")k=l;else if(l!=="*"&&l!==k){m=l+" "+k,n=e[m]||e["* "+k];if(!n){p=b;for(o in e){j=o.split(" ");if(j[0]===l||j[0]==="*"){p=e[j[1]+" "+k];if(p){o=e[o],o===!0?n=p:p===!0&&(n=o);break}}}}!n&&!p&&f.error("No conversion from "+m.replace(" "," to ")),n!==!0&&(c=n?n(c):p(o(c)))}}return c}function cb(a,c,d){var e=a.contents,f=a.dataTypes,g=a.responseFields,h,i,j,k;for(i in g)i in d&&(c[g[i]]=d[i]);while(f[0]==="*")f.shift(),h===b&&(h=a.mimeType||c.getResponseHeader("content-type"));if(h)for(i in e)if(e[i]&&e[i].test(h)){f.unshift(i);break}if(f[0]in d)j=f[0];else{for(i in d){if(!f[0]||a.converters[i+" "+f[0]]){j=i;break}k||(k=i)}j=j||k}if(j){j!==f[0]&&f.unshift(j);return d[j]}}function ca(a,b,c,d){if(f.isArray(b))f.each(b,function(b,e){c||bE.test(a)?d(a,e):ca(a+"["+(typeof e=="object"||f.isArray(e)?b:"")+"]",e,c,d)});else if(!c&&b!=null&&typeof b=="object")for(var e in b)ca(a+"["+e+"]",b[e],c,d);else d(a,b)}function b_(a,c){var d,e,g=f.ajaxSettings.flatOptions||{};for(d in c)c[d]!==b&&((g[d]?a:e||(e={}))[d]=c[d]);e&&f.extend(!0,a,e)}function b$(a,c,d,e,f,g){f=f||c.dataTypes[0],g=g||{},g[f]=!0;var h=a[f],i=0,j=h?h.length:0,k=a===bT,l;for(;i<j&&(k||!l);i++)l=h[i](c,d,e),typeof l=="string"&&(!k||g[l]?l=b:(c.dataTypes.unshift(l),l=b$(a,c,d,e,l,g)));(k||!l)&&!g["*"]&&(l=b$(a,c,d,e,"*",g));return l}function bZ(a){return function(b,c){typeof b!="string"&&(c=b,b="*");if(f.isFunction(c)){var d=b.toLowerCase().split(bP),e=0,g=d.length,h,i,j;for(;e<g;e++)h=d[e],j=/^\+/.test(h),j&&(h=h.substr(1)||"*"),i=a[h]=a[h]||[],i[j?"unshift":"push"](c)}}}function bC(a,b,c){var d=b==="width"?a.offsetWidth:a.offsetHeight,e=b==="width"?bx:by,g=0,h=e.length;if(d>0){if(c!=="border")for(;g<h;g++)c||(d-=parseFloat(f.css(a,"padding"+e[g]))||0),c==="margin"?d+=parseFloat(f.css(a,c+e[g]))||0:d-=parseFloat(f.css(a,"border"+e[g]+"Width"))||0;return d+"px"}d=bz(a,b,b);if(d<0||d==null)d=a.style[b]||0;d=parseFloat(d)||0;if(c)for(;g<h;g++)d+=parseFloat(f.css(a,"padding"+e[g]))||0,c!=="padding"&&(d+=parseFloat(f.css(a,"border"+e[g]+"Width"))||0),c==="margin"&&(d+=parseFloat(f.css(a,c+e[g]))||0);return d+"px"}function bp(a,b){b.src?f.ajax({url:b.src,async:!1,dataType:"script"}):f.globalEval((b.text||b.textContent||b.innerHTML||"").replace(bf,"/*$0*/")),b.parentNode&&b.parentNode.removeChild(b)}function bo(a){var b=c.createElement("div");bh.appendChild(b),b.innerHTML=a.outerHTML;return b.firstChild}function bn(a){var b=(a.nodeName||"").toLowerCase();b==="input"?bm(a):b!=="script"&&typeof a.getElementsByTagName!="undefined"&&f.grep(a.getElementsByTagName("input"),bm)}function bm(a){if(a.type==="checkbox"||a.type==="radio")a.defaultChecked=a.checked}function bl(a){return typeof a.getElementsByTagName!="undefined"?a.getElementsByTagName("*"):typeof a.querySelectorAll!="undefined"?a.querySelectorAll("*"):[]}function bk(a,b){var c;if(b.nodeType===1){b.clearAttributes&&b.clearAttributes(),b.mergeAttributes&&b.mergeAttributes(a),c=b.nodeName.toLowerCase();if(c==="object")b.outerHTML=a.outerHTML;else if(c!=="input"||a.type!=="checkbox"&&a.type!=="radio"){if(c==="option")b.selected=a.defaultSelected;else if(c==="input"||c==="textarea")b.defaultValue=a.defaultValue}else a.checked&&(b.defaultChecked=b.checked=a.checked),b.value!==a.value&&(b.value=a.value);b.removeAttribute(f.expando)}}function bj(a,b){if(b.nodeType===1&&!!f.hasData(a)){var c,d,e,g=f._data(a),h=f._data(b,g),i=g.events;if(i){delete h.handle,h.events={};for(c in i)for(d=0,e=i[c].length;d<e;d++)f.event.add(b,c+(i[c][d].namespace?".":"")+i[c][d].namespace,i[c][d],i[c][d].data)}h.data&&(h.data=f.extend({},h.data))}}function bi(a,b){return f.nodeName(a,"table")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function U(a){var b=V.split("|"),c=a.createDocumentFragment();if(c.createElement)while(b.length)c.createElement(b.pop());return c}function T(a,b,c){b=b||0;if(f.isFunction(b))return f.grep(a,function(a,d){var e=!!b.call(a,d,a);return e===c});if(b.nodeType)return f.grep(a,function(a,d){return a===b===c});if(typeof b=="string"){var d=f.grep(a,function(a){return a.nodeType===1});if(O.test(b))return f.filter(b,d,!c);b=f.filter(b,d)}return f.grep(a,function(a,d){return f.inArray(a,b)>=0===c})}function S(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function K(){return!0}function J(){return!1}function n(a,b,c){var d=b+"defer",e=b+"queue",g=b+"mark",h=f._data(a,d);h&&(c==="queue"||!f._data(a,e))&&(c==="mark"||!f._data(a,g))&&setTimeout(function(){!f._data(a,e)&&!f._data(a,g)&&(f.removeData(a,d,!0),h.fire())},0)}function m(a){for(var b in a){if(b==="data"&&f.isEmptyObject(a[b]))continue;if(b!=="toJSON")return!1}return!0}function l(a,c,d){if(d===b&&a.nodeType===1){var e="data-"+c.replace(k,"-$1").toLowerCase();d=a.getAttribute(e);if(typeof d=="string"){try{d=d==="true"?!0:d==="false"?!1:d==="null"?null:f.isNumeric(d)?parseFloat(d):j.test(d)?f.parseJSON(d):d}catch(g){}f.data(a,c,d)}else d=b}return d}function h(a){var b=g[a]={},c,d;a=a.split(/\s+/);for(c=0,d=a.length;c<d;c++)b[a[c]]=!0;return b}var c=a.document,d=a.navigator,e=a.location,f=function(){function J(){if(!e.isReady){try{c.documentElement.doScroll("left")}catch(a){setTimeout(J,1);return}e.ready()}}var e=function(a,b){return new e.fn.init(a,b,h)},f=a.jQuery,g=a.$,h,i=/^(?:[^#<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/,j=/\S/,k=/^\s+/,l=/\s+$/,m=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,n=/^[\],:{}\s]*$/,o=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,p=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,q=/(?:^|:|,)(?:\s*\[)+/g,r=/(webkit)[ \/]([\w.]+)/,s=/(opera)(?:.*version)?[ \/]([\w.]+)/,t=/(msie) ([\w.]+)/,u=/(mozilla)(?:.*? rv:([\w.]+))?/,v=/-([a-z]|[0-9])/ig,w=/^-ms-/,x=function(a,b){return(b+"").toUpperCase()},y=d.userAgent,z,A,B,C=Object.prototype.toString,D=Object.prototype.hasOwnProperty,E=Array.prototype.push,F=Array.prototype.slice,G=String.prototype.trim,H=Array.prototype.indexOf,I={};e.fn=e.prototype={constructor:e,init:function(a,d,f){var g,h,j,k;if(!a)return this;if(a.nodeType){this.context=this[0]=a,this.length=1;return this}if(a==="body"&&!d&&c.body){this.context=c,this[0]=c.body,this.selector=a,this.length=1;return this}if(typeof a=="string"){a.charAt(0)!=="<"||a.charAt(a.length-1)!==">"||a.length<3?g=i.exec(a):g=[null,a,null];if(g&&(g[1]||!d)){if(g[1]){d=d instanceof e?d[0]:d,k=d?d.ownerDocument||d:c,j=m.exec(a),j?e.isPlainObject(d)?(a=[c.createElement(j[1])],e.fn.attr.call(a,d,!0)):a=[k.createElement(j[1])]:(j=e.buildFragment([g[1]],[k]),a=(j.cacheable?e.clone(j.fragment):j.fragment).childNodes);return e.merge(this,a)}h=c.getElementById(g[2]);if(h&&h.parentNode){if(h.id!==g[2])return f.find(a);this.length=1,this[0]=h}this.context=c,this.selector=a;return this}return!d||d.jquery?(d||f).find(a):this.constructor(d).find(a)}if(e.isFunction(a))return f.ready(a);a.selector!==b&&(this.selector=a.selector,this.context=a.context);return e.makeArray(a,this)},selector:"",jquery:"1.7.1",length:0,size:function(){return this.length},toArray:function(){return F.call(this,0)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var d=this.constructor();e.isArray(a)?E.apply(d,a):e.merge(d,a),d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?" ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")");return d},each:function(a,b){return e.each(this,a,b)},ready:function(a){e.bindReady(),A.add(a);return this},eq:function(a){a=+a;return a===-1?this.slice(a):this.slice(a,a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(F.apply(this,arguments),"slice",F.call(arguments).join(","))},map:function(a){return this.pushStack(e.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:E,sort:[].sort,splice:[].splice},e.fn.init.prototype=e.fn,e.extend=e.fn.extend=function(){var a,c,d,f,g,h,i=arguments[0]||{},j=1,k=arguments.length,l=!1;typeof i=="boolean"&&(l=i,i=arguments[1]||{},j=2),typeof i!="object"&&!e.isFunction(i)&&(i={}),k===j&&(i=this,--j);for(;j<k;j++)if((a=arguments[j])!=null)for(c in a){d=i[c],f=a[c];if(i===f)continue;l&&f&&(e.isPlainObject(f)||(g=e.isArray(f)))?(g?(g=!1,h=d&&e.isArray(d)?d:[]):h=d&&e.isPlainObject(d)?d:{},i[c]=e.extend(l,h,f)):f!==b&&(i[c]=f)}return i},e.extend({noConflict:function(b){a.$===e&&(a.$=g),b&&a.jQuery===e&&(a.jQuery=f);return e},isReady:!1,readyWait:1,holdReady:function(a){a?e.readyWait++:e.ready(!0)},ready:function(a){if(a===!0&&!--e.readyWait||a!==!0&&!e.isReady){if(!c.body)return setTimeout(e.ready,1);e.isReady=!0;if(a!==!0&&--e.readyWait>0)return;A.fireWith(c,[e]),e.fn.trigger&&e(c).trigger("ready").off("ready")}},bindReady:function(){if(!A){A=e.Callbacks("once memory");if(c.readyState==="complete")return setTimeout(e.ready,1);if(c.addEventListener)c.addEventListener("DOMContentLoaded",B,!1),a.addEventListener("load",e.ready,!1);else if(c.attachEvent){c.attachEvent("onreadystatechange",B),a.attachEvent("onload",e.ready);var b=!1;try{b=a.frameElement==null}catch(d){}c.documentElement.doScroll&&b&&J()}}},isFunction:function(a){return e.type(a)==="function"},isArray:Array.isArray||function(a){return e.type(a)==="array"},isWindow:function(a){return a&&typeof a=="object"&&"setInterval"in a},isNumeric:function(a){return!isNaN(parseFloat(a))&&isFinite(a)},type:function(a){return a==null?String(a):I[C.call(a)]||"object"},isPlainObject:function(a){if(!a||e.type(a)!=="object"||a.nodeType||e.isWindow(a))return!1;try{if(a.constructor&&!D.call(a,"constructor")&&!D.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}var d;for(d in a);return d===b||D.call(a,d)},isEmptyObject:function(a){for(var b in a)return!1;return!0},error:function(a){throw new Error(a)},parseJSON:function(b){if(typeof b!="string"||!b)return null;b=e.trim(b);if(a.JSON&&a.JSON.parse)return a.JSON.parse(b);if(n.test(b.replace(o,"@").replace(p,"]").replace(q,"")))return(new Function("return "+b))();e.error("Invalid JSON: "+b)},parseXML:function(c){var d,f;try{a.DOMParser?(f=new DOMParser,d=f.parseFromString(c,"text/xml")):(d=new ActiveXObject("Microsoft.XMLDOM"),d.async="false",d.loadXML(c))}catch(g){d=b}(!d||!d.documentElement||d.getElementsByTagName("parsererror").length)&&e.error("Invalid XML: "+c);return d},noop:function(){},globalEval:function(b){b&&j.test(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(w,"ms-").replace(v,x)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toUpperCase()===b.toUpperCase()},each:function(a,c,d){var f,g=0,h=a.length,i=h===b||e.isFunction(a);if(d){if(i){for(f in a)if(c.apply(a[f],d)===!1)break}else for(;g<h;)if(c.apply(a[g++],d)===!1)break}else if(i){for(f in a)if(c.call(a[f],f,a[f])===!1)break}else for(;g<h;)if(c.call(a[g],g,a[g++])===!1)break;return a},trim:G?function(a){return a==null?"":G.call(a)}:function(a){return a==null?"":(a+"").replace(k,"").replace(l,"")},makeArray:function(a,b){var c=b||[];if(a!=null){var d=e.type(a);a.length==null||d==="string"||d==="function"||d==="regexp"||e.isWindow(a)?E.call(c,a):e.merge(c,a)}return c},inArray:function(a,b,c){var d;if(b){if(H)return H.call(b,a,c);d=b.length,c=c?c<0?Math.max(0,d+c):c:0;for(;c<d;c++)if(c in b&&b[c]===a)return c}return-1},merge:function(a,c){var d=a.length,e=0;if(typeof c.length=="number")for(var f=c.length;e<f;e++)a[d++]=c[e];else while(c[e]!==b)a[d++]=c[e++];a.length=d;return a},grep:function(a,b,c){var d=[],e;c=!!c;for(var f=0,g=a.length;f<g;f++)e=!!b(a[f],f),c!==e&&d.push(a[f]);return d},map:function(a,c,d){var f,g,h=[],i=0,j=a.length,k=a instanceof e||j!==b&&typeof j=="number"&&(j>0&&a[0]&&a[j-1]||j===0||e.isArray(a));if(k)for(;i<j;i++)f=c(a[i],i,d),f!=null&&(h[h.length]=f);else for(g in a)f=c(a[g],g,d),f!=null&&(h[h.length]=f);return h.concat.apply([],h)},guid:1,proxy:function(a,c){if(typeof c=="string"){var d=a[c];c=a,a=d}if(!e.isFunction(a))return b;var f=F.call(arguments,2),g=function(){return a.apply(c,f.concat(F.call(arguments)))};g.guid=a.guid=a.guid||g.guid||e.guid++;return g},access:function(a,c,d,f,g,h){var i=a.length;if(typeof c=="object"){for(var j in c)e.access(a,j,c[j],f,g,d);return a}if(d!==b){f=!h&&f&&e.isFunction(d);for(var k=0;k<i;k++)g(a[k],c,f?d.call(a[k],k,g(a[k],c)):d,h);return a}return i?g(a[0],c):b},now:function(){return(new Date).getTime()},uaMatch:function(a){a=a.toLowerCase();var b=r.exec(a)||s.exec(a)||t.exec(a)||a.indexOf("compatible")<0&&u.exec(a)||[];return{browser:b[1]||"",version:b[2]||"0"}},sub:function(){function a(b,c){return new a.fn.init(b,c)}e.extend(!0,a,this),a.superclass=this,a.fn=a.prototype=this(),a.fn.constructor=a,a.sub=this.sub,a.fn.init=function(d,f){f&&f instanceof e&&!(f instanceof a)&&(f=a(f));return e.fn.init.call(this,d,f,b)},a.fn.init.prototype=a.fn;var b=a(c);return a},browser:{}}),e.each("Boolean Number String Function Array Date RegExp Object".split(" "),function(a,b){I["[object "+b+"]"]=b.toLowerCase()}),z=e.uaMatch(y),z.browser&&(e.browser[z.browser]=!0,e.browser.version=z.version),e.browser.webkit&&(e.browser.safari=!0),j.test("Â ")&&(k=/^[\s\xA0]+/,l=/[\s\xA0]+$/),h=e(c),c.addEventListener?B=function(){c.removeEventListener("DOMContentLoaded",B,!1),e.ready()}:c.attachEvent&&(B=function(){c.readyState==="complete"&&(c.detachEvent("onreadystatechange",B),e.ready())});return e}(),g={};f.Callbacks=function(a){a=a?g[a]||h(a):{};var c=[],d=[],e,i,j,k,l,m=function(b){var d,e,g,h,i;for(d=0,e=b.length;d<e;d++)g=b[d],h=f.type(g),h==="array"?m(g):h==="function"&&(!a.unique||!o.has(g))&&c.push(g)},n=function(b,f){f=f||[],e=!a.memory||[b,f],i=!0,l=j||0,j=0,k=c.length;for(;c&&l<k;l++)if(c[l].apply(b,f)===!1&&a.stopOnFalse){e=!0;break}i=!1,c&&(a.once?e===!0?o.disable():c=[]:d&&d.length&&(e=d.shift(),o.fireWith(e[0],e[1])))},o={add:function(){if(c){var a=c.length;m(arguments),i?k=c.length:e&&e!==!0&&(j=a,n(e[0],e[1]))}return this},remove:function(){if(c){var b=arguments,d=0,e=b.length;for(;d<e;d++)for(var f=0;f<c.length;f++)if(b[d]===c[f]){i&&f<=k&&(k--,f<=l&&l--),c.splice(f--,1);if(a.unique)break}}return this},has:function(a){if(c){var b=0,d=c.length;for(;b<d;b++)if(a===c[b])return!0}return!1},empty:function(){c=[];return this},disable:function(){c=d=e=b;return this},disabled:function(){return!c},lock:function(){d=b,(!e||e===!0)&&o.disable();return this},locked:function(){return!d},fireWith:function(b,c){d&&(i?a.once||d.push([b,c]):(!a.once||!e)&&n(b,c));return this},fire:function(){o.fireWith(this,arguments);return this},fired:function(){return!!e}};return o};var i=[].slice;f.extend({Deferred:function(a){var b=f.Callbacks("once memory"),c=f.Callbacks("once memory"),d=f.Callbacks("memory"),e="pending",g={resolve:b,reject:c,notify:d},h={done:b.add,fail:c.add,progress:d.add,state:function(){return e},isResolved:b.fired,isRejected:c.fired,then:function(a,b,c){i.done(a).fail(b).progress(c);return this},always:function(){i.done.apply(i,arguments).fail.apply(i,arguments);return this},pipe:function(a,b,c){return f.Deferred(function(d){f.each({done:[a,"resolve"],fail:[b,"reject"],progress:[c,"notify"]},function(a,b){var c=b[0],e=b[1],g;f.isFunction(c)?i[a](function(){g=c.apply(this,arguments),g&&f.isFunction(g.promise)?g.promise().then(d.resolve,d.reject,d.notify):d[e+"With"](this===i?d:this,[g])}):i[a](d[e])})}).promise()},promise:function(a){if(a==null)a=h;else for(var b in h)a[b]=h[b];return a}},i=h.promise({}),j;for(j in g)i[j]=g[j].fire,i[j+"With"]=g[j].fireWith;i.done(function(){e="resolved"},c.disable,d.lock).fail(function(){e="rejected"},b.disable,d.lock),a&&a.call(i,i);return i},when:function(a){function m(a){return function(b){e[a]=arguments.length>1?i.call(arguments,0):b,j.notifyWith(k,e)}}function l(a){return function(c){b[a]=arguments.length>1?i.call(arguments,0):c,--g||j.resolveWith(j,b)}}var b=i.call(arguments,0),c=0,d=b.length,e=Array(d),g=d,h=d,j=d<=1&&a&&f.isFunction(a.promise)?a:f.Deferred(),k=j.promise();if(d>1){for(;c<d;c++)b[c]&&b[c].promise&&f.isFunction(b[c].promise)?b[c].promise().then(l(c),j.reject,m(c)):--g;g||j.resolveWith(j,b)}else j!==a&&j.resolveWith(j,d?[a]:[]);return k}}),f.support=function(){var b,d,e,g,h,i,j,k,l,m,n,o,p,q=c.createElement("div"),r=c.documentElement;q.setAttribute("className","t"),q.innerHTML=" <link/><table></table><a href='/a' style='top:1px;float:left;opacity:.55;'>a</a><input type='checkbox'/>",d=q.getElementsByTagName("*"),e=q.getElementsByTagName("a")[0];if(!d||!d.length||!e)return{};g=c.createElement("select"),h=g.appendChild(c.createElement("option")),i=q.getElementsByTagName("input")[0],b={leadingWhitespace:q.firstChild.nodeType===3,tbody:!q.getElementsByTagName("tbody").length,htmlSerialize:!!q.getElementsByTagName("link").length,style:/top/.test(e.getAttribute("style")),hrefNormalized:e.getAttribute("href")==="/a",opacity:/^0.55/.test(e.style.opacity),cssFloat:!!e.style.cssFloat,checkOn:i.value==="on",optSelected:h.selected,getSetAttribute:q.className!=="t",enctype:!!c.createElement("form").enctype,html5Clone:c.createElement("nav").cloneNode(!0).outerHTML!=="<:nav></:nav>",submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0},i.checked=!0,b.noCloneChecked=i.cloneNode(!0).checked,g.disabled=!0,b.optDisabled=!h.disabled;try{delete q.test}catch(s){b.deleteExpando=!1}!q.addEventListener&&q.attachEvent&&q.fireEvent&&(q.attachEvent("onclick",function(){b.noCloneEvent=!1}),q.cloneNode(!0).fireEvent("onclick")),i=c.createElement("input"),i.value="t",i.setAttribute("type","radio"),b.radioValue=i.value==="t",i.setAttribute("checked","checked"),q.appendChild(i),k=c.createDocumentFragment(),k.appendChild(q.lastChild),b.checkClone=k.cloneNode(!0).cloneNode(!0).lastChild.checked,b.appendChecked=i.checked,k.removeChild(i),k.appendChild(q),q.innerHTML="",a.getComputedStyle&&(j=c.createElement("div"),j.style.width="0",j.style.marginRight="0",q.style.width="2px",q.appendChild(j),b.reliableMarginRight=(parseInt((a.getComputedStyle(j,null)||{marginRight:0}).marginRight,10)||0)===0);if(q.attachEvent)for(o in{submit:1,change:1,focusin:1})n="on"+o,p=n in q,p||(q.setAttribute(n,"return;"),p=typeof q[n]=="function"),b[o+"Bubbles"]=p;k.removeChild(q),k=g=h=j=q=i=null,f(function(){var a,d,e,g,h,i,j,k,m,n,o,r=c.getElementsByTagName("body")[0];!r||(j=1,k="position:absolute;top:0;left:0;width:1px;height:1px;margin:0;",m="visibility:hidden;border:0;",n="style='"+k+"border:5px solid #000;padding:0;'",o="<div "+n+"><div></div></div>"+"<table "+n+" cellpadding='0' cellspacing='0'>"+"<tr><td></td></tr></table>",a=c.createElement("div"),a.style.cssText=m+"width:0;height:0;position:static;top:0;margin-top:"+j+"px",r.insertBefore(a,r.firstChild),q=c.createElement("div"),a.appendChild(q),q.innerHTML="<table><tr><td style='padding:0;border:0;display:none'></td><td>t</td></tr></table>",l=q.getElementsByTagName("td"),p=l[0].offsetHeight===0,l[0].style.display="",l[1].style.display="none",b.reliableHiddenOffsets=p&&l[0].offsetHeight===0,q.innerHTML="",q.style.width=q.style.paddingLeft="1px",f.boxModel=b.boxModel=q.offsetWidth===2,typeof q.style.zoom!="undefined"&&(q.style.display="inline",q.style.zoom=1,b.inlineBlockNeedsLayout=q.offsetWidth===2,q.style.display="",q.innerHTML="<div style='width:4px;'></div>",b.shrinkWrapBlocks=q.offsetWidth!==2),q.style.cssText=k+m,q.innerHTML=o,d=q.firstChild,e=d.firstChild,h=d.nextSibling.firstChild.firstChild,i={doesNotAddBorder:e.offsetTop!==5,doesAddBorderForTableAndCells:h.offsetTop===5},e.style.position="fixed",e.style.top="20px",i.fixedPosition=e.offsetTop===20||e.offsetTop===15,e.style.position=e.style.top="",d.style.overflow="hidden",d.style.position="relative",i.subtractsBorderForOverflowNotVisible=e.offsetTop===-5,i.doesNotIncludeMarginInBodyOffset=r.offsetTop!==j,r.removeChild(a),q=a=null,f.extend(b,i))});return b}();var j=/^(?:\{.*\}|\[.*\])$/,k=/([A-Z])/g;f.extend({cache:{},uuid:0,expando:"jQuery"+(f.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){a=a.nodeType?f.cache[a[f.expando]]:a[f.expando];return!!a&&!m(a)},data:function(a,c,d,e){if(!!f.acceptData(a)){var g,h,i,j=f.expando,k=typeof c=="string",l=a.nodeType,m=l?f.cache:a,n=l?a[j]:a[j]&&j,o=c==="events";if((!n||!m[n]||!o&&!e&&!m[n].data)&&k&&d===b)return;n||(l?a[j]=n=++f.uuid:n=j),m[n]||(m[n]={},l||(m[n].toJSON=f.noop));if(typeof c=="object"||typeof c=="function")e?m[n]=f.extend(m[n],c):m[n].data=f.extend(m[n].data,c);g=h=m[n],e||(h.data||(h.data={}),h=h.data),d!==b&&(h[f.camelCase(c)]=d);if(o&&!h[c])return g.events;k?(i=h[c],i==null&&(i=h[f.camelCase(c)])):i=h;return i}},removeData:function(a,b,c){if(!!f.acceptData(a)){var d,e,g,h=f.expando,i=a.nodeType,j=i?f.cache:a,k=i?a[h]:h;if(!j[k])return;if(b){d=c?j[k]:j[k].data;if(d){f.isArray(b)||(b in d?b=[b]:(b=f.camelCase(b),b in d?b=[b]:b=b.split(" ")));for(e=0,g=b.length;e<g;e++)delete d[b[e]];if(!(c?m:f.isEmptyObject)(d))return}}if(!c){delete j[k].data;if(!m(j[k]))return}f.support.deleteExpando||!j.setInterval?delete j[k]:j[k]=null,i&&(f.support.deleteExpando?delete a[h]:a.removeAttribute?a.removeAttribute(h):a[h]=null)}},_data:function(a,b,c){return f.data(a,b,c,!0)},acceptData:function(a){if(a.nodeName){var b=f.noData[a.nodeName.toLowerCase()];if(b)return b!==!0&&a.getAttribute("classid")===b}return!0}}),f.fn.extend({data:function(a,c){var d,e,g,h=null;if(typeof a=="undefined"){if(this.length){h=f.data(this[0]);if(this[0].nodeType===1&&!f._data(this[0],"parsedAttrs")){e=this[0].attributes;for(var i=0,j=e.length;i<j;i++)g=e[i].name,g.indexOf("data-")===0&&(g=f.camelCase(g.substring(5)),l(this[0],g,h[g]));f._data(this[0],"parsedAttrs",!0)}}return h}if(typeof a=="object")return this.each(function(){f.data(this,a)});d=a.split("."),d[1]=d[1]?"."+d[1]:"";if(c===b){h=this.triggerHandler("getData"+d[1]+"!",[d[0]]),h===b&&this.length&&(h=f.data(this[0],a),h=l(this[0],a,h));return h===b&&d[1]?this.data(d[0]):h}return this.each(function(){var b=f(this),e=[d[0],c];b.triggerHandler("setData"+d[1]+"!",e),f.data(this,a,c),b.triggerHandler("changeData"+d[1]+"!",e)})},removeData:function(a){return this.each(function(){f.removeData(this,a)})}}),f.extend({_mark:function(a,b){a&&(b=(b||"fx")+"mark",f._data(a,b,(f._data(a,b)||0)+1))},_unmark:function(a,b,c){a!==!0&&(c=b,b=a,a=!1);if(b){c=c||"fx";var d=c+"mark",e=a?0:(f._data(b,d)||1)-1;e?f._data(b,d,e):(f.removeData(b,d,!0),n(b,c,"mark"))}},queue:function(a,b,c){var d;if(a){b=(b||"fx")+"queue",d=f._data(a,b),c&&(!d||f.isArray(c)?d=f._data(a,b,f.makeArray(c)):d.push(c));return d||[]}},dequeue:function(a,b){b=b||"fx";var c=f.queue(a,b),d=c.shift(),e={};d==="inprogress"&&(d=c.shift()),d&&(b==="fx"&&c.unshift("inprogress"),f._data(a,b+".run",e),d.call(a,function(){f.dequeue(a,b)},e)),c.length||(f.removeData(a,b+"queue "+b+".run",!0),n(a,b,"queue"))}}),f.fn.extend({queue:function(a,c){typeof a!="string"&&(c=a,a="fx");if(c===b)return f.queue(this[0],a);return this.each(function(){var b=f.queue(this,a,c);a==="fx"&&b[0]!=="inprogress"&&f.dequeue(this,a)})},dequeue:function(a){return this.each(function(){f.dequeue(this,a)})},delay:function(a,b){a=f.fx?f.fx.speeds[a]||a:a,b=b||"fx";return this.queue(b,function(b,c){var d=setTimeout(b,a);c.stop=function(){clearTimeout(d)}})},clearQueue:function(a){return this.queue(a||"fx",[])},promise:function(a,c){function m(){--h||d.resolveWith(e,[e])}typeof a!="string"&&(c=a,a=b),a=a||"fx";var d=f.Deferred(),e=this,g=e.length,h=1,i=a+"defer",j=a+"queue",k=a+"mark",l;while(g--)if(l=f.data(e[g],i,b,!0)||(f.data(e[g],j,b,!0)||f.data(e[g],k,b,!0))&&f.data(e[g],i,f.Callbacks("once memory"),!0))h++,l.add(m);m();return d.promise()}});var o=/[\n\t\r]/g,p=/\s+/,q=/\r/g,r=/^(?:button|input)$/i,s=/^(?:button|input|object|select|textarea)$/i,t=/^a(?:rea)?$/i,u=/^(?:autofocus|autoplay|async|checked|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped|selected)$/i,v=f.support.getSetAttribute,w,x,y;f.fn.extend({attr:function(a,b){return f.access(this,a,b,!0,f.attr)},removeAttr:function(a){return this.each(function(){f.removeAttr(this,a)})},prop:function(a,b){return f.access(this,a,b,!0,f.prop)},removeProp:function(a){a=f.propFix[a]||a;return this.each(function(){try{this[a]=b,delete this[a]}catch(c){}})},addClass:function(a){var b,c,d,e,g,h,i;if(f.isFunction(a))return this.each(function(b){f(this).addClass(a.call(this,b,this.className))});if(a&&typeof a=="string"){b=a.split(p);for(c=0,d=this.length;c<d;c++){e=this[c];if(e.nodeType===1)if(!e.className&&b.length===1)e.className=a;else{g=" "+e.className+" ";for(h=0,i=b.length;h<i;h++)~g.indexOf(" "+b[h]+" ")||(g+=b[h]+" ");e.className=f.trim(g)}}}return this},removeClass:function(a){var c,d,e,g,h,i,j;if(f.isFunction(a))return this.each(function(b){f(this).removeClass(a.call(this,b,this.className))});if(a&&typeof a=="string"||a===b){c=(a||"").split(p);for(d=0,e=this.length;d<e;d++){g=this[d];if(g.nodeType===1&&g.className)if(a){h=(" "+g.className+" ").replace(o," ");for(i=0,j=c.length;i<j;i++)h=h.replace(" "+c[i]+" "," ");g.className=f.trim(h)}else g.className=""}}return this},toggleClass:function(a,b){var c=typeof a,d=typeof b=="boolean";if(f.isFunction(a))return this.each(function(c){f(this).toggleClass(a.call(this,c,this.className,b),b)});return this.each(function(){if(c==="string"){var e,g=0,h=f(this),i=b,j=a.split(p);while(e=j[g++])i=d?i:!h.hasClass(e),h[i?"addClass":"removeClass"](e)}else if(c==="undefined"||c==="boolean")this.className&&f._data(this,"__className__",this.className),this.className=this.className||a===!1?"":f._data(this,"__className__")||""})},hasClass:function(a){var b=" "+a+" ",c=0,d=this.length;for(;c<d;c++)if(this[c].nodeType===1&&(" "+this[c].className+" ").replace(o," ").indexOf(b)>-1)return!0;return!1},val:function(a){var c,d,e,g=this[0];{if(!!arguments.length){e=f.isFunction(a);return this.each(function(d){var g=f(this),h;if(this.nodeType===1){e?h=a.call(this,d,g.val()):h=a,h==null?h="":typeof h=="number"?h+="":f.isArray(h)&&(h=f.map(h,function(a){return a==null?"":a+""})),c=f.valHooks[this.nodeName.toLowerCase()]||f.valHooks[this.type];if(!c||!("set"in c)||c.set(this,h,"value")===b)this.value=h}})}if(g){c=f.valHooks[g.nodeName.toLowerCase()]||f.valHooks[g.type];if(c&&"get"in c&&(d=c.get(g,"value"))!==b)return d;d=g.value;return typeof d=="string"?d.replace(q,""):d==null?"":d}}}}),f.extend({valHooks:{option:{get:function(a){var b=a.attributes.value;return!b||b.specified?a.value:a.text}},select:{get:function(a){var b,c,d,e,g=a.selectedIndex,h=[],i=a.options,j=a.type==="select-one";if(g<0)return null;c=j?g:0,d=j?g+1:i.length;for(;c<d;c++){e=i[c];if(e.selected&&(f.support.optDisabled?!e.disabled:e.getAttribute("disabled")===null)&&(!e.parentNode.disabled||!f.nodeName(e.parentNode,"optgroup"))){b=f(e).val();if(j)return b;h.push(b)}}if(j&&!h.length&&i.length)return f(i[g]).val();return h},set:function(a,b){var c=f.makeArray(b);f(a).find("option").each(function(){this.selected=f.inArray(f(this).val(),c)>=0}),c.length||(a.selectedIndex=-1);return c}}},attrFn:{val:!0,css:!0,html:!0,text:!0,data:!0,width:!0,height:!0,offset:!0},attr:function(a,c,d,e){var g,h,i,j=a.nodeType;if(!!a&&j!==3&&j!==8&&j!==2){if(e&&c in f.attrFn)return f(a)[c](d);if(typeof a.getAttribute=="undefined")return f.prop(a,c,d);i=j!==1||!f.isXMLDoc(a),i&&(c=c.toLowerCase(),h=f.attrHooks[c]||(u.test(c)?x:w));if(d!==b){if(d===null){f.removeAttr(a,c);return}if(h&&"set"in h&&i&&(g=h.set(a,d,c))!==b)return g;a.setAttribute(c,""+d);return d}if(h&&"get"in h&&i&&(g=h.get(a,c))!==null)return g;g=a.getAttribute(c);return g===null?b:g}},removeAttr:function(a,b){var c,d,e,g,h=0;if(b&&a.nodeType===1){d=b.toLowerCase().split(p),g=d.length;for(;h<g;h++)e=d[h],e&&(c=f.propFix[e]||e,f.attr(a,e,""),a.removeAttribute(v?e:c),u.test(e)&&c in a&&(a[c]=!1))}},attrHooks:{type:{set:function(a,b){if(r.test(a.nodeName)&&a.parentNode)f.error("type property can't be changed");else if(!f.support.radioValue&&b==="radio"&&f.nodeName(a,"input")){var c=a.value;a.setAttribute("type",b),c&&(a.value=c);return b}}},value:{get:function(a,b){if(w&&f.nodeName(a,"button"))return w.get(a,b);return b in a?a.value:null},set:function(a,b,c){if(w&&f.nodeName(a,"button"))return w.set(a,b,c);a.value=b}}},propFix:{tabindex:"tabIndex",readonly:"readOnly","for":"htmlFor","class":"className",maxlength:"maxLength",cellspacing:"cellSpacing",cellpadding:"cellPadding",rowspan:"rowSpan",colspan:"colSpan",usemap:"useMap",frameborder:"frameBorder",contenteditable:"contentEditable"},prop:function(a,c,d){var e,g,h,i=a.nodeType;if(!!a&&i!==3&&i!==8&&i!==2){h=i!==1||!f.isXMLDoc(a),h&&(c=f.propFix[c]||c,g=f.propHooks[c]);return d!==b?g&&"set"in g&&(e=g.set(a,d,c))!==b?e:a[c]=d:g&&"get"in g&&(e=g.get(a,c))!==null?e:a[c]}},propHooks:{tabIndex:{get:function(a){var c=a.getAttributeNode("tabindex");return c&&c.specified?parseInt(c.value,10):s.test(a.nodeName)||t.test(a.nodeName)&&a.href?0:b}}}}),f.attrHooks.tabindex=f.propHooks.tabIndex,x={get:function(a,c){var d,e=f.prop(a,c);return e===!0||typeof e!="boolean"&&(d=a.getAttributeNode(c))&&d.nodeValue!==!1?c.toLowerCase():b},set:function(a,b,c){var d;b===!1?f.removeAttr(a,c):(d=f.propFix[c]||c,d in a&&(a[d]=!0),a.setAttribute(c,c.toLowerCase()));return c}},v||(y={name:!0,id:!0},w=f.valHooks.button={get:function(a,c){var d;d=a.getAttributeNode(c);return d&&(y[c]?d.nodeValue!=="":d.specified)?d.nodeValue:b},set:function(a,b,d){var e=a.getAttributeNode(d);e||(e=c.createAttribute(d),a.setAttributeNode(e));return e.nodeValue=b+""}},f.attrHooks.tabindex.set=w.set,f.each(["width","height"],function(a,b){f.attrHooks[b]=f.extend(f.attrHooks[b],{set:function(a,c){if(c===""){a.setAttribute(b,"auto");return c}}})}),f.attrHooks.contenteditable={get:w.get,set:function(a,b,c){b===""&&(b="false"),w.set(a,b,c)}}),f.support.hrefNormalized||f.each(["href","src","width","height"],function(a,c){f.attrHooks[c]=f.extend(f.attrHooks[c],{get:function(a){var d=a.getAttribute(c,2);return d===null?b:d}})}),f.support.style||(f.attrHooks.style={get:function(a){return a.style.cssText.toLowerCase()||b},set:function(a,b){return a.style.cssText=""+b}}),f.support.optSelected||(f.propHooks.selected=f.extend(f.propHooks.selected,{get:function(a){var b=a.parentNode;b&&(b.selectedIndex,b.parentNode&&b.parentNode.selectedIndex);return null}})),f.support.enctype||(f.propFix.enctype="encoding"),f.support.checkOn||f.each(["radio","checkbox"],function(){f.valHooks[this]={get:function(a){return a.getAttribute("value")===null?"on":a.value}}}),f.each(["radio","checkbox"],function(){f.valHooks[this]=f.extend(f.valHooks[this],{set:function(a,b){if(f.isArray(b))return a.checked=f.inArray(f(a).val(),b)>=0}})});var z=/^(?:textarea|input|select)$/i,A=/^([^\.]*)?(?:\.(.+))?$/,B=/\bhover(\.\S+)?\b/,C=/^key/,D=/^(?:mouse|contextmenu)|click/,E=/^(?:focusinfocus|focusoutblur)$/,F=/^(\w*)(?:#([\w\-]+))?(?:\.([\w\-]+))?$/,G=function(a){var b=F.exec(a);b&&(b[1]=(b[1]||"").toLowerCase(),b[3]=b[3]&&new RegExp("(?:^|\\s)"+b[3]+"(?:\\s|$)"));return b},H=function(a,b){var c=a.attributes||{};return(!b[1]||a.nodeName.toLowerCase()===b[1])&&(!b[2]||(c.id||{}).value===b[2])&&(!b[3]||b[3].test((c["class"]||{}).value))},I=function(a){return f.event.special.hover?a:a.replace(B,"mouseenter$1 mouseleave$1")}; -f.event={add:function(a,c,d,e,g){var h,i,j,k,l,m,n,o,p,q,r,s;if(!(a.nodeType===3||a.nodeType===8||!c||!d||!(h=f._data(a)))){d.handler&&(p=d,d=p.handler),d.guid||(d.guid=f.guid++),j=h.events,j||(h.events=j={}),i=h.handle,i||(h.handle=i=function(a){return typeof f!="undefined"&&(!a||f.event.triggered!==a.type)?f.event.dispatch.apply(i.elem,arguments):b},i.elem=a),c=f.trim(I(c)).split(" ");for(k=0;k<c.length;k++){l=A.exec(c[k])||[],m=l[1],n=(l[2]||"").split(".").sort(),s=f.event.special[m]||{},m=(g?s.delegateType:s.bindType)||m,s=f.event.special[m]||{},o=f.extend({type:m,origType:l[1],data:e,handler:d,guid:d.guid,selector:g,quick:G(g),namespace:n.join(".")},p),r=j[m];if(!r){r=j[m]=[],r.delegateCount=0;if(!s.setup||s.setup.call(a,e,n,i)===!1)a.addEventListener?a.addEventListener(m,i,!1):a.attachEvent&&a.attachEvent("on"+m,i)}s.add&&(s.add.call(a,o),o.handler.guid||(o.handler.guid=d.guid)),g?r.splice(r.delegateCount++,0,o):r.push(o),f.event.global[m]=!0}a=null}},global:{},remove:function(a,b,c,d,e){var g=f.hasData(a)&&f._data(a),h,i,j,k,l,m,n,o,p,q,r,s;if(!!g&&!!(o=g.events)){b=f.trim(I(b||"")).split(" ");for(h=0;h<b.length;h++){i=A.exec(b[h])||[],j=k=i[1],l=i[2];if(!j){for(j in o)f.event.remove(a,j+b[h],c,d,!0);continue}p=f.event.special[j]||{},j=(d?p.delegateType:p.bindType)||j,r=o[j]||[],m=r.length,l=l?new RegExp("(^|\\.)"+l.split(".").sort().join("\\.(?:.*\\.)?")+"(\\.|$)"):null;for(n=0;n<r.length;n++)s=r[n],(e||k===s.origType)&&(!c||c.guid===s.guid)&&(!l||l.test(s.namespace))&&(!d||d===s.selector||d==="**"&&s.selector)&&(r.splice(n--,1),s.selector&&r.delegateCount--,p.remove&&p.remove.call(a,s));r.length===0&&m!==r.length&&((!p.teardown||p.teardown.call(a,l)===!1)&&f.removeEvent(a,j,g.handle),delete o[j])}f.isEmptyObject(o)&&(q=g.handle,q&&(q.elem=null),f.removeData(a,["events","handle"],!0))}},customEvent:{getData:!0,setData:!0,changeData:!0},trigger:function(c,d,e,g){if(!e||e.nodeType!==3&&e.nodeType!==8){var h=c.type||c,i=[],j,k,l,m,n,o,p,q,r,s;if(E.test(h+f.event.triggered))return;h.indexOf("!")>=0&&(h=h.slice(0,-1),k=!0),h.indexOf(".")>=0&&(i=h.split("."),h=i.shift(),i.sort());if((!e||f.event.customEvent[h])&&!f.event.global[h])return;c=typeof c=="object"?c[f.expando]?c:new f.Event(h,c):new f.Event(h),c.type=h,c.isTrigger=!0,c.exclusive=k,c.namespace=i.join("."),c.namespace_re=c.namespace?new RegExp("(^|\\.)"+i.join("\\.(?:.*\\.)?")+"(\\.|$)"):null,o=h.indexOf(":")<0?"on"+h:"";if(!e){j=f.cache;for(l in j)j[l].events&&j[l].events[h]&&f.event.trigger(c,d,j[l].handle.elem,!0);return}c.result=b,c.target||(c.target=e),d=d!=null?f.makeArray(d):[],d.unshift(c),p=f.event.special[h]||{};if(p.trigger&&p.trigger.apply(e,d)===!1)return;r=[[e,p.bindType||h]];if(!g&&!p.noBubble&&!f.isWindow(e)){s=p.delegateType||h,m=E.test(s+h)?e:e.parentNode,n=null;for(;m;m=m.parentNode)r.push([m,s]),n=m;n&&n===e.ownerDocument&&r.push([n.defaultView||n.parentWindow||a,s])}for(l=0;l<r.length&&!c.isPropagationStopped();l++)m=r[l][0],c.type=r[l][1],q=(f._data(m,"events")||{})[c.type]&&f._data(m,"handle"),q&&q.apply(m,d),q=o&&m[o],q&&f.acceptData(m)&&q.apply(m,d)===!1&&c.preventDefault();c.type=h,!g&&!c.isDefaultPrevented()&&(!p._default||p._default.apply(e.ownerDocument,d)===!1)&&(h!=="click"||!f.nodeName(e,"a"))&&f.acceptData(e)&&o&&e[h]&&(h!=="focus"&&h!=="blur"||c.target.offsetWidth!==0)&&!f.isWindow(e)&&(n=e[o],n&&(e[o]=null),f.event.triggered=h,e[h](),f.event.triggered=b,n&&(e[o]=n));return c.result}},dispatch:function(c){c=f.event.fix(c||a.event);var d=(f._data(this,"events")||{})[c.type]||[],e=d.delegateCount,g=[].slice.call(arguments,0),h=!c.exclusive&&!c.namespace,i=[],j,k,l,m,n,o,p,q,r,s,t;g[0]=c,c.delegateTarget=this;if(e&&!c.target.disabled&&(!c.button||c.type!=="click")){m=f(this),m.context=this.ownerDocument||this;for(l=c.target;l!=this;l=l.parentNode||this){o={},q=[],m[0]=l;for(j=0;j<e;j++)r=d[j],s=r.selector,o[s]===b&&(o[s]=r.quick?H(l,r.quick):m.is(s)),o[s]&&q.push(r);q.length&&i.push({elem:l,matches:q})}}d.length>e&&i.push({elem:this,matches:d.slice(e)});for(j=0;j<i.length&&!c.isPropagationStopped();j++){p=i[j],c.currentTarget=p.elem;for(k=0;k<p.matches.length&&!c.isImmediatePropagationStopped();k++){r=p.matches[k];if(h||!c.namespace&&!r.namespace||c.namespace_re&&c.namespace_re.test(r.namespace))c.data=r.data,c.handleObj=r,n=((f.event.special[r.origType]||{}).handle||r.handler).apply(p.elem,g),n!==b&&(c.result=n,n===!1&&(c.preventDefault(),c.stopPropagation()))}}return c.result},props:"attrChange attrName relatedNode srcElement altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(a,b){a.which==null&&(a.which=b.charCode!=null?b.charCode:b.keyCode);return a}},mouseHooks:{props:"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(a,d){var e,f,g,h=d.button,i=d.fromElement;a.pageX==null&&d.clientX!=null&&(e=a.target.ownerDocument||c,f=e.documentElement,g=e.body,a.pageX=d.clientX+(f&&f.scrollLeft||g&&g.scrollLeft||0)-(f&&f.clientLeft||g&&g.clientLeft||0),a.pageY=d.clientY+(f&&f.scrollTop||g&&g.scrollTop||0)-(f&&f.clientTop||g&&g.clientTop||0)),!a.relatedTarget&&i&&(a.relatedTarget=i===a.target?d.toElement:i),!a.which&&h!==b&&(a.which=h&1?1:h&2?3:h&4?2:0);return a}},fix:function(a){if(a[f.expando])return a;var d,e,g=a,h=f.event.fixHooks[a.type]||{},i=h.props?this.props.concat(h.props):this.props;a=f.Event(g);for(d=i.length;d;)e=i[--d],a[e]=g[e];a.target||(a.target=g.srcElement||c),a.target.nodeType===3&&(a.target=a.target.parentNode),a.metaKey===b&&(a.metaKey=a.ctrlKey);return h.filter?h.filter(a,g):a},special:{ready:{setup:f.bindReady},load:{noBubble:!0},focus:{delegateType:"focusin"},blur:{delegateType:"focusout"},beforeunload:{setup:function(a,b,c){f.isWindow(this)&&(this.onbeforeunload=c)},teardown:function(a,b){this.onbeforeunload===b&&(this.onbeforeunload=null)}}},simulate:function(a,b,c,d){var e=f.extend(new f.Event,c,{type:a,isSimulated:!0,originalEvent:{}});d?f.event.trigger(e,null,b):f.event.dispatch.call(b,e),e.isDefaultPrevented()&&c.preventDefault()}},f.event.handle=f.event.dispatch,f.removeEvent=c.removeEventListener?function(a,b,c){a.removeEventListener&&a.removeEventListener(b,c,!1)}:function(a,b,c){a.detachEvent&&a.detachEvent("on"+b,c)},f.Event=function(a,b){if(!(this instanceof f.Event))return new f.Event(a,b);a&&a.type?(this.originalEvent=a,this.type=a.type,this.isDefaultPrevented=a.defaultPrevented||a.returnValue===!1||a.getPreventDefault&&a.getPreventDefault()?K:J):this.type=a,b&&f.extend(this,b),this.timeStamp=a&&a.timeStamp||f.now(),this[f.expando]=!0},f.Event.prototype={preventDefault:function(){this.isDefaultPrevented=K;var a=this.originalEvent;!a||(a.preventDefault?a.preventDefault():a.returnValue=!1)},stopPropagation:function(){this.isPropagationStopped=K;var a=this.originalEvent;!a||(a.stopPropagation&&a.stopPropagation(),a.cancelBubble=!0)},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=K,this.stopPropagation()},isDefaultPrevented:J,isPropagationStopped:J,isImmediatePropagationStopped:J},f.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(a,b){f.event.special[a]={delegateType:b,bindType:b,handle:function(a){var c=this,d=a.relatedTarget,e=a.handleObj,g=e.selector,h;if(!d||d!==c&&!f.contains(c,d))a.type=e.origType,h=e.handler.apply(this,arguments),a.type=b;return h}}}),f.support.submitBubbles||(f.event.special.submit={setup:function(){if(f.nodeName(this,"form"))return!1;f.event.add(this,"click._submit keypress._submit",function(a){var c=a.target,d=f.nodeName(c,"input")||f.nodeName(c,"button")?c.form:b;d&&!d._submit_attached&&(f.event.add(d,"submit._submit",function(a){this.parentNode&&!a.isTrigger&&f.event.simulate("submit",this.parentNode,a,!0)}),d._submit_attached=!0)})},teardown:function(){if(f.nodeName(this,"form"))return!1;f.event.remove(this,"._submit")}}),f.support.changeBubbles||(f.event.special.change={setup:function(){if(z.test(this.nodeName)){if(this.type==="checkbox"||this.type==="radio")f.event.add(this,"propertychange._change",function(a){a.originalEvent.propertyName==="checked"&&(this._just_changed=!0)}),f.event.add(this,"click._change",function(a){this._just_changed&&!a.isTrigger&&(this._just_changed=!1,f.event.simulate("change",this,a,!0))});return!1}f.event.add(this,"beforeactivate._change",function(a){var b=a.target;z.test(b.nodeName)&&!b._change_attached&&(f.event.add(b,"change._change",function(a){this.parentNode&&!a.isSimulated&&!a.isTrigger&&f.event.simulate("change",this.parentNode,a,!0)}),b._change_attached=!0)})},handle:function(a){var b=a.target;if(this!==b||a.isSimulated||a.isTrigger||b.type!=="radio"&&b.type!=="checkbox")return a.handleObj.handler.apply(this,arguments)},teardown:function(){f.event.remove(this,"._change");return z.test(this.nodeName)}}),f.support.focusinBubbles||f.each({focus:"focusin",blur:"focusout"},function(a,b){var d=0,e=function(a){f.event.simulate(b,a.target,f.event.fix(a),!0)};f.event.special[b]={setup:function(){d++===0&&c.addEventListener(a,e,!0)},teardown:function(){--d===0&&c.removeEventListener(a,e,!0)}}}),f.fn.extend({on:function(a,c,d,e,g){var h,i;if(typeof a=="object"){typeof c!="string"&&(d=c,c=b);for(i in a)this.on(i,c,d,a[i],g);return this}d==null&&e==null?(e=c,d=c=b):e==null&&(typeof c=="string"?(e=d,d=b):(e=d,d=c,c=b));if(e===!1)e=J;else if(!e)return this;g===1&&(h=e,e=function(a){f().off(a);return h.apply(this,arguments)},e.guid=h.guid||(h.guid=f.guid++));return this.each(function(){f.event.add(this,a,e,d,c)})},one:function(a,b,c,d){return this.on.call(this,a,b,c,d,1)},off:function(a,c,d){if(a&&a.preventDefault&&a.handleObj){var e=a.handleObj;f(a.delegateTarget).off(e.namespace?e.type+"."+e.namespace:e.type,e.selector,e.handler);return this}if(typeof a=="object"){for(var g in a)this.off(g,c,a[g]);return this}if(c===!1||typeof c=="function")d=c,c=b;d===!1&&(d=J);return this.each(function(){f.event.remove(this,a,d,c)})},bind:function(a,b,c){return this.on(a,null,b,c)},unbind:function(a,b){return this.off(a,null,b)},live:function(a,b,c){f(this.context).on(a,this.selector,b,c);return this},die:function(a,b){f(this.context).off(a,this.selector||"**",b);return this},delegate:function(a,b,c,d){return this.on(b,a,c,d)},undelegate:function(a,b,c){return arguments.length==1?this.off(a,"**"):this.off(b,a,c)},trigger:function(a,b){return this.each(function(){f.event.trigger(a,b,this)})},triggerHandler:function(a,b){if(this[0])return f.event.trigger(a,b,this[0],!0)},toggle:function(a){var b=arguments,c=a.guid||f.guid++,d=0,e=function(c){var e=(f._data(this,"lastToggle"+a.guid)||0)%d;f._data(this,"lastToggle"+a.guid,e+1),c.preventDefault();return b[e].apply(this,arguments)||!1};e.guid=c;while(d<b.length)b[d++].guid=c;return this.click(e)},hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)}}),f.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(a,b){f.fn[b]=function(a,c){c==null&&(c=a,a=null);return arguments.length>0?this.on(b,null,a,c):this.trigger(b)},f.attrFn&&(f.attrFn[b]=!0),C.test(b)&&(f.event.fixHooks[b]=f.event.keyHooks),D.test(b)&&(f.event.fixHooks[b]=f.event.mouseHooks)}),function(){function x(a,b,c,e,f,g){for(var h=0,i=e.length;h<i;h++){var j=e[h];if(j){var k=!1;j=j[a];while(j){if(j[d]===c){k=e[j.sizset];break}if(j.nodeType===1){g||(j[d]=c,j.sizset=h);if(typeof b!="string"){if(j===b){k=!0;break}}else if(m.filter(b,[j]).length>0){k=j;break}}j=j[a]}e[h]=k}}}function w(a,b,c,e,f,g){for(var h=0,i=e.length;h<i;h++){var j=e[h];if(j){var k=!1;j=j[a];while(j){if(j[d]===c){k=e[j.sizset];break}j.nodeType===1&&!g&&(j[d]=c,j.sizset=h);if(j.nodeName.toLowerCase()===b){k=j;break}j=j[a]}e[h]=k}}}var a=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^\[\]]*\]|['"][^'"]*['"]|[^\[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,d="sizcache"+(Math.random()+"").replace(".",""),e=0,g=Object.prototype.toString,h=!1,i=!0,j=/\\/g,k=/\r\n/g,l=/\W/;[0,0].sort(function(){i=!1;return 0});var m=function(b,d,e,f){e=e||[],d=d||c;var h=d;if(d.nodeType!==1&&d.nodeType!==9)return[];if(!b||typeof b!="string")return e;var i,j,k,l,n,q,r,t,u=!0,v=m.isXML(d),w=[],x=b;do{a.exec(""),i=a.exec(x);if(i){x=i[3],w.push(i[1]);if(i[2]){l=i[3];break}}}while(i);if(w.length>1&&p.exec(b))if(w.length===2&&o.relative[w[0]])j=y(w[0]+w[1],d,f);else{j=o.relative[w[0]]?[d]:m(w.shift(),d);while(w.length)b=w.shift(),o.relative[b]&&(b+=w.shift()),j=y(b,j,f)}else{!f&&w.length>1&&d.nodeType===9&&!v&&o.match.ID.test(w[0])&&!o.match.ID.test(w[w.length-1])&&(n=m.find(w.shift(),d,v),d=n.expr?m.filter(n.expr,n.set)[0]:n.set[0]);if(d){n=f?{expr:w.pop(),set:s(f)}:m.find(w.pop(),w.length===1&&(w[0]==="~"||w[0]==="+")&&d.parentNode?d.parentNode:d,v),j=n.expr?m.filter(n.expr,n.set):n.set,w.length>0?k=s(j):u=!1;while(w.length)q=w.pop(),r=q,o.relative[q]?r=w.pop():q="",r==null&&(r=d),o.relative[q](k,r,v)}else k=w=[]}k||(k=j),k||m.error(q||b);if(g.call(k)==="[object Array]")if(!u)e.push.apply(e,k);else if(d&&d.nodeType===1)for(t=0;k[t]!=null;t++)k[t]&&(k[t]===!0||k[t].nodeType===1&&m.contains(d,k[t]))&&e.push(j[t]);else for(t=0;k[t]!=null;t++)k[t]&&k[t].nodeType===1&&e.push(j[t]);else s(k,e);l&&(m(l,h,e,f),m.uniqueSort(e));return e};m.uniqueSort=function(a){if(u){h=i,a.sort(u);if(h)for(var b=1;b<a.length;b++)a[b]===a[b-1]&&a.splice(b--,1)}return a},m.matches=function(a,b){return m(a,null,null,b)},m.matchesSelector=function(a,b){return m(b,null,null,[a]).length>0},m.find=function(a,b,c){var d,e,f,g,h,i;if(!a)return[];for(e=0,f=o.order.length;e<f;e++){h=o.order[e];if(g=o.leftMatch[h].exec(a)){i=g[1],g.splice(1,1);if(i.substr(i.length-1)!=="\\"){g[1]=(g[1]||"").replace(j,""),d=o.find[h](g,b,c);if(d!=null){a=a.replace(o.match[h],"");break}}}}d||(d=typeof b.getElementsByTagName!="undefined"?b.getElementsByTagName("*"):[]);return{set:d,expr:a}},m.filter=function(a,c,d,e){var f,g,h,i,j,k,l,n,p,q=a,r=[],s=c,t=c&&c[0]&&m.isXML(c[0]);while(a&&c.length){for(h in o.filter)if((f=o.leftMatch[h].exec(a))!=null&&f[2]){k=o.filter[h],l=f[1],g=!1,f.splice(1,1);if(l.substr(l.length-1)==="\\")continue;s===r&&(r=[]);if(o.preFilter[h]){f=o.preFilter[h](f,s,d,r,e,t);if(!f)g=i=!0;else if(f===!0)continue}if(f)for(n=0;(j=s[n])!=null;n++)j&&(i=k(j,f,n,s),p=e^i,d&&i!=null?p?g=!0:s[n]=!1:p&&(r.push(j),g=!0));if(i!==b){d||(s=r),a=a.replace(o.match[h],"");if(!g)return[];break}}if(a===q)if(g==null)m.error(a);else break;q=a}return s},m.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)};var n=m.getText=function(a){var b,c,d=a.nodeType,e="";if(d){if(d===1||d===9){if(typeof a.textContent=="string")return a.textContent;if(typeof a.innerText=="string")return a.innerText.replace(k,"");for(a=a.firstChild;a;a=a.nextSibling)e+=n(a)}else if(d===3||d===4)return a.nodeValue}else for(b=0;c=a[b];b++)c.nodeType!==8&&(e+=n(c));return e},o=m.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF\-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF\-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF\-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF\-]|\\.)+)\s*(?:(\S?=)\s*(?:(['"])(.*?)\3|(#?(?:[\w\u00c0-\uFFFF\-]|\\.)*)|)|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*\-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\(\s*(even|odd|(?:[+\-]?\d+|(?:[+\-]?\d*)?n\s*(?:[+\-]\s*\d+)?))\s*\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^\-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF\-]|\\.)+)(?:\((['"]?)((?:\([^\)]+\)|[^\(\)]*)+)\2\))?/},leftMatch:{},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(a){return a.getAttribute("href")},type:function(a){return a.getAttribute("type")}},relative:{"+":function(a,b){var c=typeof b=="string",d=c&&!l.test(b),e=c&&!d;d&&(b=b.toLowerCase());for(var f=0,g=a.length,h;f<g;f++)if(h=a[f]){while((h=h.previousSibling)&&h.nodeType!==1);a[f]=e||h&&h.nodeName.toLowerCase()===b?h||!1:h===b}e&&m.filter(b,a,!0)},">":function(a,b){var c,d=typeof b=="string",e=0,f=a.length;if(d&&!l.test(b)){b=b.toLowerCase();for(;e<f;e++){c=a[e];if(c){var g=c.parentNode;a[e]=g.nodeName.toLowerCase()===b?g:!1}}}else{for(;e<f;e++)c=a[e],c&&(a[e]=d?c.parentNode:c.parentNode===b);d&&m.filter(b,a,!0)}},"":function(a,b,c){var d,f=e++,g=x;typeof b=="string"&&!l.test(b)&&(b=b.toLowerCase(),d=b,g=w),g("parentNode",b,f,a,d,c)},"~":function(a,b,c){var d,f=e++,g=x;typeof b=="string"&&!l.test(b)&&(b=b.toLowerCase(),d=b,g=w),g("previousSibling",b,f,a,d,c)}},find:{ID:function(a,b,c){if(typeof b.getElementById!="undefined"&&!c){var d=b.getElementById(a[1]);return d&&d.parentNode?[d]:[]}},NAME:function(a,b){if(typeof b.getElementsByName!="undefined"){var c=[],d=b.getElementsByName(a[1]);for(var e=0,f=d.length;e<f;e++)d[e].getAttribute("name")===a[1]&&c.push(d[e]);return c.length===0?null:c}},TAG:function(a,b){if(typeof b.getElementsByTagName!="undefined")return b.getElementsByTagName(a[1])}},preFilter:{CLASS:function(a,b,c,d,e,f){a=" "+a[1].replace(j,"")+" ";if(f)return a;for(var g=0,h;(h=b[g])!=null;g++)h&&(e^(h.className&&(" "+h.className+" ").replace(/[\t\n\r]/g," ").indexOf(a)>=0)?c||d.push(h):c&&(b[g]=!1));return!1},ID:function(a){return a[1].replace(j,"")},TAG:function(a,b){return a[1].replace(j,"").toLowerCase()},CHILD:function(a){if(a[1]==="nth"){a[2]||m.error(a[0]),a[2]=a[2].replace(/^\+|\s*/g,"");var b=/(-?)(\d*)(?:n([+\-]?\d*))?/.exec(a[2]==="even"&&"2n"||a[2]==="odd"&&"2n+1"||!/\D/.test(a[2])&&"0n+"+a[2]||a[2]);a[2]=b[1]+(b[2]||1)-0,a[3]=b[3]-0}else a[2]&&m.error(a[0]);a[0]=e++;return a},ATTR:function(a,b,c,d,e,f){var g=a[1]=a[1].replace(j,"");!f&&o.attrMap[g]&&(a[1]=o.attrMap[g]),a[4]=(a[4]||a[5]||"").replace(j,""),a[2]==="~="&&(a[4]=" "+a[4]+" ");return a},PSEUDO:function(b,c,d,e,f){if(b[1]==="not")if((a.exec(b[3])||"").length>1||/^\w/.test(b[3]))b[3]=m(b[3],null,null,c);else{var g=m.filter(b[3],c,d,!0^f);d||e.push.apply(e,g);return!1}else if(o.match.POS.test(b[0])||o.match.CHILD.test(b[0]))return!0;return b},POS:function(a){a.unshift(!0);return a}},filters:{enabled:function(a){return a.disabled===!1&&a.type!=="hidden"},disabled:function(a){return a.disabled===!0},checked:function(a){return a.checked===!0},selected:function(a){a.parentNode&&a.parentNode.selectedIndex;return a.selected===!0},parent:function(a){return!!a.firstChild},empty:function(a){return!a.firstChild},has:function(a,b,c){return!!m(c[3],a).length},header:function(a){return/h\d/i.test(a.nodeName)},text:function(a){var b=a.getAttribute("type"),c=a.type;return a.nodeName.toLowerCase()==="input"&&"text"===c&&(b===c||b===null)},radio:function(a){return a.nodeName.toLowerCase()==="input"&&"radio"===a.type},checkbox:function(a){return a.nodeName.toLowerCase()==="input"&&"checkbox"===a.type},file:function(a){return a.nodeName.toLowerCase()==="input"&&"file"===a.type},password:function(a){return a.nodeName.toLowerCase()==="input"&&"password"===a.type},submit:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"submit"===a.type},image:function(a){return a.nodeName.toLowerCase()==="input"&&"image"===a.type},reset:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"reset"===a.type},button:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&"button"===a.type||b==="button"},input:function(a){return/input|select|textarea|button/i.test(a.nodeName)},focus:function(a){return a===a.ownerDocument.activeElement}},setFilters:{first:function(a,b){return b===0},last:function(a,b,c,d){return b===d.length-1},even:function(a,b){return b%2===0},odd:function(a,b){return b%2===1},lt:function(a,b,c){return b<c[3]-0},gt:function(a,b,c){return b>c[3]-0},nth:function(a,b,c){return c[3]-0===b},eq:function(a,b,c){return c[3]-0===b}},filter:{PSEUDO:function(a,b,c,d){var e=b[1],f=o.filters[e];if(f)return f(a,c,b,d);if(e==="contains")return(a.textContent||a.innerText||n([a])||"").indexOf(b[3])>=0;if(e==="not"){var g=b[3];for(var h=0,i=g.length;h<i;h++)if(g[h]===a)return!1;return!0}m.error(e)},CHILD:function(a,b){var c,e,f,g,h,i,j,k=b[1],l=a;switch(k){case"only":case"first":while(l=l.previousSibling)if(l.nodeType===1)return!1;if(k==="first")return!0;l=a;case"last":while(l=l.nextSibling)if(l.nodeType===1)return!1;return!0;case"nth":c=b[2],e=b[3];if(c===1&&e===0)return!0;f=b[0],g=a.parentNode;if(g&&(g[d]!==f||!a.nodeIndex)){i=0;for(l=g.firstChild;l;l=l.nextSibling)l.nodeType===1&&(l.nodeIndex=++i);g[d]=f}j=a.nodeIndex-e;return c===0?j===0:j%c===0&&j/c>=0}},ID:function(a,b){return a.nodeType===1&&a.getAttribute("id")===b},TAG:function(a,b){return b==="*"&&a.nodeType===1||!!a.nodeName&&a.nodeName.toLowerCase()===b},CLASS:function(a,b){return(" "+(a.className||a.getAttribute("class"))+" ").indexOf(b)>-1},ATTR:function(a,b){var c=b[1],d=m.attr?m.attr(a,c):o.attrHandle[c]?o.attrHandle[c](a):a[c]!=null?a[c]:a.getAttribute(c),e=d+"",f=b[2],g=b[4];return d==null?f==="!=":!f&&m.attr?d!=null:f==="="?e===g:f==="*="?e.indexOf(g)>=0:f==="~="?(" "+e+" ").indexOf(g)>=0:g?f==="!="?e!==g:f==="^="?e.indexOf(g)===0:f==="$="?e.substr(e.length-g.length)===g:f==="|="?e===g||e.substr(0,g.length+1)===g+"-":!1:e&&d!==!1},POS:function(a,b,c,d){var e=b[2],f=o.setFilters[e];if(f)return f(a,c,b,d)}}},p=o.match.POS,q=function(a,b){return"\\"+(b-0+1)};for(var r in o.match)o.match[r]=new RegExp(o.match[r].source+/(?![^\[]*\])(?![^\(]*\))/.source),o.leftMatch[r]=new RegExp(/(^(?:.|\r|\n)*?)/.source+o.match[r].source.replace(/\\(\d+)/g,q));var s=function(a,b){a=Array.prototype.slice.call(a,0);if(b){b.push.apply(b,a);return b}return a};try{Array.prototype.slice.call(c.documentElement.childNodes,0)[0].nodeType}catch(t){s=function(a,b){var c=0,d=b||[];if(g.call(a)==="[object Array]")Array.prototype.push.apply(d,a);else if(typeof a.length=="number")for(var e=a.length;c<e;c++)d.push(a[c]);else for(;a[c];c++)d.push(a[c]);return d}}var u,v;c.documentElement.compareDocumentPosition?u=function(a,b){if(a===b){h=!0;return 0}if(!a.compareDocumentPosition||!b.compareDocumentPosition)return a.compareDocumentPosition?-1:1;return a.compareDocumentPosition(b)&4?-1:1}:(u=function(a,b){if(a===b){h=!0;return 0}if(a.sourceIndex&&b.sourceIndex)return a.sourceIndex-b.sourceIndex;var c,d,e=[],f=[],g=a.parentNode,i=b.parentNode,j=g;if(g===i)return v(a,b);if(!g)return-1;if(!i)return 1;while(j)e.unshift(j),j=j.parentNode;j=i;while(j)f.unshift(j),j=j.parentNode;c=e.length,d=f.length;for(var k=0;k<c&&k<d;k++)if(e[k]!==f[k])return v(e[k],f[k]);return k===c?v(a,f[k],-1):v(e[k],b,1)},v=function(a,b,c){if(a===b)return c;var d=a.nextSibling;while(d){if(d===b)return-1;d=d.nextSibling}return 1}),function(){var a=c.createElement("div"),d="script"+(new Date).getTime(),e=c.documentElement;a.innerHTML="<a name='"+d+"'/>",e.insertBefore(a,e.firstChild),c.getElementById(d)&&(o.find.ID=function(a,c,d){if(typeof c.getElementById!="undefined"&&!d){var e=c.getElementById(a[1]);return e?e.id===a[1]||typeof e.getAttributeNode!="undefined"&&e.getAttributeNode("id").nodeValue===a[1]?[e]:b:[]}},o.filter.ID=function(a,b){var c=typeof a.getAttributeNode!="undefined"&&a.getAttributeNode("id");return a.nodeType===1&&c&&c.nodeValue===b}),e.removeChild(a),e=a=null}(),function(){var a=c.createElement("div");a.appendChild(c.createComment("")),a.getElementsByTagName("*").length>0&&(o.find.TAG=function(a,b){var c=b.getElementsByTagName(a[1]);if(a[1]==="*"){var d=[];for(var e=0;c[e];e++)c[e].nodeType===1&&d.push(c[e]);c=d}return c}),a.innerHTML="<a href='#'></a>",a.firstChild&&typeof a.firstChild.getAttribute!="undefined"&&a.firstChild.getAttribute("href")!=="#"&&(o.attrHandle.href=function(a){return a.getAttribute("href",2)}),a=null}(),c.querySelectorAll&&function(){var a=m,b=c.createElement("div"),d="__sizzle__";b.innerHTML="<p class='TEST'></p>";if(!b.querySelectorAll||b.querySelectorAll(".TEST").length!==0){m=function(b,e,f,g){e=e||c;if(!g&&!m.isXML(e)){var h=/^(\w+$)|^\.([\w\-]+$)|^#([\w\-]+$)/.exec(b);if(h&&(e.nodeType===1||e.nodeType===9)){if(h[1])return s(e.getElementsByTagName(b),f);if(h[2]&&o.find.CLASS&&e.getElementsByClassName)return s(e.getElementsByClassName(h[2]),f)}if(e.nodeType===9){if(b==="body"&&e.body)return s([e.body],f);if(h&&h[3]){var i=e.getElementById(h[3]);if(!i||!i.parentNode)return s([],f);if(i.id===h[3])return s([i],f)}try{return s(e.querySelectorAll(b),f)}catch(j){}}else if(e.nodeType===1&&e.nodeName.toLowerCase()!=="object"){var k=e,l=e.getAttribute("id"),n=l||d,p=e.parentNode,q=/^\s*[+~]/.test(b);l?n=n.replace(/'/g,"\\$&"):e.setAttribute("id",n),q&&p&&(e=e.parentNode);try{if(!q||p)return s(e.querySelectorAll("[id='"+n+"'] "+b),f)}catch(r){}finally{l||k.removeAttribute("id")}}}return a(b,e,f,g)};for(var e in a)m[e]=a[e];b=null}}(),function(){var a=c.documentElement,b=a.matchesSelector||a.mozMatchesSelector||a.webkitMatchesSelector||a.msMatchesSelector;if(b){var d=!b.call(c.createElement("div"),"div"),e=!1;try{b.call(c.documentElement,"[test!='']:sizzle")}catch(f){e=!0}m.matchesSelector=function(a,c){c=c.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!m.isXML(a))try{if(e||!o.match.PSEUDO.test(c)&&!/!=/.test(c)){var f=b.call(a,c);if(f||!d||a.document&&a.document.nodeType!==11)return f}}catch(g){}return m(c,null,null,[a]).length>0}}}(),function(){var a=c.createElement("div");a.innerHTML="<div class='test e'></div><div class='test'></div>";if(!!a.getElementsByClassName&&a.getElementsByClassName("e").length!==0){a.lastChild.className="e";if(a.getElementsByClassName("e").length===1)return;o.order.splice(1,0,"CLASS"),o.find.CLASS=function(a,b,c){if(typeof b.getElementsByClassName!="undefined"&&!c)return b.getElementsByClassName(a[1])},a=null}}(),c.documentElement.contains?m.contains=function(a,b){return a!==b&&(a.contains?a.contains(b):!0)}:c.documentElement.compareDocumentPosition?m.contains=function(a,b){return!!(a.compareDocumentPosition(b)&16)}:m.contains=function(){return!1},m.isXML=function(a){var b=(a?a.ownerDocument||a:0).documentElement;return b?b.nodeName!=="HTML":!1};var y=function(a,b,c){var d,e=[],f="",g=b.nodeType?[b]:b;while(d=o.match.PSEUDO.exec(a))f+=d[0],a=a.replace(o.match.PSEUDO,"");a=o.relative[a]?a+"*":a;for(var h=0,i=g.length;h<i;h++)m(a,g[h],e,c);return m.filter(f,e)};m.attr=f.attr,m.selectors.attrMap={},f.find=m,f.expr=m.selectors,f.expr[":"]=f.expr.filters,f.unique=m.uniqueSort,f.text=m.getText,f.isXMLDoc=m.isXML,f.contains=m.contains}();var L=/Until$/,M=/^(?:parents|prevUntil|prevAll)/,N=/,/,O=/^.[^:#\[\.,]*$/,P=Array.prototype.slice,Q=f.expr.match.POS,R={children:!0,contents:!0,next:!0,prev:!0};f.fn.extend({find:function(a){var b=this,c,d;if(typeof a!="string")return f(a).filter(function(){for(c=0,d=b.length;c<d;c++)if(f.contains(b[c],this))return!0});var e=this.pushStack("","find",a),g,h,i;for(c=0,d=this.length;c<d;c++){g=e.length,f.find(a,this[c],e);if(c>0)for(h=g;h<e.length;h++)for(i=0;i<g;i++)if(e[i]===e[h]){e.splice(h--,1);break}}return e},has:function(a){var b=f(a);return this.filter(function(){for(var a=0,c=b.length;a<c;a++)if(f.contains(this,b[a]))return!0})},not:function(a){return this.pushStack(T(this,a,!1),"not",a)},filter:function(a){return this.pushStack(T(this,a,!0),"filter",a)},is:function(a){return!!a&&(typeof a=="string"?Q.test(a)?f(a,this.context).index(this[0])>=0:f.filter(a,this).length>0:this.filter(a).length>0)},closest:function(a,b){var c=[],d,e,g=this[0];if(f.isArray(a)){var h=1;while(g&&g.ownerDocument&&g!==b){for(d=0;d<a.length;d++)f(g).is(a[d])&&c.push({selector:a[d],elem:g,level:h});g=g.parentNode,h++}return c}var i=Q.test(a)||typeof a!="string"?f(a,b||this.context):0;for(d=0,e=this.length;d<e;d++){g=this[d];while(g){if(i?i.index(g)>-1:f.find.matchesSelector(g,a)){c.push(g);break}g=g.parentNode;if(!g||!g.ownerDocument||g===b||g.nodeType===11)break}}c=c.length>1?f.unique(c):c;return this.pushStack(c,"closest",a)},index:function(a){if(!a)return this[0]&&this[0].parentNode?this.prevAll().length:-1;if(typeof a=="string")return f.inArray(this[0],f(a));return f.inArray(a.jquery?a[0]:a,this)},add:function(a,b){var c=typeof a=="string"?f(a,b):f.makeArray(a&&a.nodeType?[a]:a),d=f.merge(this.get(),c);return this.pushStack(S(c[0])||S(d[0])?d:f.unique(d))},andSelf:function(){return this.add(this.prevObject)}}),f.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return f.dir(a,"parentNode")},parentsUntil:function(a,b,c){return f.dir(a,"parentNode",c)},next:function(a){return f.nth(a,2,"nextSibling")},prev:function(a){return f.nth(a,2,"previousSibling")},nextAll:function(a){return f.dir(a,"nextSibling")},prevAll:function(a){return f.dir(a,"previousSibling")},nextUntil:function(a,b,c){return f.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return f.dir(a,"previousSibling",c)},siblings:function(a){return f.sibling(a.parentNode.firstChild,a)},children:function(a){return f.sibling(a.firstChild)},contents:function(a){return f.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:f.makeArray(a.childNodes)}},function(a,b){f.fn[a]=function(c,d){var e=f.map(this,b,c);L.test(a)||(d=c),d&&typeof d=="string"&&(e=f.filter(d,e)),e=this.length>1&&!R[a]?f.unique(e):e,(this.length>1||N.test(d))&&M.test(a)&&(e=e.reverse());return this.pushStack(e,a,P.call(arguments).join(","))}}),f.extend({filter:function(a,b,c){c&&(a=":not("+a+")");return b.length===1?f.find.matchesSelector(b[0],a)?[b[0]]:[]:f.find.matches(a,b)},dir:function(a,c,d){var e=[],g=a[c];while(g&&g.nodeType!==9&&(d===b||g.nodeType!==1||!f(g).is(d)))g.nodeType===1&&e.push(g),g=g[c];return e},nth:function(a,b,c,d){b=b||1;var e=0;for(;a;a=a[c])if(a.nodeType===1&&++e===b)break;return a},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var V="abbr|article|aside|audio|canvas|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",W=/ jQuery\d+="(?:\d+|null)"/g,X=/^\s+/,Y=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,Z=/<([\w:]+)/,$=/<tbody/i,_=/<|&#?\w+;/,ba=/<(?:script|style)/i,bb=/<(?:script|object|embed|option|style)/i,bc=new RegExp("<(?:"+V+")","i"),bd=/checked\s*(?:[^=]|=\s*.checked.)/i,be=/\/(java|ecma)script/i,bf=/^\s*<!(?:\[CDATA\[|\-\-)/,bg={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],area:[1,"<map>","</map>"],_default:[0,"",""]},bh=U(c);bg.optgroup=bg.option,bg.tbody=bg.tfoot=bg.colgroup=bg.caption=bg.thead,bg.th=bg.td,f.support.htmlSerialize||(bg._default=[1,"div<div>","</div>"]),f.fn.extend({text:function(a){if(f.isFunction(a))return this.each(function(b){var c=f(this);c.text(a.call(this,b,c.text()))});if(typeof a!="object"&&a!==b)return this.empty().append((this[0]&&this[0].ownerDocument||c).createTextNode(a));return f.text(this)},wrapAll:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapAll(a.call(this,b))});if(this[0]){var b=f(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapInner(a.call(this,b))});return this.each(function(){var b=f(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=f.isFunction(a);return this.each(function(c){f(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){f.nodeName(this,"body")||f(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=f.clean(arguments);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=this.pushStack(this,"after",arguments);a.push.apply(a,f.clean(arguments));return a}},remove:function(a,b){for(var c=0,d;(d=this[c])!=null;c++)if(!a||f.filter(a,[d]).length)!b&&d.nodeType===1&&(f.cleanData(d.getElementsByTagName("*")),f.cleanData([d])),d.parentNode&&d.parentNode.removeChild(d);return this},empty:function() -{for(var a=0,b;(b=this[a])!=null;a++){b.nodeType===1&&f.cleanData(b.getElementsByTagName("*"));while(b.firstChild)b.removeChild(b.firstChild)}return this},clone:function(a,b){a=a==null?!1:a,b=b==null?a:b;return this.map(function(){return f.clone(this,a,b)})},html:function(a){if(a===b)return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(W,""):null;if(typeof a=="string"&&!ba.test(a)&&(f.support.leadingWhitespace||!X.test(a))&&!bg[(Z.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(Y,"<$1></$2>");try{for(var c=0,d=this.length;c<d;c++)this[c].nodeType===1&&(f.cleanData(this[c].getElementsByTagName("*")),this[c].innerHTML=a)}catch(e){this.empty().append(a)}}else f.isFunction(a)?this.each(function(b){var c=f(this);c.html(a.call(this,b,c.html()))}):this.empty().append(a);return this},replaceWith:function(a){if(this[0]&&this[0].parentNode){if(f.isFunction(a))return this.each(function(b){var c=f(this),d=c.html();c.replaceWith(a.call(this,b,d))});typeof a!="string"&&(a=f(a).detach());return this.each(function(){var b=this.nextSibling,c=this.parentNode;f(this).remove(),b?f(b).before(a):f(c).append(a)})}return this.length?this.pushStack(f(f.isFunction(a)?a():a),"replaceWith",a):this},detach:function(a){return this.remove(a,!0)},domManip:function(a,c,d){var e,g,h,i,j=a[0],k=[];if(!f.support.checkClone&&arguments.length===3&&typeof j=="string"&&bd.test(j))return this.each(function(){f(this).domManip(a,c,d,!0)});if(f.isFunction(j))return this.each(function(e){var g=f(this);a[0]=j.call(this,e,c?g.html():b),g.domManip(a,c,d)});if(this[0]){i=j&&j.parentNode,f.support.parentNode&&i&&i.nodeType===11&&i.childNodes.length===this.length?e={fragment:i}:e=f.buildFragment(a,this,k),h=e.fragment,h.childNodes.length===1?g=h=h.firstChild:g=h.firstChild;if(g){c=c&&f.nodeName(g,"tr");for(var l=0,m=this.length,n=m-1;l<m;l++)d.call(c?bi(this[l],g):this[l],e.cacheable||m>1&&l<n?f.clone(h,!0,!0):h)}k.length&&f.each(k,bp)}return this}}),f.buildFragment=function(a,b,d){var e,g,h,i,j=a[0];b&&b[0]&&(i=b[0].ownerDocument||b[0]),i.createDocumentFragment||(i=c),a.length===1&&typeof j=="string"&&j.length<512&&i===c&&j.charAt(0)==="<"&&!bb.test(j)&&(f.support.checkClone||!bd.test(j))&&(f.support.html5Clone||!bc.test(j))&&(g=!0,h=f.fragments[j],h&&h!==1&&(e=h)),e||(e=i.createDocumentFragment(),f.clean(a,i,e,d)),g&&(f.fragments[j]=h?e:1);return{fragment:e,cacheable:g}},f.fragments={},f.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){f.fn[a]=function(c){var d=[],e=f(c),g=this.length===1&&this[0].parentNode;if(g&&g.nodeType===11&&g.childNodes.length===1&&e.length===1){e[b](this[0]);return this}for(var h=0,i=e.length;h<i;h++){var j=(h>0?this.clone(!0):this).get();f(e[h])[b](j),d=d.concat(j)}return this.pushStack(d,a,e.selector)}}),f.extend({clone:function(a,b,c){var d,e,g,h=f.support.html5Clone||!bc.test("<"+a.nodeName)?a.cloneNode(!0):bo(a);if((!f.support.noCloneEvent||!f.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!f.isXMLDoc(a)){bk(a,h),d=bl(a),e=bl(h);for(g=0;d[g];++g)e[g]&&bk(d[g],e[g])}if(b){bj(a,h);if(c){d=bl(a),e=bl(h);for(g=0;d[g];++g)bj(d[g],e[g])}}d=e=null;return h},clean:function(a,b,d,e){var g;b=b||c,typeof b.createElement=="undefined"&&(b=b.ownerDocument||b[0]&&b[0].ownerDocument||c);var h=[],i;for(var j=0,k;(k=a[j])!=null;j++){typeof k=="number"&&(k+="");if(!k)continue;if(typeof k=="string")if(!_.test(k))k=b.createTextNode(k);else{k=k.replace(Y,"<$1></$2>");var l=(Z.exec(k)||["",""])[1].toLowerCase(),m=bg[l]||bg._default,n=m[0],o=b.createElement("div");b===c?bh.appendChild(o):U(b).appendChild(o),o.innerHTML=m[1]+k+m[2];while(n--)o=o.lastChild;if(!f.support.tbody){var p=$.test(k),q=l==="table"&&!p?o.firstChild&&o.firstChild.childNodes:m[1]==="<table>"&&!p?o.childNodes:[];for(i=q.length-1;i>=0;--i)f.nodeName(q[i],"tbody")&&!q[i].childNodes.length&&q[i].parentNode.removeChild(q[i])}!f.support.leadingWhitespace&&X.test(k)&&o.insertBefore(b.createTextNode(X.exec(k)[0]),o.firstChild),k=o.childNodes}var r;if(!f.support.appendChecked)if(k[0]&&typeof (r=k.length)=="number")for(i=0;i<r;i++)bn(k[i]);else bn(k);k.nodeType?h.push(k):h=f.merge(h,k)}if(d){g=function(a){return!a.type||be.test(a.type)};for(j=0;h[j];j++)if(e&&f.nodeName(h[j],"script")&&(!h[j].type||h[j].type.toLowerCase()==="text/javascript"))e.push(h[j].parentNode?h[j].parentNode.removeChild(h[j]):h[j]);else{if(h[j].nodeType===1){var s=f.grep(h[j].getElementsByTagName("script"),g);h.splice.apply(h,[j+1,0].concat(s))}d.appendChild(h[j])}}return h},cleanData:function(a){var b,c,d=f.cache,e=f.event.special,g=f.support.deleteExpando;for(var h=0,i;(i=a[h])!=null;h++){if(i.nodeName&&f.noData[i.nodeName.toLowerCase()])continue;c=i[f.expando];if(c){b=d[c];if(b&&b.events){for(var j in b.events)e[j]?f.event.remove(i,j):f.removeEvent(i,j,b.handle);b.handle&&(b.handle.elem=null)}g?delete i[f.expando]:i.removeAttribute&&i.removeAttribute(f.expando),delete d[c]}}}});var bq=/alpha\([^)]*\)/i,br=/opacity=([^)]*)/,bs=/([A-Z]|^ms)/g,bt=/^-?\d+(?:px)?$/i,bu=/^-?\d/,bv=/^([\-+])=([\-+.\de]+)/,bw={position:"absolute",visibility:"hidden",display:"block"},bx=["Left","Right"],by=["Top","Bottom"],bz,bA,bB;f.fn.css=function(a,c){if(arguments.length===2&&c===b)return this;return f.access(this,a,c,!0,function(a,c,d){return d!==b?f.style(a,c,d):f.css(a,c)})},f.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=bz(a,"opacity","opacity");return c===""?"1":c}return a.style.opacity}}},cssNumber:{fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":f.support.cssFloat?"cssFloat":"styleFloat"},style:function(a,c,d,e){if(!!a&&a.nodeType!==3&&a.nodeType!==8&&!!a.style){var g,h,i=f.camelCase(c),j=a.style,k=f.cssHooks[i];c=f.cssProps[i]||i;if(d===b){if(k&&"get"in k&&(g=k.get(a,!1,e))!==b)return g;return j[c]}h=typeof d,h==="string"&&(g=bv.exec(d))&&(d=+(g[1]+1)*+g[2]+parseFloat(f.css(a,c)),h="number");if(d==null||h==="number"&&isNaN(d))return;h==="number"&&!f.cssNumber[i]&&(d+="px");if(!k||!("set"in k)||(d=k.set(a,d))!==b)try{j[c]=d}catch(l){}}},css:function(a,c,d){var e,g;c=f.camelCase(c),g=f.cssHooks[c],c=f.cssProps[c]||c,c==="cssFloat"&&(c="float");if(g&&"get"in g&&(e=g.get(a,!0,d))!==b)return e;if(bz)return bz(a,c)},swap:function(a,b,c){var d={};for(var e in b)d[e]=a.style[e],a.style[e]=b[e];c.call(a);for(e in b)a.style[e]=d[e]}}),f.curCSS=f.css,f.each(["height","width"],function(a,b){f.cssHooks[b]={get:function(a,c,d){var e;if(c){if(a.offsetWidth!==0)return bC(a,b,d);f.swap(a,bw,function(){e=bC(a,b,d)});return e}},set:function(a,b){if(!bt.test(b))return b;b=parseFloat(b);if(b>=0)return b+"px"}}}),f.support.opacity||(f.cssHooks.opacity={get:function(a,b){return br.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?parseFloat(RegExp.$1)/100+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=f.isNumeric(b)?"alpha(opacity="+b*100+")":"",g=d&&d.filter||c.filter||"";c.zoom=1;if(b>=1&&f.trim(g.replace(bq,""))===""){c.removeAttribute("filter");if(d&&!d.filter)return}c.filter=bq.test(g)?g.replace(bq,e):g+" "+e}}),f(function(){f.support.reliableMarginRight||(f.cssHooks.marginRight={get:function(a,b){var c;f.swap(a,{display:"inline-block"},function(){b?c=bz(a,"margin-right","marginRight"):c=a.style.marginRight});return c}})}),c.defaultView&&c.defaultView.getComputedStyle&&(bA=function(a,b){var c,d,e;b=b.replace(bs,"-$1").toLowerCase(),(d=a.ownerDocument.defaultView)&&(e=d.getComputedStyle(a,null))&&(c=e.getPropertyValue(b),c===""&&!f.contains(a.ownerDocument.documentElement,a)&&(c=f.style(a,b)));return c}),c.documentElement.currentStyle&&(bB=function(a,b){var c,d,e,f=a.currentStyle&&a.currentStyle[b],g=a.style;f===null&&g&&(e=g[b])&&(f=e),!bt.test(f)&&bu.test(f)&&(c=g.left,d=a.runtimeStyle&&a.runtimeStyle.left,d&&(a.runtimeStyle.left=a.currentStyle.left),g.left=b==="fontSize"?"1em":f||0,f=g.pixelLeft+"px",g.left=c,d&&(a.runtimeStyle.left=d));return f===""?"auto":f}),bz=bA||bB,f.expr&&f.expr.filters&&(f.expr.filters.hidden=function(a){var b=a.offsetWidth,c=a.offsetHeight;return b===0&&c===0||!f.support.reliableHiddenOffsets&&(a.style&&a.style.display||f.css(a,"display"))==="none"},f.expr.filters.visible=function(a){return!f.expr.filters.hidden(a)});var bD=/%20/g,bE=/\[\]$/,bF=/\r?\n/g,bG=/#.*$/,bH=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,bI=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,bJ=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,bK=/^(?:GET|HEAD)$/,bL=/^\/\//,bM=/\?/,bN=/<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi,bO=/^(?:select|textarea)/i,bP=/\s+/,bQ=/([?&])_=[^&]*/,bR=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+))?)?/,bS=f.fn.load,bT={},bU={},bV,bW,bX=["*/"]+["*"];try{bV=e.href}catch(bY){bV=c.createElement("a"),bV.href="",bV=bV.href}bW=bR.exec(bV.toLowerCase())||[],f.fn.extend({load:function(a,c,d){if(typeof a!="string"&&bS)return bS.apply(this,arguments);if(!this.length)return this;var e=a.indexOf(" ");if(e>=0){var g=a.slice(e,a.length);a=a.slice(0,e)}var h="GET";c&&(f.isFunction(c)?(d=c,c=b):typeof c=="object"&&(c=f.param(c,f.ajaxSettings.traditional),h="POST"));var i=this;f.ajax({url:a,type:h,dataType:"html",data:c,complete:function(a,b,c){c=a.responseText,a.isResolved()&&(a.done(function(a){c=a}),i.html(g?f("<div>").append(c.replace(bN,"")).find(g):c)),d&&i.each(d,[c,b,a])}});return this},serialize:function(){return f.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?f.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||bO.test(this.nodeName)||bI.test(this.type))}).map(function(a,b){var c=f(this).val();return c==null?null:f.isArray(c)?f.map(c,function(a,c){return{name:b.name,value:a.replace(bF,"\r\n")}}):{name:b.name,value:c.replace(bF,"\r\n")}}).get()}}),f.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){f.fn[b]=function(a){return this.on(b,a)}}),f.each(["get","post"],function(a,c){f[c]=function(a,d,e,g){f.isFunction(d)&&(g=g||e,e=d,d=b);return f.ajax({type:c,url:a,data:d,success:e,dataType:g})}}),f.extend({getScript:function(a,c){return f.get(a,b,c,"script")},getJSON:function(a,b,c){return f.get(a,b,c,"json")},ajaxSetup:function(a,b){b?b_(a,f.ajaxSettings):(b=a,a=f.ajaxSettings),b_(a,b);return a},ajaxSettings:{url:bV,isLocal:bJ.test(bW[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":bX},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":f.parseJSON,"text xml":f.parseXML},flatOptions:{context:!0,url:!0}},ajaxPrefilter:bZ(bT),ajaxTransport:bZ(bU),ajax:function(a,c){function w(a,c,l,m){if(s!==2){s=2,q&&clearTimeout(q),p=b,n=m||"",v.readyState=a>0?4:0;var o,r,u,w=c,x=l?cb(d,v,l):b,y,z;if(a>=200&&a<300||a===304){if(d.ifModified){if(y=v.getResponseHeader("Last-Modified"))f.lastModified[k]=y;if(z=v.getResponseHeader("Etag"))f.etag[k]=z}if(a===304)w="notmodified",o=!0;else try{r=cc(d,x),w="success",o=!0}catch(A){w="parsererror",u=A}}else{u=w;if(!w||a)w="error",a<0&&(a=0)}v.status=a,v.statusText=""+(c||w),o?h.resolveWith(e,[r,w,v]):h.rejectWith(e,[v,w,u]),v.statusCode(j),j=b,t&&g.trigger("ajax"+(o?"Success":"Error"),[v,d,o?r:u]),i.fireWith(e,[v,w]),t&&(g.trigger("ajaxComplete",[v,d]),--f.active||f.event.trigger("ajaxStop"))}}typeof a=="object"&&(c=a,a=b),c=c||{};var d=f.ajaxSetup({},c),e=d.context||d,g=e!==d&&(e.nodeType||e instanceof f)?f(e):f.event,h=f.Deferred(),i=f.Callbacks("once memory"),j=d.statusCode||{},k,l={},m={},n,o,p,q,r,s=0,t,u,v={readyState:0,setRequestHeader:function(a,b){if(!s){var c=a.toLowerCase();a=m[c]=m[c]||a,l[a]=b}return this},getAllResponseHeaders:function(){return s===2?n:null},getResponseHeader:function(a){var c;if(s===2){if(!o){o={};while(c=bH.exec(n))o[c[1].toLowerCase()]=c[2]}c=o[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){s||(d.mimeType=a);return this},abort:function(a){a=a||"abort",p&&p.abort(a),w(0,a);return this}};h.promise(v),v.success=v.done,v.error=v.fail,v.complete=i.add,v.statusCode=function(a){if(a){var b;if(s<2)for(b in a)j[b]=[j[b],a[b]];else b=a[v.status],v.then(b,b)}return this},d.url=((a||d.url)+"").replace(bG,"").replace(bL,bW[1]+"//"),d.dataTypes=f.trim(d.dataType||"*").toLowerCase().split(bP),d.crossDomain==null&&(r=bR.exec(d.url.toLowerCase()),d.crossDomain=!(!r||r[1]==bW[1]&&r[2]==bW[2]&&(r[3]||(r[1]==="http:"?80:443))==(bW[3]||(bW[1]==="http:"?80:443)))),d.data&&d.processData&&typeof d.data!="string"&&(d.data=f.param(d.data,d.traditional)),b$(bT,d,c,v);if(s===2)return!1;t=d.global,d.type=d.type.toUpperCase(),d.hasContent=!bK.test(d.type),t&&f.active++===0&&f.event.trigger("ajaxStart");if(!d.hasContent){d.data&&(d.url+=(bM.test(d.url)?"&":"?")+d.data,delete d.data),k=d.url;if(d.cache===!1){var x=f.now(),y=d.url.replace(bQ,"$1_="+x);d.url=y+(y===d.url?(bM.test(d.url)?"&":"?")+"_="+x:"")}}(d.data&&d.hasContent&&d.contentType!==!1||c.contentType)&&v.setRequestHeader("Content-Type",d.contentType),d.ifModified&&(k=k||d.url,f.lastModified[k]&&v.setRequestHeader("If-Modified-Since",f.lastModified[k]),f.etag[k]&&v.setRequestHeader("If-None-Match",f.etag[k])),v.setRequestHeader("Accept",d.dataTypes[0]&&d.accepts[d.dataTypes[0]]?d.accepts[d.dataTypes[0]]+(d.dataTypes[0]!=="*"?", "+bX+"; q=0.01":""):d.accepts["*"]);for(u in d.headers)v.setRequestHeader(u,d.headers[u]);if(d.beforeSend&&(d.beforeSend.call(e,v,d)===!1||s===2)){v.abort();return!1}for(u in{success:1,error:1,complete:1})v[u](d[u]);p=b$(bU,d,c,v);if(!p)w(-1,"No Transport");else{v.readyState=1,t&&g.trigger("ajaxSend",[v,d]),d.async&&d.timeout>0&&(q=setTimeout(function(){v.abort("timeout")},d.timeout));try{s=1,p.send(l,w)}catch(z){if(s<2)w(-1,z);else throw z}}return v},param:function(a,c){var d=[],e=function(a,b){b=f.isFunction(b)?b():b,d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=f.ajaxSettings.traditional);if(f.isArray(a)||a.jquery&&!f.isPlainObject(a))f.each(a,function(){e(this.name,this.value)});else for(var g in a)ca(g,a[g],c,e);return d.join("&").replace(bD,"+")}}),f.extend({active:0,lastModified:{},etag:{}});var cd=f.now(),ce=/(\=)\?(&|$)|\?\?/i;f.ajaxSetup({jsonp:"callback",jsonpCallback:function(){return f.expando+"_"+cd++}}),f.ajaxPrefilter("json jsonp",function(b,c,d){var e=b.contentType==="application/x-www-form-urlencoded"&&typeof b.data=="string";if(b.dataTypes[0]==="jsonp"||b.jsonp!==!1&&(ce.test(b.url)||e&&ce.test(b.data))){var g,h=b.jsonpCallback=f.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,i=a[h],j=b.url,k=b.data,l="$1"+h+"$2";b.jsonp!==!1&&(j=j.replace(ce,l),b.url===j&&(e&&(k=k.replace(ce,l)),b.data===k&&(j+=(/\?/.test(j)?"&":"?")+b.jsonp+"="+h))),b.url=j,b.data=k,a[h]=function(a){g=[a]},d.always(function(){a[h]=i,g&&f.isFunction(i)&&a[h](g[0])}),b.converters["script json"]=function(){g||f.error(h+" was not called");return g[0]},b.dataTypes[0]="json";return"script"}}),f.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){f.globalEval(a);return a}}}),f.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),f.ajaxTransport("script",function(a){if(a.crossDomain){var d,e=c.head||c.getElementsByTagName("head")[0]||c.documentElement;return{send:function(f,g){d=c.createElement("script"),d.async="async",a.scriptCharset&&(d.charset=a.scriptCharset),d.src=a.url,d.onload=d.onreadystatechange=function(a,c){if(c||!d.readyState||/loaded|complete/.test(d.readyState))d.onload=d.onreadystatechange=null,e&&d.parentNode&&e.removeChild(d),d=b,c||g(200,"success")},e.insertBefore(d,e.firstChild)},abort:function(){d&&d.onload(0,1)}}}});var cf=a.ActiveXObject?function(){for(var a in ch)ch[a](0,1)}:!1,cg=0,ch;f.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&ci()||cj()}:ci,function(a){f.extend(f.support,{ajax:!!a,cors:!!a&&"withCredentials"in a})}(f.ajaxSettings.xhr()),f.support.ajax&&f.ajaxTransport(function(c){if(!c.crossDomain||f.support.cors){var d;return{send:function(e,g){var h=c.xhr(),i,j;c.username?h.open(c.type,c.url,c.async,c.username,c.password):h.open(c.type,c.url,c.async);if(c.xhrFields)for(j in c.xhrFields)h[j]=c.xhrFields[j];c.mimeType&&h.overrideMimeType&&h.overrideMimeType(c.mimeType),!c.crossDomain&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(j in e)h.setRequestHeader(j,e[j])}catch(k){}h.send(c.hasContent&&c.data||null),d=function(a,e){var j,k,l,m,n;try{if(d&&(e||h.readyState===4)){d=b,i&&(h.onreadystatechange=f.noop,cf&&delete ch[i]);if(e)h.readyState!==4&&h.abort();else{j=h.status,l=h.getAllResponseHeaders(),m={},n=h.responseXML,n&&n.documentElement&&(m.xml=n),m.text=h.responseText;try{k=h.statusText}catch(o){k=""}!j&&c.isLocal&&!c.crossDomain?j=m.text?200:404:j===1223&&(j=204)}}}catch(p){e||g(-1,p)}m&&g(j,k,m,l)},!c.async||h.readyState===4?d():(i=++cg,cf&&(ch||(ch={},f(a).unload(cf)),ch[i]=d),h.onreadystatechange=d)},abort:function(){d&&d(0,1)}}}});var ck={},cl,cm,cn=/^(?:toggle|show|hide)$/,co=/^([+\-]=)?([\d+.\-]+)([a-z%]*)$/i,cp,cq=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]],cr;f.fn.extend({show:function(a,b,c){var d,e;if(a||a===0)return this.animate(cu("show",3),a,b,c);for(var g=0,h=this.length;g<h;g++)d=this[g],d.style&&(e=d.style.display,!f._data(d,"olddisplay")&&e==="none"&&(e=d.style.display=""),e===""&&f.css(d,"display")==="none"&&f._data(d,"olddisplay",cv(d.nodeName)));for(g=0;g<h;g++){d=this[g];if(d.style){e=d.style.display;if(e===""||e==="none")d.style.display=f._data(d,"olddisplay")||""}}return this},hide:function(a,b,c){if(a||a===0)return this.animate(cu("hide",3),a,b,c);var d,e,g=0,h=this.length;for(;g<h;g++)d=this[g],d.style&&(e=f.css(d,"display"),e!=="none"&&!f._data(d,"olddisplay")&&f._data(d,"olddisplay",e));for(g=0;g<h;g++)this[g].style&&(this[g].style.display="none");return this},_toggle:f.fn.toggle,toggle:function(a,b,c){var d=typeof a=="boolean";f.isFunction(a)&&f.isFunction(b)?this._toggle.apply(this,arguments):a==null||d?this.each(function(){var b=d?a:f(this).is(":hidden");f(this)[b?"show":"hide"]()}):this.animate(cu("toggle",3),a,b,c);return this},fadeTo:function(a,b,c,d){return this.filter(":hidden").css("opacity",0).show().end().animate({opacity:b},a,c,d)},animate:function(a,b,c,d){function g(){e.queue===!1&&f._mark(this);var b=f.extend({},e),c=this.nodeType===1,d=c&&f(this).is(":hidden"),g,h,i,j,k,l,m,n,o;b.animatedProperties={};for(i in a){g=f.camelCase(i),i!==g&&(a[g]=a[i],delete a[i]),h=a[g],f.isArray(h)?(b.animatedProperties[g]=h[1],h=a[g]=h[0]):b.animatedProperties[g]=b.specialEasing&&b.specialEasing[g]||b.easing||"swing";if(h==="hide"&&d||h==="show"&&!d)return b.complete.call(this);c&&(g==="height"||g==="width")&&(b.overflow=[this.style.overflow,this.style.overflowX,this.style.overflowY],f.css(this,"display")==="inline"&&f.css(this,"float")==="none"&&(!f.support.inlineBlockNeedsLayout||cv(this.nodeName)==="inline"?this.style.display="inline-block":this.style.zoom=1))}b.overflow!=null&&(this.style.overflow="hidden");for(i in a)j=new f.fx(this,b,i),h=a[i],cn.test(h)?(o=f._data(this,"toggle"+i)||(h==="toggle"?d?"show":"hide":0),o?(f._data(this,"toggle"+i,o==="show"?"hide":"show"),j[o]()):j[h]()):(k=co.exec(h),l=j.cur(),k?(m=parseFloat(k[2]),n=k[3]||(f.cssNumber[i]?"":"px"),n!=="px"&&(f.style(this,i,(m||1)+n),l=(m||1)/j.cur()*l,f.style(this,i,l+n)),k[1]&&(m=(k[1]==="-="?-1:1)*m+l),j.custom(l,m,n)):j.custom(l,h,""));return!0}var e=f.speed(b,c,d);if(f.isEmptyObject(a))return this.each(e.complete,[!1]);a=f.extend({},a);return e.queue===!1?this.each(g):this.queue(e.queue,g)},stop:function(a,c,d){typeof a!="string"&&(d=c,c=a,a=b),c&&a!==!1&&this.queue(a||"fx",[]);return this.each(function(){function h(a,b,c){var e=b[c];f.removeData(a,c,!0),e.stop(d)}var b,c=!1,e=f.timers,g=f._data(this);d||f._unmark(!0,this);if(a==null)for(b in g)g[b]&&g[b].stop&&b.indexOf(".run")===b.length-4&&h(this,g,b);else g[b=a+".run"]&&g[b].stop&&h(this,g,b);for(b=e.length;b--;)e[b].elem===this&&(a==null||e[b].queue===a)&&(d?e[b](!0):e[b].saveState(),c=!0,e.splice(b,1));(!d||!c)&&f.dequeue(this,a)})}}),f.each({slideDown:cu("show",1),slideUp:cu("hide",1),slideToggle:cu("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(a,b){f.fn[a]=function(a,c,d){return this.animate(b,a,c,d)}}),f.extend({speed:function(a,b,c){var d=a&&typeof a=="object"?f.extend({},a):{complete:c||!c&&b||f.isFunction(a)&&a,duration:a,easing:c&&b||b&&!f.isFunction(b)&&b};d.duration=f.fx.off?0:typeof d.duration=="number"?d.duration:d.duration in f.fx.speeds?f.fx.speeds[d.duration]:f.fx.speeds._default;if(d.queue==null||d.queue===!0)d.queue="fx";d.old=d.complete,d.complete=function(a){f.isFunction(d.old)&&d.old.call(this),d.queue?f.dequeue(this,d.queue):a!==!1&&f._unmark(this)};return d},easing:{linear:function(a,b,c,d){return c+d*a},swing:function(a,b,c,d){return(-Math.cos(a*Math.PI)/2+.5)*d+c}},timers:[],fx:function(a,b,c){this.options=b,this.elem=a,this.prop=c,b.orig=b.orig||{}}}),f.fx.prototype={update:function(){this.options.step&&this.options.step.call(this.elem,this.now,this),(f.fx.step[this.prop]||f.fx.step._default)(this)},cur:function(){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null))return this.elem[this.prop];var a,b=f.css(this.elem,this.prop);return isNaN(a=parseFloat(b))?!b||b==="auto"?0:b:a},custom:function(a,c,d){function h(a){return e.step(a)}var e=this,g=f.fx;this.startTime=cr||cs(),this.end=c,this.now=this.start=a,this.pos=this.state=0,this.unit=d||this.unit||(f.cssNumber[this.prop]?"":"px"),h.queue=this.options.queue,h.elem=this.elem,h.saveState=function(){e.options.hide&&f._data(e.elem,"fxshow"+e.prop)===b&&f._data(e.elem,"fxshow"+e.prop,e.start)},h()&&f.timers.push(h)&&!cp&&(cp=setInterval(g.tick,g.interval))},show:function(){var a=f._data(this.elem,"fxshow"+this.prop);this.options.orig[this.prop]=a||f.style(this.elem,this.prop),this.options.show=!0,a!==b?this.custom(this.cur(),a):this.custom(this.prop==="width"||this.prop==="height"?1:0,this.cur()),f(this.elem).show()},hide:function(){this.options.orig[this.prop]=f._data(this.elem,"fxshow"+this.prop)||f.style(this.elem,this.prop),this.options.hide=!0,this.custom(this.cur(),0)},step:function(a){var b,c,d,e=cr||cs(),g=!0,h=this.elem,i=this.options;if(a||e>=i.duration+this.startTime){this.now=this.end,this.pos=this.state=1,this.update(),i.animatedProperties[this.prop]=!0;for(b in i.animatedProperties)i.animatedProperties[b]!==!0&&(g=!1);if(g){i.overflow!=null&&!f.support.shrinkWrapBlocks&&f.each(["","X","Y"],function(a,b){h.style["overflow"+b]=i.overflow[a]}),i.hide&&f(h).hide();if(i.hide||i.show)for(b in i.animatedProperties)f.style(h,b,i.orig[b]),f.removeData(h,"fxshow"+b,!0),f.removeData(h,"toggle"+b,!0);d=i.complete,d&&(i.complete=!1,d.call(h))}return!1}i.duration==Infinity?this.now=e:(c=e-this.startTime,this.state=c/i.duration,this.pos=f.easing[i.animatedProperties[this.prop]](this.state,c,0,1,i.duration),this.now=this.start+(this.end-this.start)*this.pos),this.update();return!0}},f.extend(f.fx,{tick:function(){var a,b=f.timers,c=0;for(;c<b.length;c++)a=b[c],!a()&&b[c]===a&&b.splice(c--,1);b.length||f.fx.stop()},interval:13,stop:function(){clearInterval(cp),cp=null},speeds:{slow:600,fast:200,_default:400},step:{opacity:function(a){f.style(a.elem,"opacity",a.now)},_default:function(a){a.elem.style&&a.elem.style[a.prop]!=null?a.elem.style[a.prop]=a.now+a.unit:a.elem[a.prop]=a.now}}}),f.each(["width","height"],function(a,b){f.fx.step[b]=function(a){f.style(a.elem,b,Math.max(0,a.now)+a.unit)}}),f.expr&&f.expr.filters&&(f.expr.filters.animated=function(a){return f.grep(f.timers,function(b){return a===b.elem}).length});var cw=/^t(?:able|d|h)$/i,cx=/^(?:body|html)$/i;"getBoundingClientRect"in c.documentElement?f.fn.offset=function(a){var b=this[0],c;if(a)return this.each(function(b){f.offset.setOffset(this,a,b)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return f.offset.bodyOffset(b);try{c=b.getBoundingClientRect()}catch(d){}var e=b.ownerDocument,g=e.documentElement;if(!c||!f.contains(g,b))return c?{top:c.top,left:c.left}:{top:0,left:0};var h=e.body,i=cy(e),j=g.clientTop||h.clientTop||0,k=g.clientLeft||h.clientLeft||0,l=i.pageYOffset||f.support.boxModel&&g.scrollTop||h.scrollTop,m=i.pageXOffset||f.support.boxModel&&g.scrollLeft||h.scrollLeft,n=c.top+l-j,o=c.left+m-k;return{top:n,left:o}}:f.fn.offset=function(a){var b=this[0];if(a)return this.each(function(b){f.offset.setOffset(this,a,b)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return f.offset.bodyOffset(b);var c,d=b.offsetParent,e=b,g=b.ownerDocument,h=g.documentElement,i=g.body,j=g.defaultView,k=j?j.getComputedStyle(b,null):b.currentStyle,l=b.offsetTop,m=b.offsetLeft;while((b=b.parentNode)&&b!==i&&b!==h){if(f.support.fixedPosition&&k.position==="fixed")break;c=j?j.getComputedStyle(b,null):b.currentStyle,l-=b.scrollTop,m-=b.scrollLeft,b===d&&(l+=b.offsetTop,m+=b.offsetLeft,f.support.doesNotAddBorder&&(!f.support.doesAddBorderForTableAndCells||!cw.test(b.nodeName))&&(l+=parseFloat(c.borderTopWidth)||0,m+=parseFloat(c.borderLeftWidth)||0),e=d,d=b.offsetParent),f.support.subtractsBorderForOverflowNotVisible&&c.overflow!=="visible"&&(l+=parseFloat(c.borderTopWidth)||0,m+=parseFloat(c.borderLeftWidth)||0),k=c}if(k.position==="relative"||k.position==="static")l+=i.offsetTop,m+=i.offsetLeft;f.support.fixedPosition&&k.position==="fixed"&&(l+=Math.max(h.scrollTop,i.scrollTop),m+=Math.max(h.scrollLeft,i.scrollLeft));return{top:l,left:m}},f.offset={bodyOffset:function(a){var b=a.offsetTop,c=a.offsetLeft;f.support.doesNotIncludeMarginInBodyOffset&&(b+=parseFloat(f.css(a,"marginTop"))||0,c+=parseFloat(f.css(a,"marginLeft"))||0);return{top:b,left:c}},setOffset:function(a,b,c){var d=f.css(a,"position");d==="static"&&(a.style.position="relative");var e=f(a),g=e.offset(),h=f.css(a,"top"),i=f.css(a,"left"),j=(d==="absolute"||d==="fixed")&&f.inArray("auto",[h,i])>-1,k={},l={},m,n;j?(l=e.position(),m=l.top,n=l.left):(m=parseFloat(h)||0,n=parseFloat(i)||0),f.isFunction(b)&&(b=b.call(a,c,g)),b.top!=null&&(k.top=b.top-g.top+m),b.left!=null&&(k.left=b.left-g.left+n),"using"in b?b.using.call(a,k):e.css(k)}},f.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),c=this.offset(),d=cx.test(b[0].nodeName)?{top:0,left:0}:b.offset();c.top-=parseFloat(f.css(a,"marginTop"))||0,c.left-=parseFloat(f.css(a,"marginLeft"))||0,d.top+=parseFloat(f.css(b[0],"borderTopWidth"))||0,d.left+=parseFloat(f.css(b[0],"borderLeftWidth"))||0;return{top:c.top-d.top,left:c.left-d.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||c.body;while(a&&!cx.test(a.nodeName)&&f.css(a,"position")==="static")a=a.offsetParent;return a})}}),f.each(["Left","Top"],function(a,c){var d="scroll"+c;f.fn[d]=function(c){var e,g;if(c===b){e=this[0];if(!e)return null;g=cy(e);return g?"pageXOffset"in g?g[a?"pageYOffset":"pageXOffset"]:f.support.boxModel&&g.document.documentElement[d]||g.document.body[d]:e[d]}return this.each(function(){g=cy(this),g?g.scrollTo(a?f(g).scrollLeft():c,a?c:f(g).scrollTop()):this[d]=c})}}),f.each(["Height","Width"],function(a,c){var d=c.toLowerCase();f.fn["inner"+c]=function(){var a=this[0];return a?a.style?parseFloat(f.css(a,d,"padding")):this[d]():null},f.fn["outer"+c]=function(a){var b=this[0];return b?b.style?parseFloat(f.css(b,d,a?"margin":"border")):this[d]():null},f.fn[d]=function(a){var e=this[0];if(!e)return a==null?null:this;if(f.isFunction(a))return this.each(function(b){var c=f(this);c[d](a.call(this,b,c[d]()))});if(f.isWindow(e)){var g=e.document.documentElement["client"+c],h=e.document.body;return e.document.compatMode==="CSS1Compat"&&g||h&&h["client"+c]||g}if(e.nodeType===9)return Math.max(e.documentElement["client"+c],e.body["scroll"+c],e.documentElement["scroll"+c],e.body["offset"+c],e.documentElement["offset"+c]);if(a===b){var i=f.css(e,d),j=parseFloat(i);return f.isNumeric(j)?j:i}return this.css(d,typeof a=="string"?a:a+"px")}}),a.jQuery=a.$=f,typeof define=="function"&&define.amd&&define.amd.jQuery&&define("jquery",[],function(){return f})})(window); \ No newline at end of file diff --git a/pub/lib/jquery/jquery-ui-1.8.18.custom.min.js b/pub/lib/jquery/jquery-ui-1.8.18.custom.min.js deleted file mode 100644 index f00a62f133fc71ce777ac2d9ae9a2dbe30305ce9..0000000000000000000000000000000000000000 --- a/pub/lib/jquery/jquery-ui-1.8.18.custom.min.js +++ /dev/null @@ -1,356 +0,0 @@ -/*! - * jQuery UI 1.8.18 - * - * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) - * Dual licensed under the MIT or GPL Version 2 licenses. - * http://jquery.org/license - * - * http://docs.jquery.com/UI - */(function(a,b){function d(b){return!a(b).parents().andSelf().filter(function(){return a.curCSS(this,"visibility")==="hidden"||a.expr.filters.hidden(this)}).length}function c(b,c){var e=b.nodeName.toLowerCase();if("area"===e){var f=b.parentNode,g=f.name,h;if(!b.href||!g||f.nodeName.toLowerCase()!=="map")return!1;h=a("img[usemap=#"+g+"]")[0];return!!h&&d(h)}return(/input|select|textarea|button|object/.test(e)?!b.disabled:"a"==e?b.href||c:c)&&d(b)}a.ui=a.ui||{};a.ui.version||(a.extend(a.ui,{version:"1.8.18",keyCode:{ALT:18,BACKSPACE:8,CAPS_LOCK:20,COMMA:188,COMMAND:91,COMMAND_LEFT:91,COMMAND_RIGHT:93,CONTROL:17,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,INSERT:45,LEFT:37,MENU:93,NUMPAD_ADD:107,NUMPAD_DECIMAL:110,NUMPAD_DIVIDE:111,NUMPAD_ENTER:108,NUMPAD_MULTIPLY:106,NUMPAD_SUBTRACT:109,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SHIFT:16,SPACE:32,TAB:9,UP:38,WINDOWS:91}}),a.fn.extend({propAttr:a.fn.prop||a.fn.attr,_focus:a.fn.focus,focus:function(b,c){return typeof b=="number"?this.each(function(){var d=this;setTimeout(function(){a(d).focus(),c&&c.call(d)},b)}):this._focus.apply(this,arguments)},scrollParent:function(){var b;a.browser.msie&&/(static|relative)/.test(this.css("position"))||/absolute/.test(this.css("position"))?b=this.parents().filter(function(){return/(relative|absolute|fixed)/.test(a.curCSS(this,"position",1))&&/(auto|scroll)/.test(a.curCSS(this,"overflow",1)+a.curCSS(this,"overflow-y",1)+a.curCSS(this,"overflow-x",1))}).eq(0):b=this.parents().filter(function(){return/(auto|scroll)/.test(a.curCSS(this,"overflow",1)+a.curCSS(this,"overflow-y",1)+a.curCSS(this,"overflow-x",1))}).eq(0);return/fixed/.test(this.css("position"))||!b.length?a(document):b},zIndex:function(c){if(c!==b)return this.css("zIndex",c);if(this.length){var d=a(this[0]),e,f;while(d.length&&d[0]!==document){e=d.css("position");if(e==="absolute"||e==="relative"||e==="fixed"){f=parseInt(d.css("zIndex"),10);if(!isNaN(f)&&f!==0)return f}d=d.parent()}}return 0},disableSelection:function(){return this.bind((a.support.selectstart?"selectstart":"mousedown")+".ui-disableSelection",function(a){a.preventDefault()})},enableSelection:function(){return this.unbind(".ui-disableSelection")}}),a.each(["Width","Height"],function(c,d){function h(b,c,d,f){a.each(e,function(){c-=parseFloat(a.curCSS(b,"padding"+this,!0))||0,d&&(c-=parseFloat(a.curCSS(b,"border"+this+"Width",!0))||0),f&&(c-=parseFloat(a.curCSS(b,"margin"+this,!0))||0)});return c}var e=d==="Width"?["Left","Right"]:["Top","Bottom"],f=d.toLowerCase(),g={innerWidth:a.fn.innerWidth,innerHeight:a.fn.innerHeight,outerWidth:a.fn.outerWidth,outerHeight:a.fn.outerHeight};a.fn["inner"+d]=function(c){if(c===b)return g["inner"+d].call(this);return this.each(function(){a(this).css(f,h(this,c)+"px")})},a.fn["outer"+d]=function(b,c){if(typeof b!="number")return g["outer"+d].call(this,b);return this.each(function(){a(this).css(f,h(this,b,!0,c)+"px")})}}),a.extend(a.expr[":"],{data:function(b,c,d){return!!a.data(b,d[3])},focusable:function(b){return c(b,!isNaN(a.attr(b,"tabindex")))},tabbable:function(b){var d=a.attr(b,"tabindex"),e=isNaN(d);return(e||d>=0)&&c(b,!e)}}),a(function(){var b=document.body,c=b.appendChild(c=document.createElement("div"));c.offsetHeight,a.extend(c.style,{minHeight:"100px",height:"auto",padding:0,borderWidth:0}),a.support.minHeight=c.offsetHeight===100,a.support.selectstart="onselectstart"in c,b.removeChild(c).style.display="none"}),a.extend(a.ui,{plugin:{add:function(b,c,d){var e=a.ui[b].prototype;for(var f in d)e.plugins[f]=e.plugins[f]||[],e.plugins[f].push([c,d[f]])},call:function(a,b,c){var d=a.plugins[b];if(!!d&&!!a.element[0].parentNode)for(var e=0;e<d.length;e++)a.options[d[e][0]]&&d[e][1].apply(a.element,c)}},contains:function(a,b){return document.compareDocumentPosition?a.compareDocumentPosition(b)&16:a!==b&&a.contains(b)},hasScroll:function(b,c){if(a(b).css("overflow")==="hidden")return!1;var d=c&&c==="left"?"scrollLeft":"scrollTop",e=!1;if(b[d]>0)return!0;b[d]=1,e=b[d]>0,b[d]=0;return e},isOverAxis:function(a,b,c){return a>b&&a<b+c},isOver:function(b,c,d,e,f,g){return a.ui.isOverAxis(b,d,f)&&a.ui.isOverAxis(c,e,g)}}))})(jQuery);/*! - * jQuery UI Widget 1.8.18 - * - * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) - * Dual licensed under the MIT or GPL Version 2 licenses. - * http://jquery.org/license - * - * http://docs.jquery.com/UI/Widget - */(function(a,b){if(a.cleanData){var c=a.cleanData;a.cleanData=function(b){for(var d=0,e;(e=b[d])!=null;d++)try{a(e).triggerHandler("remove")}catch(f){}c(b)}}else{var d=a.fn.remove;a.fn.remove=function(b,c){return this.each(function(){c||(!b||a.filter(b,[this]).length)&&a("*",this).add([this]).each(function(){try{a(this).triggerHandler("remove")}catch(b){}});return d.call(a(this),b,c)})}}a.widget=function(b,c,d){var e=b.split(".")[0],f;b=b.split(".")[1],f=e+"-"+b,d||(d=c,c=a.Widget),a.expr[":"][f]=function(c){return!!a.data(c,b)},a[e]=a[e]||{},a[e][b]=function(a,b){arguments.length&&this._createWidget(a,b)};var g=new c;g.options=a.extend(!0,{},g.options),a[e][b].prototype=a.extend(!0,g,{namespace:e,widgetName:b,widgetEventPrefix:a[e][b].prototype.widgetEventPrefix||b,widgetBaseClass:f},d),a.widget.bridge(b,a[e][b])},a.widget.bridge=function(c,d){a.fn[c]=function(e){var f=typeof e=="string",g=Array.prototype.slice.call(arguments,1),h=this;e=!f&&g.length?a.extend.apply(null,[!0,e].concat(g)):e;if(f&&e.charAt(0)==="_")return h;f?this.each(function(){var d=a.data(this,c),f=d&&a.isFunction(d[e])?d[e].apply(d,g):d;if(f!==d&&f!==b){h=f;return!1}}):this.each(function(){var b=a.data(this,c);b?b.option(e||{})._init():a.data(this,c,new d(e,this))});return h}},a.Widget=function(a,b){arguments.length&&this._createWidget(a,b)},a.Widget.prototype={widgetName:"widget",widgetEventPrefix:"",options:{disabled:!1},_createWidget:function(b,c){a.data(c,this.widgetName,this),this.element=a(c),this.options=a.extend(!0,{},this.options,this._getCreateOptions(),b);var d=this;this.element.bind("remove."+this.widgetName,function(){d.destroy()}),this._create(),this._trigger("create"),this._init()},_getCreateOptions:function(){return a.metadata&&a.metadata.get(this.element[0])[this.widgetName]},_create:function(){},_init:function(){},destroy:function(){this.element.unbind("."+this.widgetName).removeData(this.widgetName),this.widget().unbind("."+this.widgetName).removeAttr("aria-disabled").removeClass(this.widgetBaseClass+"-disabled "+"ui-state-disabled")},widget:function(){return this.element},option:function(c,d){var e=c;if(arguments.length===0)return a.extend({},this.options);if(typeof c=="string"){if(d===b)return this.options[c];e={},e[c]=d}this._setOptions(e);return this},_setOptions:function(b){var c=this;a.each(b,function(a,b){c._setOption(a,b)});return this},_setOption:function(a,b){this.options[a]=b,a==="disabled"&&this.widget()[b?"addClass":"removeClass"](this.widgetBaseClass+"-disabled"+" "+"ui-state-disabled").attr("aria-disabled",b);return this},enable:function(){return this._setOption("disabled",!1)},disable:function(){return this._setOption("disabled",!0)},_trigger:function(b,c,d){var e,f,g=this.options[b];d=d||{},c=a.Event(c),c.type=(b===this.widgetEventPrefix?b:this.widgetEventPrefix+b).toLowerCase(),c.target=this.element[0],f=c.originalEvent;if(f)for(e in f)e in c||(c[e]=f[e]);this.element.trigger(c,d);return!(a.isFunction(g)&&g.call(this.element[0],c,d)===!1||c.isDefaultPrevented())}}})(jQuery);/*! - * jQuery UI Mouse 1.8.18 - * - * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) - * Dual licensed under the MIT or GPL Version 2 licenses. - * http://jquery.org/license - * - * http://docs.jquery.com/UI/Mouse - * - * Depends: - * jquery.ui.widget.js - */(function(a,b){var c=!1;a(document).mouseup(function(a){c=!1}),a.widget("ui.mouse",{options:{cancel:":input,option",distance:1,delay:0},_mouseInit:function(){var b=this;this.element.bind("mousedown."+this.widgetName,function(a){return b._mouseDown(a)}).bind("click."+this.widgetName,function(c){if(!0===a.data(c.target,b.widgetName+".preventClickEvent")){a.removeData(c.target,b.widgetName+".preventClickEvent"),c.stopImmediatePropagation();return!1}}),this.started=!1},_mouseDestroy:function(){this.element.unbind("."+this.widgetName)},_mouseDown:function(b){if(!c){this._mouseStarted&&this._mouseUp(b),this._mouseDownEvent=b;var d=this,e=b.which==1,f=typeof this.options.cancel=="string"&&b.target.nodeName?a(b.target).closest(this.options.cancel).length:!1;if(!e||f||!this._mouseCapture(b))return!0;this.mouseDelayMet=!this.options.delay,this.mouseDelayMet||(this._mouseDelayTimer=setTimeout(function(){d.mouseDelayMet=!0},this.options.delay));if(this._mouseDistanceMet(b)&&this._mouseDelayMet(b)){this._mouseStarted=this._mouseStart(b)!==!1;if(!this._mouseStarted){b.preventDefault();return!0}}!0===a.data(b.target,this.widgetName+".preventClickEvent")&&a.removeData(b.target,this.widgetName+".preventClickEvent"),this._mouseMoveDelegate=function(a){return d._mouseMove(a)},this._mouseUpDelegate=function(a){return d._mouseUp(a)},a(document).bind("mousemove."+this.widgetName,this._mouseMoveDelegate).bind("mouseup."+this.widgetName,this._mouseUpDelegate),b.preventDefault(),c=!0;return!0}},_mouseMove:function(b){if(a.browser.msie&&!(document.documentMode>=9)&&!b.button)return this._mouseUp(b);if(this._mouseStarted){this._mouseDrag(b);return b.preventDefault()}this._mouseDistanceMet(b)&&this._mouseDelayMet(b)&&(this._mouseStarted=this._mouseStart(this._mouseDownEvent,b)!==!1,this._mouseStarted?this._mouseDrag(b):this._mouseUp(b));return!this._mouseStarted},_mouseUp:function(b){a(document).unbind("mousemove."+this.widgetName,this._mouseMoveDelegate).unbind("mouseup."+this.widgetName,this._mouseUpDelegate),this._mouseStarted&&(this._mouseStarted=!1,b.target==this._mouseDownEvent.target&&a.data(b.target,this.widgetName+".preventClickEvent",!0),this._mouseStop(b));return!1},_mouseDistanceMet:function(a){return Math.max(Math.abs(this._mouseDownEvent.pageX-a.pageX),Math.abs(this._mouseDownEvent.pageY-a.pageY))>=this.options.distance},_mouseDelayMet:function(a){return this.mouseDelayMet},_mouseStart:function(a){},_mouseDrag:function(a){},_mouseStop:function(a){},_mouseCapture:function(a){return!0}})})(jQuery);/* - * jQuery UI Position 1.8.18 - * - * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) - * Dual licensed under the MIT or GPL Version 2 licenses. - * http://jquery.org/license - * - * http://docs.jquery.com/UI/Position - */(function(a,b){a.ui=a.ui||{};var c=/left|center|right/,d=/top|center|bottom/,e="center",f={},g=a.fn.position,h=a.fn.offset;a.fn.position=function(b){if(!b||!b.of)return g.apply(this,arguments);b=a.extend({},b);var h=a(b.of),i=h[0],j=(b.collision||"flip").split(" "),k=b.offset?b.offset.split(" "):[0,0],l,m,n;i.nodeType===9?(l=h.width(),m=h.height(),n={top:0,left:0}):i.setTimeout?(l=h.width(),m=h.height(),n={top:h.scrollTop(),left:h.scrollLeft()}):i.preventDefault?(b.at="left top",l=m=0,n={top:b.of.pageY,left:b.of.pageX}):(l=h.outerWidth(),m=h.outerHeight(),n=h.offset()),a.each(["my","at"],function(){var a=(b[this]||"").split(" ");a.length===1&&(a=c.test(a[0])?a.concat([e]):d.test(a[0])?[e].concat(a):[e,e]),a[0]=c.test(a[0])?a[0]:e,a[1]=d.test(a[1])?a[1]:e,b[this]=a}),j.length===1&&(j[1]=j[0]),k[0]=parseInt(k[0],10)||0,k.length===1&&(k[1]=k[0]),k[1]=parseInt(k[1],10)||0,b.at[0]==="right"?n.left+=l:b.at[0]===e&&(n.left+=l/2),b.at[1]==="bottom"?n.top+=m:b.at[1]===e&&(n.top+=m/2),n.left+=k[0],n.top+=k[1];return this.each(function(){var c=a(this),d=c.outerWidth(),g=c.outerHeight(),h=parseInt(a.curCSS(this,"marginLeft",!0))||0,i=parseInt(a.curCSS(this,"marginTop",!0))||0,o=d+h+(parseInt(a.curCSS(this,"marginRight",!0))||0),p=g+i+(parseInt(a.curCSS(this,"marginBottom",!0))||0),q=a.extend({},n),r;b.my[0]==="right"?q.left-=d:b.my[0]===e&&(q.left-=d/2),b.my[1]==="bottom"?q.top-=g:b.my[1]===e&&(q.top-=g/2),f.fractions||(q.left=Math.round(q.left),q.top=Math.round(q.top)),r={left:q.left-h,top:q.top-i},a.each(["left","top"],function(c,e){a.ui.position[j[c]]&&a.ui.position[j[c]][e](q,{targetWidth:l,targetHeight:m,elemWidth:d,elemHeight:g,collisionPosition:r,collisionWidth:o,collisionHeight:p,offset:k,my:b.my,at:b.at})}),a.fn.bgiframe&&c.bgiframe(),c.offset(a.extend(q,{using:b.using}))})},a.ui.position={fit:{left:function(b,c){var d=a(window),e=c.collisionPosition.left+c.collisionWidth-d.width()-d.scrollLeft();b.left=e>0?b.left-e:Math.max(b.left-c.collisionPosition.left,b.left)},top:function(b,c){var d=a(window),e=c.collisionPosition.top+c.collisionHeight-d.height()-d.scrollTop();b.top=e>0?b.top-e:Math.max(b.top-c.collisionPosition.top,b.top)}},flip:{left:function(b,c){if(c.at[0]!==e){var d=a(window),f=c.collisionPosition.left+c.collisionWidth-d.width()-d.scrollLeft(),g=c.my[0]==="left"?-c.elemWidth:c.my[0]==="right"?c.elemWidth:0,h=c.at[0]==="left"?c.targetWidth:-c.targetWidth,i=-2*c.offset[0];b.left+=c.collisionPosition.left<0?g+h+i:f>0?g+h+i:0}},top:function(b,c){if(c.at[1]!==e){var d=a(window),f=c.collisionPosition.top+c.collisionHeight-d.height()-d.scrollTop(),g=c.my[1]==="top"?-c.elemHeight:c.my[1]==="bottom"?c.elemHeight:0,h=c.at[1]==="top"?c.targetHeight:-c.targetHeight,i=-2*c.offset[1];b.top+=c.collisionPosition.top<0?g+h+i:f>0?g+h+i:0}}}},a.offset.setOffset||(a.offset.setOffset=function(b,c){/static/.test(a.curCSS(b,"position"))&&(b.style.position="relative");var d=a(b),e=d.offset(),f=parseInt(a.curCSS(b,"top",!0),10)||0,g=parseInt(a.curCSS(b,"left",!0),10)||0,h={top:c.top-e.top+f,left:c.left-e.left+g};"using"in c?c.using.call(b,h):d.css(h)},a.fn.offset=function(b){var c=this[0];if(!c||!c.ownerDocument)return null;if(b)return this.each(function(){a.offset.setOffset(this,b)});return h.call(this)}),function(){var b=document.getElementsByTagName("body")[0],c=document.createElement("div"),d,e,g,h,i;d=document.createElement(b?"div":"body"),g={visibility:"hidden",width:0,height:0,border:0,margin:0,background:"none"},b&&a.extend(g,{position:"absolute",left:"-1000px",top:"-1000px"});for(var j in g)d.style[j]=g[j];d.appendChild(c),e=b||document.documentElement,e.insertBefore(d,e.firstChild),c.style.cssText="position: absolute; left: 10.7432222px; top: 10.432325px; height: 30px; width: 201px;",h=a(c).offset(function(a,b){return b}).offset(),d.innerHTML="",e.removeChild(d),i=h.top+h.left+(b?2e3:0),f.fractions=i>21&&i<22}()})(jQuery);/* - * jQuery UI Draggable 1.8.18 - * - * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) - * Dual licensed under the MIT or GPL Version 2 licenses. - * http://jquery.org/license - * - * http://docs.jquery.com/UI/Draggables - * - * Depends: - * jquery.ui.core.js - * jquery.ui.mouse.js - * jquery.ui.widget.js - */(function(a,b){a.widget("ui.draggable",a.ui.mouse,{widgetEventPrefix:"drag",options:{addClasses:!0,appendTo:"parent",axis:!1,connectToSortable:!1,containment:!1,cursor:"auto",cursorAt:!1,grid:!1,handle:!1,helper:"original",iframeFix:!1,opacity:!1,refreshPositions:!1,revert:!1,revertDuration:500,scope:"default",scroll:!0,scrollSensitivity:20,scrollSpeed:20,snap:!1,snapMode:"both",snapTolerance:20,stack:!1,zIndex:!1},_create:function(){this.options.helper=="original"&&!/^(?:r|a|f)/.test(this.element.css("position"))&&(this.element[0].style.position="relative"),this.options.addClasses&&this.element.addClass("ui-draggable"),this.options.disabled&&this.element.addClass("ui-draggable-disabled"),this._mouseInit()},destroy:function(){if(!!this.element.data("draggable")){this.element.removeData("draggable").unbind(".draggable").removeClass("ui-draggable ui-draggable-dragging ui-draggable-disabled"),this._mouseDestroy();return this}},_mouseCapture:function(b){var c=this.options;if(this.helper||c.disabled||a(b.target).is(".ui-resizable-handle"))return!1;this.handle=this._getHandle(b);if(!this.handle)return!1;c.iframeFix&&a(c.iframeFix===!0?"iframe":c.iframeFix).each(function(){a('<div class="ui-draggable-iframeFix" style="background: #fff;"></div>').css({width:this.offsetWidth+"px",height:this.offsetHeight+"px",position:"absolute",opacity:"0.001",zIndex:1e3}).css(a(this).offset()).appendTo("body")});return!0},_mouseStart:function(b){var c=this.options;this.helper=this._createHelper(b),this._cacheHelperProportions(),a.ui.ddmanager&&(a.ui.ddmanager.current=this),this._cacheMargins(),this.cssPosition=this.helper.css("position"),this.scrollParent=this.helper.scrollParent(),this.offset=this.positionAbs=this.element.offset(),this.offset={top:this.offset.top-this.margins.top,left:this.offset.left-this.margins.left},a.extend(this.offset,{click:{left:b.pageX-this.offset.left,top:b.pageY-this.offset.top},parent:this._getParentOffset(),relative:this._getRelativeOffset()}),this.originalPosition=this.position=this._generatePosition(b),this.originalPageX=b.pageX,this.originalPageY=b.pageY,c.cursorAt&&this._adjustOffsetFromHelper(c.cursorAt),c.containment&&this._setContainment();if(this._trigger("start",b)===!1){this._clear();return!1}this._cacheHelperProportions(),a.ui.ddmanager&&!c.dropBehaviour&&a.ui.ddmanager.prepareOffsets(this,b),this.helper.addClass("ui-draggable-dragging"),this._mouseDrag(b,!0),a.ui.ddmanager&&a.ui.ddmanager.dragStart(this,b);return!0},_mouseDrag:function(b,c){this.position=this._generatePosition(b),this.positionAbs=this._convertPositionTo("absolute");if(!c){var d=this._uiHash();if(this._trigger("drag",b,d)===!1){this._mouseUp({});return!1}this.position=d.position}if(!this.options.axis||this.options.axis!="y")this.helper[0].style.left=this.position.left+"px";if(!this.options.axis||this.options.axis!="x")this.helper[0].style.top=this.position.top+"px";a.ui.ddmanager&&a.ui.ddmanager.drag(this,b);return!1},_mouseStop:function(b){var c=!1;a.ui.ddmanager&&!this.options.dropBehaviour&&(c=a.ui.ddmanager.drop(this,b)),this.dropped&&(c=this.dropped,this.dropped=!1);if((!this.element[0]||!this.element[0].parentNode)&&this.options.helper=="original")return!1;if(this.options.revert=="invalid"&&!c||this.options.revert=="valid"&&c||this.options.revert===!0||a.isFunction(this.options.revert)&&this.options.revert.call(this.element,c)){var d=this;a(this.helper).animate(this.originalPosition,parseInt(this.options.revertDuration,10),function(){d._trigger("stop",b)!==!1&&d._clear()})}else this._trigger("stop",b)!==!1&&this._clear();return!1},_mouseUp:function(b){this.options.iframeFix===!0&&a("div.ui-draggable-iframeFix").each(function(){this.parentNode.removeChild(this)}),a.ui.ddmanager&&a.ui.ddmanager.dragStop(this,b);return a.ui.mouse.prototype._mouseUp.call(this,b)},cancel:function(){this.helper.is(".ui-draggable-dragging")?this._mouseUp({}):this._clear();return this},_getHandle:function(b){var c=!this.options.handle||!a(this.options.handle,this.element).length?!0:!1;a(this.options.handle,this.element).find("*").andSelf().each(function(){this==b.target&&(c=!0)});return c},_createHelper:function(b){var c=this.options,d=a.isFunction(c.helper)?a(c.helper.apply(this.element[0],[b])):c.helper=="clone"?this.element.clone().removeAttr("id"):this.element;d.parents("body").length||d.appendTo(c.appendTo=="parent"?this.element[0].parentNode:c.appendTo),d[0]!=this.element[0]&&!/(fixed|absolute)/.test(d.css("position"))&&d.css("position","absolute");return d},_adjustOffsetFromHelper:function(b){typeof b=="string"&&(b=b.split(" ")),a.isArray(b)&&(b={left:+b[0],top:+b[1]||0}),"left"in b&&(this.offset.click.left=b.left+this.margins.left),"right"in b&&(this.offset.click.left=this.helperProportions.width-b.right+this.margins.left),"top"in b&&(this.offset.click.top=b.top+this.margins.top),"bottom"in b&&(this.offset.click.top=this.helperProportions.height-b.bottom+this.margins.top)},_getParentOffset:function(){this.offsetParent=this.helper.offsetParent();var b=this.offsetParent.offset();this.cssPosition=="absolute"&&this.scrollParent[0]!=document&&a.ui.contains(this.scrollParent[0],this.offsetParent[0])&&(b.left+=this.scrollParent.scrollLeft(),b.top+=this.scrollParent.scrollTop());if(this.offsetParent[0]==document.body||this.offsetParent[0].tagName&&this.offsetParent[0].tagName.toLowerCase()=="html"&&a.browser.msie)b={top:0,left:0};return{top:b.top+(parseInt(this.offsetParent.css("borderTopWidth"),10)||0),left:b.left+(parseInt(this.offsetParent.css("borderLeftWidth"),10)||0)}},_getRelativeOffset:function(){if(this.cssPosition=="relative"){var a=this.element.position();return{top:a.top-(parseInt(this.helper.css("top"),10)||0)+this.scrollParent.scrollTop(),left:a.left-(parseInt(this.helper.css("left"),10)||0)+this.scrollParent.scrollLeft()}}return{top:0,left:0}},_cacheMargins:function(){this.margins={left:parseInt(this.element.css("marginLeft"),10)||0,top:parseInt(this.element.css("marginTop"),10)||0,right:parseInt(this.element.css("marginRight"),10)||0,bottom:parseInt(this.element.css("marginBottom"),10)||0}},_cacheHelperProportions:function(){this.helperProportions={width:this.helper.outerWidth(),height:this.helper.outerHeight()}},_setContainment:function(){var b=this.options;b.containment=="parent"&&(b.containment=this.helper[0].parentNode);if(b.containment=="document"||b.containment=="window")this.containment=[b.containment=="document"?0:a(window).scrollLeft()-this.offset.relative.left-this.offset.parent.left,b.containment=="document"?0:a(window).scrollTop()-this.offset.relative.top-this.offset.parent.top,(b.containment=="document"?0:a(window).scrollLeft())+a(b.containment=="document"?document:window).width()-this.helperProportions.width-this.margins.left,(b.containment=="document"?0:a(window).scrollTop())+(a(b.containment=="document"?document:window).height()||document.body.parentNode.scrollHeight)-this.helperProportions.height-this.margins.top];if(!/^(document|window|parent)$/.test(b.containment)&&b.containment.constructor!=Array){var c=a(b.containment),d=c[0];if(!d)return;var e=c.offset(),f=a(d).css("overflow")!="hidden";this.containment=[(parseInt(a(d).css("borderLeftWidth"),10)||0)+(parseInt(a(d).css("paddingLeft"),10)||0),(parseInt(a(d).css("borderTopWidth"),10)||0)+(parseInt(a(d).css("paddingTop"),10)||0),(f?Math.max(d.scrollWidth,d.offsetWidth):d.offsetWidth)-(parseInt(a(d).css("borderLeftWidth"),10)||0)-(parseInt(a(d).css("paddingRight"),10)||0)-this.helperProportions.width-this.margins.left-this.margins.right,(f?Math.max(d.scrollHeight,d.offsetHeight):d.offsetHeight)-(parseInt(a(d).css("borderTopWidth"),10)||0)-(parseInt(a(d).css("paddingBottom"),10)||0)-this.helperProportions.height-this.margins.top-this.margins.bottom],this.relative_container=c}else b.containment.constructor==Array&&(this.containment=b.containment)},_convertPositionTo:function(b,c){c||(c=this.position);var d=b=="absolute"?1:-1,e=this.options,f=this.cssPosition=="absolute"&&(this.scrollParent[0]==document||!a.ui.contains(this.scrollParent[0],this.offsetParent[0]))?this.offsetParent:this.scrollParent,g=/(html|body)/i.test(f[0].tagName);return{top:c.top+this.offset.relative.top*d+this.offset.parent.top*d-(a.browser.safari&&a.browser.version<526&&this.cssPosition=="fixed"?0:(this.cssPosition=="fixed"?-this.scrollParent.scrollTop():g?0:f.scrollTop())*d),left:c.left+this.offset.relative.left*d+this.offset.parent.left*d-(a.browser.safari&&a.browser.version<526&&this.cssPosition=="fixed"?0:(this.cssPosition=="fixed"?-this.scrollParent.scrollLeft():g?0:f.scrollLeft())*d)}},_generatePosition:function(b){var c=this.options,d=this.cssPosition=="absolute"&&(this.scrollParent[0]==document||!a.ui.contains(this.scrollParent[0],this.offsetParent[0]))?this.offsetParent:this.scrollParent,e=/(html|body)/i.test(d[0].tagName),f=b.pageX,g=b.pageY;if(this.originalPosition){var h;if(this.containment){if(this.relative_container){var i=this.relative_container.offset();h=[this.containment[0]+i.left,this.containment[1]+i.top,this.containment[2]+i.left,this.containment[3]+i.top]}else h=this.containment;b.pageX-this.offset.click.left<h[0]&&(f=h[0]+this.offset.click.left),b.pageY-this.offset.click.top<h[1]&&(g=h[1]+this.offset.click.top),b.pageX-this.offset.click.left>h[2]&&(f=h[2]+this.offset.click.left),b.pageY-this.offset.click.top>h[3]&&(g=h[3]+this.offset.click.top)}if(c.grid){var j=c.grid[1]?this.originalPageY+Math.round((g-this.originalPageY)/c.grid[1])*c.grid[1]:this.originalPageY;g=h?j-this.offset.click.top<h[1]||j-this.offset.click.top>h[3]?j-this.offset.click.top<h[1]?j+c.grid[1]:j-c.grid[1]:j:j;var k=c.grid[0]?this.originalPageX+Math.round((f-this.originalPageX)/c.grid[0])*c.grid[0]:this.originalPageX;f=h?k-this.offset.click.left<h[0]||k-this.offset.click.left>h[2]?k-this.offset.click.left<h[0]?k+c.grid[0]:k-c.grid[0]:k:k}}return{top:g-this.offset.click.top-this.offset.relative.top-this.offset.parent.top+(a.browser.safari&&a.browser.version<526&&this.cssPosition=="fixed"?0:this.cssPosition=="fixed"?-this.scrollParent.scrollTop():e?0:d.scrollTop()),left:f-this.offset.click.left-this.offset.relative.left-this.offset.parent.left+(a.browser.safari&&a.browser.version<526&&this.cssPosition=="fixed"?0:this.cssPosition=="fixed"?-this.scrollParent.scrollLeft():e?0:d.scrollLeft())}},_clear:function(){this.helper.removeClass("ui-draggable-dragging"),this.helper[0]!=this.element[0]&&!this.cancelHelperRemoval&&this.helper.remove(),this.helper=null,this.cancelHelperRemoval=!1},_trigger:function(b,c,d){d=d||this._uiHash(),a.ui.plugin.call(this,b,[c,d]),b=="drag"&&(this.positionAbs=this._convertPositionTo("absolute"));return a.Widget.prototype._trigger.call(this,b,c,d)},plugins:{},_uiHash:function(a){return{helper:this.helper,position:this.position,originalPosition:this.originalPosition,offset:this.positionAbs}}}),a.extend(a.ui.draggable,{version:"1.8.18"}),a.ui.plugin.add("draggable","connectToSortable",{start:function(b,c){var d=a(this).data("draggable"),e=d.options,f=a.extend({},c,{item:d.element});d.sortables=[],a(e.connectToSortable).each(function(){var c=a.data(this,"sortable");c&&!c.options.disabled&&(d.sortables.push({instance:c,shouldRevert:c.options.revert}),c.refreshPositions(),c._trigger("activate",b,f))})},stop:function(b,c){var d=a(this).data("draggable"),e=a.extend({},c,{item:d.element});a.each(d.sortables,function(){this.instance.isOver?(this.instance.isOver=0,d.cancelHelperRemoval=!0,this.instance.cancelHelperRemoval=!1,this.shouldRevert&&(this.instance.options.revert=!0),this.instance._mouseStop(b),this.instance.options.helper=this.instance.options._helper,d.options.helper=="original"&&this.instance.currentItem.css({top:"auto",left:"auto"})):(this.instance.cancelHelperRemoval=!1,this.instance._trigger("deactivate",b,e))})},drag:function(b,c){var d=a(this).data("draggable"),e=this,f=function(b){var c=this.offset.click.top,d=this.offset.click.left,e=this.positionAbs.top,f=this.positionAbs.left,g=b.height,h=b.width,i=b.top,j=b.left;return a.ui.isOver(e+c,f+d,i,j,g,h)};a.each(d.sortables,function(f){this.instance.positionAbs=d.positionAbs,this.instance.helperProportions=d.helperProportions,this.instance.offset.click=d.offset.click,this.instance._intersectsWith(this.instance.containerCache)?(this.instance.isOver||(this.instance.isOver=1,this.instance.currentItem=a(e).clone().removeAttr("id").appendTo(this.instance.element).data("sortable-item",!0),this.instance.options._helper=this.instance.options.helper,this.instance.options.helper=function(){return c.helper[0]},b.target=this.instance.currentItem[0],this.instance._mouseCapture(b,!0),this.instance._mouseStart(b,!0,!0),this.instance.offset.click.top=d.offset.click.top,this.instance.offset.click.left=d.offset.click.left,this.instance.offset.parent.left-=d.offset.parent.left-this.instance.offset.parent.left,this.instance.offset.parent.top-=d.offset.parent.top-this.instance.offset.parent.top,d._trigger("toSortable",b),d.dropped=this.instance.element,d.currentItem=d.element,this.instance.fromOutside=d),this.instance.currentItem&&this.instance._mouseDrag(b)):this.instance.isOver&&(this.instance.isOver=0,this.instance.cancelHelperRemoval=!0,this.instance.options.revert=!1,this.instance._trigger("out",b,this.instance._uiHash(this.instance)),this.instance._mouseStop(b,!0),this.instance.options.helper=this.instance.options._helper,this.instance.currentItem.remove(),this.instance.placeholder&&this.instance.placeholder.remove(),d._trigger("fromSortable",b),d.dropped=!1)})}}),a.ui.plugin.add("draggable","cursor",{start:function(b,c){var d=a("body"),e=a(this).data("draggable").options;d.css("cursor")&&(e._cursor=d.css("cursor")),d.css("cursor",e.cursor)},stop:function(b,c){var d=a(this).data("draggable").options;d._cursor&&a("body").css("cursor",d._cursor)}}),a.ui.plugin.add("draggable","opacity",{start:function(b,c){var d=a(c.helper),e=a(this).data("draggable").options;d.css("opacity")&&(e._opacity=d.css("opacity")),d.css("opacity",e.opacity)},stop:function(b,c){var d=a(this).data("draggable").options;d._opacity&&a(c.helper).css("opacity",d._opacity)}}),a.ui.plugin.add("draggable","scroll",{start:function(b,c){var d=a(this).data("draggable");d.scrollParent[0]!=document&&d.scrollParent[0].tagName!="HTML"&&(d.overflowOffset=d.scrollParent.offset())},drag:function(b,c){var d=a(this).data("draggable"),e=d.options,f=!1;if(d.scrollParent[0]!=document&&d.scrollParent[0].tagName!="HTML"){if(!e.axis||e.axis!="x")d.overflowOffset.top+d.scrollParent[0].offsetHeight-b.pageY<e.scrollSensitivity?d.scrollParent[0].scrollTop=f=d.scrollParent[0].scrollTop+e.scrollSpeed:b.pageY-d.overflowOffset.top<e.scrollSensitivity&&(d.scrollParent[0].scrollTop=f=d.scrollParent[0].scrollTop-e.scrollSpeed);if(!e.axis||e.axis!="y")d.overflowOffset.left+d.scrollParent[0].offsetWidth-b.pageX<e.scrollSensitivity?d.scrollParent[0].scrollLeft=f=d.scrollParent[0].scrollLeft+e.scrollSpeed:b.pageX-d.overflowOffset.left<e.scrollSensitivity&&(d.scrollParent[0].scrollLeft=f=d.scrollParent[0].scrollLeft-e.scrollSpeed)}else{if(!e.axis||e.axis!="x")b.pageY-a(document).scrollTop()<e.scrollSensitivity?f=a(document).scrollTop(a(document).scrollTop()-e.scrollSpeed):a(window).height()-(b.pageY-a(document).scrollTop())<e.scrollSensitivity&&(f=a(document).scrollTop(a(document).scrollTop()+e.scrollSpeed));if(!e.axis||e.axis!="y")b.pageX-a(document).scrollLeft()<e.scrollSensitivity?f=a(document).scrollLeft(a(document).scrollLeft()-e.scrollSpeed):a(window).width()-(b.pageX-a(document).scrollLeft())<e.scrollSensitivity&&(f=a(document).scrollLeft(a(document).scrollLeft()+e.scrollSpeed))}f!==!1&&a.ui.ddmanager&&!e.dropBehaviour&&a.ui.ddmanager.prepareOffsets(d,b)}}),a.ui.plugin.add("draggable","snap",{start:function(b,c){var d=a(this).data("draggable"),e=d.options;d.snapElements=[],a(e.snap.constructor!=String?e.snap.items||":data(draggable)":e.snap).each(function(){var b=a(this),c=b.offset();this!=d.element[0]&&d.snapElements.push({item:this,width:b.outerWidth(),height:b.outerHeight(),top:c.top,left:c.left})})},drag:function(b,c){var d=a(this).data("draggable"),e=d.options,f=e.snapTolerance,g=c.offset.left,h=g+d.helperProportions.width,i=c.offset.top,j=i+d.helperProportions.height;for(var k=d.snapElements.length-1;k>=0;k--){var l=d.snapElements[k].left,m=l+d.snapElements[k].width,n=d.snapElements[k].top,o=n+d.snapElements[k].height;if(!(l-f<g&&g<m+f&&n-f<i&&i<o+f||l-f<g&&g<m+f&&n-f<j&&j<o+f||l-f<h&&h<m+f&&n-f<i&&i<o+f||l-f<h&&h<m+f&&n-f<j&&j<o+f)){d.snapElements[k].snapping&&d.options.snap.release&&d.options.snap.release.call(d.element,b,a.extend(d._uiHash(),{snapItem:d.snapElements[k].item})),d.snapElements[k].snapping=!1;continue}if(e.snapMode!="inner"){var p=Math.abs(n-j)<=f,q=Math.abs(o-i)<=f,r=Math.abs(l-h)<=f,s=Math.abs(m-g)<=f;p&&(c.position.top=d._convertPositionTo("relative",{top:n-d.helperProportions.height,left:0}).top-d.margins.top),q&&(c.position.top=d._convertPositionTo("relative",{top:o,left:0}).top-d.margins.top),r&&(c.position.left=d._convertPositionTo("relative",{top:0,left:l-d.helperProportions.width}).left-d.margins.left),s&&(c.position.left=d._convertPositionTo("relative",{top:0,left:m}).left-d.margins.left)}var t=p||q||r||s;if(e.snapMode!="outer"){var p=Math.abs(n-i)<=f,q=Math.abs(o-j)<=f,r=Math.abs(l-g)<=f,s=Math.abs(m-h)<=f;p&&(c.position.top=d._convertPositionTo("relative",{top:n,left:0}).top-d.margins.top),q&&(c.position.top=d._convertPositionTo("relative",{top:o-d.helperProportions.height,left:0}).top-d.margins.top),r&&(c.position.left=d._convertPositionTo("relative",{top:0,left:l}).left-d.margins.left),s&&(c.position.left=d._convertPositionTo("relative",{top:0,left:m-d.helperProportions.width}).left-d.margins.left)}!d.snapElements[k].snapping&&(p||q||r||s||t)&&d.options.snap.snap&&d.options.snap.snap.call(d.element,b,a.extend(d._uiHash(),{snapItem:d.snapElements[k].item})),d.snapElements[k].snapping=p||q||r||s||t}}}),a.ui.plugin.add("draggable","stack",{start:function(b,c){var d=a(this).data("draggable").options,e=a.makeArray(a(d.stack)).sort(function(b,c){return(parseInt(a(b).css("zIndex"),10)||0)-(parseInt(a(c).css("zIndex"),10)||0)});if(!!e.length){var f=parseInt(e[0].style.zIndex)||0;a(e).each(function(a){this.style.zIndex=f+a}),this[0].style.zIndex=f+e.length}}}),a.ui.plugin.add("draggable","zIndex",{start:function(b,c){var d=a(c.helper),e=a(this).data("draggable").options;d.css("zIndex")&&(e._zIndex=d.css("zIndex")),d.css("zIndex",e.zIndex)},stop:function(b,c){var d=a(this).data("draggable").options;d._zIndex&&a(c.helper).css("zIndex",d._zIndex)}})})(jQuery);/* - * jQuery UI Droppable 1.8.18 - * - * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) - * Dual licensed under the MIT or GPL Version 2 licenses. - * http://jquery.org/license - * - * http://docs.jquery.com/UI/Droppables - * - * Depends: - * jquery.ui.core.js - * jquery.ui.widget.js - * jquery.ui.mouse.js - * jquery.ui.draggable.js - */(function(a,b){a.widget("ui.droppable",{widgetEventPrefix:"drop",options:{accept:"*",activeClass:!1,addClasses:!0,greedy:!1,hoverClass:!1,scope:"default",tolerance:"intersect"},_create:function(){var b=this.options,c=b.accept;this.isover=0,this.isout=1,this.accept=a.isFunction(c)?c:function(a){return a.is(c)},this.proportions={width:this.element[0].offsetWidth,height:this.element[0].offsetHeight},a.ui.ddmanager.droppables[b.scope]=a.ui.ddmanager.droppables[b.scope]||[],a.ui.ddmanager.droppables[b.scope].push(this),b.addClasses&&this.element.addClass("ui-droppable")},destroy:function(){var b=a.ui.ddmanager.droppables[this.options.scope];for(var c=0;c<b.length;c++)b[c]==this&&b.splice(c,1);this.element.removeClass("ui-droppable ui-droppable-disabled").removeData("droppable").unbind(".droppable");return this},_setOption:function(b,c){b=="accept"&&(this.accept=a.isFunction(c)?c:function(a){return a.is(c)}),a.Widget.prototype._setOption.apply(this,arguments)},_activate:function(b){var c=a.ui.ddmanager.current;this.options.activeClass&&this.element.addClass(this.options.activeClass),c&&this._trigger("activate",b,this.ui(c))},_deactivate:function(b){var c=a.ui.ddmanager.current;this.options.activeClass&&this.element.removeClass(this.options.activeClass),c&&this._trigger("deactivate",b,this.ui(c))},_over:function(b){var c=a.ui.ddmanager.current;!!c&&(c.currentItem||c.element)[0]!=this.element[0]&&this.accept.call(this.element[0],c.currentItem||c.element)&&(this.options.hoverClass&&this.element.addClass(this.options.hoverClass),this._trigger("over",b,this.ui(c)))},_out:function(b){var c=a.ui.ddmanager.current;!!c&&(c.currentItem||c.element)[0]!=this.element[0]&&this.accept.call(this.element[0],c.currentItem||c.element)&&(this.options.hoverClass&&this.element.removeClass(this.options.hoverClass),this._trigger("out",b,this.ui(c)))},_drop:function(b,c){var d=c||a.ui.ddmanager.current;if(!d||(d.currentItem||d.element)[0]==this.element[0])return!1;var e=!1;this.element.find(":data(droppable)").not(".ui-draggable-dragging").each(function(){var b=a.data(this,"droppable");if(b.options.greedy&&!b.options.disabled&&b.options.scope==d.options.scope&&b.accept.call(b.element[0],d.currentItem||d.element)&&a.ui.intersect(d,a.extend(b,{offset:b.element.offset()}),b.options.tolerance)){e=!0;return!1}});if(e)return!1;if(this.accept.call(this.element[0],d.currentItem||d.element)){this.options.activeClass&&this.element.removeClass(this.options.activeClass),this.options.hoverClass&&this.element.removeClass(this.options.hoverClass),this._trigger("drop",b,this.ui(d));return this.element}return!1},ui:function(a){return{draggable:a.currentItem||a.element,helper:a.helper,position:a.position,offset:a.positionAbs}}}),a.extend(a.ui.droppable,{version:"1.8.18"}),a.ui.intersect=function(b,c,d){if(!c.offset)return!1;var e=(b.positionAbs||b.position.absolute).left,f=e+b.helperProportions.width,g=(b.positionAbs||b.position.absolute).top,h=g+b.helperProportions.height,i=c.offset.left,j=i+c.proportions.width,k=c.offset.top,l=k+c.proportions.height;switch(d){case"fit":return i<=e&&f<=j&&k<=g&&h<=l;case"intersect":return i<e+b.helperProportions.width/2&&f-b.helperProportions.width/2<j&&k<g+b.helperProportions.height/2&&h-b.helperProportions.height/2<l;case"pointer":var m=(b.positionAbs||b.position.absolute).left+(b.clickOffset||b.offset.click).left,n=(b.positionAbs||b.position.absolute).top+(b.clickOffset||b.offset.click).top,o=a.ui.isOver(n,m,k,i,c.proportions.height,c.proportions.width);return o;case"touch":return(g>=k&&g<=l||h>=k&&h<=l||g<k&&h>l)&&(e>=i&&e<=j||f>=i&&f<=j||e<i&&f>j);default:return!1}},a.ui.ddmanager={current:null,droppables:{"default":[]},prepareOffsets:function(b,c){var d=a.ui.ddmanager.droppables[b.options.scope]||[],e=c?c.type:null,f=(b.currentItem||b.element).find(":data(droppable)").andSelf();droppablesLoop:for(var g=0;g<d.length;g++){if(d[g].options.disabled||b&&!d[g].accept.call(d[g].element[0],b.currentItem||b.element))continue;for(var h=0;h<f.length;h++)if(f[h]==d[g].element[0]){d[g].proportions.height=0;continue droppablesLoop}d[g].visible=d[g].element.css("display")!="none";if(!d[g].visible)continue;e=="mousedown"&&d[g]._activate.call(d[g],c),d[g].offset=d[g].element.offset(),d[g].proportions={width:d[g].element[0].offsetWidth,height:d[g].element[0].offsetHeight}}},drop:function(b,c){var d=!1;a.each(a.ui.ddmanager.droppables[b.options.scope]||[],function(){!this.options||(!this.options.disabled&&this.visible&&a.ui.intersect(b,this,this.options.tolerance)&&(d=this._drop.call(this,c)||d),!this.options.disabled&&this.visible&&this.accept.call(this.element[0],b.currentItem||b.element)&&(this.isout=1,this.isover=0,this._deactivate.call(this,c)))});return d},dragStart:function(b,c){b.element.parents(":not(body,html)").bind("scroll.droppable",function(){b.options.refreshPositions||a.ui.ddmanager.prepareOffsets(b,c)})},drag:function(b,c){b.options.refreshPositions&&a.ui.ddmanager.prepareOffsets(b,c),a.each(a.ui.ddmanager.droppables[b.options.scope]||[],function(){if(!(this.options.disabled||this.greedyChild||!this.visible)){var d=a.ui.intersect(b,this,this.options.tolerance),e=!d&&this.isover==1?"isout":d&&this.isover==0?"isover":null;if(!e)return;var f;if(this.options.greedy){var g=this.element.parents(":data(droppable):eq(0)");g.length&&(f=a.data(g[0],"droppable"),f.greedyChild=e=="isover"?1:0)}f&&e=="isover"&&(f.isover=0,f.isout=1,f._out.call(f,c)),this[e]=1,this[e=="isout"?"isover":"isout"]=0,this[e=="isover"?"_over":"_out"].call(this,c),f&&e=="isout"&&(f.isout=0,f.isover=1,f._over.call(f,c))}})},dragStop:function(b,c){b.element.parents(":not(body,html)").unbind("scroll.droppable"),b.options.refreshPositions||a.ui.ddmanager.prepareOffsets(b,c)}}})(jQuery);/* - * jQuery UI Resizable 1.8.18 - * - * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) - * Dual licensed under the MIT or GPL Version 2 licenses. - * http://jquery.org/license - * - * http://docs.jquery.com/UI/Resizables - * - * Depends: - * jquery.ui.core.js - * jquery.ui.mouse.js - * jquery.ui.widget.js - */(function(a,b){a.widget("ui.resizable",a.ui.mouse,{widgetEventPrefix:"resize",options:{alsoResize:!1,animate:!1,animateDuration:"slow",animateEasing:"swing",aspectRatio:!1,autoHide:!1,containment:!1,ghost:!1,grid:!1,handles:"e,s,se",helper:!1,maxHeight:null,maxWidth:null,minHeight:10,minWidth:10,zIndex:1e3},_create:function(){var b=this,c=this.options;this.element.addClass("ui-resizable"),a.extend(this,{_aspectRatio:!!c.aspectRatio,aspectRatio:c.aspectRatio,originalElement:this.element,_proportionallyResizeElements:[],_helper:c.helper||c.ghost||c.animate?c.helper||"ui-resizable-helper":null}),this.element[0].nodeName.match(/canvas|textarea|input|select|button|img/i)&&(this.element.wrap(a('<div class="ui-wrapper" style="overflow: hidden;"></div>').css({position:this.element.css("position"),width:this.element.outerWidth(),height:this.element.outerHeight(),top:this.element.css("top"),left:this.element.css("left")})),this.element=this.element.parent().data("resizable",this.element.data("resizable")),this.elementIsWrapper=!0,this.element.css({marginLeft:this.originalElement.css("marginLeft"),marginTop:this.originalElement.css("marginTop"),marginRight:this.originalElement.css("marginRight"),marginBottom:this.originalElement.css("marginBottom")}),this.originalElement.css({marginLeft:0,marginTop:0,marginRight:0,marginBottom:0}),this.originalResizeStyle=this.originalElement.css("resize"),this.originalElement.css("resize","none"),this._proportionallyResizeElements.push(this.originalElement.css({position:"static",zoom:1,display:"block"})),this.originalElement.css({margin:this.originalElement.css("margin")}),this._proportionallyResize()),this.handles=c.handles||(a(".ui-resizable-handle",this.element).length?{n:".ui-resizable-n",e:".ui-resizable-e",s:".ui-resizable-s",w:".ui-resizable-w",se:".ui-resizable-se",sw:".ui-resizable-sw",ne:".ui-resizable-ne",nw:".ui-resizable-nw"}:"e,s,se");if(this.handles.constructor==String){this.handles=="all"&&(this.handles="n,e,s,w,se,sw,ne,nw");var d=this.handles.split(",");this.handles={};for(var e=0;e<d.length;e++){var f=a.trim(d[e]),g="ui-resizable-"+f,h=a('<div class="ui-resizable-handle '+g+'"></div>');/sw|se|ne|nw/.test(f)&&h.css({zIndex:++c.zIndex}),"se"==f&&h.addClass("ui-icon ui-icon-gripsmall-diagonal-se"),this.handles[f]=".ui-resizable-"+f,this.element.append(h)}}this._renderAxis=function(b){b=b||this.element;for(var c in this.handles){this.handles[c].constructor==String&&(this.handles[c]=a(this.handles[c],this.element).show());if(this.elementIsWrapper&&this.originalElement[0].nodeName.match(/textarea|input|select|button/i)){var d=a(this.handles[c],this.element),e=0;e=/sw|ne|nw|se|n|s/.test(c)?d.outerHeight():d.outerWidth();var f=["padding",/ne|nw|n/.test(c)?"Top":/se|sw|s/.test(c)?"Bottom":/^e$/.test(c)?"Right":"Left"].join("");b.css(f,e),this._proportionallyResize()}if(!a(this.handles[c]).length)continue}},this._renderAxis(this.element),this._handles=a(".ui-resizable-handle",this.element).disableSelection(),this._handles.mouseover(function(){if(!b.resizing){if(this.className)var a=this.className.match(/ui-resizable-(se|sw|ne|nw|n|e|s|w)/i);b.axis=a&&a[1]?a[1]:"se"}}),c.autoHide&&(this._handles.hide(),a(this.element).addClass("ui-resizable-autohide").hover(function(){c.disabled||(a(this).removeClass("ui-resizable-autohide"),b._handles.show())},function(){c.disabled||b.resizing||(a(this).addClass("ui-resizable-autohide"),b._handles.hide())})),this._mouseInit()},destroy:function(){this._mouseDestroy();var b=function(b){a(b).removeClass("ui-resizable ui-resizable-disabled ui-resizable-resizing").removeData("resizable").unbind(".resizable").find(".ui-resizable-handle").remove()};if(this.elementIsWrapper){b(this.element);var c=this.element;c.after(this.originalElement.css({position:c.css("position"),width:c.outerWidth(),height:c.outerHeight(),top:c.css("top"),left:c.css("left")})).remove()}this.originalElement.css("resize",this.originalResizeStyle),b(this.originalElement);return this},_mouseCapture:function(b){var c=!1;for(var d in this.handles)a(this.handles[d])[0]==b.target&&(c=!0);return!this.options.disabled&&c},_mouseStart:function(b){var d=this.options,e=this.element.position(),f=this.element;this.resizing=!0,this.documentScroll={top:a(document).scrollTop(),left:a(document).scrollLeft()},(f.is(".ui-draggable")||/absolute/.test(f.css("position")))&&f.css({position:"absolute",top:e.top,left:e.left}),this._renderProxy();var g=c(this.helper.css("left")),h=c(this.helper.css("top"));d.containment&&(g+=a(d.containment).scrollLeft()||0,h+=a(d.containment).scrollTop()||0),this.offset=this.helper.offset(),this.position={left:g,top:h},this.size=this._helper?{width:f.outerWidth(),height:f.outerHeight()}:{width:f.width(),height:f.height()},this.originalSize=this._helper?{width:f.outerWidth(),height:f.outerHeight()}:{width:f.width(),height:f.height()},this.originalPosition={left:g,top:h},this.sizeDiff={width:f.outerWidth()-f.width(),height:f.outerHeight()-f.height()},this.originalMousePosition={left:b.pageX,top:b.pageY},this.aspectRatio=typeof d.aspectRatio=="number"?d.aspectRatio:this.originalSize.width/this.originalSize.height||1;var i=a(".ui-resizable-"+this.axis).css("cursor");a("body").css("cursor",i=="auto"?this.axis+"-resize":i),f.addClass("ui-resizable-resizing"),this._propagate("start",b);return!0},_mouseDrag:function(b){var c=this.helper,d=this.options,e={},f=this,g=this.originalMousePosition,h=this.axis,i=b.pageX-g.left||0,j=b.pageY-g.top||0,k=this._change[h];if(!k)return!1;var l=k.apply(this,[b,i,j]),m=a.browser.msie&&a.browser.version<7,n=this.sizeDiff;this._updateVirtualBoundaries(b.shiftKey);if(this._aspectRatio||b.shiftKey)l=this._updateRatio(l,b);l=this._respectSize(l,b),this._propagate("resize",b),c.css({top:this.position.top+"px",left:this.position.left+"px",width:this.size.width+"px",height:this.size.height+"px"}),!this._helper&&this._proportionallyResizeElements.length&&this._proportionallyResize(),this._updateCache(l),this._trigger("resize",b,this.ui());return!1},_mouseStop:function(b){this.resizing=!1;var c=this.options,d=this;if(this._helper){var e=this._proportionallyResizeElements,f=e.length&&/textarea/i.test(e[0].nodeName),g=f&&a.ui.hasScroll(e[0],"left")?0:d.sizeDiff.height,h=f?0:d.sizeDiff.width,i={width:d.helper.width()-h,height:d.helper.height()-g},j=parseInt(d.element.css("left"),10)+(d.position.left-d.originalPosition.left)||null,k=parseInt(d.element.css("top"),10)+(d.position.top-d.originalPosition.top)||null;c.animate||this.element.css(a.extend(i,{top:k,left:j})),d.helper.height(d.size.height),d.helper.width(d.size.width),this._helper&&!c.animate&&this._proportionallyResize()}a("body").css("cursor","auto"),this.element.removeClass("ui-resizable-resizing"),this._propagate("stop",b),this._helper&&this.helper.remove();return!1},_updateVirtualBoundaries:function(a){var b=this.options,c,e,f,g,h;h={minWidth:d(b.minWidth)?b.minWidth:0,maxWidth:d(b.maxWidth)?b.maxWidth:Infinity,minHeight:d(b.minHeight)?b.minHeight:0,maxHeight:d(b.maxHeight)?b.maxHeight:Infinity};if(this._aspectRatio||a)c=h.minHeight*this.aspectRatio,f=h.minWidth/this.aspectRatio,e=h.maxHeight*this.aspectRatio,g=h.maxWidth/this.aspectRatio,c>h.minWidth&&(h.minWidth=c),f>h.minHeight&&(h.minHeight=f),e<h.maxWidth&&(h.maxWidth=e),g<h.maxHeight&&(h.maxHeight=g);this._vBoundaries=h},_updateCache:function(a){var b=this.options;this.offset=this.helper.offset(),d(a.left)&&(this.position.left=a.left),d(a.top)&&(this.position.top=a.top),d(a.height)&&(this.size.height=a.height),d(a.width)&&(this.size.width=a.width)},_updateRatio:function(a,b){var c=this.options,e=this.position,f=this.size,g=this.axis;d(a.height)?a.width=a.height*this.aspectRatio:d(a.width)&&(a.height=a.width/this.aspectRatio),g=="sw"&&(a.left=e.left+(f.width-a.width),a.top=null),g=="nw"&&(a.top=e.top+(f.height-a.height),a.left=e.left+(f.width-a.width));return a},_respectSize:function(a,b){var c=this.helper,e=this._vBoundaries,f=this._aspectRatio||b.shiftKey,g=this.axis,h=d(a.width)&&e.maxWidth&&e.maxWidth<a.width,i=d(a.height)&&e.maxHeight&&e.maxHeight<a.height,j=d(a.width)&&e.minWidth&&e.minWidth>a.width,k=d(a.height)&&e.minHeight&&e.minHeight>a.height;j&&(a.width=e.minWidth),k&&(a.height=e.minHeight),h&&(a.width=e.maxWidth),i&&(a.height=e.maxHeight);var l=this.originalPosition.left+this.originalSize.width,m=this.position.top+this.size.height,n=/sw|nw|w/.test(g),o=/nw|ne|n/.test(g);j&&n&&(a.left=l-e.minWidth),h&&n&&(a.left=l-e.maxWidth),k&&o&&(a.top=m-e.minHeight),i&&o&&(a.top=m-e.maxHeight);var p=!a.width&&!a.height;p&&!a.left&&a.top?a.top=null:p&&!a.top&&a.left&&(a.left=null);return a},_proportionallyResize:function(){var b=this.options;if(!!this._proportionallyResizeElements.length){var c=this.helper||this.element;for(var d=0;d<this._proportionallyResizeElements.length;d++){var e=this._proportionallyResizeElements[d];if(!this.borderDif){var f=[e.css("borderTopWidth"),e.css("borderRightWidth"),e.css("borderBottomWidth"),e.css("borderLeftWidth")],g=[e.css("paddingTop"),e.css("paddingRight"),e.css("paddingBottom"),e.css("paddingLeft")];this.borderDif=a.map(f,function(a,b){var c=parseInt(a,10)||0,d=parseInt(g[b],10)||0;return c+d})}if(a.browser.msie&&(!!a(c).is(":hidden")||!!a(c).parents(":hidden").length))continue;e.css({height:c.height()-this.borderDif[0]-this.borderDif[2]||0,width:c.width()-this.borderDif[1]-this.borderDif[3]||0})}}},_renderProxy:function(){var b=this.element,c=this.options;this.elementOffset=b.offset();if(this._helper){this.helper=this.helper||a('<div style="overflow:hidden;"></div>');var d=a.browser.msie&&a.browser.version<7,e=d?1:0,f=d?2:-1;this.helper.addClass(this._helper).css({width:this.element.outerWidth()+f,height:this.element.outerHeight()+f,position:"absolute",left:this.elementOffset.left-e+"px",top:this.elementOffset.top-e+"px",zIndex:++c.zIndex}),this.helper.appendTo("body").disableSelection()}else this.helper=this.element},_change:{e:function(a,b,c){return{width:this.originalSize.width+b}},w:function(a,b,c){var d=this.options,e=this.originalSize,f=this.originalPosition;return{left:f.left+b,width:e.width-b}},n:function(a,b,c){var d=this.options,e=this.originalSize,f=this.originalPosition;return{top:f.top+c,height:e.height-c}},s:function(a,b,c){return{height:this.originalSize.height+c}},se:function(b,c,d){return a.extend(this._change.s.apply(this,arguments),this._change.e.apply(this,[b,c,d]))},sw:function(b,c,d){return a.extend(this._change.s.apply(this,arguments),this._change.w.apply(this,[b,c,d]))},ne:function(b,c,d){return a.extend(this._change.n.apply(this,arguments),this._change.e.apply(this,[b,c,d]))},nw:function(b,c,d){return a.extend(this._change.n.apply(this,arguments),this._change.w.apply(this,[b,c,d]))}},_propagate:function(b,c){a.ui.plugin.call(this,b,[c,this.ui()]),b!="resize"&&this._trigger(b,c,this.ui())},plugins:{},ui:function(){return{originalElement:this.originalElement,element:this.element,helper:this.helper,position:this.position,size:this.size,originalSize:this.originalSize,originalPosition:this.originalPosition}}}),a.extend(a.ui.resizable,{version:"1.8.18"}),a.ui.plugin.add("resizable","alsoResize",{start:function(b,c){var d=a(this).data("resizable"),e=d.options,f=function(b){a(b).each(function(){var b=a(this);b.data("resizable-alsoresize",{width:parseInt(b.width(),10),height:parseInt(b.height(),10),left:parseInt(b.css("left"),10),top:parseInt(b.css("top"),10)})})};typeof e.alsoResize=="object"&&!e.alsoResize.parentNode?e.alsoResize.length?(e.alsoResize=e.alsoResize[0],f(e.alsoResize)):a.each(e.alsoResize,function(a){f(a)}):f(e.alsoResize)},resize:function(b,c){var d=a(this).data("resizable"),e=d.options,f=d.originalSize,g=d.originalPosition,h={height:d.size.height-f.height||0,width:d.size.width-f.width||0,top:d.position.top-g.top||0,left:d.position.left-g.left||0},i=function(b,d){a(b).each(function(){var b=a(this),e=a(this).data("resizable-alsoresize"),f={},g=d&&d.length?d:b.parents(c.originalElement[0]).length?["width","height"]:["width","height","top","left"];a.each(g,function(a,b){var c=(e[b]||0)+(h[b]||0);c&&c>=0&&(f[b]=c||null)}),b.css(f)})};typeof e.alsoResize=="object"&&!e.alsoResize.nodeType?a.each(e.alsoResize,function(a,b){i(a,b)}):i(e.alsoResize)},stop:function(b,c){a(this).removeData("resizable-alsoresize")}}),a.ui.plugin.add("resizable","animate",{stop:function(b,c){var d=a(this).data("resizable"),e=d.options,f=d._proportionallyResizeElements,g=f.length&&/textarea/i.test(f[0].nodeName),h=g&&a.ui.hasScroll(f[0],"left")?0:d.sizeDiff.height,i=g?0:d.sizeDiff.width,j={width:d.size.width-i,height:d.size.height-h},k=parseInt(d.element.css("left"),10)+(d.position.left-d.originalPosition.left)||null,l=parseInt(d.element.css("top"),10)+(d.position.top-d.originalPosition.top)||null;d.element.animate(a.extend(j,l&&k?{top:l,left:k}:{}),{duration:e.animateDuration,easing:e.animateEasing,step:function(){var c={width:parseInt(d.element.css("width"),10),height:parseInt(d.element.css("height"),10),top:parseInt(d.element.css("top"),10),left:parseInt(d.element.css("left"),10)};f&&f.length&&a(f[0]).css({width:c.width,height:c.height}),d._updateCache(c),d._propagate("resize",b)}})}}),a.ui.plugin.add("resizable","containment",{start:function(b,d){var e=a(this).data("resizable"),f=e.options,g=e.element,h=f.containment,i=h instanceof a?h.get(0):/parent/.test(h)?g.parent().get(0):h;if(!!i){e.containerElement=a(i);if(/document/.test(h)||h==document)e.containerOffset={left:0,top:0},e.containerPosition={left:0,top:0},e.parentData={element:a(document),left:0,top:0,width:a(document).width(),height:a(document).height()||document.body.parentNode.scrollHeight};else{var j=a(i),k=[];a(["Top","Right","Left","Bottom"]).each(function(a,b){k[a]=c(j.css("padding"+b))}),e.containerOffset=j.offset(),e.containerPosition=j.position(),e.containerSize={height:j.innerHeight()-k[3],width:j.innerWidth()-k[1]};var l=e.containerOffset,m=e.containerSize.height,n=e.containerSize.width,o=a.ui.hasScroll(i,"left")?i.scrollWidth:n,p=a.ui.hasScroll(i)?i.scrollHeight:m;e.parentData={element:i,left:l.left,top:l.top,width:o,height:p}}}},resize:function(b,c){var d=a(this).data("resizable"),e=d.options,f=d.containerSize,g=d.containerOffset,h=d.size,i=d.position,j=d._aspectRatio||b.shiftKey,k={top:0,left:0},l=d.containerElement;l[0]!=document&&/static/.test(l.css("position"))&&(k=g),i.left<(d._helper?g.left:0)&&(d.size.width=d.size.width+(d._helper?d.position.left-g.left:d.position.left-k.left),j&&(d.size.height=d.size.width/e.aspectRatio),d.position.left=e.helper?g.left:0),i.top<(d._helper?g.top:0)&&(d.size.height=d.size.height+(d._helper?d.position.top-g.top:d.position.top),j&&(d.size.width=d.size.height*e.aspectRatio),d.position.top=d._helper?g.top:0),d.offset.left=d.parentData.left+d.position.left,d.offset.top=d.parentData.top+d.position.top;var m=Math.abs((d._helper?d.offset.left-k.left:d.offset.left-k.left)+d.sizeDiff.width),n=Math.abs((d._helper?d.offset.top-k.top:d.offset.top-g.top)+d.sizeDiff.height),o=d.containerElement.get(0)==d.element.parent().get(0),p=/relative|absolute/.test(d.containerElement.css("position"));o&&p&&(m-=d.parentData.left),m+d.size.width>=d.parentData.width&&(d.size.width=d.parentData.width-m,j&&(d.size.height=d.size.width/d.aspectRatio)),n+d.size.height>=d.parentData.height&&(d.size.height=d.parentData.height-n,j&&(d.size.width=d.size.height*d.aspectRatio))},stop:function(b,c){var d=a(this).data("resizable"),e=d.options,f=d.position,g=d.containerOffset,h=d.containerPosition,i=d.containerElement,j=a(d.helper),k=j.offset(),l=j.outerWidth()-d.sizeDiff.width,m=j.outerHeight()-d.sizeDiff.height;d._helper&&!e.animate&&/relative/.test(i.css("position"))&&a(this).css({left:k.left-h.left-g.left,width:l,height:m}),d._helper&&!e.animate&&/static/.test(i.css("position"))&&a(this).css({left:k.left-h.left-g.left,width:l,height:m})}}),a.ui.plugin.add("resizable","ghost",{start:function(b,c){var d=a(this).data("resizable"),e=d.options,f=d.size;d.ghost=d.originalElement.clone(),d.ghost.css({opacity:.25,display:"block",position:"relative",height:f.height,width:f.width,margin:0,left:0,top:0}).addClass("ui-resizable-ghost").addClass(typeof e.ghost=="string"?e.ghost:""),d.ghost.appendTo(d.helper)},resize:function(b,c){var d=a(this).data("resizable"),e=d.options;d.ghost&&d.ghost.css({position:"relative",height:d.size.height,width:d.size.width})},stop:function(b,c){var d=a(this).data("resizable"),e=d.options;d.ghost&&d.helper&&d.helper.get(0).removeChild(d.ghost.get(0))}}),a.ui.plugin.add("resizable","grid",{resize:function(b,c){var d=a(this).data("resizable"),e=d.options,f=d.size,g=d.originalSize,h=d.originalPosition,i=d.axis,j=e._aspectRatio||b.shiftKey;e.grid=typeof e.grid=="number"?[e.grid,e.grid]:e.grid;var k=Math.round((f.width-g.width)/(e.grid[0]||1))*(e.grid[0]||1),l=Math.round((f.height-g.height)/(e.grid[1]||1))*(e.grid[1]||1);/^(se|s|e)$/.test(i)?(d.size.width=g.width+k,d.size.height=g.height+l):/^(ne)$/.test(i)?(d.size.width=g.width+k,d.size.height=g.height+l,d.position.top=h.top-l):/^(sw)$/.test(i)?(d.size.width=g.width+k,d.size.height=g.height+l,d.position.left=h.left-k):(d.size.width=g.width+k,d.size.height=g.height+l,d.position.top=h.top-l,d.position.left=h.left-k)}});var c=function(a){return parseInt(a,10)||0},d=function(a){return!isNaN(parseInt(a,10))}})(jQuery);/* - * jQuery UI Selectable 1.8.18 - * - * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) - * Dual licensed under the MIT or GPL Version 2 licenses. - * http://jquery.org/license - * - * http://docs.jquery.com/UI/Selectables - * - * Depends: - * jquery.ui.core.js - * jquery.ui.mouse.js - * jquery.ui.widget.js - */(function(a,b){a.widget("ui.selectable",a.ui.mouse,{options:{appendTo:"body",autoRefresh:!0,distance:0,filter:"*",tolerance:"touch"},_create:function(){var b=this;this.element.addClass("ui-selectable"),this.dragged=!1;var c;this.refresh=function(){c=a(b.options.filter,b.element[0]),c.addClass("ui-selectee"),c.each(function(){var b=a(this),c=b.offset();a.data(this,"selectable-item",{element:this,$element:b,left:c.left,top:c.top,right:c.left+b.outerWidth(),bottom:c.top+b.outerHeight(),startselected:!1,selected:b.hasClass("ui-selected"),selecting:b.hasClass("ui-selecting"),unselecting:b.hasClass("ui-unselecting")})})},this.refresh(),this.selectees=c.addClass("ui-selectee"),this._mouseInit(),this.helper=a("<div class='ui-selectable-helper'></div>")},destroy:function(){this.selectees.removeClass("ui-selectee").removeData("selectable-item"),this.element.removeClass("ui-selectable ui-selectable-disabled").removeData("selectable").unbind(".selectable"),this._mouseDestroy();return this},_mouseStart:function(b){var c=this;this.opos=[b.pageX,b.pageY];if(!this.options.disabled){var d=this.options;this.selectees=a(d.filter,this.element[0]),this._trigger("start",b),a(d.appendTo).append(this.helper),this.helper.css({left:b.clientX,top:b.clientY,width:0,height:0}),d.autoRefresh&&this.refresh(),this.selectees.filter(".ui-selected").each(function(){var d=a.data(this,"selectable-item");d.startselected=!0,!b.metaKey&&!b.ctrlKey&&(d.$element.removeClass("ui-selected"),d.selected=!1,d.$element.addClass("ui-unselecting"),d.unselecting=!0,c._trigger("unselecting",b,{unselecting:d.element}))}),a(b.target).parents().andSelf().each(function(){var d=a.data(this,"selectable-item");if(d){var e=!b.metaKey&&!b.ctrlKey||!d.$element.hasClass("ui-selected");d.$element.removeClass(e?"ui-unselecting":"ui-selected").addClass(e?"ui-selecting":"ui-unselecting"),d.unselecting=!e,d.selecting=e,d.selected=e,e?c._trigger("selecting",b,{selecting:d.element}):c._trigger("unselecting",b,{unselecting:d.element});return!1}})}},_mouseDrag:function(b){var c=this;this.dragged=!0;if(!this.options.disabled){var d=this.options,e=this.opos[0],f=this.opos[1],g=b.pageX,h=b.pageY;if(e>g){var i=g;g=e,e=i}if(f>h){var i=h;h=f,f=i}this.helper.css({left:e,top:f,width:g-e,height:h-f}),this.selectees.each(function(){var i=a.data(this,"selectable-item");if(!!i&&i.element!=c.element[0]){var j=!1;d.tolerance=="touch"?j=!(i.left>g||i.right<e||i.top>h||i.bottom<f):d.tolerance=="fit"&&(j=i.left>e&&i.right<g&&i.top>f&&i.bottom<h),j?(i.selected&&(i.$element.removeClass("ui-selected"),i.selected=!1),i.unselecting&&(i.$element.removeClass("ui-unselecting"),i.unselecting=!1),i.selecting||(i.$element.addClass("ui-selecting"),i.selecting=!0,c._trigger("selecting",b,{selecting:i.element}))):(i.selecting&&((b.metaKey||b.ctrlKey)&&i.startselected?(i.$element.removeClass("ui-selecting"),i.selecting=!1,i.$element.addClass("ui-selected"),i.selected=!0):(i.$element.removeClass("ui-selecting"),i.selecting=!1,i.startselected&&(i.$element.addClass("ui-unselecting"),i.unselecting=!0),c._trigger("unselecting",b,{unselecting:i.element}))),i.selected&&!b.metaKey&&!b.ctrlKey&&!i.startselected&&(i.$element.removeClass("ui-selected"),i.selected=!1,i.$element.addClass("ui-unselecting"),i.unselecting=!0,c._trigger("unselecting",b,{unselecting:i.element})))}});return!1}},_mouseStop:function(b){var c=this;this.dragged=!1;var d=this.options;a(".ui-unselecting",this.element[0]).each(function(){var d=a.data(this,"selectable-item");d.$element.removeClass("ui-unselecting"),d.unselecting=!1,d.startselected=!1,c._trigger("unselected",b,{unselected:d.element})}),a(".ui-selecting",this.element[0]).each(function(){var d=a.data(this,"selectable-item");d.$element.removeClass("ui-selecting").addClass("ui-selected"),d.selecting=!1,d.selected=!0,d.startselected=!0,c._trigger("selected",b,{selected:d.element})}),this._trigger("stop",b),this.helper.remove();return!1}}),a.extend(a.ui.selectable,{version:"1.8.18"})})(jQuery);/* - * jQuery UI Sortable 1.8.18 - * - * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) - * Dual licensed under the MIT or GPL Version 2 licenses. - * http://jquery.org/license - * - * http://docs.jquery.com/UI/Sortables - * - * Depends: - * jquery.ui.core.js - * jquery.ui.mouse.js - * jquery.ui.widget.js - */(function(a,b){a.widget("ui.sortable",a.ui.mouse,{widgetEventPrefix:"sort",ready:!1,options:{appendTo:"parent",axis:!1,connectWith:!1,containment:!1,cursor:"auto",cursorAt:!1,dropOnEmpty:!0,forcePlaceholderSize:!1,forceHelperSize:!1,grid:!1,handle:!1,helper:"original",items:"> *",opacity:!1,placeholder:!1,revert:!1,scroll:!0,scrollSensitivity:20,scrollSpeed:20,scope:"default",tolerance:"intersect",zIndex:1e3},_create:function(){var a=this.options;this.containerCache={},this.element.addClass("ui-sortable"),this.refresh(),this.floating=this.items.length?a.axis==="x"||/left|right/.test(this.items[0].item.css("float"))||/inline|table-cell/.test(this.items[0].item.css("display")):!1,this.offset=this.element.offset(),this._mouseInit(),this.ready=!0},destroy:function(){a.Widget.prototype.destroy.call(this),this.element.removeClass("ui-sortable ui-sortable-disabled"),this._mouseDestroy();for(var b=this.items.length-1;b>=0;b--)this.items[b].item.removeData(this.widgetName+"-item");return this},_setOption:function(b,c){b==="disabled"?(this.options[b]=c,this.widget()[c?"addClass":"removeClass"]("ui-sortable-disabled")):a.Widget.prototype._setOption.apply(this,arguments)},_mouseCapture:function(b,c){var d=this;if(this.reverting)return!1;if(this.options.disabled||this.options.type=="static")return!1;this._refreshItems(b);var e=null,f=this,g=a(b.target).parents().each(function(){if(a.data(this,d.widgetName+"-item")==f){e=a(this);return!1}});a.data(b.target,d.widgetName+"-item")==f&&(e=a(b.target));if(!e)return!1;if(this.options.handle&&!c){var h=!1;a(this.options.handle,e).find("*").andSelf().each(function(){this==b.target&&(h=!0)});if(!h)return!1}this.currentItem=e,this._removeCurrentsFromItems();return!0},_mouseStart:function(b,c,d){var e=this.options,f=this;this.currentContainer=this,this.refreshPositions(),this.helper=this._createHelper(b),this._cacheHelperProportions(),this._cacheMargins(),this.scrollParent=this.helper.scrollParent(),this.offset=this.currentItem.offset(),this.offset={top:this.offset.top-this.margins.top,left:this.offset.left-this.margins.left},this.helper.css("position","absolute"),this.cssPosition=this.helper.css("position"),a.extend(this.offset,{click:{left:b.pageX-this.offset.left,top:b.pageY-this.offset.top},parent:this._getParentOffset(),relative:this._getRelativeOffset()}),this.originalPosition=this._generatePosition(b),this.originalPageX=b.pageX,this.originalPageY=b.pageY,e.cursorAt&&this._adjustOffsetFromHelper(e.cursorAt),this.domPosition={prev:this.currentItem.prev()[0],parent:this.currentItem.parent()[0]},this.helper[0]!=this.currentItem[0]&&this.currentItem.hide(),this._createPlaceholder(),e.containment&&this._setContainment(),e.cursor&&(a("body").css("cursor")&&(this._storedCursor=a("body").css("cursor")),a("body").css("cursor",e.cursor)),e.opacity&&(this.helper.css("opacity")&&(this._storedOpacity=this.helper.css("opacity")),this.helper.css("opacity",e.opacity)),e.zIndex&&(this.helper.css("zIndex")&&(this._storedZIndex=this.helper.css("zIndex")),this.helper.css("zIndex",e.zIndex)),this.scrollParent[0]!=document&&this.scrollParent[0].tagName!="HTML"&&(this.overflowOffset=this.scrollParent.offset()),this._trigger("start",b,this._uiHash()),this._preserveHelperProportions||this._cacheHelperProportions();if(!d)for(var g=this.containers.length-1;g>=0;g--)this.containers[g]._trigger("activate",b,f._uiHash(this));a.ui.ddmanager&&(a.ui.ddmanager.current=this),a.ui.ddmanager&&!e.dropBehaviour&&a.ui.ddmanager.prepareOffsets(this,b),this.dragging=!0,this.helper.addClass("ui-sortable-helper"),this._mouseDrag(b);return!0},_mouseDrag:function(b){this.position=this._generatePosition(b),this.positionAbs=this._convertPositionTo("absolute"),this.lastPositionAbs||(this.lastPositionAbs=this.positionAbs);if(this.options.scroll){var c=this.options,d=!1;this.scrollParent[0]!=document&&this.scrollParent[0].tagName!="HTML"?(this.overflowOffset.top+this.scrollParent[0].offsetHeight-b.pageY<c.scrollSensitivity?this.scrollParent[0].scrollTop=d=this.scrollParent[0].scrollTop+c.scrollSpeed:b.pageY-this.overflowOffset.top<c.scrollSensitivity&&(this.scrollParent[0].scrollTop=d=this.scrollParent[0].scrollTop-c.scrollSpeed),this.overflowOffset.left+this.scrollParent[0].offsetWidth-b.pageX<c.scrollSensitivity?this.scrollParent[0].scrollLeft=d=this.scrollParent[0].scrollLeft+c.scrollSpeed:b.pageX-this.overflowOffset.left<c.scrollSensitivity&&(this.scrollParent[0].scrollLeft=d=this.scrollParent[0].scrollLeft-c.scrollSpeed)):(b.pageY-a(document).scrollTop()<c.scrollSensitivity?d=a(document).scrollTop(a(document).scrollTop()-c.scrollSpeed):a(window).height()-(b.pageY-a(document).scrollTop())<c.scrollSensitivity&&(d=a(document).scrollTop(a(document).scrollTop()+c.scrollSpeed)),b.pageX-a(document).scrollLeft()<c.scrollSensitivity?d=a(document).scrollLeft(a(document).scrollLeft()-c.scrollSpeed):a(window).width()-(b.pageX-a(document).scrollLeft())<c.scrollSensitivity&&(d=a(document).scrollLeft(a(document).scrollLeft()+c.scrollSpeed))),d!==!1&&a.ui.ddmanager&&!c.dropBehaviour&&a.ui.ddmanager.prepareOffsets(this,b)}this.positionAbs=this._convertPositionTo("absolute");if(!this.options.axis||this.options.axis!="y")this.helper[0].style.left=this.position.left+"px";if(!this.options.axis||this.options.axis!="x")this.helper[0].style.top=this.position.top+"px";for(var e=this.items.length-1;e>=0;e--){var f=this.items[e],g=f.item[0],h=this._intersectsWithPointer(f);if(!h)continue;if(g!=this.currentItem[0]&&this.placeholder[h==1?"next":"prev"]()[0]!=g&&!a.ui.contains(this.placeholder[0],g)&&(this.options.type=="semi-dynamic"?!a.ui.contains(this.element[0],g):!0)){this.direction=h==1?"down":"up";if(this.options.tolerance=="pointer"||this._intersectsWithSides(f))this._rearrange(b,f);else break;this._trigger("change",b,this._uiHash());break}}this._contactContainers(b),a.ui.ddmanager&&a.ui.ddmanager.drag(this,b),this._trigger("sort",b,this._uiHash()),this.lastPositionAbs=this.positionAbs;return!1},_mouseStop:function(b,c){if(!!b){a.ui.ddmanager&&!this.options.dropBehaviour&&a.ui.ddmanager.drop(this,b);if(this.options.revert){var d=this,e=d.placeholder.offset();d.reverting=!0,a(this.helper).animate({left:e.left-this.offset.parent.left-d.margins.left+(this.offsetParent[0]==document.body?0:this.offsetParent[0].scrollLeft),top:e.top-this.offset.parent.top-d.margins.top+(this.offsetParent[0]==document.body?0:this.offsetParent[0].scrollTop)},parseInt(this.options.revert,10)||500,function(){d._clear(b)})}else this._clear(b,c);return!1}},cancel:function(){var b=this;if(this.dragging){this._mouseUp({target:null}),this.options.helper=="original"?this.currentItem.css(this._storedCSS).removeClass("ui-sortable-helper"):this.currentItem.show();for(var c=this.containers.length-1;c>=0;c--)this.containers[c]._trigger("deactivate",null,b._uiHash(this)),this.containers[c].containerCache.over&&(this.containers[c]._trigger("out",null,b._uiHash(this)),this.containers[c].containerCache.over=0)}this.placeholder&&(this.placeholder[0].parentNode&&this.placeholder[0].parentNode.removeChild(this.placeholder[0]),this.options.helper!="original"&&this.helper&&this.helper[0].parentNode&&this.helper.remove(),a.extend(this,{helper:null,dragging:!1,reverting:!1,_noFinalSort:null}),this.domPosition.prev?a(this.domPosition.prev).after(this.currentItem):a(this.domPosition.parent).prepend(this.currentItem));return this},serialize:function(b){var c=this._getItemsAsjQuery(b&&b.connected),d=[];b=b||{},a(c).each(function(){var c=(a(b.item||this).attr(b.attribute||"id")||"").match(b.expression||/(.+)[-=_](.+)/);c&&d.push((b.key||c[1]+"[]")+"="+(b.key&&b.expression?c[1]:c[2]))}),!d.length&&b.key&&d.push(b.key+"=");return d.join("&")},toArray:function(b){var c=this._getItemsAsjQuery(b&&b.connected),d=[];b=b||{},c.each(function(){d.push(a(b.item||this).attr(b.attribute||"id")||"")});return d},_intersectsWith:function(a){var b=this.positionAbs.left,c=b+this.helperProportions.width,d=this.positionAbs.top,e=d+this.helperProportions.height,f=a.left,g=f+a.width,h=a.top,i=h+a.height,j=this.offset.click.top,k=this.offset.click.left,l=d+j>h&&d+j<i&&b+k>f&&b+k<g;return this.options.tolerance=="pointer"||this.options.forcePointerForContainers||this.options.tolerance!="pointer"&&this.helperProportions[this.floating?"width":"height"]>a[this.floating?"width":"height"]?l:f<b+this.helperProportions.width/2&&c-this.helperProportions.width/2<g&&h<d+this.helperProportions.height/2&&e-this.helperProportions.height/2<i},_intersectsWithPointer:function(b){var c=a.ui.isOverAxis(this.positionAbs.top+this.offset.click.top,b.top,b.height),d=a.ui.isOverAxis(this.positionAbs.left+this.offset.click.left,b.left,b.width),e=c&&d,f=this._getDragVerticalDirection(),g=this._getDragHorizontalDirection();if(!e)return!1;return this.floating?g&&g=="right"||f=="down"?2:1:f&&(f=="down"?2:1)},_intersectsWithSides:function(b){var c=a.ui.isOverAxis(this.positionAbs.top+this.offset.click.top,b.top+b.height/2,b.height),d=a.ui.isOverAxis(this.positionAbs.left+this.offset.click.left,b.left+b.width/2,b.width),e=this._getDragVerticalDirection(),f=this._getDragHorizontalDirection();return this.floating&&f?f=="right"&&d||f=="left"&&!d:e&&(e=="down"&&c||e=="up"&&!c)},_getDragVerticalDirection:function(){var a=this.positionAbs.top-this.lastPositionAbs.top;return a!=0&&(a>0?"down":"up")},_getDragHorizontalDirection:function(){var a=this.positionAbs.left-this.lastPositionAbs.left;return a!=0&&(a>0?"right":"left")},refresh:function(a){this._refreshItems(a),this.refreshPositions();return this},_connectWith:function(){var a=this.options;return a.connectWith.constructor==String?[a.connectWith]:a.connectWith},_getItemsAsjQuery:function(b){var c=this,d=[],e=[],f=this._connectWith();if(f&&b)for(var g=f.length-1;g>=0;g--){var h=a(f[g]);for(var i=h.length-1;i>=0;i--){var j=a.data(h[i],this.widgetName);j&&j!=this&&!j.options.disabled&&e.push([a.isFunction(j.options.items)?j.options.items.call(j.element):a(j.options.items,j.element).not(".ui-sortable-helper").not(".ui-sortable-placeholder"),j])}}e.push([a.isFunction(this.options.items)?this.options.items.call(this.element,null,{options:this.options,item:this.currentItem}):a(this.options.items,this.element).not(".ui-sortable-helper").not(".ui-sortable-placeholder"),this]);for(var g=e.length-1;g>=0;g--)e[g][0].each(function(){d.push(this)});return a(d)},_removeCurrentsFromItems:function(){var a=this.currentItem.find(":data("+this.widgetName+"-item)");for(var b=0;b<this.items.length;b++)for(var c=0;c<a.length;c++)a[c]==this.items[b].item[0]&&this.items.splice(b,1)},_refreshItems:function(b){this.items=[],this.containers=[this];var c=this.items,d=this,e=[[a.isFunction(this.options.items)?this.options.items.call(this.element[0],b,{item:this.currentItem}):a(this.options.items,this.element),this]],f=this._connectWith();if(f&&this.ready)for(var g=f.length-1;g>=0;g--){var h=a(f[g]);for(var i=h.length-1;i>=0;i--){var j=a.data(h[i],this.widgetName);j&&j!=this&&!j.options.disabled&&(e.push([a.isFunction(j.options.items)?j.options.items.call(j.element[0],b,{item:this.currentItem}):a(j.options.items,j.element),j]),this.containers.push(j))}}for(var g=e.length-1;g>=0;g--){var k=e[g][1],l=e[g][0];for(var i=0,m=l.length;i<m;i++){var n=a(l[i]);n.data(this.widgetName+"-item",k),c.push({item:n,instance:k,width:0,height:0,left:0,top:0})}}},refreshPositions:function(b){this.offsetParent&&this.helper&&(this.offset.parent=this._getParentOffset());for(var c=this.items.length-1;c>=0;c--){var d=this.items[c];if(d.instance!=this.currentContainer&&this.currentContainer&&d.item[0]!=this.currentItem[0])continue;var e=this.options.toleranceElement?a(this.options.toleranceElement,d.item):d.item;b||(d.width=e.outerWidth(),d.height=e.outerHeight());var f=e.offset();d.left=f.left,d.top=f.top}if(this.options.custom&&this.options.custom.refreshContainers)this.options.custom.refreshContainers.call(this);else for(var c=this.containers.length-1;c>=0;c--){var f=this.containers[c].element.offset();this.containers[c].containerCache.left=f.left,this.containers[c].containerCache.top=f.top,this.containers[c].containerCache.width=this.containers[c].element.outerWidth(),this.containers[c].containerCache.height=this.containers[c].element.outerHeight()}return this},_createPlaceholder:function(b){var c=b||this,d=c.options;if(!d.placeholder||d.placeholder.constructor==String){var e=d.placeholder;d.placeholder={element:function(){var b=a(document.createElement(c.currentItem[0].nodeName)).addClass(e||c.currentItem[0].className+" ui-sortable-placeholder").removeClass("ui-sortable-helper")[0];e||(b.style.visibility="hidden");return b},update:function(a,b){if(!e||!!d.forcePlaceholderSize)b.height()||b.height(c.currentItem.innerHeight()-parseInt(c.currentItem.css("paddingTop")||0,10)-parseInt(c.currentItem.css("paddingBottom")||0,10)),b.width()||b.width(c.currentItem.innerWidth()-parseInt(c.currentItem.css("paddingLeft")||0,10)-parseInt(c.currentItem.css("paddingRight")||0,10))}}}c.placeholder=a(d.placeholder.element.call(c.element,c.currentItem)),c.currentItem.after(c.placeholder),d.placeholder.update(c,c.placeholder)},_contactContainers:function(b){var c=null,d=null;for(var e=this.containers.length-1;e>=0;e--){if(a.ui.contains(this.currentItem[0],this.containers[e].element[0]))continue;if(this._intersectsWith(this.containers[e].containerCache)){if(c&&a.ui.contains(this.containers[e].element[0],c.element[0]))continue;c=this.containers[e],d=e}else this.containers[e].containerCache.over&&(this.containers[e]._trigger("out",b,this._uiHash(this)),this.containers[e].containerCache.over=0)}if(!!c)if(this.containers.length===1)this.containers[d]._trigger("over",b,this._uiHash(this)),this.containers[d].containerCache.over=1;else if(this.currentContainer!=this.containers[d]){var f=1e4,g=null,h=this.positionAbs[this.containers[d].floating?"left":"top"];for(var i=this.items.length-1;i>=0;i--){if(!a.ui.contains(this.containers[d].element[0],this.items[i].item[0]))continue;var j=this.items[i][this.containers[d].floating?"left":"top"];Math.abs(j-h)<f&&(f=Math.abs(j-h),g=this.items[i])}if(!g&&!this.options.dropOnEmpty)return;this.currentContainer=this.containers[d],g?this._rearrange(b,g,null,!0):this._rearrange(b,null,this.containers[d].element,!0),this._trigger("change",b,this._uiHash()),this.containers[d]._trigger("change",b,this._uiHash(this)),this.options.placeholder.update(this.currentContainer,this.placeholder),this.containers[d]._trigger("over",b,this._uiHash(this)),this.containers[d].containerCache.over=1}},_createHelper:function(b){var c=this.options,d=a.isFunction(c.helper)?a(c.helper.apply(this.element[0],[b,this.currentItem])):c.helper=="clone"?this.currentItem.clone():this.currentItem;d.parents("body").length||a(c.appendTo!="parent"?c.appendTo:this.currentItem[0].parentNode)[0].appendChild(d[0]),d[0]==this.currentItem[0]&&(this._storedCSS={width:this.currentItem[0].style.width,height:this.currentItem[0].style.height,position:this.currentItem.css("position"),top:this.currentItem.css("top"),left:this.currentItem.css("left")}),(d[0].style.width==""||c.forceHelperSize)&&d.width(this.currentItem.width()),(d[0].style.height==""||c.forceHelperSize)&&d.height(this.currentItem.height());return d},_adjustOffsetFromHelper:function(b){typeof b=="string"&&(b=b.split(" ")),a.isArray(b)&&(b={left:+b[0],top:+b[1]||0}),"left"in b&&(this.offset.click.left=b.left+this.margins.left),"right"in b&&(this.offset.click.left=this.helperProportions.width-b.right+this.margins.left),"top"in b&&(this.offset.click.top=b.top+this.margins.top),"bottom"in b&&(this.offset.click.top=this.helperProportions.height-b.bottom+this.margins.top)},_getParentOffset:function(){this.offsetParent=this.helper.offsetParent();var b=this.offsetParent.offset();this.cssPosition=="absolute"&&this.scrollParent[0]!=document&&a.ui.contains(this.scrollParent[0],this.offsetParent[0])&&(b.left+=this.scrollParent.scrollLeft(),b.top+=this.scrollParent.scrollTop());if(this.offsetParent[0]==document.body||this.offsetParent[0].tagName&&this.offsetParent[0].tagName.toLowerCase()=="html"&&a.browser.msie)b={top:0,left:0};return{top:b.top+(parseInt(this.offsetParent.css("borderTopWidth"),10)||0),left:b.left+(parseInt(this.offsetParent.css("borderLeftWidth"),10)||0)}},_getRelativeOffset:function(){if(this.cssPosition=="relative"){var a=this.currentItem.position();return{top:a.top-(parseInt(this.helper.css("top"),10)||0)+this.scrollParent.scrollTop(),left:a.left-(parseInt(this.helper.css("left"),10)||0)+this.scrollParent.scrollLeft()}}return{top:0,left:0}},_cacheMargins:function(){this.margins={left:parseInt(this.currentItem.css("marginLeft"),10)||0,top:parseInt(this.currentItem.css("marginTop"),10)||0}},_cacheHelperProportions:function(){this.helperProportions={width:this.helper.outerWidth(),height:this.helper.outerHeight()}},_setContainment:function(){var b=this.options;b.containment=="parent"&&(b.containment=this.helper[0].parentNode);if(b.containment=="document"||b.containment=="window")this.containment=[0-this.offset.relative.left-this.offset.parent.left,0-this.offset.relative.top-this.offset.parent.top,a(b.containment=="document"?document:window).width()-this.helperProportions.width-this.margins.left,(a(b.containment=="document"?document:window).height()||document.body.parentNode.scrollHeight)-this.helperProportions.height-this.margins.top];if(!/^(document|window|parent)$/.test(b.containment)){var c=a(b.containment)[0],d=a(b.containment).offset(),e=a(c).css("overflow")!="hidden";this.containment=[d.left+(parseInt(a(c).css("borderLeftWidth"),10)||0)+(parseInt(a(c).css("paddingLeft"),10)||0)-this.margins.left,d.top+(parseInt(a(c).css("borderTopWidth"),10)||0)+(parseInt(a(c).css("paddingTop"),10)||0)-this.margins.top,d.left+(e?Math.max(c.scrollWidth,c.offsetWidth):c.offsetWidth)-(parseInt(a(c).css("borderLeftWidth"),10)||0)-(parseInt(a(c).css("paddingRight"),10)||0)-this.helperProportions.width-this.margins.left,d.top+(e?Math.max(c.scrollHeight,c.offsetHeight):c.offsetHeight)-(parseInt(a(c).css("borderTopWidth"),10)||0)-(parseInt(a(c).css("paddingBottom"),10)||0)-this.helperProportions.height-this.margins.top]}},_convertPositionTo:function(b,c){c||(c=this.position);var d=b=="absolute"?1:-1,e=this.options,f=this.cssPosition=="absolute"&&(this.scrollParent[0]==document||!a.ui.contains(this.scrollParent[0],this.offsetParent[0]))?this.offsetParent:this.scrollParent,g=/(html|body)/i.test(f[0].tagName);return{top:c.top+this.offset.relative.top*d+this.offset.parent.top*d-(a.browser.safari&&this.cssPosition=="fixed"?0:(this.cssPosition=="fixed"?-this.scrollParent.scrollTop():g?0:f.scrollTop())*d),left:c.left+this.offset.relative.left*d+this.offset.parent.left*d-(a.browser.safari&&this.cssPosition=="fixed"?0:(this.cssPosition=="fixed"?-this.scrollParent.scrollLeft():g?0:f.scrollLeft())*d)}},_generatePosition:function(b){var c=this.options,d=this.cssPosition=="absolute"&&(this.scrollParent[0]==document||!a.ui.contains(this.scrollParent[0],this.offsetParent[0]))?this.offsetParent:this.scrollParent,e=/(html|body)/i.test(d[0].tagName);this.cssPosition=="relative"&&(this.scrollParent[0]==document||this.scrollParent[0]==this.offsetParent[0])&&(this.offset.relative=this._getRelativeOffset());var f=b.pageX,g=b.pageY;if(this.originalPosition){this.containment&&(b.pageX-this.offset.click.left<this.containment[0]&&(f=this.containment[0]+this.offset.click.left),b.pageY-this.offset.click.top<this.containment[1]&&(g=this.containment[1]+this.offset.click.top),b.pageX-this.offset.click.left>this.containment[2]&&(f=this.containment[2]+this.offset.click.left),b.pageY-this.offset.click.top>this.containment[3]&&(g=this.containment[3]+this.offset.click.top));if(c.grid){var h=this.originalPageY+Math.round((g-this.originalPageY)/c.grid[1])*c.grid[1];g=this.containment?h-this.offset.click.top<this.containment[1]||h-this.offset.click.top>this.containment[3]?h-this.offset.click.top<this.containment[1]?h+c.grid[1]:h-c.grid[1]:h:h;var i=this.originalPageX+Math.round((f-this.originalPageX)/c.grid[0])*c.grid[0];f=this.containment?i-this.offset.click.left<this.containment[0]||i-this.offset.click.left>this.containment[2]?i-this.offset.click.left<this.containment[0]?i+c.grid[0]:i-c.grid[0]:i:i}}return{top:g-this.offset.click.top-this.offset.relative.top-this.offset.parent.top+(a.browser.safari&&this.cssPosition=="fixed"?0:this.cssPosition=="fixed"?-this.scrollParent.scrollTop():e?0:d.scrollTop()),left:f-this.offset.click.left-this.offset.relative.left-this.offset.parent.left+(a.browser.safari&&this.cssPosition=="fixed"?0:this.cssPosition=="fixed"?-this.scrollParent.scrollLeft():e?0:d.scrollLeft())}},_rearrange:function(a,b,c,d){c?c[0].appendChild(this.placeholder[0]):b.item[0].parentNode.insertBefore(this.placeholder[0],this.direction=="down"?b.item[0]:b.item[0].nextSibling),this.counter=this.counter?++this.counter:1;var e=this,f=this.counter;window.setTimeout(function(){f==e.counter&&e.refreshPositions(!d)},0)},_clear:function(b,c){this.reverting=!1;var d=[],e=this;!this._noFinalSort&&this.currentItem.parent().length&&this.placeholder.before(this.currentItem),this._noFinalSort=null;if(this.helper[0]==this.currentItem[0]){for(var f in this._storedCSS)if(this._storedCSS[f]=="auto"||this._storedCSS[f]=="static")this._storedCSS[f]="";this.currentItem.css(this._storedCSS).removeClass("ui-sortable-helper")}else this.currentItem.show();this.fromOutside&&!c&&d.push(function(a){this._trigger("receive",a,this._uiHash(this.fromOutside))}),(this.fromOutside||this.domPosition.prev!=this.currentItem.prev().not(".ui-sortable-helper")[0]||this.domPosition.parent!=this.currentItem.parent()[0])&&!c&&d.push(function(a){this._trigger("update",a,this._uiHash())});if(!a.ui.contains(this.element[0],this.currentItem[0])){c||d.push(function(a){this._trigger("remove",a,this._uiHash())});for(var f=this.containers.length-1;f>=0;f--)a.ui.contains(this.containers[f].element[0],this.currentItem[0])&&!c&&(d.push(function(a){return function(b){a._trigger("receive",b,this._uiHash(this))}}.call(this,this.containers[f])),d.push(function(a){return function(b){a._trigger("update",b,this._uiHash(this))}}.call(this,this.containers[f])))}for(var f=this.containers.length-1;f>=0;f--)c||d.push(function(a){return function(b){a._trigger("deactivate",b,this._uiHash(this))}}.call(this,this.containers[f])),this.containers[f].containerCache.over&&(d.push(function(a){return function(b){a._trigger("out",b,this._uiHash(this))}}.call(this,this.containers[f])),this.containers[f].containerCache.over=0);this._storedCursor&&a("body").css("cursor",this._storedCursor),this._storedOpacity&&this.helper.css("opacity",this._storedOpacity),this._storedZIndex&&this.helper.css("zIndex",this._storedZIndex=="auto"?"":this._storedZIndex),this.dragging=!1;if(this.cancelHelperRemoval){if(!c){this._trigger("beforeStop",b,this._uiHash());for(var f=0;f<d.length;f++)d[f].call(this,b);this._trigger("stop",b,this._uiHash())}return!1}c||this._trigger("beforeStop",b,this._uiHash()),this.placeholder[0].parentNode.removeChild(this.placeholder[0]),this.helper[0]!=this.currentItem[0]&&this.helper.remove(),this.helper=null;if(!c){for(var f=0;f<d.length;f++)d[f].call(this,b);this._trigger("stop",b,this._uiHash())}this.fromOutside=!1;return!0},_trigger:function(){a.Widget.prototype._trigger.apply(this,arguments)===!1&&this.cancel()},_uiHash:function(b){var c=b||this;return{helper:c.helper,placeholder:c.placeholder||a([]),position:c.position,originalPosition:c.originalPosition,offset:c.positionAbs,item:c.currentItem,sender:b?b.element:null}}}),a.extend(a.ui.sortable,{version:"1.8.18"})})(jQuery);/* - * jQuery UI Accordion 1.8.18 - * - * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) - * Dual licensed under the MIT or GPL Version 2 licenses. - * http://jquery.org/license - * - * http://docs.jquery.com/UI/Accordion - * - * Depends: - * jquery.ui.core.js - * jquery.ui.widget.js - */(function(a,b){a.widget("ui.accordion",{options:{active:0,animated:"slide",autoHeight:!0,clearStyle:!1,collapsible:!1,event:"click",fillSpace:!1,header:"> li > :first-child,> :not(li):even",icons:{header:"ui-icon-triangle-1-e",headerSelected:"ui-icon-triangle-1-s"},navigation:!1,navigationFilter:function(){return this.href.toLowerCase()===location.href.toLowerCase()}},_create:function(){var b=this,c=b.options;b.running=0,b.element.addClass("ui-accordion ui-widget ui-helper-reset").children("li").addClass("ui-accordion-li-fix"),b.headers=b.element.find(c.header).addClass("ui-accordion-header ui-helper-reset ui-state-default ui-corner-all").bind("mouseenter.accordion",function(){c.disabled||a(this).addClass("ui-state-hover")}).bind("mouseleave.accordion",function(){c.disabled||a(this).removeClass("ui-state-hover")}).bind("focus.accordion",function(){c.disabled||a(this).addClass("ui-state-focus")}).bind("blur.accordion",function(){c.disabled||a(this).removeClass("ui-state-focus")}),b.headers.next().addClass("ui-accordion-content ui-helper-reset ui-widget-content ui-corner-bottom");if(c.navigation){var d=b.element.find("a").filter(c.navigationFilter).eq(0);if(d.length){var e=d.closest(".ui-accordion-header");e.length?b.active=e:b.active=d.closest(".ui-accordion-content").prev()}}b.active=b._findActive(b.active||c.active).addClass("ui-state-default ui-state-active").toggleClass("ui-corner-all").toggleClass("ui-corner-top"),b.active.next().addClass("ui-accordion-content-active"),b._createIcons(),b.resize(),b.element.attr("role","tablist"),b.headers.attr("role","tab").bind("keydown.accordion",function(a){return b._keydown(a)}).next().attr("role","tabpanel"),b.headers.not(b.active||"").attr({"aria-expanded":"false","aria-selected":"false",tabIndex:-1}).next().hide(),b.active.length?b.active.attr({"aria-expanded":"true","aria-selected":"true",tabIndex:0}):b.headers.eq(0).attr("tabIndex",0),a.browser.safari||b.headers.find("a").attr("tabIndex",-1),c.event&&b.headers.bind(c.event.split(" ").join(".accordion ")+".accordion",function(a){b._clickHandler.call(b,a,this),a.preventDefault()})},_createIcons:function(){var b=this.options;b.icons&&(a("<span></span>").addClass("ui-icon "+b.icons.header).prependTo(this.headers),this.active.children(".ui-icon").toggleClass(b.icons.header).toggleClass(b.icons.headerSelected),this.element.addClass("ui-accordion-icons"))},_destroyIcons:function(){this.headers.children(".ui-icon").remove(),this.element.removeClass("ui-accordion-icons")},destroy:function(){var b=this.options;this.element.removeClass("ui-accordion ui-widget ui-helper-reset").removeAttr("role"),this.headers.unbind(".accordion").removeClass("ui-accordion-header ui-accordion-disabled ui-helper-reset ui-state-default ui-corner-all ui-state-active ui-state-disabled ui-corner-top").removeAttr("role").removeAttr("aria-expanded").removeAttr("aria-selected").removeAttr("tabIndex"),this.headers.find("a").removeAttr("tabIndex"),this._destroyIcons();var c=this.headers.next().css("display","").removeAttr("role").removeClass("ui-helper-reset ui-widget-content ui-corner-bottom ui-accordion-content ui-accordion-content-active ui-accordion-disabled ui-state-disabled");(b.autoHeight||b.fillHeight)&&c.css("height","");return a.Widget.prototype.destroy.call(this)},_setOption:function(b,c){a.Widget.prototype._setOption.apply(this,arguments),b=="active"&&this.activate(c),b=="icons"&&(this._destroyIcons(),c&&this._createIcons()),b=="disabled"&&this.headers.add(this.headers.next())[c?"addClass":"removeClass"]("ui-accordion-disabled ui-state-disabled")},_keydown:function(b){if(!(this.options.disabled||b.altKey||b.ctrlKey)){var c=a.ui.keyCode,d=this.headers.length,e=this.headers.index(b.target),f=!1;switch(b.keyCode){case c.RIGHT:case c.DOWN:f=this.headers[(e+1)%d];break;case c.LEFT:case c.UP:f=this.headers[(e-1+d)%d];break;case c.SPACE:case c.ENTER:this._clickHandler({target:b.target},b.target),b.preventDefault()}if(f){a(b.target).attr("tabIndex",-1),a(f).attr("tabIndex",0),f.focus();return!1}return!0}},resize:function(){var b=this.options,c;if(b.fillSpace){if(a.browser.msie){var d=this.element.parent().css("overflow");this.element.parent().css("overflow","hidden")}c=this.element.parent().height(),a.browser.msie&&this.element.parent().css("overflow",d),this.headers.each(function(){c-=a(this).outerHeight(!0)}),this.headers.next().each(function(){a(this).height(Math.max(0,c-a(this).innerHeight()+a(this).height()))}).css("overflow","auto")}else b.autoHeight&&(c=0,this.headers.next().each(function(){c=Math.max(c,a(this).height("").height())}).height(c));return this},activate:function(a){this.options.active=a;var b=this._findActive(a)[0];this._clickHandler({target:b},b);return this},_findActive:function(b){return b?typeof b=="number"?this.headers.filter(":eq("+b+")"):this.headers.not(this.headers.not(b)):b===!1?a([]):this.headers.filter(":eq(0)")},_clickHandler:function(b,c){var d=this.options;if(!d.disabled){if(!b.target){if(!d.collapsible)return;this.active.removeClass("ui-state-active ui-corner-top").addClass("ui-state-default ui-corner-all").children(".ui-icon").removeClass(d.icons.headerSelected).addClass(d.icons.header),this.active.next().addClass("ui-accordion-content-active");var e=this.active.next(),f={options:d,newHeader:a([]),oldHeader:d.active,newContent:a([]),oldContent:e},g=this.active=a([]);this._toggle(g,e,f);return}var h=a(b.currentTarget||c),i=h[0]===this.active[0];d.active=d.collapsible&&i?!1:this.headers.index(h);if(this.running||!d.collapsible&&i)return;var j=this.active,g=h.next(),e=this.active.next(),f={options:d,newHeader:i&&d.collapsible?a([]):h,oldHeader:this.active,newContent:i&&d.collapsible?a([]):g,oldContent:e},k=this.headers.index(this.active[0])>this.headers.index(h[0]);this.active=i?a([]):h,this._toggle(g,e,f,i,k),j.removeClass("ui-state-active ui-corner-top").addClass("ui-state-default ui-corner-all").children(".ui-icon").removeClass(d.icons.headerSelected).addClass(d.icons.header),i||(h.removeClass("ui-state-default ui-corner-all").addClass("ui-state-active ui-corner-top").children(".ui-icon").removeClass(d.icons.header).addClass(d.icons.headerSelected),h.next().addClass("ui-accordion-content-active"));return}},_toggle:function(b,c,d,e,f){var g=this,h=g.options;g.toShow=b,g.toHide=c,g.data=d;var i=function(){if(!!g)return g._completed.apply(g,arguments)};g._trigger("changestart",null,g.data),g.running=c.size()===0?b.size():c.size();if(h.animated){var j={};h.collapsible&&e?j={toShow:a([]),toHide:c,complete:i,down:f,autoHeight:h.autoHeight||h.fillSpace}:j={toShow:b,toHide:c,complete:i,down:f,autoHeight:h.autoHeight||h.fillSpace},h.proxied||(h.proxied=h.animated),h.proxiedDuration||(h.proxiedDuration=h.duration),h.animated=a.isFunction(h.proxied)?h.proxied(j):h.proxied,h.duration=a.isFunction(h.proxiedDuration)?h.proxiedDuration(j):h.proxiedDuration;var k=a.ui.accordion.animations,l=h.duration,m=h.animated;m&&!k[m]&&!a.easing[m]&&(m="slide"),k[m]||(k[m]=function(a){this.slide(a,{easing:m,duration:l||700})}),k[m](j)}else h.collapsible&&e?b.toggle():(c.hide(),b.show()),i(!0);c.prev().attr({"aria-expanded":"false","aria-selected":"false",tabIndex:-1}).blur(),b.prev().attr({"aria-expanded":"true","aria-selected":"true",tabIndex:0}).focus()},_completed:function(a){this.running=a?0:--this.running;this.running||(this.options.clearStyle&&this.toShow.add(this.toHide).css({height:"",overflow:""}),this.toHide.removeClass("ui-accordion-content-active"),this.toHide.length&&(this.toHide.parent()[0].className=this.toHide.parent()[0].className),this._trigger("change",null,this.data))}}),a.extend(a.ui.accordion,{version:"1.8.18",animations:{slide:function(b,c){b=a.extend({easing:"swing",duration:300},b,c);if(!b.toHide.size())b.toShow.animate({height:"show",paddingTop:"show",paddingBottom:"show"},b);else{if(!b.toShow.size()){b.toHide.animate({height:"hide",paddingTop:"hide",paddingBottom:"hide"},b);return}var d=b.toShow.css("overflow"),e=0,f={},g={},h=["height","paddingTop","paddingBottom"],i,j=b.toShow;i=j[0].style.width,j.width(j.parent().width()-parseFloat(j.css("paddingLeft"))-parseFloat(j.css("paddingRight"))-(parseFloat(j.css("borderLeftWidth"))||0)-(parseFloat(j.css("borderRightWidth"))||0)),a.each(h,function(c,d){g[d]="hide";var e=(""+a.css(b.toShow[0],d)).match(/^([\d+-.]+)(.*)$/);f[d]={value:e[1],unit:e[2]||"px"}}),b.toShow.css({height:0,overflow:"hidden"}).show(),b.toHide.filter(":hidden").each(b.complete).end().filter(":visible").animate(g,{step:function(a,c){c.prop=="height"&&(e=c.end-c.start===0?0:(c.now-c.start)/(c.end-c.start)),b.toShow[0].style[c.prop]=e*f[c.prop].value+f[c.prop].unit},duration:b.duration,easing:b.easing,complete:function(){b.autoHeight||b.toShow.css("height",""),b.toShow.css({width:i,overflow:d}),b.complete()}})}},bounceslide:function(a){this.slide(a,{easing:a.down?"easeOutBounce":"swing",duration:a.down?1e3:200})}}})})(jQuery);/* - * jQuery UI Autocomplete 1.8.18 - * - * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) - * Dual licensed under the MIT or GPL Version 2 licenses. - * http://jquery.org/license - * - * http://docs.jquery.com/UI/Autocomplete - * - * Depends: - * jquery.ui.core.js - * jquery.ui.widget.js - * jquery.ui.position.js - */(function(a,b){var c=0;a.widget("ui.autocomplete",{options:{appendTo:"body",autoFocus:!1,delay:300,minLength:1,position:{my:"left top",at:"left bottom",collision:"none"},source:null},pending:0,_create:function(){var b=this,c=this.element[0].ownerDocument,d;this.element.addClass("ui-autocomplete-input").attr("autocomplete","off").attr({role:"textbox","aria-autocomplete":"list","aria-haspopup":"true"}).bind("keydown.autocomplete",function(c){if(!b.options.disabled&&!b.element.propAttr("readOnly")){d=!1;var e=a.ui.keyCode;switch(c.keyCode){case e.PAGE_UP:b._move("previousPage",c);break;case e.PAGE_DOWN:b._move("nextPage",c);break;case e.UP:b._move("previous",c),c.preventDefault();break;case e.DOWN:b._move("next",c),c.preventDefault();break;case e.ENTER:case e.NUMPAD_ENTER:b.menu.active&&(d=!0,c.preventDefault());case e.TAB:if(!b.menu.active)return;b.menu.select(c);break;case e.ESCAPE:b.element.val(b.term),b.close(c);break;default:clearTimeout(b.searching),b.searching=setTimeout(function(){b.term!=b.element.val()&&(b.selectedItem=null,b.search(null,c))},b.options.delay)}}}).bind("keypress.autocomplete",function(a){d&&(d=!1,a.preventDefault())}).bind("focus.autocomplete",function(){b.options.disabled||(b.selectedItem=null,b.previous=b.element.val())}).bind("blur.autocomplete",function(a){b.options.disabled||(clearTimeout(b.searching),b.closing=setTimeout(function(){b.close(a),b._change(a)},150))}),this._initSource(),this.response=function(){return b._response.apply(b,arguments)},this.menu=a("<ul></ul>").addClass("ui-autocomplete").appendTo(a(this.options.appendTo||"body",c)[0]).mousedown(function(c){var d=b.menu.element[0];a(c.target).closest(".ui-menu-item").length||setTimeout(function(){a(document).one("mousedown",function(c){c.target!==b.element[0]&&c.target!==d&&!a.ui.contains(d,c.target)&&b.close()})},1),setTimeout(function(){clearTimeout(b.closing)},13)}).menu({focus:function(a,c){var d=c.item.data("item.autocomplete");!1!==b._trigger("focus",a,{item:d})&&/^key/.test(a.originalEvent.type)&&b.element.val(d.value)},selected:function(a,d){var e=d.item.data("item.autocomplete"),f=b.previous;b.element[0]!==c.activeElement&&(b.element.focus(),b.previous=f,setTimeout(function(){b.previous=f,b.selectedItem=e},1)),!1!==b._trigger("select",a,{item:e})&&b.element.val(e.value),b.term=b.element.val(),b.close(a),b.selectedItem=e},blur:function(a,c){b.menu.element.is(":visible")&&b.element.val()!==b.term&&b.element.val(b.term)}}).zIndex(this.element.zIndex()+1).css({top:0,left:0}).hide().data("menu"),a.fn.bgiframe&&this.menu.element.bgiframe(),b.beforeunloadHandler=function(){b.element.removeAttr("autocomplete")},a(window).bind("beforeunload",b.beforeunloadHandler)},destroy:function(){this.element.removeClass("ui-autocomplete-input").removeAttr("autocomplete").removeAttr("role").removeAttr("aria-autocomplete").removeAttr("aria-haspopup"),this.menu.element.remove(),a(window).unbind("beforeunload",this.beforeunloadHandler),a.Widget.prototype.destroy.call(this)},_setOption:function(b,c){a.Widget.prototype._setOption.apply(this,arguments),b==="source"&&this._initSource(),b==="appendTo"&&this.menu.element.appendTo(a(c||"body",this.element[0].ownerDocument)[0]),b==="disabled"&&c&&this.xhr&&this.xhr.abort()},_initSource:function(){var b=this,d,e;a.isArray(this.options.source)?(d=this.options.source,this.source=function(b,c){c(a.ui.autocomplete.filter(d,b.term))}):typeof this.options.source=="string"?(e=this.options.source,this.source=function(d,f){b.xhr&&b.xhr.abort(),b.xhr=a.ajax({url:e,data:d,dataType:"json",context:{autocompleteRequest:++c},success:function(a,b){this.autocompleteRequest===c&&f(a)},error:function(){this.autocompleteRequest===c&&f([])}})}):this.source=this.options.source},search:function(a,b){a=a!=null?a:this.element.val(),this.term=this.element.val();if(a.length<this.options.minLength)return this.close(b);clearTimeout(this.closing);if(this._trigger("search",b)!==!1)return this._search(a)},_search:function(a){this.pending++,this.element.addClass("ui-autocomplete-loading"),this.source({term:a},this.response)},_response:function(a){!this.options.disabled&&a&&a.length?(a=this._normalize(a),this._suggest(a),this._trigger("open")):this.close(),this.pending--,this.pending||this.element.removeClass("ui-autocomplete-loading")},close:function(a){clearTimeout(this.closing),this.menu.element.is(":visible")&&(this.menu.element.hide(),this.menu.deactivate(),this._trigger("close",a))},_change:function(a){this.previous!==this.element.val()&&this._trigger("change",a,{item:this.selectedItem})},_normalize:function(b){if(b.length&&b[0].label&&b[0].value)return b;return a.map(b,function(b){if(typeof b=="string")return{label:b,value:b};return a.extend({label:b.label||b.value,value:b.value||b.label},b)})},_suggest:function(b){var c=this.menu.element.empty().zIndex(this.element.zIndex()+1);this._renderMenu(c,b),this.menu.deactivate(),this.menu.refresh(),c.show(),this._resizeMenu(),c.position(a.extend({of:this.element},this.options.position)),this.options.autoFocus&&this.menu.next(new a.Event("mouseover"))},_resizeMenu:function(){var a=this.menu.element;a.outerWidth(Math.max(a.width("").outerWidth()+1,this.element.outerWidth()))},_renderMenu:function(b,c){var d=this;a.each(c,function(a,c){d._renderItem(b,c)})},_renderItem:function(b,c){return a("<li></li>").data("item.autocomplete",c).append(a("<a></a>").text(c.label)).appendTo(b)},_move:function(a,b){if(!this.menu.element.is(":visible"))this.search(null,b);else{if(this.menu.first()&&/^previous/.test(a)||this.menu.last()&&/^next/.test(a)){this.element.val(this.term),this.menu.deactivate();return}this.menu[a](b)}},widget:function(){return this.menu.element}}),a.extend(a.ui.autocomplete,{escapeRegex:function(a){return a.replace(/[-[\]{}()*+?.,\\^$|#\s]/g,"\\$&")},filter:function(b,c){var d=new RegExp(a.ui.autocomplete.escapeRegex(c),"i");return a.grep(b,function(a){return d.test(a.label||a.value||a)})}})})(jQuery),function(a){a.widget("ui.menu",{_create:function(){var b=this;this.element.addClass("ui-menu ui-widget ui-widget-content ui-corner-all").attr({role:"listbox","aria-activedescendant":"ui-active-menuitem"}).click(function(c){!a(c.target).closest(".ui-menu-item a").length||(c.preventDefault(),b.select(c))}),this.refresh()},refresh:function(){var b=this,c=this.element.children("li:not(.ui-menu-item):has(a)").addClass("ui-menu-item").attr("role","menuitem");c.children("a").addClass("ui-corner-all").attr("tabindex",-1).mouseenter(function(c){b.activate(c,a(this).parent())}).mouseleave(function(){b.deactivate()})},activate:function(a,b){this.deactivate();if(this.hasScroll()){var c=b.offset().top-this.element.offset().top,d=this.element.scrollTop(),e=this.element.height();c<0?this.element.scrollTop(d+c):c>=e&&this.element.scrollTop(d+c-e+b.height())}this.active=b.eq(0).children("a").addClass("ui-state-hover").attr("id","ui-active-menuitem").end(),this._trigger("focus",a,{item:b})},deactivate:function(){!this.active||(this.active.children("a").removeClass("ui-state-hover").removeAttr("id"),this._trigger("blur"),this.active=null)},next:function(a){this.move("next",".ui-menu-item:first",a)},previous:function(a){this.move("prev",".ui-menu-item:last",a)},first:function(){return this.active&&!this.active.prevAll(".ui-menu-item").length},last:function(){return this.active&&!this.active.nextAll(".ui-menu-item").length},move:function(a,b,c){if(!this.active)this.activate(c,this.element.children(b));else{var d=this.active[a+"All"](".ui-menu-item").eq(0);d.length?this.activate(c,d):this.activate(c,this.element.children(b))}},nextPage:function(b){if(this.hasScroll()){if(!this.active||this.last()){this.activate(b,this.element.children(".ui-menu-item:first"));return}var c=this.active.offset().top,d=this.element.height(),e=this.element.children(".ui-menu-item").filter(function(){var b=a(this).offset().top-c-d+a(this).height();return b<10&&b>-10});e.length||(e=this.element.children(".ui-menu-item:last")),this.activate(b,e)}else this.activate(b,this.element.children(".ui-menu-item").filter(!this.active||this.last()?":first":":last"))},previousPage:function(b){if(this.hasScroll()){if(!this.active||this.first()){this.activate(b,this.element.children(".ui-menu-item:last"));return}var c=this.active.offset().top,d=this.element.height();result=this.element.children(".ui-menu-item").filter(function(){var b=a(this).offset().top-c+d-a(this).height();return b<10&&b>-10}),result.length||(result=this.element.children(".ui-menu-item:first")),this.activate(b,result)}else this.activate(b,this.element.children(".ui-menu-item").filter(!this.active||this.first()?":last":":first"))},hasScroll:function(){return this.element.height()<this.element[a.fn.prop?"prop":"attr"]("scrollHeight")},select:function(a){this._trigger("selected",a,{item:this.active})}})}(jQuery);/* - * jQuery UI Button 1.8.18 - * - * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) - * Dual licensed under the MIT or GPL Version 2 licenses. - * http://jquery.org/license - * - * http://docs.jquery.com/UI/Button - * - * Depends: - * jquery.ui.core.js - * jquery.ui.widget.js - */(function(a,b){var c,d,e,f,g="ui-button ui-widget ui-state-default ui-corner-all",h="ui-state-hover ui-state-active ",i="ui-button-icons-only ui-button-icon-only ui-button-text-icons ui-button-text-icon-primary ui-button-text-icon-secondary ui-button-text-only",j=function(){var b=a(this).find(":ui-button");setTimeout(function(){b.button("refresh")},1)},k=function(b){var c=b.name,d=b.form,e=a([]);c&&(d?e=a(d).find("[name='"+c+"']"):e=a("[name='"+c+"']",b.ownerDocument).filter(function(){return!this.form}));return e};a.widget("ui.button",{options:{disabled:null,text:!0,label:null,icons:{primary:null,secondary:null}},_create:function(){this.element.closest("form").unbind("reset.button").bind("reset.button",j),typeof this.options.disabled!="boolean"?this.options.disabled=!!this.element.propAttr("disabled"):this.element.propAttr("disabled",this.options.disabled),this._determineButtonType(),this.hasTitle=!!this.buttonElement.attr("title");var b=this,h=this.options,i=this.type==="checkbox"||this.type==="radio",l="ui-state-hover"+(i?"":" ui-state-active"),m="ui-state-focus";h.label===null&&(h.label=this.buttonElement.html()),this.buttonElement.addClass(g).attr("role","button").bind("mouseenter.button",function(){h.disabled||(a(this).addClass("ui-state-hover"),this===c&&a(this).addClass("ui-state-active"))}).bind("mouseleave.button",function(){h.disabled||a(this).removeClass(l)}).bind("click.button",function(a){h.disabled&&(a.preventDefault(),a.stopImmediatePropagation())}),this.element.bind("focus.button",function(){b.buttonElement.addClass(m)}).bind("blur.button",function(){b.buttonElement.removeClass(m)}),i&&(this.element.bind("change.button",function(){f||b.refresh()}),this.buttonElement.bind("mousedown.button",function(a){h.disabled||(f=!1,d=a.pageX,e=a.pageY)}).bind("mouseup.button",function(a){!h.disabled&&(d!==a.pageX||e!==a.pageY)&&(f=!0)})),this.type==="checkbox"?this.buttonElement.bind("click.button",function(){if(h.disabled||f)return!1;a(this).toggleClass("ui-state-active"),b.buttonElement.attr("aria-pressed",b.element[0].checked)}):this.type==="radio"?this.buttonElement.bind("click.button",function(){if(h.disabled||f)return!1;a(this).addClass("ui-state-active"),b.buttonElement.attr("aria-pressed","true");var c=b.element[0];k(c).not(c).map(function(){return a(this).button("widget")[0]}).removeClass("ui-state-active").attr("aria-pressed","false")}):(this.buttonElement.bind("mousedown.button",function(){if(h.disabled)return!1;a(this).addClass("ui-state-active"),c=this,a(document).one("mouseup",function(){c=null})}).bind("mouseup.button",function(){if(h.disabled)return!1;a(this).removeClass("ui-state-active")}).bind("keydown.button",function(b){if(h.disabled)return!1;(b.keyCode==a.ui.keyCode.SPACE||b.keyCode==a.ui.keyCode.ENTER)&&a(this).addClass("ui-state-active")}).bind("keyup.button",function(){a(this).removeClass("ui-state-active")}),this.buttonElement.is("a")&&this.buttonElement.keyup(function(b){b.keyCode===a.ui.keyCode.SPACE&&a(this).click()})),this._setOption("disabled",h.disabled),this._resetButton()},_determineButtonType:function(){this.element.is(":checkbox")?this.type="checkbox":this.element.is(":radio")?this.type="radio":this.element.is("input")?this.type="input":this.type="button";if(this.type==="checkbox"||this.type==="radio"){var a=this.element.parents().filter(":last"),b="label[for='"+this.element.attr("id")+"']";this.buttonElement=a.find(b),this.buttonElement.length||(a=a.length?a.siblings():this.element.siblings(),this.buttonElement=a.filter(b),this.buttonElement.length||(this.buttonElement=a.find(b))),this.element.addClass("ui-helper-hidden-accessible");var c=this.element.is(":checked");c&&this.buttonElement.addClass("ui-state-active"),this.buttonElement.attr("aria-pressed",c)}else this.buttonElement=this.element},widget:function(){return this.buttonElement},destroy:function(){this.element.removeClass("ui-helper-hidden-accessible"),this.buttonElement.removeClass(g+" "+h+" "+i).removeAttr("role").removeAttr("aria-pressed").html(this.buttonElement.find(".ui-button-text").html()),this.hasTitle||this.buttonElement.removeAttr("title"),a.Widget.prototype.destroy.call(this)},_setOption:function(b,c){a.Widget.prototype._setOption.apply(this,arguments);b==="disabled"?c?this.element.propAttr("disabled",!0):this.element.propAttr("disabled",!1):this._resetButton()},refresh:function(){var b=this.element.is(":disabled");b!==this.options.disabled&&this._setOption("disabled",b),this.type==="radio"?k(this.element[0]).each(function(){a(this).is(":checked")?a(this).button("widget").addClass("ui-state-active").attr("aria-pressed","true"):a(this).button("widget").removeClass("ui-state-active").attr("aria-pressed","false")}):this.type==="checkbox"&&(this.element.is(":checked")?this.buttonElement.addClass("ui-state-active").attr("aria-pressed","true"):this.buttonElement.removeClass("ui-state-active").attr("aria-pressed","false"))},_resetButton:function(){if(this.type==="input")this.options.label&&this.element.val(this.options.label);else{var b=this.buttonElement.removeClass(i),c=a("<span></span>",this.element[0].ownerDocument).addClass("ui-button-text").html(this.options.label).appendTo(b.empty()).text(),d=this.options.icons,e=d.primary&&d.secondary,f=[];d.primary||d.secondary?(this.options.text&&f.push("ui-button-text-icon"+(e?"s":d.primary?"-primary":"-secondary")),d.primary&&b.prepend("<span class='ui-button-icon-primary ui-icon "+d.primary+"'></span>"),d.secondary&&b.append("<span class='ui-button-icon-secondary ui-icon "+d.secondary+"'></span>"),this.options.text||(f.push(e?"ui-button-icons-only":"ui-button-icon-only"),this.hasTitle||b.attr("title",c))):f.push("ui-button-text-only"),b.addClass(f.join(" "))}}}),a.widget("ui.buttonset",{options:{items:":button, :submit, :reset, :checkbox, :radio, a, :data(button)"},_create:function(){this.element.addClass("ui-buttonset")},_init:function(){this.refresh()},_setOption:function(b,c){b==="disabled"&&this.buttons.button("option",b,c),a.Widget.prototype._setOption.apply(this,arguments)},refresh:function(){var b=this.element.css("direction")==="rtl";this.buttons=this.element.find(this.options.items).filter(":ui-button").button("refresh").end().not(":ui-button").button().end().map(function(){return a(this).button("widget")[0]}).removeClass("ui-corner-all ui-corner-left ui-corner-right").filter(":first").addClass(b?"ui-corner-right":"ui-corner-left").end().filter(":last").addClass(b?"ui-corner-left":"ui-corner-right").end().end()},destroy:function(){this.element.removeClass("ui-buttonset"),this.buttons.map(function(){return a(this).button("widget")[0]}).removeClass("ui-corner-left ui-corner-right").end().button("destroy"),a.Widget.prototype.destroy.call(this)}})})(jQuery);/* - * jQuery UI Dialog 1.8.18 - * - * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) - * Dual licensed under the MIT or GPL Version 2 licenses. - * http://jquery.org/license - * - * http://docs.jquery.com/UI/Dialog - * - * Depends: - * jquery.ui.core.js - * jquery.ui.widget.js - * jquery.ui.button.js - * jquery.ui.draggable.js - * jquery.ui.mouse.js - * jquery.ui.position.js - * jquery.ui.resizable.js - */(function(a,b){var c="ui-dialog ui-widget ui-widget-content ui-corner-all ",d={buttons:!0,height:!0,maxHeight:!0,maxWidth:!0,minHeight:!0,minWidth:!0,width:!0},e={maxHeight:!0,maxWidth:!0,minHeight:!0,minWidth:!0},f=a.attrFn||{val:!0,css:!0,html:!0,text:!0,data:!0,width:!0,height:!0,offset:!0,click:!0};a.widget("ui.dialog",{options:{autoOpen:!0,buttons:{},closeOnEscape:!0,closeText:"close",dialogClass:"",draggable:!0,hide:null,height:"auto",maxHeight:!1,maxWidth:!1,minHeight:150,minWidth:150,modal:!1,position:{my:"center",at:"center",collision:"fit",using:function(b){var c=a(this).css(b).offset().top;c<0&&a(this).css("top",b.top-c)}},resizable:!0,show:null,stack:!0,title:"",width:300,zIndex:1e3},_create:function(){this.originalTitle=this.element.attr("title"),typeof this.originalTitle!="string"&&(this.originalTitle=""),this.options.title=this.options.title||this.originalTitle;var b=this,d=b.options,e=d.title||" ",f=a.ui.dialog.getTitleId(b.element),g=(b.uiDialog=a("<div></div>")).appendTo(document.body).hide().addClass(c+d.dialogClass).css({zIndex:d.zIndex}).attr("tabIndex",-1).css("outline",0).keydown(function(c){d.closeOnEscape&&!c.isDefaultPrevented()&&c.keyCode&&c.keyCode===a.ui.keyCode.ESCAPE&&(b.close(c),c.preventDefault())}).attr({role:"dialog","aria-labelledby":f}).mousedown(function(a){b.moveToTop(!1,a)}),h=b.element.show().removeAttr("title").addClass("ui-dialog-content ui-widget-content").appendTo(g),i=(b.uiDialogTitlebar=a("<div></div>")).addClass("ui-dialog-titlebar ui-widget-header ui-corner-all ui-helper-clearfix").prependTo(g),j=a('<a href="#"></a>').addClass("ui-dialog-titlebar-close ui-corner-all").attr("role","button").hover(function(){j.addClass("ui-state-hover")},function(){j.removeClass("ui-state-hover")}).focus(function(){j.addClass("ui-state-focus")}).blur(function(){j.removeClass("ui-state-focus")}).click(function(a){b.close(a);return!1}).appendTo(i),k=(b.uiDialogTitlebarCloseText=a("<span></span>")).addClass("ui-icon ui-icon-closethick").text(d.closeText).appendTo(j),l=a("<span></span>").addClass("ui-dialog-title").attr("id",f).html(e).prependTo(i);a.isFunction(d.beforeclose)&&!a.isFunction(d.beforeClose)&&(d.beforeClose=d.beforeclose),i.find("*").add(i).disableSelection(),d.draggable&&a.fn.draggable&&b._makeDraggable(),d.resizable&&a.fn.resizable&&b._makeResizable(),b._createButtons(d.buttons),b._isOpen=!1,a.fn.bgiframe&&g.bgiframe()},_init:function(){this.options.autoOpen&&this.open()},destroy:function(){var a=this;a.overlay&&a.overlay.destroy(),a.uiDialog.hide(),a.element.unbind(".dialog").removeData("dialog").removeClass("ui-dialog-content ui-widget-content").hide().appendTo("body"),a.uiDialog.remove(),a.originalTitle&&a.element.attr("title",a.originalTitle);return a},widget:function(){return this.uiDialog},close:function(b){var c=this,d,e;if(!1!==c._trigger("beforeClose",b)){c.overlay&&c.overlay.destroy(),c.uiDialog.unbind("keypress.ui-dialog"),c._isOpen=!1,c.options.hide?c.uiDialog.hide(c.options.hide,function(){c._trigger("close",b)}):(c.uiDialog.hide(),c._trigger("close",b)),a.ui.dialog.overlay.resize(),c.options.modal&&(d=0,a(".ui-dialog").each(function(){this!==c.uiDialog[0]&&(e=a(this).css("z-index"),isNaN(e)||(d=Math.max(d,e)))}),a.ui.dialog.maxZ=d);return c}},isOpen:function(){return this._isOpen},moveToTop:function(b,c){var d=this,e=d.options,f;if(e.modal&&!b||!e.stack&&!e.modal)return d._trigger("focus",c);e.zIndex>a.ui.dialog.maxZ&&(a.ui.dialog.maxZ=e.zIndex),d.overlay&&(a.ui.dialog.maxZ+=1,d.overlay.$el.css("z-index",a.ui.dialog.overlay.maxZ=a.ui.dialog.maxZ)),f={scrollTop:d.element.scrollTop(),scrollLeft:d.element.scrollLeft()},a.ui.dialog.maxZ+=1,d.uiDialog.css("z-index",a.ui.dialog.maxZ),d.element.attr(f),d._trigger("focus",c);return d},open:function(){if(!this._isOpen){var b=this,c=b.options,d=b.uiDialog;b.overlay=c.modal?new a.ui.dialog.overlay(b):null,b._size(),b._position(c.position),d.show(c.show),b.moveToTop(!0),c.modal&&d.bind("keydown.ui-dialog",function(b){if(b.keyCode===a.ui.keyCode.TAB){var c=a(":tabbable",this),d=c.filter(":first"),e=c.filter(":last");if(b.target===e[0]&&!b.shiftKey){d.focus(1);return!1}if(b.target===d[0]&&b.shiftKey){e.focus(1);return!1}}}),a(b.element.find(":tabbable").get().concat(d.find(".ui-dialog-buttonpane :tabbable").get().concat(d.get()))).eq(0).focus(),b._isOpen=!0,b._trigger("open");return b}},_createButtons:function(b){var c=this,d=!1,e=a("<div></div>").addClass("ui-dialog-buttonpane ui-widget-content ui-helper-clearfix"),g=a("<div></div>").addClass("ui-dialog-buttonset").appendTo(e);c.uiDialog.find(".ui-dialog-buttonpane").remove(),typeof b=="object"&&b!==null&&a.each(b,function(){return!(d=!0)}),d&&(a.each(b,function(b,d){d=a.isFunction(d)?{click:d,text:b}:d;var e=a('<button type="button"></button>').click(function(){d.click.apply(c.element[0],arguments)}).appendTo(g);a.each(d,function(a,b){a!=="click"&&(a in f?e[a](b):e.attr(a,b))}),a.fn.button&&e.button()}),e.appendTo(c.uiDialog))},_makeDraggable:function(){function f(a){return{position:a.position,offset:a.offset}}var b=this,c=b.options,d=a(document),e;b.uiDialog.draggable({cancel:".ui-dialog-content, .ui-dialog-titlebar-close",handle:".ui-dialog-titlebar",containment:"document",start:function(d,g){e=c.height==="auto"?"auto":a(this).height(),a(this).height(a(this).height()).addClass("ui-dialog-dragging"),b._trigger("dragStart",d,f(g))},drag:function(a,c){b._trigger("drag",a,f(c))},stop:function(g,h){c.position=[h.position.left-d.scrollLeft(),h.position.top-d.scrollTop()],a(this).removeClass("ui-dialog-dragging").height(e),b._trigger("dragStop",g,f(h)),a.ui.dialog.overlay.resize()}})},_makeResizable:function(c){function h(a){return{originalPosition:a.originalPosition,originalSize:a.originalSize,position:a.position,size:a.size}}c=c===b?this.options.resizable:c;var d=this,e=d.options,f=d.uiDialog.css("position"),g=typeof c=="string"?c:"n,e,s,w,se,sw,ne,nw";d.uiDialog.resizable({cancel:".ui-dialog-content",containment:"document",alsoResize:d.element,maxWidth:e.maxWidth,maxHeight:e.maxHeight,minWidth:e.minWidth,minHeight:d._minHeight(),handles:g,start:function(b,c){a(this).addClass("ui-dialog-resizing"),d._trigger("resizeStart",b,h(c))},resize:function(a,b){d._trigger("resize",a,h(b))},stop:function(b,c){a(this).removeClass("ui-dialog-resizing"),e.height=a(this).height(),e.width=a(this).width(),d._trigger("resizeStop",b,h(c)),a.ui.dialog.overlay.resize()}}).css("position",f).find(".ui-resizable-se").addClass("ui-icon ui-icon-grip-diagonal-se")},_minHeight:function(){var a=this.options;return a.height==="auto"?a.minHeight:Math.min(a.minHeight,a.height)},_position:function(b){var c=[],d=[0,0],e;if(b){if(typeof b=="string"||typeof b=="object"&&"0"in b)c=b.split?b.split(" "):[b[0],b[1]],c.length===1&&(c[1]=c[0]),a.each(["left","top"],function(a,b){+c[a]===c[a]&&(d[a]=c[a],c[a]=b)}),b={my:c.join(" "),at:c.join(" "),offset:d.join(" ")};b=a.extend({},a.ui.dialog.prototype.options.position,b)}else b=a.ui.dialog.prototype.options.position;e=this.uiDialog.is(":visible"),e||this.uiDialog.show(),this.uiDialog.css({top:0,left:0}).position(a.extend({of:window},b)),e||this.uiDialog.hide()},_setOptions:function(b){var c=this,f={},g=!1;a.each(b,function(a,b){c._setOption(a,b),a in d&&(g=!0),a in e&&(f[a]=b)}),g&&this._size(),this.uiDialog.is(":data(resizable)")&&this.uiDialog.resizable("option",f)},_setOption:function(b,d){var e=this,f=e.uiDialog;switch(b){case"beforeclose":b="beforeClose";break;case"buttons":e._createButtons(d);break;case"closeText":e.uiDialogTitlebarCloseText.text(""+d);break;case"dialogClass":f.removeClass(e.options.dialogClass).addClass(c+d);break;case"disabled":d?f.addClass("ui-dialog-disabled"):f.removeClass("ui-dialog-disabled");break;case"draggable":var g=f.is(":data(draggable)");g&&!d&&f.draggable("destroy"),!g&&d&&e._makeDraggable();break;case"position":e._position(d);break;case"resizable":var h=f.is(":data(resizable)");h&&!d&&f.resizable("destroy"),h&&typeof d=="string"&&f.resizable("option","handles",d),!h&&d!==!1&&e._makeResizable(d);break;case"title":a(".ui-dialog-title",e.uiDialogTitlebar).html(""+(d||" "))}a.Widget.prototype._setOption.apply(e,arguments)},_size:function(){var b=this.options,c,d,e=this.uiDialog.is(":visible");this.element.show().css({width:"auto",minHeight:0,height:0}),b.minWidth>b.width&&(b.width=b.minWidth),c=this.uiDialog.css({height:"auto",width:b.width}).height(),d=Math.max(0,b.minHeight-c);if(b.height==="auto")if(a.support.minHeight)this.element.css({minHeight:d,height:"auto"});else{this.uiDialog.show();var f=this.element.css("height","auto").height();e||this.uiDialog.hide(),this.element.height(Math.max(f,d))}else this.element.height(Math.max(b.height-c,0));this.uiDialog.is(":data(resizable)")&&this.uiDialog.resizable("option","minHeight",this._minHeight())}}),a.extend(a.ui.dialog,{version:"1.8.18",uuid:0,maxZ:0,getTitleId:function(a){var b=a.attr("id");b||(this.uuid+=1,b=this.uuid);return"ui-dialog-title-"+b},overlay:function(b){this.$el=a.ui.dialog.overlay.create(b)}}),a.extend(a.ui.dialog.overlay,{instances:[],oldInstances:[],maxZ:0,events:a.map("focus,mousedown,mouseup,keydown,keypress,click".split(","),function(a){return a+".dialog-overlay"}).join(" "),create:function(b){this.instances.length===0&&(setTimeout(function(){a.ui.dialog.overlay.instances.length&&a(document).bind(a.ui.dialog.overlay.events,function(b){if(a(b.target).zIndex()<a.ui.dialog.overlay.maxZ)return!1})},1),a(document).bind("keydown.dialog-overlay",function(c){b.options.closeOnEscape&&!c.isDefaultPrevented()&&c.keyCode&&c.keyCode===a.ui.keyCode.ESCAPE&&(b.close(c),c.preventDefault())}),a(window).bind("resize.dialog-overlay",a.ui.dialog.overlay.resize));var c=(this.oldInstances.pop()||a("<div></div>").addClass("ui-widget-overlay")).appendTo(document.body).css({width:this.width(),height:this.height()});a.fn.bgiframe&&c.bgiframe(),this.instances.push(c);return c},destroy:function(b){var c=a.inArray(b,this.instances);c!=-1&&this.oldInstances.push(this.instances.splice(c,1)[0]),this.instances.length===0&&a([document,window]).unbind(".dialog-overlay"),b.remove();var d=0;a.each(this.instances,function(){d=Math.max(d,this.css("z-index"))}),this.maxZ=d},height:function(){var b,c;if(a.browser.msie&&a.browser.version<7){b=Math.max(document.documentElement.scrollHeight,document.body.scrollHeight),c=Math.max(document.documentElement.offsetHeight,document.body.offsetHeight);return b<c?a(window).height()+"px":b+"px"}return a(document).height()+"px"},width:function(){var b,c;if(a.browser.msie){b=Math.max(document.documentElement.scrollWidth,document.body.scrollWidth),c=Math.max(document.documentElement.offsetWidth,document.body.offsetWidth);return b<c?a(window).width()+"px":b+"px"}return a(document).width()+"px"},resize:function(){var b=a([]);a.each(a.ui.dialog.overlay.instances,function(){b=b.add(this)}),b.css({width:0,height:0}).css({width:a.ui.dialog.overlay.width(),height:a.ui.dialog.overlay.height()})}}),a.extend(a.ui.dialog.overlay.prototype,{destroy:function(){a.ui.dialog.overlay.destroy(this.$el)}})})(jQuery);/* - * jQuery UI Slider 1.8.18 - * - * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) - * Dual licensed under the MIT or GPL Version 2 licenses. - * http://jquery.org/license - * - * http://docs.jquery.com/UI/Slider - * - * Depends: - * jquery.ui.core.js - * jquery.ui.mouse.js - * jquery.ui.widget.js - */(function(a,b){var c=5;a.widget("ui.slider",a.ui.mouse,{widgetEventPrefix:"slide",options:{animate:!1,distance:0,max:100,min:0,orientation:"horizontal",range:!1,step:1,value:0,values:null},_create:function(){var b=this,d=this.options,e=this.element.find(".ui-slider-handle").addClass("ui-state-default ui-corner-all"),f="<a class='ui-slider-handle ui-state-default ui-corner-all' href='#'></a>",g=d.values&&d.values.length||1,h=[];this._keySliding=!1,this._mouseSliding=!1,this._animateOff=!0,this._handleIndex=null,this._detectOrientation(),this._mouseInit(),this.element.addClass("ui-slider ui-slider-"+this.orientation+" ui-widget"+" ui-widget-content"+" ui-corner-all"+(d.disabled?" ui-slider-disabled ui-disabled":"")),this.range=a([]),d.range&&(d.range===!0&&(d.values||(d.values=[this._valueMin(),this._valueMin()]),d.values.length&&d.values.length!==2&&(d.values=[d.values[0],d.values[0]])),this.range=a("<div></div>").appendTo(this.element).addClass("ui-slider-range ui-widget-header"+(d.range==="min"||d.range==="max"?" ui-slider-range-"+d.range:"")));for(var i=e.length;i<g;i+=1)h.push(f);this.handles=e.add(a(h.join("")).appendTo(b.element)),this.handle=this.handles.eq(0),this.handles.add(this.range).filter("a").click(function(a){a.preventDefault()}).hover(function(){d.disabled||a(this).addClass("ui-state-hover")},function(){a(this).removeClass("ui-state-hover")}).focus(function(){d.disabled?a(this).blur():(a(".ui-slider .ui-state-focus").removeClass("ui-state-focus"),a(this).addClass("ui-state-focus"))}).blur(function(){a(this).removeClass("ui-state-focus")}),this.handles.each(function(b){a(this).data("index.ui-slider-handle",b)}),this.handles.keydown(function(d){var e=a(this).data("index.ui-slider-handle"),f,g,h,i;if(!b.options.disabled){switch(d.keyCode){case a.ui.keyCode.HOME:case a.ui.keyCode.END:case a.ui.keyCode.PAGE_UP:case a.ui.keyCode.PAGE_DOWN:case a.ui.keyCode.UP:case a.ui.keyCode.RIGHT:case a.ui.keyCode.DOWN:case a.ui.keyCode.LEFT:d.preventDefault();if(!b._keySliding){b._keySliding=!0,a(this).addClass("ui-state-active"),f=b._start(d,e);if(f===!1)return}}i=b.options.step,b.options.values&&b.options.values.length?g=h=b.values(e):g=h=b.value();switch(d.keyCode){case a.ui.keyCode.HOME:h=b._valueMin();break;case a.ui.keyCode.END:h=b._valueMax();break;case a.ui.keyCode.PAGE_UP:h=b._trimAlignValue(g+(b._valueMax()-b._valueMin())/c);break;case a.ui.keyCode.PAGE_DOWN:h=b._trimAlignValue(g-(b._valueMax()-b._valueMin())/c);break;case a.ui.keyCode.UP:case a.ui.keyCode.RIGHT:if(g===b._valueMax())return;h=b._trimAlignValue(g+i);break;case a.ui.keyCode.DOWN:case a.ui.keyCode.LEFT:if(g===b._valueMin())return;h=b._trimAlignValue(g-i)}b._slide(d,e,h)}}).keyup(function(c){var d=a(this).data("index.ui-slider-handle");b._keySliding&&(b._keySliding=!1,b._stop(c,d),b._change(c,d),a(this).removeClass("ui-state-active"))}),this._refreshValue(),this._animateOff=!1},destroy:function(){this.handles.remove(),this.range.remove(),this.element.removeClass("ui-slider ui-slider-horizontal ui-slider-vertical ui-slider-disabled ui-widget ui-widget-content ui-corner-all").removeData("slider").unbind(".slider"),this._mouseDestroy();return this},_mouseCapture:function(b){var c=this.options,d,e,f,g,h,i,j,k,l;if(c.disabled)return!1;this.elementSize={width:this.element.outerWidth(),height:this.element.outerHeight()},this.elementOffset=this.element.offset(),d={x:b.pageX,y:b.pageY},e=this._normValueFromMouse(d),f=this._valueMax()-this._valueMin()+1,h=this,this.handles.each(function(b){var c=Math.abs(e-h.values(b));f>c&&(f=c,g=a(this),i=b)}),c.range===!0&&this.values(1)===c.min&&(i+=1,g=a(this.handles[i])),j=this._start(b,i);if(j===!1)return!1;this._mouseSliding=!0,h._handleIndex=i,g.addClass("ui-state-active").focus(),k=g.offset(),l=!a(b.target).parents().andSelf().is(".ui-slider-handle"),this._clickOffset=l?{left:0,top:0}:{left:b.pageX-k.left-g.width()/2,top:b.pageY-k.top-g.height()/2-(parseInt(g.css("borderTopWidth"),10)||0)-(parseInt(g.css("borderBottomWidth"),10)||0)+(parseInt(g.css("marginTop"),10)||0)},this.handles.hasClass("ui-state-hover")||this._slide(b,i,e),this._animateOff=!0;return!0},_mouseStart:function(a){return!0},_mouseDrag:function(a){var b={x:a.pageX,y:a.pageY},c=this._normValueFromMouse(b);this._slide(a,this._handleIndex,c);return!1},_mouseStop:function(a){this.handles.removeClass("ui-state-active"),this._mouseSliding=!1,this._stop(a,this._handleIndex),this._change(a,this._handleIndex),this._handleIndex=null,this._clickOffset=null,this._animateOff=!1;return!1},_detectOrientation:function(){this.orientation=this.options.orientation==="vertical"?"vertical":"horizontal"},_normValueFromMouse:function(a){var b,c,d,e,f;this.orientation==="horizontal"?(b=this.elementSize.width,c=a.x-this.elementOffset.left-(this._clickOffset?this._clickOffset.left:0)):(b=this.elementSize.height,c=a.y-this.elementOffset.top-(this._clickOffset?this._clickOffset.top:0)),d=c/b,d>1&&(d=1),d<0&&(d=0),this.orientation==="vertical"&&(d=1-d),e=this._valueMax()-this._valueMin(),f=this._valueMin()+d*e;return this._trimAlignValue(f)},_start:function(a,b){var c={handle:this.handles[b],value:this.value()};this.options.values&&this.options.values.length&&(c.value=this.values(b),c.values=this.values());return this._trigger("start",a,c)},_slide:function(a,b,c){var d,e,f;this.options.values&&this.options.values.length?(d=this.values(b?0:1),this.options.values.length===2&&this.options.range===!0&&(b===0&&c>d||b===1&&c<d)&&(c=d),c!==this.values(b)&&(e=this.values(),e[b]=c,f=this._trigger("slide",a,{handle:this.handles[b],value:c,values:e}),d=this.values(b?0:1),f!==!1&&this.values(b,c,!0))):c!==this.value()&&(f=this._trigger("slide",a,{handle:this.handles[b],value:c}),f!==!1&&this.value(c))},_stop:function(a,b){var c={handle:this.handles[b],value:this.value()};this.options.values&&this.options.values.length&&(c.value=this.values(b),c.values=this.values()),this._trigger("stop",a,c)},_change:function(a,b){if(!this._keySliding&&!this._mouseSliding){var c={handle:this.handles[b],value:this.value()};this.options.values&&this.options.values.length&&(c.value=this.values(b),c.values=this.values()),this._trigger("change",a,c)}},value:function(a){if(arguments.length)this.options.value=this._trimAlignValue(a),this._refreshValue(),this._change(null,0);else return this._value()},values:function(b,c){var d,e,f;if(arguments.length>1)this.options.values[b]=this._trimAlignValue(c),this._refreshValue(),this._change(null,b);else{if(!arguments.length)return this._values();if(!a.isArray(arguments[0]))return this.options.values&&this.options.values.length?this._values(b):this.value();d=this.options.values,e=arguments[0];for(f=0;f<d.length;f+=1)d[f]=this._trimAlignValue(e[f]),this._change(null,f);this._refreshValue()}},_setOption:function(b,c){var d,e=0;a.isArray(this.options.values)&&(e=this.options.values.length),a.Widget.prototype._setOption.apply(this,arguments);switch(b){case"disabled":c?(this.handles.filter(".ui-state-focus").blur(),this.handles.removeClass("ui-state-hover"),this.handles.propAttr("disabled",!0),this.element.addClass("ui-disabled")):(this.handles.propAttr("disabled",!1),this.element.removeClass("ui-disabled"));break;case"orientation":this._detectOrientation(),this.element.removeClass("ui-slider-horizontal ui-slider-vertical").addClass("ui-slider-"+this.orientation),this._refreshValue();break;case"value":this._animateOff=!0,this._refreshValue(),this._change(null,0),this._animateOff=!1;break;case"values":this._animateOff=!0,this._refreshValue();for(d=0;d<e;d+=1)this._change(null,d);this._animateOff=!1}},_value:function(){var a=this.options.value;a=this._trimAlignValue(a);return a},_values:function(a){var b,c,d;if(arguments.length){b=this.options.values[a],b=this._trimAlignValue(b);return b}c=this.options.values.slice();for(d=0;d<c.length;d+=1)c[d]=this._trimAlignValue(c[d]);return c},_trimAlignValue:function(a){if(a<=this._valueMin())return this._valueMin();if(a>=this._valueMax())return this._valueMax();var b=this.options.step>0?this.options.step:1,c=(a-this._valueMin())%b,d=a-c;Math.abs(c)*2>=b&&(d+=c>0?b:-b);return parseFloat(d.toFixed(5))},_valueMin:function(){return this.options.min},_valueMax:function(){return this.options.max},_refreshValue:function(){var b=this.options.range,c=this.options,d=this,e=this._animateOff?!1:c.animate,f,g={},h,i,j,k;this.options.values&&this.options.values.length?this.handles.each(function(b,i){f=(d.values(b)-d._valueMin())/(d._valueMax()-d._valueMin())*100,g[d.orientation==="horizontal"?"left":"bottom"]=f+"%",a(this).stop(1,1)[e?"animate":"css"](g,c.animate),d.options.range===!0&&(d.orientation==="horizontal"?(b===0&&d.range.stop(1,1)[e?"animate":"css"]({left:f+"%"},c.animate),b===1&&d.range[e?"animate":"css"]({width:f-h+"%"},{queue:!1,duration:c.animate})):(b===0&&d.range.stop(1,1)[e?"animate":"css"]({bottom:f+"%"},c.animate),b===1&&d.range[e?"animate":"css"]({height:f-h+"%"},{queue:!1,duration:c.animate}))),h=f}):(i=this.value(),j=this._valueMin(),k=this._valueMax(),f=k!==j?(i-j)/(k-j)*100:0,g[d.orientation==="horizontal"?"left":"bottom"]=f+"%",this.handle.stop(1,1)[e?"animate":"css"](g,c.animate),b==="min"&&this.orientation==="horizontal"&&this.range.stop(1,1)[e?"animate":"css"]({width:f+"%"},c.animate),b==="max"&&this.orientation==="horizontal"&&this.range[e?"animate":"css"]({width:100-f+"%"},{queue:!1,duration:c.animate}),b==="min"&&this.orientation==="vertical"&&this.range.stop(1,1)[e?"animate":"css"]({height:f+"%"},c.animate),b==="max"&&this.orientation==="vertical"&&this.range[e?"animate":"css"]({height:100-f+"%"},{queue:!1,duration:c.animate}))}}),a.extend(a.ui.slider,{version:"1.8.18"})})(jQuery);/* - * jQuery UI Tabs 1.8.18 - * - * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) - * Dual licensed under the MIT or GPL Version 2 licenses. - * http://jquery.org/license - * - * http://docs.jquery.com/UI/Tabs - * - * Depends: - * jquery.ui.core.js - * jquery.ui.widget.js - */(function(a,b){function f(){return++d}function e(){return++c}var c=0,d=0;a.widget("ui.tabs",{options:{add:null,ajaxOptions:null,cache:!1,cookie:null,collapsible:!1,disable:null,disabled:[],enable:null,event:"click",fx:null,idPrefix:"ui-tabs-",load:null,panelTemplate:"<div></div>",remove:null,select:null,show:null,spinner:"<em>Loading…</em>",tabTemplate:"<li><a href='#{href}'><span>#{label}</span></a></li>"},_create:function(){this._tabify(!0)},_setOption:function(a,b){if(a=="selected"){if(this.options.collapsible&&b==this.options.selected)return;this.select(b)}else this.options[a]=b,this._tabify()},_tabId:function(a){return a.title&&a.title.replace(/\s/g,"_").replace(/[^\w\u00c0-\uFFFF-]/g,"")||this.options.idPrefix+e()},_sanitizeSelector:function(a){return a.replace(/:/g,"\\:")},_cookie:function(){var b=this.cookie||(this.cookie=this.options.cookie.name||"ui-tabs-"+f());return a.cookie.apply(null,[b].concat(a.makeArray(arguments)))},_ui:function(a,b){return{tab:a,panel:b,index:this.anchors.index(a)}},_cleanup:function(){this.lis.filter(".ui-state-processing").removeClass("ui-state-processing").find("span:data(label.tabs)").each(function(){var b=a(this);b.html(b.data("label.tabs")).removeData("label.tabs")})},_tabify:function(c){function m(b,c){b.css("display",""),!a.support.opacity&&c.opacity&&b[0].style.removeAttribute("filter")}var d=this,e=this.options,f=/^#.+/;this.list=this.element.find("ol,ul").eq(0),this.lis=a(" > li:has(a[href])",this.list),this.anchors=this.lis.map(function(){return a("a",this)[0]}),this.panels=a([]),this.anchors.each(function(b,c){var g=a(c).attr("href"),h=g.split("#")[0],i;h&&(h===location.toString().split("#")[0]||(i=a("base")[0])&&h===i.href)&&(g=c.hash,c.href=g);if(f.test(g))d.panels=d.panels.add(d.element.find(d._sanitizeSelector(g)));else if(g&&g!=="#"){a.data(c,"href.tabs",g),a.data(c,"load.tabs",g.replace(/#.*$/,""));var j=d._tabId(c);c.href="#"+j;var k=d.element.find("#"+j);k.length||(k=a(e.panelTemplate).attr("id",j).addClass("ui-tabs-panel ui-widget-content ui-corner-bottom").insertAfter(d.panels[b-1]||d.list),k.data("destroy.tabs",!0)),d.panels=d.panels.add(k)}else e.disabled.push(b)}),c?(this.element.addClass("ui-tabs ui-widget ui-widget-content ui-corner-all"),this.list.addClass("ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all"),this.lis.addClass("ui-state-default ui-corner-top"),this.panels.addClass("ui-tabs-panel ui-widget-content ui-corner-bottom"),e.selected===b?(location.hash&&this.anchors.each(function(a,b){if(b.hash==location.hash){e.selected=a;return!1}}),typeof e.selected!="number"&&e.cookie&&(e.selected=parseInt(d._cookie(),10)),typeof e.selected!="number"&&this.lis.filter(".ui-tabs-selected").length&&(e.selected=this.lis.index(this.lis.filter(".ui-tabs-selected"))),e.selected=e.selected||(this.lis.length?0:-1)):e.selected===null&&(e.selected=-1),e.selected=e.selected>=0&&this.anchors[e.selected]||e.selected<0?e.selected:0,e.disabled=a.unique(e.disabled.concat(a.map(this.lis.filter(".ui-state-disabled"),function(a,b){return d.lis.index(a)}))).sort(),a.inArray(e.selected,e.disabled)!=-1&&e.disabled.splice(a.inArray(e.selected,e.disabled),1),this.panels.addClass("ui-tabs-hide"),this.lis.removeClass("ui-tabs-selected ui-state-active"),e.selected>=0&&this.anchors.length&&(d.element.find(d._sanitizeSelector(d.anchors[e.selected].hash)).removeClass("ui-tabs-hide"),this.lis.eq(e.selected).addClass("ui-tabs-selected ui-state-active"),d.element.queue("tabs",function(){d._trigger("show",null,d._ui(d.anchors[e.selected],d.element.find(d._sanitizeSelector(d.anchors[e.selected].hash))[0]))}),this.load(e.selected)),a(window).bind("unload",function(){d.lis.add(d.anchors).unbind(".tabs"),d.lis=d.anchors=d.panels=null})):e.selected=this.lis.index(this.lis.filter(".ui-tabs-selected")),this.element[e.collapsible?"addClass":"removeClass"]("ui-tabs-collapsible"),e.cookie&&this._cookie(e.selected,e.cookie);for(var g=0,h;h=this.lis[g];g++)a(h)[a.inArray(g,e.disabled)!=-1&&!a(h).hasClass("ui-tabs-selected")?"addClass":"removeClass"]("ui-state-disabled");e.cache===!1&&this.anchors.removeData("cache.tabs"),this.lis.add(this.anchors).unbind(".tabs");if(e.event!=="mouseover"){var i=function(a,b){b.is(":not(.ui-state-disabled)")&&b.addClass("ui-state-"+a)},j=function(a,b){b.removeClass("ui-state-"+a)};this.lis.bind("mouseover.tabs",function(){i("hover",a(this))}),this.lis.bind("mouseout.tabs",function(){j("hover",a(this))}),this.anchors.bind("focus.tabs",function(){i("focus",a(this).closest("li"))}),this.anchors.bind("blur.tabs",function(){j("focus",a(this).closest("li"))})}var k,l;e.fx&&(a.isArray(e.fx)?(k=e.fx[0],l=e.fx[1]):k=l=e.fx);var n=l?function(b,c){a(b).closest("li").addClass("ui-tabs-selected ui-state-active"),c.hide().removeClass("ui-tabs-hide").animate(l,l.duration||"normal",function(){m(c,l),d._trigger("show",null,d._ui(b,c[0]))})}:function(b,c){a(b).closest("li").addClass("ui-tabs-selected ui-state-active"),c.removeClass("ui-tabs-hide"),d._trigger("show",null,d._ui(b,c[0]))},o=k?function(a,b){b.animate(k,k.duration||"normal",function(){d.lis.removeClass("ui-tabs-selected ui-state-active"),b.addClass("ui-tabs-hide"),m(b,k),d.element.dequeue("tabs")})}:function(a,b,c){d.lis.removeClass("ui-tabs-selected ui-state-active"),b.addClass("ui-tabs-hide"),d.element.dequeue("tabs")};this.anchors.bind(e.event+".tabs",function(){var b=this,c=a(b).closest("li"),f=d.panels.filter(":not(.ui-tabs-hide)"),g=d.element.find(d._sanitizeSelector(b.hash));if(c.hasClass("ui-tabs-selected")&&!e.collapsible||c.hasClass("ui-state-disabled")||c.hasClass("ui-state-processing")||d.panels.filter(":animated").length||d._trigger("select",null,d._ui(this,g[0]))===!1){this.blur();return!1}e.selected=d.anchors.index(this),d.abort();if(e.collapsible){if(c.hasClass("ui-tabs-selected")){e.selected=-1,e.cookie&&d._cookie(e.selected,e.cookie),d.element.queue("tabs",function(){o(b,f)}).dequeue("tabs"),this.blur();return!1}if(!f.length){e.cookie&&d._cookie(e.selected,e.cookie),d.element.queue("tabs",function(){n(b,g)}),d.load(d.anchors.index(this)),this.blur();return!1}}e.cookie&&d._cookie(e.selected,e.cookie);if(g.length)f.length&&d.element.queue("tabs",function(){o(b,f)}),d.element.queue("tabs",function(){n(b,g)}),d.load(d.anchors.index(this));else throw"jQuery UI Tabs: Mismatching fragment identifier.";a.browser.msie&&this.blur()}),this.anchors.bind("click.tabs",function(){return!1})},_getIndex:function(a){typeof a=="string"&&(a=this.anchors.index(this.anchors.filter("[href$="+a+"]")));return a},destroy:function(){var b=this.options;this.abort(),this.element.unbind(".tabs").removeClass("ui-tabs ui-widget ui-widget-content ui-corner-all ui-tabs-collapsible").removeData("tabs"),this.list.removeClass("ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all"),this.anchors.each(function(){var b=a.data(this,"href.tabs");b&&(this.href=b);var c=a(this).unbind(".tabs");a.each(["href","load","cache"],function(a,b){c.removeData(b+".tabs")})}),this.lis.unbind(".tabs").add(this.panels).each(function(){a.data(this,"destroy.tabs")?a(this).remove():a(this).removeClass(["ui-state-default","ui-corner-top","ui-tabs-selected","ui-state-active","ui-state-hover","ui-state-focus","ui-state-disabled","ui-tabs-panel","ui-widget-content","ui-corner-bottom","ui-tabs-hide"].join(" "))}),b.cookie&&this._cookie(null,b.cookie);return this},add:function(c,d,e){e===b&&(e=this.anchors.length);var f=this,g=this.options,h=a(g.tabTemplate.replace(/#\{href\}/g,c).replace(/#\{label\}/g,d)),i=c.indexOf("#")?this._tabId(a("a",h)[0]):c.replace("#","");h.addClass("ui-state-default ui-corner-top").data("destroy.tabs",!0);var j=f.element.find("#"+i);j.length||(j=a(g.panelTemplate).attr("id",i).data("destroy.tabs",!0)),j.addClass("ui-tabs-panel ui-widget-content ui-corner-bottom ui-tabs-hide"),e>=this.lis.length?(h.appendTo(this.list),j.appendTo(this.list[0].parentNode)):(h.insertBefore(this.lis[e]),j.insertBefore(this.panels[e])),g.disabled=a.map(g.disabled,function(a,b){return a>=e?++a:a}),this._tabify(),this.anchors.length==1&&(g.selected=0,h.addClass("ui-tabs-selected ui-state-active"),j.removeClass("ui-tabs-hide"),this.element.queue("tabs",function(){f._trigger("show",null,f._ui(f.anchors[0],f.panels[0]))}),this.load(0)),this._trigger("add",null,this._ui(this.anchors[e],this.panels[e]));return this},remove:function(b){b=this._getIndex(b);var c=this.options,d=this.lis.eq(b).remove(),e=this.panels.eq(b).remove();d.hasClass("ui-tabs-selected")&&this.anchors.length>1&&this.select(b+(b+1<this.anchors.length?1:-1)),c.disabled=a.map(a.grep(c.disabled,function(a,c){return a!=b}),function(a,c){return a>=b?--a:a}),this._tabify(),this._trigger("remove",null,this._ui(d.find("a")[0],e[0]));return this},enable:function(b){b=this._getIndex(b);var c=this.options;if(a.inArray(b,c.disabled)!=-1){this.lis.eq(b).removeClass("ui-state-disabled"),c.disabled=a.grep(c.disabled,function(a,c){return a!=b}),this._trigger("enable",null,this._ui(this.anchors[b],this.panels[b]));return this}},disable:function(a){a=this._getIndex(a);var b=this,c=this.options;a!=c.selected&&(this.lis.eq(a).addClass("ui-state-disabled"),c.disabled.push(a),c.disabled.sort(),this._trigger("disable",null,this._ui(this.anchors[a],this.panels[a])));return this},select:function(a){a=this._getIndex(a);if(a==-1)if(this.options.collapsible&&this.options.selected!=-1)a=this.options.selected;else return this;this.anchors.eq(a).trigger(this.options.event+".tabs");return this},load:function(b){b=this._getIndex(b);var c=this,d=this.options,e=this.anchors.eq(b)[0],f=a.data(e,"load.tabs");this.abort();if(!f||this.element.queue("tabs").length!==0&&a.data(e,"cache.tabs"))this.element.dequeue("tabs");else{this.lis.eq(b).addClass("ui-state-processing");if(d.spinner){var g=a("span",e);g.data("label.tabs",g.html()).html(d.spinner)}this.xhr=a.ajax(a.extend({},d.ajaxOptions,{url:f,success:function(f,g){c.element.find(c._sanitizeSelector(e.hash)).html(f),c._cleanup(),d.cache&&a.data(e,"cache.tabs",!0),c._trigger("load",null,c._ui(c.anchors[b],c.panels[b]));try{d.ajaxOptions.success(f,g)}catch(h){}},error:function(a,f,g){c._cleanup(),c._trigger("load",null,c._ui(c.anchors[b],c.panels[b]));try{d.ajaxOptions.error(a,f,b,e)}catch(g){}}})),c.element.dequeue("tabs");return this}},abort:function(){this.element.queue([]),this.panels.stop(!1,!0),this.element.queue("tabs",this.element.queue("tabs").splice(-2,2)),this.xhr&&(this.xhr.abort(),delete this.xhr),this._cleanup();return this},url:function(a,b){this.anchors.eq(a).removeData("cache.tabs").data("load.tabs",b);return this},length:function(){return this.anchors.length}}),a.extend(a.ui.tabs,{version:"1.8.18"}),a.extend(a.ui.tabs.prototype,{rotation:null,rotate:function(a,b){var c=this,d=this.options,e=c._rotate||(c._rotate=function(b){clearTimeout(c.rotation),c.rotation=setTimeout(function(){var a=d.selected;c.select(++a<c.anchors.length?a:0)},a),b&&b.stopPropagation()}),f=c._unrotate||(c._unrotate=b?function(a){t=d.selected,e()}:function(a){a.clientX&&c.rotate(null)});a?(this.element.bind("tabsshow",e),this.anchors.bind(d.event+".tabs",f),e()):(clearTimeout(c.rotation),this.element.unbind("tabsshow",e),this.anchors.unbind(d.event+".tabs",f),delete this._rotate,delete this._unrotate);return this}})})(jQuery);/* - * jQuery UI Datepicker 1.8.18 - * - * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) - * Dual licensed under the MIT or GPL Version 2 licenses. - * http://jquery.org/license - * - * http://docs.jquery.com/UI/Datepicker - * - * Depends: - * jquery.ui.core.js - */(function($,undefined){function isArray(a){return a&&($.browser.safari&&typeof a=="object"&&a.length||a.constructor&&a.constructor.toString().match(/\Array\(\)/))}function extendRemove(a,b){$.extend(a,b);for(var c in b)if(b[c]==null||b[c]==undefined)a[c]=b[c];return a}function bindHover(a){var b="button, .ui-datepicker-prev, .ui-datepicker-next, .ui-datepicker-calendar td a";return a.bind("mouseout",function(a){var c=$(a.target).closest(b);!c.length||c.removeClass("ui-state-hover ui-datepicker-prev-hover ui-datepicker-next-hover")}).bind("mouseover",function(c){var d=$(c.target).closest(b);!$.datepicker._isDisabledDatepicker(instActive.inline?a.parent()[0]:instActive.input[0])&&!!d.length&&(d.parents(".ui-datepicker-calendar").find("a").removeClass("ui-state-hover"),d.addClass("ui-state-hover"),d.hasClass("ui-datepicker-prev")&&d.addClass("ui-datepicker-prev-hover"),d.hasClass("ui-datepicker-next")&&d.addClass("ui-datepicker-next-hover"))})}function Datepicker(){this.debug=!1,this._curInst=null,this._keyEvent=!1,this._disabledInputs=[],this._datepickerShowing=!1,this._inDialog=!1,this._mainDivId="ui-datepicker-div",this._inlineClass="ui-datepicker-inline",this._appendClass="ui-datepicker-append",this._triggerClass="ui-datepicker-trigger",this._dialogClass="ui-datepicker-dialog",this._disableClass="ui-datepicker-disabled",this._unselectableClass="ui-datepicker-unselectable",this._currentClass="ui-datepicker-current-day",this._dayOverClass="ui-datepicker-days-cell-over",this.regional=[],this.regional[""]={closeText:"Done",prevText:"Prev",nextText:"Next",currentText:"Today",monthNames:["January","February","March","April","May","June","July","August","September","October","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],dayNames:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],dayNamesShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],dayNamesMin:["Su","Mo","Tu","We","Th","Fr","Sa"],weekHeader:"Wk",dateFormat:"mm/dd/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},this._defaults={showOn:"focus",showAnim:"fadeIn",showOptions:{},defaultDate:null,appendText:"",buttonText:"...",buttonImage:"",buttonImageOnly:!1,hideIfNoPrevNext:!1,navigationAsDateFormat:!1,gotoCurrent:!1,changeMonth:!1,changeYear:!1,yearRange:"c-10:c+10",showOtherMonths:!1,selectOtherMonths:!1,showWeek:!1,calculateWeek:this.iso8601Week,shortYearCutoff:"+10",minDate:null,maxDate:null,duration:"fast",beforeShowDay:null,beforeShow:null,onSelect:null,onChangeMonthYear:null,onClose:null,numberOfMonths:1,showCurrentAtPos:0,stepMonths:1,stepBigMonths:12,altField:"",altFormat:"",constrainInput:!0,showButtonPanel:!1,autoSize:!1,disabled:!1},$.extend(this._defaults,this.regional[""]),this.dpDiv=bindHover($('<div id="'+this._mainDivId+'" class="ui-datepicker ui-widget ui-widget-content ui-helper-clearfix ui-corner-all"></div>'))}$.extend($.ui,{datepicker:{version:"1.8.18"}});var PROP_NAME="datepicker",dpuuid=(new Date).getTime(),instActive;$.extend(Datepicker.prototype,{markerClassName:"hasDatepicker",maxRows:4,log:function(){this.debug&&console.log.apply("",arguments)},_widgetDatepicker:function(){return this.dpDiv},setDefaults:function(a){extendRemove(this._defaults,a||{});return this},_attachDatepicker:function(target,settings){var inlineSettings=null;for(var attrName in this._defaults){var attrValue=target.getAttribute("date:"+attrName);if(attrValue){inlineSettings=inlineSettings||{};try{inlineSettings[attrName]=eval(attrValue)}catch(err){inlineSettings[attrName]=attrValue}}}var nodeName=target.nodeName.toLowerCase(),inline=nodeName=="div"||nodeName=="span";target.id||(this.uuid+=1,target.id="dp"+this.uuid);var inst=this._newInst($(target),inline);inst.settings=$.extend({},settings||{},inlineSettings||{}),nodeName=="input"?this._connectDatepicker(target,inst):inline&&this._inlineDatepicker(target,inst)},_newInst:function(a,b){var c=a[0].id.replace(/([^A-Za-z0-9_-])/g,"\\\\$1");return{id:c,input:a,selectedDay:0,selectedMonth:0,selectedYear:0,drawMonth:0,drawYear:0,inline:b,dpDiv:b?bindHover($('<div class="'+this._inlineClass+' ui-datepicker ui-widget ui-widget-content ui-helper-clearfix ui-corner-all"></div>')):this.dpDiv}},_connectDatepicker:function(a,b){var c=$(a);b.append=$([]),b.trigger=$([]);c.hasClass(this.markerClassName)||(this._attachments(c,b),c.addClass(this.markerClassName).keydown(this._doKeyDown).keypress(this._doKeyPress).keyup(this._doKeyUp).bind("setData.datepicker",function(a,c,d){b.settings[c]=d}).bind("getData.datepicker",function(a,c){return this._get(b,c)}),this._autoSize(b),$.data(a,PROP_NAME,b),b.settings.disabled&&this._disableDatepicker(a))},_attachments:function(a,b){var c=this._get(b,"appendText"),d=this._get(b,"isRTL");b.append&&b.append.remove(),c&&(b.append=$('<span class="'+this._appendClass+'">'+c+"</span>"),a[d?"before":"after"](b.append)),a.unbind("focus",this._showDatepicker),b.trigger&&b.trigger.remove();var e=this._get(b,"showOn");(e=="focus"||e=="both")&&a.focus(this._showDatepicker);if(e=="button"||e=="both"){var f=this._get(b,"buttonText"),g=this._get(b,"buttonImage");b.trigger=$(this._get(b,"buttonImageOnly")?$("<img/>").addClass(this._triggerClass).attr({src:g,alt:f,title:f}):$('<button type="button"></button>').addClass(this._triggerClass).html(g==""?f:$("<img/>").attr({src:g,alt:f,title:f}))),a[d?"before":"after"](b.trigger),b.trigger.click(function(){$.datepicker._datepickerShowing&&$.datepicker._lastInput==a[0]?$.datepicker._hideDatepicker():$.datepicker._datepickerShowing&&$.datepicker._lastInput!=a[0]?($.datepicker._hideDatepicker(),$.datepicker._showDatepicker(a[0])):$.datepicker._showDatepicker(a[0]);return!1})}},_autoSize:function(a){if(this._get(a,"autoSize")&&!a.inline){var b=new Date(2009,11,20),c=this._get(a,"dateFormat");if(c.match(/[DM]/)){var d=function(a){var b=0,c=0;for(var d=0;d<a.length;d++)a[d].length>b&&(b=a[d].length,c=d);return c};b.setMonth(d(this._get(a,c.match(/MM/)?"monthNames":"monthNamesShort"))),b.setDate(d(this._get(a,c.match(/DD/)?"dayNames":"dayNamesShort"))+20-b.getDay())}a.input.attr("size",this._formatDate(a,b).length)}},_inlineDatepicker:function(a,b){var c=$(a);c.hasClass(this.markerClassName)||(c.addClass(this.markerClassName).append(b.dpDiv).bind("setData.datepicker",function(a,c,d){b.settings[c]=d}).bind("getData.datepicker",function(a,c){return this._get(b,c)}),$.data(a,PROP_NAME,b),this._setDate(b,this._getDefaultDate(b),!0),this._updateDatepicker(b),this._updateAlternate(b),b.settings.disabled&&this._disableDatepicker(a),b.dpDiv.css("display","block"))},_dialogDatepicker:function(a,b,c,d,e){var f=this._dialogInst;if(!f){this.uuid+=1;var g="dp"+this.uuid;this._dialogInput=$('<input type="text" id="'+g+'" style="position: absolute; top: -100px; width: 0px; z-index: -10;"/>'),this._dialogInput.keydown(this._doKeyDown),$("body").append(this._dialogInput),f=this._dialogInst=this._newInst(this._dialogInput,!1),f.settings={},$.data(this._dialogInput[0],PROP_NAME,f)}extendRemove(f.settings,d||{}),b=b&&b.constructor==Date?this._formatDate(f,b):b,this._dialogInput.val(b),this._pos=e?e.length?e:[e.pageX,e.pageY]:null;if(!this._pos){var h=document.documentElement.clientWidth,i=document.documentElement.clientHeight,j=document.documentElement.scrollLeft||document.body.scrollLeft,k=document.documentElement.scrollTop||document.body.scrollTop;this._pos=[h/2-100+j,i/2-150+k]}this._dialogInput.css("left",this._pos[0]+20+"px").css("top",this._pos[1]+"px"),f.settings.onSelect=c,this._inDialog=!0,this.dpDiv.addClass(this._dialogClass),this._showDatepicker(this._dialogInput[0]),$.blockUI&&$.blockUI(this.dpDiv),$.data(this._dialogInput[0],PROP_NAME,f);return this},_destroyDatepicker:function(a){var b=$(a),c=$.data(a,PROP_NAME);if(!!b.hasClass(this.markerClassName)){var d=a.nodeName.toLowerCase();$.removeData(a,PROP_NAME),d=="input"?(c.append.remove(),c.trigger.remove(),b.removeClass(this.markerClassName).unbind("focus",this._showDatepicker).unbind("keydown",this._doKeyDown).unbind("keypress",this._doKeyPress).unbind("keyup",this._doKeyUp)):(d=="div"||d=="span")&&b.removeClass(this.markerClassName).empty()}},_enableDatepicker:function(a){var b=$(a),c=$.data(a,PROP_NAME);if(!!b.hasClass(this.markerClassName)){var d=a.nodeName.toLowerCase();if(d=="input")a.disabled=!1,c.trigger.filter("button").each(function(){this.disabled=!1}).end().filter("img").css({opacity:"1.0",cursor:""});else if(d=="div"||d=="span"){var e=b.children("."+this._inlineClass);e.children().removeClass("ui-state-disabled"),e.find("select.ui-datepicker-month, select.ui-datepicker-year").removeAttr("disabled")}this._disabledInputs=$.map(this._disabledInputs,function(b){return b==a?null:b})}},_disableDatepicker:function(a){var b=$(a),c=$.data(a,PROP_NAME);if(!!b.hasClass(this.markerClassName)){var d=a.nodeName.toLowerCase();if(d=="input")a.disabled=!0,c.trigger.filter("button").each(function(){this.disabled=!0}).end().filter("img").css({opacity:"0.5",cursor:"default"});else if(d=="div"||d=="span"){var e=b.children("."+this._inlineClass);e.children().addClass("ui-state-disabled"),e.find("select.ui-datepicker-month, select.ui-datepicker-year").attr("disabled","disabled")}this._disabledInputs=$.map(this._disabledInputs,function(b){return b==a?null:b}),this._disabledInputs[this._disabledInputs.length]=a}},_isDisabledDatepicker:function(a){if(!a)return!1;for(var b=0;b<this._disabledInputs.length;b++)if(this._disabledInputs[b]==a)return!0;return!1},_getInst:function(a){try{return $.data(a,PROP_NAME)}catch(b){throw"Missing instance data for this datepicker"}},_optionDatepicker:function(a,b,c){var d=this._getInst(a);if(arguments.length==2&&typeof b=="string")return b=="defaults"?$.extend({},$.datepicker._defaults):d?b=="all"?$.extend({},d.settings):this._get(d,b):null;var e=b||{};typeof b=="string"&&(e={},e[b]=c);if(d){this._curInst==d&&this._hideDatepicker();var f=this._getDateDatepicker(a,!0),g=this._getMinMaxDate(d,"min"),h=this._getMinMaxDate(d,"max");extendRemove(d.settings,e),g!==null&&e.dateFormat!==undefined&&e.minDate===undefined&&(d.settings.minDate=this._formatDate(d,g)),h!==null&&e.dateFormat!==undefined&&e.maxDate===undefined&&(d.settings.maxDate=this._formatDate(d,h)),this._attachments($(a),d),this._autoSize(d),this._setDate(d,f),this._updateAlternate(d),this._updateDatepicker(d)}},_changeDatepicker:function(a,b,c){this._optionDatepicker(a,b,c)},_refreshDatepicker:function(a){var b=this._getInst(a);b&&this._updateDatepicker(b)},_setDateDatepicker:function(a,b){var c=this._getInst(a);c&&(this._setDate(c,b),this._updateDatepicker(c),this._updateAlternate(c))},_getDateDatepicker:function(a,b){var c=this._getInst(a);c&&!c.inline&&this._setDateFromField(c,b);return c?this._getDate(c):null},_doKeyDown:function(a){var b=$.datepicker._getInst(a.target),c=!0,d=b.dpDiv.is(".ui-datepicker-rtl");b._keyEvent=!0;if($.datepicker._datepickerShowing)switch(a.keyCode){case 9:$.datepicker._hideDatepicker(),c=!1;break;case 13:var e=$("td."+$.datepicker._dayOverClass+":not(."+$.datepicker._currentClass+")",b.dpDiv);e[0]&&$.datepicker._selectDay(a.target,b.selectedMonth,b.selectedYear,e[0]);var f=$.datepicker._get(b,"onSelect");if(f){var g=$.datepicker._formatDate(b);f.apply(b.input?b.input[0]:null,[g,b])}else $.datepicker._hideDatepicker();return!1;case 27:$.datepicker._hideDatepicker();break;case 33:$.datepicker._adjustDate(a.target,a.ctrlKey?-$.datepicker._get(b,"stepBigMonths"):-$.datepicker._get(b,"stepMonths"),"M");break;case 34:$.datepicker._adjustDate(a.target,a.ctrlKey?+$.datepicker._get(b,"stepBigMonths"):+$.datepicker._get(b,"stepMonths"),"M");break;case 35:(a.ctrlKey||a.metaKey)&&$.datepicker._clearDate(a.target),c=a.ctrlKey||a.metaKey;break;case 36:(a.ctrlKey||a.metaKey)&&$.datepicker._gotoToday(a.target),c=a.ctrlKey||a.metaKey;break;case 37:(a.ctrlKey||a.metaKey)&&$.datepicker._adjustDate(a.target,d?1:-1,"D"),c=a.ctrlKey||a.metaKey,a.originalEvent.altKey&&$.datepicker._adjustDate(a.target,a.ctrlKey?-$.datepicker._get(b,"stepBigMonths"):-$.datepicker._get(b,"stepMonths"),"M");break;case 38:(a.ctrlKey||a.metaKey)&&$.datepicker._adjustDate(a.target,-7,"D"),c=a.ctrlKey||a.metaKey;break;case 39:(a.ctrlKey||a.metaKey)&&$.datepicker._adjustDate(a.target,d?-1:1,"D"),c=a.ctrlKey||a.metaKey,a.originalEvent.altKey&&$.datepicker._adjustDate(a.target,a.ctrlKey?+$.datepicker._get(b,"stepBigMonths"):+$.datepicker._get(b,"stepMonths"),"M");break;case 40:(a.ctrlKey||a.metaKey)&&$.datepicker._adjustDate(a.target,7,"D"),c=a.ctrlKey||a.metaKey;break;default:c=!1}else a.keyCode==36&&a.ctrlKey?$.datepicker._showDatepicker(this):c=!1;c&&(a.preventDefault(),a.stopPropagation())},_doKeyPress:function(a){var b=$.datepicker._getInst(a.target);if($.datepicker._get(b,"constrainInput")){var c=$.datepicker._possibleChars($.datepicker._get(b,"dateFormat")),d=String.fromCharCode(a.charCode==undefined?a.keyCode:a.charCode);return a.ctrlKey||a.metaKey||d<" "||!c||c.indexOf(d)>-1}},_doKeyUp:function(a){var b=$.datepicker._getInst(a.target);if(b.input.val()!=b.lastVal)try{var c=$.datepicker.parseDate($.datepicker._get(b,"dateFormat"),b.input?b.input.val():null,$.datepicker._getFormatConfig(b));c&&($.datepicker._setDateFromField(b),$.datepicker._updateAlternate(b),$.datepicker._updateDatepicker(b))}catch(a){$.datepicker.log(a)}return!0},_showDatepicker:function(a){a=a.target||a,a.nodeName.toLowerCase()!="input"&&(a=$("input",a.parentNode)[0]);if(!$.datepicker._isDisabledDatepicker(a)&&$.datepicker._lastInput!=a){var b=$.datepicker._getInst(a);$.datepicker._curInst&&$.datepicker._curInst!=b&&($.datepicker._curInst.dpDiv.stop(!0,!0),b&&$.datepicker._datepickerShowing&&$.datepicker._hideDatepicker($.datepicker._curInst.input[0]));var c=$.datepicker._get(b,"beforeShow"),d=c?c.apply(a,[a,b]):{};if(d===!1)return;extendRemove(b.settings,d),b.lastVal=null,$.datepicker._lastInput=a,$.datepicker._setDateFromField(b),$.datepicker._inDialog&&(a.value=""),$.datepicker._pos||($.datepicker._pos=$.datepicker._findPos(a),$.datepicker._pos[1]+=a.offsetHeight);var e=!1;$(a).parents().each(function(){e|=$(this).css("position")=="fixed";return!e}),e&&$.browser.opera&&($.datepicker._pos[0]-=document.documentElement.scrollLeft,$.datepicker._pos[1]-=document.documentElement.scrollTop);var f={left:$.datepicker._pos[0],top:$.datepicker._pos[1]};$.datepicker._pos=null,b.dpDiv.empty(),b.dpDiv.css({position:"absolute",display:"block",top:"-1000px"}),$.datepicker._updateDatepicker(b),f=$.datepicker._checkOffset(b,f,e),b.dpDiv.css({position:$.datepicker._inDialog&&$.blockUI?"static":e?"fixed":"absolute",display:"none",left:f.left+"px",top:f.top+"px"});if(!b.inline){var g=$.datepicker._get(b,"showAnim"),h=$.datepicker._get(b,"duration"),i=function(){var a=b.dpDiv.find("iframe.ui-datepicker-cover");if(!!a.length){var c=$.datepicker._getBorders(b.dpDiv);a.css({left:-c[0],top:-c[1],width:b.dpDiv.outerWidth(),height:b.dpDiv.outerHeight()})}};b.dpDiv.zIndex($(a).zIndex()+1),$.datepicker._datepickerShowing=!0,$.effects&&$.effects[g]?b.dpDiv.show(g,$.datepicker._get(b,"showOptions"),h,i):b.dpDiv[g||"show"](g?h:null,i),(!g||!h)&&i(),b.input.is(":visible")&&!b.input.is(":disabled")&&b.input.focus(),$.datepicker._curInst=b}}},_updateDatepicker:function(a){var b=this;b.maxRows=4;var c=$.datepicker._getBorders(a.dpDiv);instActive=a,a.dpDiv.empty().append(this._generateHTML(a));var d=a.dpDiv.find("iframe.ui-datepicker-cover");!d.length||d.css({left:-c[0],top:-c[1],width:a.dpDiv.outerWidth(),height:a.dpDiv.outerHeight()}),a.dpDiv.find("."+this._dayOverClass+" a").mouseover();var e=this._getNumberOfMonths(a),f=e[1],g=17;a.dpDiv.removeClass("ui-datepicker-multi-2 ui-datepicker-multi-3 ui-datepicker-multi-4").width(""),f>1&&a.dpDiv.addClass("ui-datepicker-multi-"+f).css("width",g*f+"em"),a.dpDiv[(e[0]!=1||e[1]!=1?"add":"remove")+"Class"]("ui-datepicker-multi"),a.dpDiv[(this._get(a,"isRTL")?"add":"remove")+"Class"]("ui-datepicker-rtl"),a==$.datepicker._curInst&&$.datepicker._datepickerShowing&&a.input&&a.input.is(":visible")&&!a.input.is(":disabled")&&a.input[0]!=document.activeElement&&a.input.focus();if(a.yearshtml){var h=a.yearshtml;setTimeout(function(){h===a.yearshtml&&a.yearshtml&&a.dpDiv.find("select.ui-datepicker-year:first").replaceWith(a.yearshtml),h=a.yearshtml=null},0)}},_getBorders:function(a){var b=function(a){return{thin:1,medium:2,thick:3}[a]||a};return[parseFloat(b(a.css("border-left-width"))),parseFloat(b(a.css("border-top-width")))]},_checkOffset:function(a,b,c){var d=a.dpDiv.outerWidth(),e=a.dpDiv.outerHeight(),f=a.input?a.input.outerWidth():0,g=a.input?a.input.outerHeight():0,h=document.documentElement.clientWidth+$(document).scrollLeft(),i=document.documentElement.clientHeight+$(document).scrollTop();b.left-=this._get(a,"isRTL")?d-f:0,b.left-=c&&b.left==a.input.offset().left?$(document).scrollLeft():0,b.top-=c&&b.top==a.input.offset().top+g?$(document).scrollTop():0,b.left-=Math.min(b.left,b.left+d>h&&h>d?Math.abs(b.left+d-h):0),b.top-=Math.min(b.top,b.top+e>i&&i>e?Math.abs(e+g):0);return b},_findPos:function(a){var b=this._getInst(a),c=this._get(b,"isRTL");while(a&&(a.type=="hidden"||a.nodeType!=1||$.expr.filters.hidden(a)))a=a[c?"previousSibling":"nextSibling"];var d=$(a).offset();return[d.left,d.top]},_hideDatepicker:function(a){var b=this._curInst;if(!(!b||a&&b!=$.data(a,PROP_NAME))&&this._datepickerShowing){var c=this._get(b,"showAnim"),d=this._get(b,"duration"),e=this,f=function(){$.datepicker._tidyDialog(b),e._curInst=null};$.effects&&$.effects[c]?b.dpDiv.hide(c,$.datepicker._get(b,"showOptions"),d,f):b.dpDiv[c=="slideDown"?"slideUp":c=="fadeIn"?"fadeOut":"hide"](c?d:null,f),c||f(),this._datepickerShowing=!1;var g=this._get(b,"onClose");g&&g.apply(b.input?b.input[0]:null,[b.input?b.input.val():"",b]),this._lastInput=null,this._inDialog&&(this._dialogInput.css({position:"absolute",left:"0",top:"-100px"}),$.blockUI&&($.unblockUI(),$("body").append(this.dpDiv))),this._inDialog=!1}},_tidyDialog:function(a){a.dpDiv.removeClass(this._dialogClass).unbind(".ui-datepicker-calendar")},_checkExternalClick:function(a){if(!!$.datepicker._curInst){var b=$(a.target),c=$.datepicker._getInst(b[0]);(b[0].id!=$.datepicker._mainDivId&&b.parents("#"+$.datepicker._mainDivId).length==0&&!b.hasClass($.datepicker.markerClassName)&&!b.closest("."+$.datepicker._triggerClass).length&&$.datepicker._datepickerShowing&&(!$.datepicker._inDialog||!$.blockUI)||b.hasClass($.datepicker.markerClassName)&&$.datepicker._curInst!=c)&&$.datepicker._hideDatepicker()}},_adjustDate:function(a,b,c){var d=$(a),e=this._getInst(d[0]);this._isDisabledDatepicker(d[0])||(this._adjustInstDate(e,b+(c=="M"?this._get(e,"showCurrentAtPos"):0),c),this._updateDatepicker(e))},_gotoToday:function(a){var b=$(a),c=this._getInst(b[0]);if(this._get(c,"gotoCurrent")&&c.currentDay)c.selectedDay=c.currentDay,c.drawMonth=c.selectedMonth=c.currentMonth,c.drawYear=c.selectedYear=c.currentYear;else{var d=new Date;c.selectedDay=d.getDate(),c.drawMonth=c.selectedMonth=d.getMonth(),c.drawYear=c.selectedYear=d.getFullYear()}this._notifyChange(c),this._adjustDate(b)},_selectMonthYear:function(a,b,c){var d=$(a),e=this._getInst(d[0]);e["selected"+(c=="M"?"Month":"Year")]=e["draw"+(c=="M"?"Month":"Year")]=parseInt(b.options[b.selectedIndex].value,10),this._notifyChange(e),this._adjustDate(d)},_selectDay:function(a,b,c,d){var e=$(a);if(!$(d).hasClass(this._unselectableClass)&&!this._isDisabledDatepicker(e[0])){var f=this._getInst(e[0]);f.selectedDay=f.currentDay=$("a",d).html(),f.selectedMonth=f.currentMonth=b,f.selectedYear=f.currentYear=c,this._selectDate(a,this._formatDate(f,f.currentDay,f.currentMonth,f.currentYear))}},_clearDate:function(a){var b=$(a),c=this._getInst(b[0]);this._selectDate(b,"")},_selectDate:function(a,b){var c=$(a),d=this._getInst(c[0]);b=b!=null?b:this._formatDate(d),d.input&&d.input.val(b),this._updateAlternate(d);var e=this._get(d,"onSelect");e?e.apply(d.input?d.input[0]:null,[b,d]):d.input&&d.input.trigger("change"),d.inline?this._updateDatepicker(d):(this._hideDatepicker(),this._lastInput=d.input[0],typeof d.input[0]!="object"&&d.input.focus(),this._lastInput=null)},_updateAlternate:function(a){var b=this._get(a,"altField");if(b){var c=this._get(a,"altFormat")||this._get(a,"dateFormat"),d=this._getDate(a),e=this.formatDate(c,d,this._getFormatConfig(a));$(b).each(function(){$(this).val(e)})}},noWeekends:function(a){var b=a.getDay();return[b>0&&b<6,""]},iso8601Week:function(a){var b=new Date(a.getTime());b.setDate(b.getDate()+4-(b.getDay()||7));var c=b.getTime();b.setMonth(0),b.setDate(1);return Math.floor(Math.round((c-b)/864e5)/7)+1},parseDate:function(a,b,c){if(a==null||b==null)throw"Invalid arguments";b=typeof b=="object"?b.toString():b+"";if(b=="")return null;var d=(c?c.shortYearCutoff:null)||this._defaults.shortYearCutoff;d=typeof d!="string"?d:(new Date).getFullYear()%100+parseInt(d,10);var e=(c?c.dayNamesShort:null)||this._defaults.dayNamesShort,f=(c?c.dayNames:null)||this._defaults.dayNames,g=(c?c.monthNamesShort:null)||this._defaults.monthNamesShort,h=(c?c.monthNames:null)||this._defaults.monthNames,i=-1,j=-1,k=-1,l=-1,m=!1,n=function(b){var c=s+1<a.length&&a.charAt(s+1)==b;c&&s++;return c},o=function(a){var c=n(a),d=a=="@"?14:a=="!"?20:a=="y"&&c?4:a=="o"?3:2,e=new RegExp("^\\d{1,"+d+"}"),f=b.substring(r).match(e);if(!f)throw"Missing number at position "+r;r+=f[0].length;return parseInt(f[0],10)},p=function(a,c,d){var e=$.map(n(a)?d:c,function(a,b){return[[b,a]]}).sort(function(a,b){return-(a[1].length-b[1].length)}),f=-1;$.each(e,function(a,c){var d=c[1];if(b.substr(r,d.length).toLowerCase()==d.toLowerCase()){f=c[0],r+=d.length;return!1}});if(f!=-1)return f+1;throw"Unknown name at position "+r},q=function(){if(b.charAt(r)!=a.charAt(s))throw"Unexpected literal at position "+r;r++},r=0;for(var s=0;s<a.length;s++)if(m)a.charAt(s)=="'"&&!n("'")?m=!1:q();else switch(a.charAt(s)){case"d":k=o("d");break;case"D":p("D",e,f);break;case"o":l=o("o");break;case"m":j=o("m");break;case"M":j=p("M",g,h);break;case"y":i=o("y");break;case"@":var t=new Date(o("@"));i=t.getFullYear(),j=t.getMonth()+1,k=t.getDate();break;case"!":var t=new Date((o("!")-this._ticksTo1970)/1e4);i=t.getFullYear(),j=t.getMonth()+1,k=t.getDate();break;case"'":n("'")?q():m=!0;break;default:q()}if(r<b.length)throw"Extra/unparsed characters found in date: "+b.substring(r);i==-1?i=(new Date).getFullYear():i<100&&(i+=(new Date).getFullYear()-(new Date).getFullYear()%100+(i<=d?0:-100));if(l>-1){j=1,k=l;for(;;){var u=this._getDaysInMonth(i,j-1);if(k<=u)break;j++,k-=u}}var t=this._daylightSavingAdjust(new Date(i,j-1,k));if(t.getFullYear()!=i||t.getMonth()+1!=j||t.getDate()!=k)throw"Invalid date";return t},ATOM:"yy-mm-dd",COOKIE:"D, dd M yy",ISO_8601:"yy-mm-dd",RFC_822:"D, d M y",RFC_850:"DD, dd-M-y",RFC_1036:"D, d M y",RFC_1123:"D, d M yy",RFC_2822:"D, d M yy",RSS:"D, d M y",TICKS:"!",TIMESTAMP:"@",W3C:"yy-mm-dd",_ticksTo1970:(718685+Math.floor(492.5)-Math.floor(19.7)+Math.floor(4.925))*24*60*60*1e7,formatDate:function(a,b,c){if(!b)return"";var d=(c?c.dayNamesShort:null)||this._defaults.dayNamesShort,e=(c?c.dayNames:null)||this._defaults.dayNames,f=(c?c.monthNamesShort:null)||this._defaults.monthNamesShort,g=(c?c.monthNames:null)||this._defaults.monthNames,h=function(b){var c=m+1<a.length&&a.charAt(m+1)==b;c&&m++;return c},i=function(a,b,c){var d=""+b;if(h(a))while(d.length<c)d="0"+d;return d},j=function(a,b,c,d){return h(a)?d[b]:c[b]},k="",l=!1;if(b)for(var m=0;m<a.length;m++)if(l)a.charAt(m)=="'"&&!h("'")?l=!1:k+=a.charAt(m);else switch(a.charAt(m)){case"d":k+=i("d",b.getDate(),2);break;case"D":k+=j("D",b.getDay(),d,e);break;case"o":k+=i("o",Math.round(((new Date(b.getFullYear(),b.getMonth(),b.getDate())).getTime()-(new Date(b.getFullYear(),0,0)).getTime())/864e5),3);break;case"m":k+=i("m",b.getMonth()+1,2);break;case"M":k+=j("M",b.getMonth(),f,g);break;case"y":k+=h("y")?b.getFullYear():(b.getYear()%100<10?"0":"")+b.getYear()%100;break;case"@":k+=b.getTime();break;case"!":k+=b.getTime()*1e4+this._ticksTo1970;break;case"'":h("'")?k+="'":l=!0;break;default:k+=a.charAt(m)}return k},_possibleChars:function(a){var b="",c=!1,d=function(b){var c=e+1<a.length&&a.charAt(e+1)==b;c&&e++;return c};for(var e=0;e<a.length;e++)if(c)a.charAt(e)=="'"&&!d("'")?c=!1:b+=a.charAt(e);else switch(a.charAt(e)){case"d":case"m":case"y":case"@":b+="0123456789";break;case"D":case"M":return null;case"'":d("'")?b+="'":c=!0;break;default:b+=a.charAt(e)}return b},_get:function(a,b){return a.settings[b]!==undefined?a.settings[b]:this._defaults[b]},_setDateFromField:function(a,b){if(a.input.val()!=a.lastVal){var c=this._get(a,"dateFormat"),d=a.lastVal=a.input?a.input.val():null,e,f;e=f=this._getDefaultDate(a);var g=this._getFormatConfig(a);try{e=this.parseDate(c,d,g)||f}catch(h){this.log(h),d=b?"":d}a.selectedDay=e.getDate(),a.drawMonth=a.selectedMonth=e.getMonth(),a.drawYear=a.selectedYear=e.getFullYear(),a.currentDay=d?e.getDate():0,a.currentMonth=d?e.getMonth():0,a.currentYear=d?e.getFullYear():0,this._adjustInstDate(a)}},_getDefaultDate:function(a){return this._restrictMinMax(a,this._determineDate(a,this._get(a,"defaultDate"),new Date))},_determineDate:function(a,b,c){var d=function(a){var b=new Date;b.setDate(b.getDate()+a);return b},e=function(b){try{return $.datepicker.parseDate($.datepicker._get(a,"dateFormat"),b,$.datepicker._getFormatConfig(a))}catch(c){}var d=(b.toLowerCase().match(/^c/)?$.datepicker._getDate(a):null)||new Date,e=d.getFullYear(),f=d.getMonth(),g=d.getDate(),h=/([+-]?[0-9]+)\s*(d|D|w|W|m|M|y|Y)?/g,i=h.exec(b);while(i){switch(i[2]||"d"){case"d":case"D":g+=parseInt(i[1],10);break;case"w":case"W":g+=parseInt(i[1],10)*7;break;case"m":case"M":f+=parseInt(i[1],10),g=Math.min(g,$.datepicker._getDaysInMonth(e,f));break;case"y":case"Y":e+=parseInt(i[1],10),g=Math.min(g,$.datepicker._getDaysInMonth(e,f))}i=h.exec(b)}return new Date(e,f,g)},f=b==null||b===""?c:typeof b=="string"?e(b):typeof b=="number"?isNaN(b)?c:d(b):new Date(b.getTime());f=f&&f.toString()=="Invalid Date"?c:f,f&&(f.setHours(0),f.setMinutes(0),f.setSeconds(0),f.setMilliseconds(0));return this._daylightSavingAdjust(f)},_daylightSavingAdjust:function(a){if(!a)return null;a.setHours(a.getHours()>12?a.getHours()+2:0);return a},_setDate:function(a,b,c){var d=!b,e=a.selectedMonth,f=a.selectedYear,g=this._restrictMinMax(a,this._determineDate(a,b,new Date));a.selectedDay=a.currentDay=g.getDate(),a.drawMonth=a.selectedMonth=a.currentMonth=g.getMonth(),a.drawYear=a.selectedYear=a.currentYear=g.getFullYear(),(e!=a.selectedMonth||f!=a.selectedYear)&&!c&&this._notifyChange(a),this._adjustInstDate(a),a.input&&a.input.val(d?"":this._formatDate(a))},_getDate:function(a){var b=!a.currentYear||a.input&&a.input.val()==""?null:this._daylightSavingAdjust(new Date(a.currentYear,a.currentMonth,a.currentDay));return b},_generateHTML:function(a){var b=new Date;b=this._daylightSavingAdjust(new Date(b.getFullYear(),b.getMonth(),b.getDate()));var c=this._get(a,"isRTL"),d=this._get(a,"showButtonPanel"),e=this._get(a,"hideIfNoPrevNext"),f=this._get(a,"navigationAsDateFormat"),g=this._getNumberOfMonths(a),h=this._get(a,"showCurrentAtPos"),i=this._get(a,"stepMonths"),j=g[0]!=1||g[1]!=1,k=this._daylightSavingAdjust(a.currentDay?new Date(a.currentYear,a.currentMonth,a.currentDay):new Date(9999,9,9)),l=this._getMinMaxDate(a,"min"),m=this._getMinMaxDate(a,"max"),n=a.drawMonth-h,o=a.drawYear;n<0&&(n+=12,o--);if(m){var p=this._daylightSavingAdjust(new Date(m.getFullYear(),m.getMonth()-g[0]*g[1]+1,m.getDate()));p=l&&p<l?l:p;while(this._daylightSavingAdjust(new Date(o,n,1))>p)n--,n<0&&(n=11,o--)}a.drawMonth=n,a.drawYear=o;var q=this._get(a,"prevText");q=f?this.formatDate(q,this._daylightSavingAdjust(new Date(o,n-i,1)),this._getFormatConfig(a)):q;var r=this._canAdjustMonth(a,-1,o,n)?'<a class="ui-datepicker-prev ui-corner-all" onclick="DP_jQuery_'+dpuuid+".datepicker._adjustDate('#"+a.id+"', -"+i+", 'M');\""+' title="'+q+'"><span class="ui-icon ui-icon-circle-triangle-'+(c?"e":"w")+'">'+q+"</span></a>":e?"":'<a class="ui-datepicker-prev ui-corner-all ui-state-disabled" title="'+q+'"><span class="ui-icon ui-icon-circle-triangle-'+(c?"e":"w")+'">'+q+"</span></a>",s=this._get(a,"nextText");s=f?this.formatDate(s,this._daylightSavingAdjust(new Date(o,n+i,1)),this._getFormatConfig(a)):s;var t=this._canAdjustMonth(a,1,o,n)?'<a class="ui-datepicker-next ui-corner-all" onclick="DP_jQuery_'+dpuuid+".datepicker._adjustDate('#"+a.id+"', +"+i+", 'M');\""+' title="'+s+'"><span class="ui-icon ui-icon-circle-triangle-'+(c?"w":"e")+'">'+s+"</span></a>":e?"":'<a class="ui-datepicker-next ui-corner-all ui-state-disabled" title="'+s+'"><span class="ui-icon ui-icon-circle-triangle-'+(c?"w":"e")+'">'+s+"</span></a>",u=this._get(a,"currentText"),v=this._get(a,"gotoCurrent")&&a.currentDay?k:b;u=f?this.formatDate(u,v,this._getFormatConfig(a)):u;var w=a.inline?"":'<button type="button" class="ui-datepicker-close ui-state-default ui-priority-primary ui-corner-all" onclick="DP_jQuery_'+dpuuid+'.datepicker._hideDatepicker();">'+this._get(a,"closeText")+"</button>",x=d?'<div class="ui-datepicker-buttonpane ui-widget-content">'+(c?w:"")+(this._isInRange(a,v)?'<button type="button" class="ui-datepicker-current ui-state-default ui-priority-secondary ui-corner-all" onclick="DP_jQuery_'+dpuuid+".datepicker._gotoToday('#"+a.id+"');\""+">"+u+"</button>":"")+(c?"":w)+"</div>":"",y=parseInt(this._get(a,"firstDay"),10);y=isNaN(y)?0:y;var z=this._get(a,"showWeek"),A=this._get(a,"dayNames"),B=this._get(a,"dayNamesShort"),C=this._get(a,"dayNamesMin"),D=this._get(a,"monthNames"),E=this._get(a,"monthNamesShort"),F=this._get(a,"beforeShowDay"),G=this._get(a,"showOtherMonths"),H=this._get(a,"selectOtherMonths"),I=this._get(a,"calculateWeek")||this.iso8601Week,J=this._getDefaultDate(a),K="";for(var L=0;L<g[0];L++){var M="";this.maxRows=4;for(var N=0;N<g[1];N++){var O=this._daylightSavingAdjust(new Date(o,n,a.selectedDay)),P=" ui-corner-all",Q="";if(j){Q+='<div class="ui-datepicker-group';if(g[1]>1)switch(N){case 0:Q+=" ui-datepicker-group-first",P=" ui-corner-"+(c?"right":"left");break;case g[1]-1:Q+=" ui-datepicker-group-last",P=" ui-corner-"+(c?"left":"right");break;default:Q+=" ui-datepicker-group-middle",P=""}Q+='">'}Q+='<div class="ui-datepicker-header ui-widget-header ui-helper-clearfix'+P+'">'+(/all|left/.test(P)&&L==0?c?t:r:"")+(/all|right/.test(P)&&L==0?c?r:t:"")+this._generateMonthYearHeader(a,n,o,l,m,L>0||N>0,D,E)+'</div><table class="ui-datepicker-calendar"><thead>'+"<tr>";var R=z?'<th class="ui-datepicker-week-col">'+this._get(a,"weekHeader")+"</th>":"";for(var S=0;S<7;S++){var T=(S+y)%7;R+="<th"+((S+y+6)%7>=5?' class="ui-datepicker-week-end"':"")+">"+'<span title="'+A[T]+'">'+C[T]+"</span></th>"}Q+=R+"</tr></thead><tbody>";var U=this._getDaysInMonth(o,n);o==a.selectedYear&&n==a.selectedMonth&&(a.selectedDay=Math.min(a.selectedDay,U));var V=(this._getFirstDayOfMonth(o,n)-y+7)%7,W=Math.ceil((V+U)/7),X=j?this.maxRows>W?this.maxRows:W:W;this.maxRows=X;var Y=this._daylightSavingAdjust(new Date(o,n,1-V));for(var Z=0;Z<X;Z++){Q+="<tr>";var _=z?'<td class="ui-datepicker-week-col">'+this._get(a,"calculateWeek")(Y)+"</td>":"";for(var S=0;S<7;S++){var ba=F?F.apply(a.input?a.input[0]:null,[Y]):[!0,""],bb=Y.getMonth()!=n,bc=bb&&!H||!ba[0]||l&&Y<l||m&&Y>m;_+='<td class="'+((S+y+6)%7>=5?" ui-datepicker-week-end":"")+(bb?" ui-datepicker-other-month":"")+(Y.getTime()==O.getTime()&&n==a.selectedMonth&&a._keyEvent||J.getTime()==Y.getTime()&&J.getTime()==O.getTime()?" "+this._dayOverClass:"")+(bc?" "+this._unselectableClass+" ui-state-disabled":"")+(bb&&!G?"":" "+ba[1]+(Y.getTime()==k.getTime()?" "+this._currentClass:"")+(Y.getTime()==b.getTime()?" ui-datepicker-today":""))+'"'+((!bb||G)&&ba[2]?' title="'+ba[2]+'"':"")+(bc?"":' onclick="DP_jQuery_'+dpuuid+".datepicker._selectDay('#"+a.id+"',"+Y.getMonth()+","+Y.getFullYear()+', this);return false;"')+">"+(bb&&!G?" ":bc?'<span class="ui-state-default">'+Y.getDate()+"</span>":'<a class="ui-state-default'+(Y.getTime()==b.getTime()?" ui-state-highlight":"")+(Y.getTime()==k.getTime()?" ui-state-active":"")+(bb?" ui-priority-secondary":"")+'" href="#">'+Y.getDate()+"</a>")+"</td>",Y.setDate(Y.getDate()+1),Y=this._daylightSavingAdjust(Y)}Q+=_+"</tr>"}n++,n>11&&(n=0,o++),Q+="</tbody></table>"+(j?"</div>"+(g[0]>0&&N==g[1]-1?'<div class="ui-datepicker-row-break"></div>':""):""),M+=Q}K+=M}K+=x+($.browser.msie&&parseInt($.browser.version,10)<7&&!a.inline?'<iframe src="javascript:false;" class="ui-datepicker-cover" frameborder="0"></iframe>':""), -a._keyEvent=!1;return K},_generateMonthYearHeader:function(a,b,c,d,e,f,g,h){var i=this._get(a,"changeMonth"),j=this._get(a,"changeYear"),k=this._get(a,"showMonthAfterYear"),l='<div class="ui-datepicker-title">',m="";if(f||!i)m+='<span class="ui-datepicker-month">'+g[b]+"</span>";else{var n=d&&d.getFullYear()==c,o=e&&e.getFullYear()==c;m+='<select class="ui-datepicker-month" onchange="DP_jQuery_'+dpuuid+".datepicker._selectMonthYear('#"+a.id+"', this, 'M');\" "+">";for(var p=0;p<12;p++)(!n||p>=d.getMonth())&&(!o||p<=e.getMonth())&&(m+='<option value="'+p+'"'+(p==b?' selected="selected"':"")+">"+h[p]+"</option>");m+="</select>"}k||(l+=m+(f||!i||!j?" ":""));if(!a.yearshtml){a.yearshtml="";if(f||!j)l+='<span class="ui-datepicker-year">'+c+"</span>";else{var q=this._get(a,"yearRange").split(":"),r=(new Date).getFullYear(),s=function(a){var b=a.match(/c[+-].*/)?c+parseInt(a.substring(1),10):a.match(/[+-].*/)?r+parseInt(a,10):parseInt(a,10);return isNaN(b)?r:b},t=s(q[0]),u=Math.max(t,s(q[1]||""));t=d?Math.max(t,d.getFullYear()):t,u=e?Math.min(u,e.getFullYear()):u,a.yearshtml+='<select class="ui-datepicker-year" onchange="DP_jQuery_'+dpuuid+".datepicker._selectMonthYear('#"+a.id+"', this, 'Y');\" "+">";for(;t<=u;t++)a.yearshtml+='<option value="'+t+'"'+(t==c?' selected="selected"':"")+">"+t+"</option>";a.yearshtml+="</select>",l+=a.yearshtml,a.yearshtml=null}}l+=this._get(a,"yearSuffix"),k&&(l+=(f||!i||!j?" ":"")+m),l+="</div>";return l},_adjustInstDate:function(a,b,c){var d=a.drawYear+(c=="Y"?b:0),e=a.drawMonth+(c=="M"?b:0),f=Math.min(a.selectedDay,this._getDaysInMonth(d,e))+(c=="D"?b:0),g=this._restrictMinMax(a,this._daylightSavingAdjust(new Date(d,e,f)));a.selectedDay=g.getDate(),a.drawMonth=a.selectedMonth=g.getMonth(),a.drawYear=a.selectedYear=g.getFullYear(),(c=="M"||c=="Y")&&this._notifyChange(a)},_restrictMinMax:function(a,b){var c=this._getMinMaxDate(a,"min"),d=this._getMinMaxDate(a,"max"),e=c&&b<c?c:b;e=d&&e>d?d:e;return e},_notifyChange:function(a){var b=this._get(a,"onChangeMonthYear");b&&b.apply(a.input?a.input[0]:null,[a.selectedYear,a.selectedMonth+1,a])},_getNumberOfMonths:function(a){var b=this._get(a,"numberOfMonths");return b==null?[1,1]:typeof b=="number"?[1,b]:b},_getMinMaxDate:function(a,b){return this._determineDate(a,this._get(a,b+"Date"),null)},_getDaysInMonth:function(a,b){return 32-this._daylightSavingAdjust(new Date(a,b,32)).getDate()},_getFirstDayOfMonth:function(a,b){return(new Date(a,b,1)).getDay()},_canAdjustMonth:function(a,b,c,d){var e=this._getNumberOfMonths(a),f=this._daylightSavingAdjust(new Date(c,d+(b<0?b:e[0]*e[1]),1));b<0&&f.setDate(this._getDaysInMonth(f.getFullYear(),f.getMonth()));return this._isInRange(a,f)},_isInRange:function(a,b){var c=this._getMinMaxDate(a,"min"),d=this._getMinMaxDate(a,"max");return(!c||b.getTime()>=c.getTime())&&(!d||b.getTime()<=d.getTime())},_getFormatConfig:function(a){var b=this._get(a,"shortYearCutoff");b=typeof b!="string"?b:(new Date).getFullYear()%100+parseInt(b,10);return{shortYearCutoff:b,dayNamesShort:this._get(a,"dayNamesShort"),dayNames:this._get(a,"dayNames"),monthNamesShort:this._get(a,"monthNamesShort"),monthNames:this._get(a,"monthNames")}},_formatDate:function(a,b,c,d){b||(a.currentDay=a.selectedDay,a.currentMonth=a.selectedMonth,a.currentYear=a.selectedYear);var e=b?typeof b=="object"?b:this._daylightSavingAdjust(new Date(d,c,b)):this._daylightSavingAdjust(new Date(a.currentYear,a.currentMonth,a.currentDay));return this.formatDate(this._get(a,"dateFormat"),e,this._getFormatConfig(a))}}),$.fn.datepicker=function(a){if(!this.length)return this;$.datepicker.initialized||($(document).mousedown($.datepicker._checkExternalClick).find("body").append($.datepicker.dpDiv),$.datepicker.initialized=!0);var b=Array.prototype.slice.call(arguments,1);if(typeof a=="string"&&(a=="isDisabled"||a=="getDate"||a=="widget"))return $.datepicker["_"+a+"Datepicker"].apply($.datepicker,[this[0]].concat(b));if(a=="option"&&arguments.length==2&&typeof arguments[1]=="string")return $.datepicker["_"+a+"Datepicker"].apply($.datepicker,[this[0]].concat(b));return this.each(function(){typeof a=="string"?$.datepicker["_"+a+"Datepicker"].apply($.datepicker,[this].concat(b)):$.datepicker._attachDatepicker(this,a)})},$.datepicker=new Datepicker,$.datepicker.initialized=!1,$.datepicker.uuid=(new Date).getTime(),$.datepicker.version="1.8.18",window["DP_jQuery_"+dpuuid]=$})(jQuery);/* - * jQuery UI Progressbar 1.8.18 - * - * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) - * Dual licensed under the MIT or GPL Version 2 licenses. - * http://jquery.org/license - * - * http://docs.jquery.com/UI/Progressbar - * - * Depends: - * jquery.ui.core.js - * jquery.ui.widget.js - */(function(a,b){a.widget("ui.progressbar",{options:{value:0,max:100},min:0,_create:function(){this.element.addClass("ui-progressbar ui-widget ui-widget-content ui-corner-all").attr({role:"progressbar","aria-valuemin":this.min,"aria-valuemax":this.options.max,"aria-valuenow":this._value()}),this.valueDiv=a("<div class='ui-progressbar-value ui-widget-header ui-corner-left'></div>").appendTo(this.element),this.oldValue=this._value(),this._refreshValue()},destroy:function(){this.element.removeClass("ui-progressbar ui-widget ui-widget-content ui-corner-all").removeAttr("role").removeAttr("aria-valuemin").removeAttr("aria-valuemax").removeAttr("aria-valuenow"),this.valueDiv.remove(),a.Widget.prototype.destroy.apply(this,arguments)},value:function(a){if(a===b)return this._value();this._setOption("value",a);return this},_setOption:function(b,c){b==="value"&&(this.options.value=c,this._refreshValue(),this._value()===this.options.max&&this._trigger("complete")),a.Widget.prototype._setOption.apply(this,arguments)},_value:function(){var a=this.options.value;typeof a!="number"&&(a=0);return Math.min(this.options.max,Math.max(this.min,a))},_percentage:function(){return 100*this._value()/this.options.max},_refreshValue:function(){var a=this.value(),b=this._percentage();this.oldValue!==a&&(this.oldValue=a,this._trigger("change")),this.valueDiv.toggle(a>this.min).toggleClass("ui-corner-right",a===this.options.max).width(b.toFixed(0)+"%"),this.element.attr("aria-valuenow",a)}}),a.extend(a.ui.progressbar,{version:"1.8.18"})})(jQuery);/* - * jQuery UI Effects 1.8.18 - * - * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) - * Dual licensed under the MIT or GPL Version 2 licenses. - * http://jquery.org/license - * - * http://docs.jquery.com/UI/Effects/ - */jQuery.effects||function(a,b){function l(b){if(!b||typeof b=="number"||a.fx.speeds[b])return!0;if(typeof b=="string"&&!a.effects[b])return!0;return!1}function k(b,c,d,e){typeof b=="object"&&(e=c,d=null,c=b,b=c.effect),a.isFunction(c)&&(e=c,d=null,c={});if(typeof c=="number"||a.fx.speeds[c])e=d,d=c,c={};a.isFunction(d)&&(e=d,d=null),c=c||{},d=d||c.duration,d=a.fx.off?0:typeof d=="number"?d:d in a.fx.speeds?a.fx.speeds[d]:a.fx.speeds._default,e=e||c.complete;return[b,c,d,e]}function j(a,b){var c={_:0},d;for(d in b)a[d]!=b[d]&&(c[d]=b[d]);return c}function i(b){var c,d;for(c in b)d=b[c],(d==null||a.isFunction(d)||c in g||/scrollbar/.test(c)||!/color/i.test(c)&&isNaN(parseFloat(d)))&&delete b[c];return b}function h(){var a=document.defaultView?document.defaultView.getComputedStyle(this,null):this.currentStyle,b={},c,d;if(a&&a.length&&a[0]&&a[a[0]]){var e=a.length;while(e--)c=a[e],typeof a[c]=="string"&&(d=c.replace(/\-(\w)/g,function(a,b){return b.toUpperCase()}),b[d]=a[c])}else for(c in a)typeof a[c]=="string"&&(b[c]=a[c]);return b}function d(b,d){var e;do{e=a.curCSS(b,d);if(e!=""&&e!="transparent"||a.nodeName(b,"body"))break;d="backgroundColor"}while(b=b.parentNode);return c(e)}function c(b){var c;if(b&&b.constructor==Array&&b.length==3)return b;if(c=/rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(b))return[parseInt(c[1],10),parseInt(c[2],10),parseInt(c[3],10)];if(c=/rgb\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*\)/.exec(b))return[parseFloat(c[1])*2.55,parseFloat(c[2])*2.55,parseFloat(c[3])*2.55];if(c=/#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(b))return[parseInt(c[1],16),parseInt(c[2],16),parseInt(c[3],16)];if(c=/#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(b))return[parseInt(c[1]+c[1],16),parseInt(c[2]+c[2],16),parseInt(c[3]+c[3],16)];if(c=/rgba\(0, 0, 0, 0\)/.exec(b))return e.transparent;return e[a.trim(b).toLowerCase()]}a.effects={},a.each(["backgroundColor","borderBottomColor","borderLeftColor","borderRightColor","borderTopColor","borderColor","color","outlineColor"],function(b,e){a.fx.step[e]=function(a){a.colorInit||(a.start=d(a.elem,e),a.end=c(a.end),a.colorInit=!0),a.elem.style[e]="rgb("+Math.max(Math.min(parseInt(a.pos*(a.end[0]-a.start[0])+a.start[0],10),255),0)+","+Math.max(Math.min(parseInt(a.pos*(a.end[1]-a.start[1])+a.start[1],10),255),0)+","+Math.max(Math.min(parseInt(a.pos*(a.end[2]-a.start[2])+a.start[2],10),255),0)+")"}});var e={aqua:[0,255,255],azure:[240,255,255],beige:[245,245,220],black:[0,0,0],blue:[0,0,255],brown:[165,42,42],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgrey:[169,169,169],darkgreen:[0,100,0],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkviolet:[148,0,211],fuchsia:[255,0,255],gold:[255,215,0],green:[0,128,0],indigo:[75,0,130],khaki:[240,230,140],lightblue:[173,216,230],lightcyan:[224,255,255],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightyellow:[255,255,224],lime:[0,255,0],magenta:[255,0,255],maroon:[128,0,0],navy:[0,0,128],olive:[128,128,0],orange:[255,165,0],pink:[255,192,203],purple:[128,0,128],violet:[128,0,128],red:[255,0,0],silver:[192,192,192],white:[255,255,255],yellow:[255,255,0],transparent:[255,255,255]},f=["add","remove","toggle"],g={border:1,borderBottom:1,borderColor:1,borderLeft:1,borderRight:1,borderTop:1,borderWidth:1,margin:1,padding:1};a.effects.animateClass=function(b,c,d,e){a.isFunction(d)&&(e=d,d=null);return this.queue(function(){var g=a(this),k=g.attr("style")||" ",l=i(h.call(this)),m,n=g.attr("class");a.each(f,function(a,c){b[c]&&g[c+"Class"](b[c])}),m=i(h.call(this)),g.attr("class",n),g.animate(j(l,m),{queue:!1,duration:c,easing:d,complete:function(){a.each(f,function(a,c){b[c]&&g[c+"Class"](b[c])}),typeof g.attr("style")=="object"?(g.attr("style").cssText="",g.attr("style").cssText=k):g.attr("style",k),e&&e.apply(this,arguments),a.dequeue(this)}})})},a.fn.extend({_addClass:a.fn.addClass,addClass:function(b,c,d,e){return c?a.effects.animateClass.apply(this,[{add:b},c,d,e]):this._addClass(b)},_removeClass:a.fn.removeClass,removeClass:function(b,c,d,e){return c?a.effects.animateClass.apply(this,[{remove:b},c,d,e]):this._removeClass(b)},_toggleClass:a.fn.toggleClass,toggleClass:function(c,d,e,f,g){return typeof d=="boolean"||d===b?e?a.effects.animateClass.apply(this,[d?{add:c}:{remove:c},e,f,g]):this._toggleClass(c,d):a.effects.animateClass.apply(this,[{toggle:c},d,e,f])},switchClass:function(b,c,d,e,f){return a.effects.animateClass.apply(this,[{add:c,remove:b},d,e,f])}}),a.extend(a.effects,{version:"1.8.18",save:function(a,b){for(var c=0;c<b.length;c++)b[c]!==null&&a.data("ec.storage."+b[c],a[0].style[b[c]])},restore:function(a,b){for(var c=0;c<b.length;c++)b[c]!==null&&a.css(b[c],a.data("ec.storage."+b[c]))},setMode:function(a,b){b=="toggle"&&(b=a.is(":hidden")?"show":"hide");return b},getBaseline:function(a,b){var c,d;switch(a[0]){case"top":c=0;break;case"middle":c=.5;break;case"bottom":c=1;break;default:c=a[0]/b.height}switch(a[1]){case"left":d=0;break;case"center":d=.5;break;case"right":d=1;break;default:d=a[1]/b.width}return{x:d,y:c}},createWrapper:function(b){if(b.parent().is(".ui-effects-wrapper"))return b.parent();var c={width:b.outerWidth(!0),height:b.outerHeight(!0),"float":b.css("float")},d=a("<div></div>").addClass("ui-effects-wrapper").css({fontSize:"100%",background:"transparent",border:"none",margin:0,padding:0}),e=document.activeElement;b.wrap(d),(b[0]===e||a.contains(b[0],e))&&a(e).focus(),d=b.parent(),b.css("position")=="static"?(d.css({position:"relative"}),b.css({position:"relative"})):(a.extend(c,{position:b.css("position"),zIndex:b.css("z-index")}),a.each(["top","left","bottom","right"],function(a,d){c[d]=b.css(d),isNaN(parseInt(c[d],10))&&(c[d]="auto")}),b.css({position:"relative",top:0,left:0,right:"auto",bottom:"auto"}));return d.css(c).show()},removeWrapper:function(b){var c,d=document.activeElement;if(b.parent().is(".ui-effects-wrapper")){c=b.parent().replaceWith(b),(b[0]===d||a.contains(b[0],d))&&a(d).focus();return c}return b},setTransition:function(b,c,d,e){e=e||{},a.each(c,function(a,c){unit=b.cssUnit(c),unit[0]>0&&(e[c]=unit[0]*d+unit[1])});return e}}),a.fn.extend({effect:function(b,c,d,e){var f=k.apply(this,arguments),g={options:f[1],duration:f[2],callback:f[3]},h=g.options.mode,i=a.effects[b];if(a.fx.off||!i)return h?this[h](g.duration,g.callback):this.each(function(){g.callback&&g.callback.call(this)});return i.call(this,g)},_show:a.fn.show,show:function(a){if(l(a))return this._show.apply(this,arguments);var b=k.apply(this,arguments);b[1].mode="show";return this.effect.apply(this,b)},_hide:a.fn.hide,hide:function(a){if(l(a))return this._hide.apply(this,arguments);var b=k.apply(this,arguments);b[1].mode="hide";return this.effect.apply(this,b)},__toggle:a.fn.toggle,toggle:function(b){if(l(b)||typeof b=="boolean"||a.isFunction(b))return this.__toggle.apply(this,arguments);var c=k.apply(this,arguments);c[1].mode="toggle";return this.effect.apply(this,c)},cssUnit:function(b){var c=this.css(b),d=[];a.each(["em","px","%","pt"],function(a,b){c.indexOf(b)>0&&(d=[parseFloat(c),b])});return d}}),a.easing.jswing=a.easing.swing,a.extend(a.easing,{def:"easeOutQuad",swing:function(b,c,d,e,f){return a.easing[a.easing.def](b,c,d,e,f)},easeInQuad:function(a,b,c,d,e){return d*(b/=e)*b+c},easeOutQuad:function(a,b,c,d,e){return-d*(b/=e)*(b-2)+c},easeInOutQuad:function(a,b,c,d,e){if((b/=e/2)<1)return d/2*b*b+c;return-d/2*(--b*(b-2)-1)+c},easeInCubic:function(a,b,c,d,e){return d*(b/=e)*b*b+c},easeOutCubic:function(a,b,c,d,e){return d*((b=b/e-1)*b*b+1)+c},easeInOutCubic:function(a,b,c,d,e){if((b/=e/2)<1)return d/2*b*b*b+c;return d/2*((b-=2)*b*b+2)+c},easeInQuart:function(a,b,c,d,e){return d*(b/=e)*b*b*b+c},easeOutQuart:function(a,b,c,d,e){return-d*((b=b/e-1)*b*b*b-1)+c},easeInOutQuart:function(a,b,c,d,e){if((b/=e/2)<1)return d/2*b*b*b*b+c;return-d/2*((b-=2)*b*b*b-2)+c},easeInQuint:function(a,b,c,d,e){return d*(b/=e)*b*b*b*b+c},easeOutQuint:function(a,b,c,d,e){return d*((b=b/e-1)*b*b*b*b+1)+c},easeInOutQuint:function(a,b,c,d,e){if((b/=e/2)<1)return d/2*b*b*b*b*b+c;return d/2*((b-=2)*b*b*b*b+2)+c},easeInSine:function(a,b,c,d,e){return-d*Math.cos(b/e*(Math.PI/2))+d+c},easeOutSine:function(a,b,c,d,e){return d*Math.sin(b/e*(Math.PI/2))+c},easeInOutSine:function(a,b,c,d,e){return-d/2*(Math.cos(Math.PI*b/e)-1)+c},easeInExpo:function(a,b,c,d,e){return b==0?c:d*Math.pow(2,10*(b/e-1))+c},easeOutExpo:function(a,b,c,d,e){return b==e?c+d:d*(-Math.pow(2,-10*b/e)+1)+c},easeInOutExpo:function(a,b,c,d,e){if(b==0)return c;if(b==e)return c+d;if((b/=e/2)<1)return d/2*Math.pow(2,10*(b-1))+c;return d/2*(-Math.pow(2,-10*--b)+2)+c},easeInCirc:function(a,b,c,d,e){return-d*(Math.sqrt(1-(b/=e)*b)-1)+c},easeOutCirc:function(a,b,c,d,e){return d*Math.sqrt(1-(b=b/e-1)*b)+c},easeInOutCirc:function(a,b,c,d,e){if((b/=e/2)<1)return-d/2*(Math.sqrt(1-b*b)-1)+c;return d/2*(Math.sqrt(1-(b-=2)*b)+1)+c},easeInElastic:function(a,b,c,d,e){var f=1.70158,g=0,h=d;if(b==0)return c;if((b/=e)==1)return c+d;g||(g=e*.3);if(h<Math.abs(d)){h=d;var f=g/4}else var f=g/(2*Math.PI)*Math.asin(d/h);return-(h*Math.pow(2,10*(b-=1))*Math.sin((b*e-f)*2*Math.PI/g))+c},easeOutElastic:function(a,b,c,d,e){var f=1.70158,g=0,h=d;if(b==0)return c;if((b/=e)==1)return c+d;g||(g=e*.3);if(h<Math.abs(d)){h=d;var f=g/4}else var f=g/(2*Math.PI)*Math.asin(d/h);return h*Math.pow(2,-10*b)*Math.sin((b*e-f)*2*Math.PI/g)+d+c},easeInOutElastic:function(a,b,c,d,e){var f=1.70158,g=0,h=d;if(b==0)return c;if((b/=e/2)==2)return c+d;g||(g=e*.3*1.5);if(h<Math.abs(d)){h=d;var f=g/4}else var f=g/(2*Math.PI)*Math.asin(d/h);if(b<1)return-0.5*h*Math.pow(2,10*(b-=1))*Math.sin((b*e-f)*2*Math.PI/g)+c;return h*Math.pow(2,-10*(b-=1))*Math.sin((b*e-f)*2*Math.PI/g)*.5+d+c},easeInBack:function(a,c,d,e,f,g){g==b&&(g=1.70158);return e*(c/=f)*c*((g+1)*c-g)+d},easeOutBack:function(a,c,d,e,f,g){g==b&&(g=1.70158);return e*((c=c/f-1)*c*((g+1)*c+g)+1)+d},easeInOutBack:function(a,c,d,e,f,g){g==b&&(g=1.70158);if((c/=f/2)<1)return e/2*c*c*(((g*=1.525)+1)*c-g)+d;return e/2*((c-=2)*c*(((g*=1.525)+1)*c+g)+2)+d},easeInBounce:function(b,c,d,e,f){return e-a.easing.easeOutBounce(b,f-c,0,e,f)+d},easeOutBounce:function(a,b,c,d,e){return(b/=e)<1/2.75?d*7.5625*b*b+c:b<2/2.75?d*(7.5625*(b-=1.5/2.75)*b+.75)+c:b<2.5/2.75?d*(7.5625*(b-=2.25/2.75)*b+.9375)+c:d*(7.5625*(b-=2.625/2.75)*b+.984375)+c},easeInOutBounce:function(b,c,d,e,f){if(c<f/2)return a.easing.easeInBounce(b,c*2,0,e,f)*.5+d;return a.easing.easeOutBounce(b,c*2-f,0,e,f)*.5+e*.5+d}})}(jQuery);/* - * jQuery UI Effects Blind 1.8.18 - * - * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) - * Dual licensed under the MIT or GPL Version 2 licenses. - * http://jquery.org/license - * - * http://docs.jquery.com/UI/Effects/Blind - * - * Depends: - * jquery.effects.core.js - */(function(a,b){a.effects.blind=function(b){return this.queue(function(){var c=a(this),d=["position","top","bottom","left","right"],e=a.effects.setMode(c,b.options.mode||"hide"),f=b.options.direction||"vertical";a.effects.save(c,d),c.show();var g=a.effects.createWrapper(c).css({overflow:"hidden"}),h=f=="vertical"?"height":"width",i=f=="vertical"?g.height():g.width();e=="show"&&g.css(h,0);var j={};j[h]=e=="show"?i:0,g.animate(j,b.duration,b.options.easing,function(){e=="hide"&&c.hide(),a.effects.restore(c,d),a.effects.removeWrapper(c),b.callback&&b.callback.apply(c[0],arguments),c.dequeue()})})}})(jQuery);/* - * jQuery UI Effects Bounce 1.8.18 - * - * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) - * Dual licensed under the MIT or GPL Version 2 licenses. - * http://jquery.org/license - * - * http://docs.jquery.com/UI/Effects/Bounce - * - * Depends: - * jquery.effects.core.js - */(function(a,b){a.effects.bounce=function(b){return this.queue(function(){var c=a(this),d=["position","top","bottom","left","right"],e=a.effects.setMode(c,b.options.mode||"effect"),f=b.options.direction||"up",g=b.options.distance||20,h=b.options.times||5,i=b.duration||250;/show|hide/.test(e)&&d.push("opacity"),a.effects.save(c,d),c.show(),a.effects.createWrapper(c);var j=f=="up"||f=="down"?"top":"left",k=f=="up"||f=="left"?"pos":"neg",g=b.options.distance||(j=="top"?c.outerHeight({margin:!0})/3:c.outerWidth({margin:!0})/3);e=="show"&&c.css("opacity",0).css(j,k=="pos"?-g:g),e=="hide"&&(g=g/(h*2)),e!="hide"&&h--;if(e=="show"){var l={opacity:1};l[j]=(k=="pos"?"+=":"-=")+g,c.animate(l,i/2,b.options.easing),g=g/2,h--}for(var m=0;m<h;m++){var n={},p={};n[j]=(k=="pos"?"-=":"+=")+g,p[j]=(k=="pos"?"+=":"-=")+g,c.animate(n,i/2,b.options.easing).animate(p,i/2,b.options.easing),g=e=="hide"?g*2:g/2}if(e=="hide"){var l={opacity:0};l[j]=(k=="pos"?"-=":"+=")+g,c.animate(l,i/2,b.options.easing,function(){c.hide(),a.effects.restore(c,d),a.effects.removeWrapper(c),b.callback&&b.callback.apply(this,arguments)})}else{var n={},p={};n[j]=(k=="pos"?"-=":"+=")+g,p[j]=(k=="pos"?"+=":"-=")+g,c.animate(n,i/2,b.options.easing).animate(p,i/2,b.options.easing,function(){a.effects.restore(c,d),a.effects.removeWrapper(c),b.callback&&b.callback.apply(this,arguments)})}c.queue("fx",function(){c.dequeue()}),c.dequeue()})}})(jQuery);/* - * jQuery UI Effects Clip 1.8.18 - * - * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) - * Dual licensed under the MIT or GPL Version 2 licenses. - * http://jquery.org/license - * - * http://docs.jquery.com/UI/Effects/Clip - * - * Depends: - * jquery.effects.core.js - */(function(a,b){a.effects.clip=function(b){return this.queue(function(){var c=a(this),d=["position","top","bottom","left","right","height","width"],e=a.effects.setMode(c,b.options.mode||"hide"),f=b.options.direction||"vertical";a.effects.save(c,d),c.show();var g=a.effects.createWrapper(c).css({overflow:"hidden"}),h=c[0].tagName=="IMG"?g:c,i={size:f=="vertical"?"height":"width",position:f=="vertical"?"top":"left"},j=f=="vertical"?h.height():h.width();e=="show"&&(h.css(i.size,0),h.css(i.position,j/2));var k={};k[i.size]=e=="show"?j:0,k[i.position]=e=="show"?0:j/2,h.animate(k,{queue:!1,duration:b.duration,easing:b.options.easing,complete:function(){e=="hide"&&c.hide(),a.effects.restore(c,d),a.effects.removeWrapper(c),b.callback&&b.callback.apply(c[0],arguments),c.dequeue()}})})}})(jQuery);/* - * jQuery UI Effects Drop 1.8.18 - * - * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) - * Dual licensed under the MIT or GPL Version 2 licenses. - * http://jquery.org/license - * - * http://docs.jquery.com/UI/Effects/Drop - * - * Depends: - * jquery.effects.core.js - */(function(a,b){a.effects.drop=function(b){return this.queue(function(){var c=a(this),d=["position","top","bottom","left","right","opacity"],e=a.effects.setMode(c,b.options.mode||"hide"),f=b.options.direction||"left";a.effects.save(c,d),c.show(),a.effects.createWrapper(c);var g=f=="up"||f=="down"?"top":"left",h=f=="up"||f=="left"?"pos":"neg",i=b.options.distance||(g=="top"?c.outerHeight({margin:!0})/2:c.outerWidth({margin:!0})/2);e=="show"&&c.css("opacity",0).css(g,h=="pos"?-i:i);var j={opacity:e=="show"?1:0};j[g]=(e=="show"?h=="pos"?"+=":"-=":h=="pos"?"-=":"+=")+i,c.animate(j,{queue:!1,duration:b.duration,easing:b.options.easing,complete:function(){e=="hide"&&c.hide(),a.effects.restore(c,d),a.effects.removeWrapper(c),b.callback&&b.callback.apply(this,arguments),c.dequeue()}})})}})(jQuery);/* - * jQuery UI Effects Explode 1.8.18 - * - * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) - * Dual licensed under the MIT or GPL Version 2 licenses. - * http://jquery.org/license - * - * http://docs.jquery.com/UI/Effects/Explode - * - * Depends: - * jquery.effects.core.js - */(function(a,b){a.effects.explode=function(b){return this.queue(function(){var c=b.options.pieces?Math.round(Math.sqrt(b.options.pieces)):3,d=b.options.pieces?Math.round(Math.sqrt(b.options.pieces)):3;b.options.mode=b.options.mode=="toggle"?a(this).is(":visible")?"hide":"show":b.options.mode;var e=a(this).show().css("visibility","hidden"),f=e.offset();f.top-=parseInt(e.css("marginTop"),10)||0,f.left-=parseInt(e.css("marginLeft"),10)||0;var g=e.outerWidth(!0),h=e.outerHeight(!0);for(var i=0;i<c;i++)for(var j=0;j<d;j++)e.clone().appendTo("body").wrap("<div></div>").css({position:"absolute",visibility:"visible",left:-j*(g/d),top:-i*(h/c)}).parent().addClass("ui-effects-explode").css({position:"absolute",overflow:"hidden",width:g/d,height:h/c,left:f.left+j*(g/d)+(b.options.mode=="show"?(j-Math.floor(d/2))*(g/d):0),top:f.top+i*(h/c)+(b.options.mode=="show"?(i-Math.floor(c/2))*(h/c):0),opacity:b.options.mode=="show"?0:1}).animate({left:f.left+j*(g/d)+(b.options.mode=="show"?0:(j-Math.floor(d/2))*(g/d)),top:f.top+i*(h/c)+(b.options.mode=="show"?0:(i-Math.floor(c/2))*(h/c)),opacity:b.options.mode=="show"?1:0},b.duration||500);setTimeout(function(){b.options.mode=="show"?e.css({visibility:"visible"}):e.css({visibility:"visible"}).hide(),b.callback&&b.callback.apply(e[0]),e.dequeue(),a("div.ui-effects-explode").remove()},b.duration||500)})}})(jQuery);/* - * jQuery UI Effects Fade 1.8.18 - * - * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) - * Dual licensed under the MIT or GPL Version 2 licenses. - * http://jquery.org/license - * - * http://docs.jquery.com/UI/Effects/Fade - * - * Depends: - * jquery.effects.core.js - */(function(a,b){a.effects.fade=function(b){return this.queue(function(){var c=a(this),d=a.effects.setMode(c,b.options.mode||"hide");c.animate({opacity:d},{queue:!1,duration:b.duration,easing:b.options.easing,complete:function(){b.callback&&b.callback.apply(this,arguments),c.dequeue()}})})}})(jQuery);/* - * jQuery UI Effects Fold 1.8.18 - * - * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) - * Dual licensed under the MIT or GPL Version 2 licenses. - * http://jquery.org/license - * - * http://docs.jquery.com/UI/Effects/Fold - * - * Depends: - * jquery.effects.core.js - */(function(a,b){a.effects.fold=function(b){return this.queue(function(){var c=a(this),d=["position","top","bottom","left","right"],e=a.effects.setMode(c,b.options.mode||"hide"),f=b.options.size||15,g=!!b.options.horizFirst,h=b.duration?b.duration/2:a.fx.speeds._default/2;a.effects.save(c,d),c.show();var i=a.effects.createWrapper(c).css({overflow:"hidden"}),j=e=="show"!=g,k=j?["width","height"]:["height","width"],l=j?[i.width(),i.height()]:[i.height(),i.width()],m=/([0-9]+)%/.exec(f);m&&(f=parseInt(m[1],10)/100*l[e=="hide"?0:1]),e=="show"&&i.css(g?{height:0,width:f}:{height:f,width:0});var n={},p={};n[k[0]]=e=="show"?l[0]:f,p[k[1]]=e=="show"?l[1]:0,i.animate(n,h,b.options.easing).animate(p,h,b.options.easing,function(){e=="hide"&&c.hide(),a.effects.restore(c,d),a.effects.removeWrapper(c),b.callback&&b.callback.apply(c[0],arguments),c.dequeue()})})}})(jQuery);/* - * jQuery UI Effects Highlight 1.8.18 - * - * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) - * Dual licensed under the MIT or GPL Version 2 licenses. - * http://jquery.org/license - * - * http://docs.jquery.com/UI/Effects/Highlight - * - * Depends: - * jquery.effects.core.js - */(function(a,b){a.effects.highlight=function(b){return this.queue(function(){var c=a(this),d=["backgroundImage","backgroundColor","opacity"],e=a.effects.setMode(c,b.options.mode||"show"),f={backgroundColor:c.css("backgroundColor")};e=="hide"&&(f.opacity=0),a.effects.save(c,d),c.show().css({backgroundImage:"none",backgroundColor:b.options.color||"#ffff99"}).animate(f,{queue:!1,duration:b.duration,easing:b.options.easing,complete:function(){e=="hide"&&c.hide(),a.effects.restore(c,d),e=="show"&&!a.support.opacity&&this.style.removeAttribute("filter"),b.callback&&b.callback.apply(this,arguments),c.dequeue()}})})}})(jQuery);/* - * jQuery UI Effects Pulsate 1.8.18 - * - * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) - * Dual licensed under the MIT or GPL Version 2 licenses. - * http://jquery.org/license - * - * http://docs.jquery.com/UI/Effects/Pulsate - * - * Depends: - * jquery.effects.core.js - */(function(a,b){a.effects.pulsate=function(b){return this.queue(function(){var c=a(this),d=a.effects.setMode(c,b.options.mode||"show");times=(b.options.times||5)*2-1,duration=b.duration?b.duration/2:a.fx.speeds._default/2,isVisible=c.is(":visible"),animateTo=0,isVisible||(c.css("opacity",0).show(),animateTo=1),(d=="hide"&&isVisible||d=="show"&&!isVisible)&×--;for(var e=0;e<times;e++)c.animate({opacity:animateTo},duration,b.options.easing),animateTo=(animateTo+1)%2;c.animate({opacity:animateTo},duration,b.options.easing,function(){animateTo==0&&c.hide(),b.callback&&b.callback.apply(this,arguments)}),c.queue("fx",function(){c.dequeue()}).dequeue()})}})(jQuery);/* - * jQuery UI Effects Scale 1.8.18 - * - * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) - * Dual licensed under the MIT or GPL Version 2 licenses. - * http://jquery.org/license - * - * http://docs.jquery.com/UI/Effects/Scale - * - * Depends: - * jquery.effects.core.js - */(function(a,b){a.effects.puff=function(b){return this.queue(function(){var c=a(this),d=a.effects.setMode(c,b.options.mode||"hide"),e=parseInt(b.options.percent,10)||150,f=e/100,g={height:c.height(),width:c.width()};a.extend(b.options,{fade:!0,mode:d,percent:d=="hide"?e:100,from:d=="hide"?g:{height:g.height*f,width:g.width*f}}),c.effect("scale",b.options,b.duration,b.callback),c.dequeue()})},a.effects.scale=function(b){return this.queue(function(){var c=a(this),d=a.extend(!0,{},b.options),e=a.effects.setMode(c,b.options.mode||"effect"),f=parseInt(b.options.percent,10)||(parseInt(b.options.percent,10)==0?0:e=="hide"?0:100),g=b.options.direction||"both",h=b.options.origin;e!="effect"&&(d.origin=h||["middle","center"],d.restore=!0);var i={height:c.height(),width:c.width()};c.from=b.options.from||(e=="show"?{height:0,width:0}:i);var j={y:g!="horizontal"?f/100:1,x:g!="vertical"?f/100:1};c.to={height:i.height*j.y,width:i.width*j.x},b.options.fade&&(e=="show"&&(c.from.opacity=0,c.to.opacity=1),e=="hide"&&(c.from.opacity=1,c.to.opacity=0)),d.from=c.from,d.to=c.to,d.mode=e,c.effect("size",d,b.duration,b.callback),c.dequeue()})},a.effects.size=function(b){return this.queue(function(){var c=a(this),d=["position","top","bottom","left","right","width","height","overflow","opacity"],e=["position","top","bottom","left","right","overflow","opacity"],f=["width","height","overflow"],g=["fontSize"],h=["borderTopWidth","borderBottomWidth","paddingTop","paddingBottom"],i=["borderLeftWidth","borderRightWidth","paddingLeft","paddingRight"],j=a.effects.setMode(c,b.options.mode||"effect"),k=b.options.restore||!1,l=b.options.scale||"both",m=b.options.origin,n={height:c.height(),width:c.width()};c.from=b.options.from||n,c.to=b.options.to||n;if(m){var p=a.effects.getBaseline(m,n);c.from.top=(n.height-c.from.height)*p.y,c.from.left=(n.width-c.from.width)*p.x,c.to.top=(n.height-c.to.height)*p.y,c.to.left=(n.width-c.to.width)*p.x}var q={from:{y:c.from.height/n.height,x:c.from.width/n.width},to:{y:c.to.height/n.height,x:c.to.width/n.width}};if(l=="box"||l=="both")q.from.y!=q.to.y&&(d=d.concat(h),c.from=a.effects.setTransition(c,h,q.from.y,c.from),c.to=a.effects.setTransition(c,h,q.to.y,c.to)),q.from.x!=q.to.x&&(d=d.concat(i),c.from=a.effects.setTransition(c,i,q.from.x,c.from),c.to=a.effects.setTransition(c,i,q.to.x,c.to));(l=="content"||l=="both")&&q.from.y!=q.to.y&&(d=d.concat(g),c.from=a.effects.setTransition(c,g,q.from.y,c.from),c.to=a.effects.setTransition(c,g,q.to.y,c.to)),a.effects.save(c,k?d:e),c.show(),a.effects.createWrapper(c),c.css("overflow","hidden").css(c.from);if(l=="content"||l=="both")h=h.concat(["marginTop","marginBottom"]).concat(g),i=i.concat(["marginLeft","marginRight"]),f=d.concat(h).concat(i),c.find("*[width]").each(function(){child=a(this),k&&a.effects.save(child,f);var c={height:child.height(),width:child.width()};child.from={height:c.height*q.from.y,width:c.width*q.from.x},child.to={height:c.height*q.to.y,width:c.width*q.to.x},q.from.y!=q.to.y&&(child.from=a.effects.setTransition(child,h,q.from.y,child.from),child.to=a.effects.setTransition(child,h,q.to.y,child.to)),q.from.x!=q.to.x&&(child.from=a.effects.setTransition(child,i,q.from.x,child.from),child.to=a.effects.setTransition(child,i,q.to.x,child.to)),child.css(child.from),child.animate(child.to,b.duration,b.options.easing,function(){k&&a.effects.restore(child,f)})});c.animate(c.to,{queue:!1,duration:b.duration,easing:b.options.easing,complete:function(){c.to.opacity===0&&c.css("opacity",c.from.opacity),j=="hide"&&c.hide(),a.effects.restore(c,k?d:e),a.effects.removeWrapper(c),b.callback&&b.callback.apply(this,arguments),c.dequeue()}})})}})(jQuery);/* - * jQuery UI Effects Shake 1.8.18 - * - * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) - * Dual licensed under the MIT or GPL Version 2 licenses. - * http://jquery.org/license - * - * http://docs.jquery.com/UI/Effects/Shake - * - * Depends: - * jquery.effects.core.js - */(function(a,b){a.effects.shake=function(b){return this.queue(function(){var c=a(this),d=["position","top","bottom","left","right"],e=a.effects.setMode(c,b.options.mode||"effect"),f=b.options.direction||"left",g=b.options.distance||20,h=b.options.times||3,i=b.duration||b.options.duration||140;a.effects.save(c,d),c.show(),a.effects.createWrapper(c);var j=f=="up"||f=="down"?"top":"left",k=f=="up"||f=="left"?"pos":"neg",l={},m={},n={};l[j]=(k=="pos"?"-=":"+=")+g,m[j]=(k=="pos"?"+=":"-=")+g*2,n[j]=(k=="pos"?"-=":"+=")+g*2,c.animate(l,i,b.options.easing);for(var p=1;p<h;p++)c.animate(m,i,b.options.easing).animate(n,i,b.options.easing);c.animate(m,i,b.options.easing).animate(l,i/2,b.options.easing,function(){a.effects.restore(c,d),a.effects.removeWrapper(c),b.callback&&b.callback.apply(this,arguments)}),c.queue("fx",function(){c.dequeue()}),c.dequeue()})}})(jQuery);/* - * jQuery UI Effects Slide 1.8.18 - * - * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) - * Dual licensed under the MIT or GPL Version 2 licenses. - * http://jquery.org/license - * - * http://docs.jquery.com/UI/Effects/Slide - * - * Depends: - * jquery.effects.core.js - */(function(a,b){a.effects.slide=function(b){return this.queue(function(){var c=a(this),d=["position","top","bottom","left","right"],e=a.effects.setMode(c,b.options.mode||"show"),f=b.options.direction||"left";a.effects.save(c,d),c.show(),a.effects.createWrapper(c).css({overflow:"hidden"});var g=f=="up"||f=="down"?"top":"left",h=f=="up"||f=="left"?"pos":"neg",i=b.options.distance||(g=="top"?c.outerHeight({margin:!0}):c.outerWidth({margin:!0}));e=="show"&&c.css(g,h=="pos"?isNaN(i)?"-"+i:-i:i);var j={};j[g]=(e=="show"?h=="pos"?"+=":"-=":h=="pos"?"-=":"+=")+i,c.animate(j,{queue:!1,duration:b.duration,easing:b.options.easing,complete:function(){e=="hide"&&c.hide(),a.effects.restore(c,d),a.effects.removeWrapper(c),b.callback&&b.callback.apply(this,arguments),c.dequeue()}})})}})(jQuery);/* - * jQuery UI Effects Transfer 1.8.18 - * - * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) - * Dual licensed under the MIT or GPL Version 2 licenses. - * http://jquery.org/license - * - * http://docs.jquery.com/UI/Effects/Transfer - * - * Depends: - * jquery.effects.core.js - */(function(a,b){a.effects.transfer=function(b){return this.queue(function(){var c=a(this),d=a(b.options.to),e=d.offset(),f={top:e.top,left:e.left,height:d.innerHeight(),width:d.innerWidth()},g=c.offset(),h=a('<div class="ui-effects-transfer"></div>').appendTo(document.body).addClass(b.options.className).css({top:g.top,left:g.left,height:c.innerHeight(),width:c.innerWidth(),position:"absolute"}).animate(f,b.duration,b.options.easing,function(){h.remove(),b.callback&&b.callback.apply(c[0],arguments),c.dequeue()})})}})(jQuery); \ No newline at end of file diff --git a/pub/lib/jquery/jquery-ui-1.9.0.custom.min.js b/pub/lib/jquery/jquery-ui-1.9.0.custom.min.js deleted file mode 100644 index c08e64d3d980aed7923616708ac6282f09682007..0000000000000000000000000000000000000000 --- a/pub/lib/jquery/jquery-ui-1.9.0.custom.min.js +++ /dev/null @@ -1,6 +0,0 @@ -/*! jQuery UI - v1.9.0 - 2012-10-23 -* http://jqueryui.com -* Includes: jquery.ui.core.js, jquery.ui.widget.js, jquery.ui.mouse.js, jquery.ui.position.js, jquery.ui.draggable.js, jquery.ui.droppable.js, jquery.ui.resizable.js, jquery.ui.sortable.js, jquery.ui.button.js, jquery.ui.datepicker.js, jquery.ui.dialog.js, jquery.ui.slider.js, jquery.ui.effect.js -* Copyright (c) 2012 jQuery Foundation and other contributors Licensed MIT */ - -(function(e,t){function i(t,n){var r,i,o,u=t.nodeName.toLowerCase();return"area"===u?(r=t.parentNode,i=r.name,!t.href||!i||r.nodeName.toLowerCase()!=="map"?!1:(o=e("img[usemap=#"+i+"]")[0],!!o&&s(o))):(/input|select|textarea|button|object/.test(u)?!t.disabled:"a"===u?t.href||n:n)&&s(t)}function s(t){return!e(t).parents().andSelf().filter(function(){return e.css(this,"visibility")==="hidden"||e.expr.filters.hidden(this)}).length}var n=0,r=/^ui-id-\d+$/;e.ui=e.ui||{};if(e.ui.version)return;e.extend(e.ui,{version:"1.9.0",keyCode:{BACKSPACE:8,COMMA:188,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,LEFT:37,NUMPAD_ADD:107,NUMPAD_DECIMAL:110,NUMPAD_DIVIDE:111,NUMPAD_ENTER:108,NUMPAD_MULTIPLY:106,NUMPAD_SUBTRACT:109,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SPACE:32,TAB:9,UP:38}}),e.fn.extend({_focus:e.fn.focus,focus:function(t,n){return typeof t=="number"?this.each(function(){var r=this;setTimeout(function(){e(r).focus(),n&&n.call(r)},t)}):this._focus.apply(this,arguments)},scrollParent:function(){var t;return e.browser.msie&&/(static|relative)/.test(this.css("position"))||/absolute/.test(this.css("position"))?t=this.parents().filter(function(){return/(relative|absolute|fixed)/.test(e.css(this,"position"))&&/(auto|scroll)/.test(e.css(this,"overflow")+e.css(this,"overflow-y")+e.css(this,"overflow-x"))}).eq(0):t=this.parents().filter(function(){return/(auto|scroll)/.test(e.css(this,"overflow")+e.css(this,"overflow-y")+e.css(this,"overflow-x"))}).eq(0),/fixed/.test(this.css("position"))||!t.length?e(document):t},zIndex:function(n){if(n!==t)return this.css("zIndex",n);if(this.length){var r=e(this[0]),i,s;while(r.length&&r[0]!==document){i=r.css("position");if(i==="absolute"||i==="relative"||i==="fixed"){s=parseInt(r.css("zIndex"),10);if(!isNaN(s)&&s!==0)return s}r=r.parent()}}return 0},uniqueId:function(){return this.each(function(){this.id||(this.id="ui-id-"+ ++n)})},removeUniqueId:function(){return this.each(function(){r.test(this.id)&&e(this).removeAttr("id")})}}),e("<a>").outerWidth(1).jquery||e.each(["Width","Height"],function(n,r){function u(t,n,r,s){return e.each(i,function(){n-=parseFloat(e.css(t,"padding"+this))||0,r&&(n-=parseFloat(e.css(t,"border"+this+"Width"))||0),s&&(n-=parseFloat(e.css(t,"margin"+this))||0)}),n}var i=r==="Width"?["Left","Right"]:["Top","Bottom"],s=r.toLowerCase(),o={innerWidth:e.fn.innerWidth,innerHeight:e.fn.innerHeight,outerWidth:e.fn.outerWidth,outerHeight:e.fn.outerHeight};e.fn["inner"+r]=function(n){return n===t?o["inner"+r].call(this):this.each(function(){e(this).css(s,u(this,n)+"px")})},e.fn["outer"+r]=function(t,n){return typeof t!="number"?o["outer"+r].call(this,t):this.each(function(){e(this).css(s,u(this,t,!0,n)+"px")})}}),e.extend(e.expr[":"],{data:e.expr.createPseudo?e.expr.createPseudo(function(t){return function(n){return!!e.data(n,t)}}):function(t,n,r){return!!e.data(t,r[3])},focusable:function(t){return i(t,!isNaN(e.attr(t,"tabindex")))},tabbable:function(t){var n=e.attr(t,"tabindex"),r=isNaN(n);return(r||n>=0)&&i(t,!r)}}),e(function(){var t=document.body,n=t.appendChild(n=document.createElement("div"));n.offsetHeight,e.extend(n.style,{minHeight:"100px",height:"auto",padding:0,borderWidth:0}),e.support.minHeight=n.offsetHeight===100,e.support.selectstart="onselectstart"in n,t.removeChild(n).style.display="none"}),e.fn.extend({disableSelection:function(){return this.bind((e.support.selectstart?"selectstart":"mousedown")+".ui-disableSelection",function(e){e.preventDefault()})},enableSelection:function(){return this.unbind(".ui-disableSelection")}}),e.extend(e.ui,{plugin:{add:function(t,n,r){var i,s=e.ui[t].prototype;for(i in r)s.plugins[i]=s.plugins[i]||[],s.plugins[i].push([n,r[i]])},call:function(e,t,n){var r,i=e.plugins[t];if(!i||!e.element[0].parentNode||e.element[0].parentNode.nodeType===11)return;for(r=0;r<i.length;r++)e.options[i[r][0]]&&i[r][1].apply(e.element,n)}},contains:e.contains,hasScroll:function(t,n){if(e(t).css("overflow")==="hidden")return!1;var r=n&&n==="left"?"scrollLeft":"scrollTop",i=!1;return t[r]>0?!0:(t[r]=1,i=t[r]>0,t[r]=0,i)},isOverAxis:function(e,t,n){return e>t&&e<t+n},isOver:function(t,n,r,i,s,o){return e.ui.isOverAxis(t,r,s)&&e.ui.isOverAxis(n,i,o)}})})(jQuery);(function(e,t){var n=0,r=Array.prototype.slice,i=e.cleanData;e.cleanData=function(t){for(var n=0,r;(r=t[n])!=null;n++)try{e(r).triggerHandler("remove")}catch(s){}i(t)},e.widget=function(t,n,r){var i,s,o,u,a=t.split(".")[0];t=t.split(".")[1],i=a+"-"+t,r||(r=n,n=e.Widget),e.expr[":"][i.toLowerCase()]=function(t){return!!e.data(t,i)},e[a]=e[a]||{},s=e[a][t],o=e[a][t]=function(e,t){if(!this._createWidget)return new o(e,t);arguments.length&&this._createWidget(e,t)},e.extend(o,s,{version:r.version,_proto:e.extend({},r),_childConstructors:[]}),u=new n,u.options=e.widget.extend({},u.options),e.each(r,function(t,i){e.isFunction(i)&&(r[t]=function(){var e=function(){return n.prototype[t].apply(this,arguments)},r=function(e){return n.prototype[t].apply(this,e)};return function(){var t=this._super,n=this._superApply,s;return this._super=e,this._superApply=r,s=i.apply(this,arguments),this._super=t,this._superApply=n,s}}())}),o.prototype=e.widget.extend(u,{widgetEventPrefix:t},r,{constructor:o,namespace:a,widgetName:t,widgetBaseClass:i,widgetFullName:i}),s?(e.each(s._childConstructors,function(t,n){var r=n.prototype;e.widget(r.namespace+"."+r.widgetName,o,n._proto)}),delete s._childConstructors):n._childConstructors.push(o),e.widget.bridge(t,o)},e.widget.extend=function(n){var i=r.call(arguments,1),s=0,o=i.length,u,a;for(;s<o;s++)for(u in i[s])a=i[s][u],i[s].hasOwnProperty(u)&&a!==t&&(n[u]=e.isPlainObject(a)?e.widget.extend({},n[u],a):a);return n},e.widget.bridge=function(n,i){var s=i.prototype.widgetFullName;e.fn[n]=function(o){var u=typeof o=="string",a=r.call(arguments,1),f=this;return o=!u&&a.length?e.widget.extend.apply(null,[o].concat(a)):o,u?this.each(function(){var r,i=e.data(this,s);if(!i)return e.error("cannot call methods on "+n+" prior to initialization; "+"attempted to call method '"+o+"'");if(!e.isFunction(i[o])||o.charAt(0)==="_")return e.error("no such method '"+o+"' for "+n+" widget instance");r=i[o].apply(i,a);if(r!==i&&r!==t)return f=r&&r.jquery?f.pushStack(r.get()):r,!1}):this.each(function(){var t=e.data(this,s);t?t.option(o||{})._init():new i(o,this)}),f}},e.Widget=function(e,t){},e.Widget._childConstructors=[],e.Widget.prototype={widgetName:"widget",widgetEventPrefix:"",defaultElement:"<div>",options:{disabled:!1,create:null},_createWidget:function(t,r){r=e(r||this.defaultElement||this)[0],this.element=e(r),this.uuid=n++,this.eventNamespace="."+this.widgetName+this.uuid,this.options=e.widget.extend({},this.options,this._getCreateOptions(),t),this.bindings=e(),this.hoverable=e(),this.focusable=e(),r!==this&&(e.data(r,this.widgetName,this),e.data(r,this.widgetFullName,this),this._on({remove:"destroy"}),this.document=e(r.style?r.ownerDocument:r.document||r),this.window=e(this.document[0].defaultView||this.document[0].parentWindow)),this._create(),this._trigger("create",null,this._getCreateEventData()),this._init()},_getCreateOptions:e.noop,_getCreateEventData:e.noop,_create:e.noop,_init:e.noop,destroy:function(){this._destroy(),this.element.unbind(this.eventNamespace).removeData(this.widgetName).removeData(this.widgetFullName).removeData(e.camelCase(this.widgetFullName)),this.widget().unbind(this.eventNamespace).removeAttr("aria-disabled").removeClass(this.widgetFullName+"-disabled "+"ui-state-disabled"),this.bindings.unbind(this.eventNamespace),this.hoverable.removeClass("ui-state-hover"),this.focusable.removeClass("ui-state-focus")},_destroy:e.noop,widget:function(){return this.element},option:function(n,r){var i=n,s,o,u;if(arguments.length===0)return e.widget.extend({},this.options);if(typeof n=="string"){i={},s=n.split("."),n=s.shift();if(s.length){o=i[n]=e.widget.extend({},this.options[n]);for(u=0;u<s.length-1;u++)o[s[u]]=o[s[u]]||{},o=o[s[u]];n=s.pop();if(r===t)return o[n]===t?null:o[n];o[n]=r}else{if(r===t)return this.options[n]===t?null:this.options[n];i[n]=r}}return this._setOptions(i),this},_setOptions:function(e){var t;for(t in e)this._setOption(t,e[t]);return this},_setOption:function(e,t){return this.options[e]=t,e==="disabled"&&(this.widget().toggleClass(this.widgetFullName+"-disabled ui-state-disabled",!!t).attr("aria-disabled",t),this.hoverable.removeClass("ui-state-hover"),this.focusable.removeClass("ui-state-focus")),this},enable:function(){return this._setOption("disabled",!1)},disable:function(){return this._setOption("disabled",!0)},_on:function(t,n){n?(t=e(t),this.bindings=this.bindings.add(t)):(n=t,t=this.element);var r=this;e.each(n,function(n,i){function s(){if(r.options.disabled===!0||e(this).hasClass("ui-state-disabled"))return;return(typeof i=="string"?r[i]:i).apply(r,arguments)}typeof i!="string"&&(s.guid=i.guid=i.guid||s.guid||e.guid++);var o=n.match(/^(\w+)\s*(.*)$/),u=o[1]+r.eventNamespace,a=o[2];a?r.widget().delegate(a,u,s):t.bind(u,s)})},_off:function(e,t){t=(t||"").split(" ").join(this.eventNamespace+" ")+this.eventNamespace,e.unbind(t).undelegate(t)},_delay:function(e,t){function n(){return(typeof e=="string"?r[e]:e).apply(r,arguments)}var r=this;return setTimeout(n,t||0)},_hoverable:function(t){this.hoverable=this.hoverable.add(t),this._on(t,{mouseenter:function(t){e(t.currentTarget).addClass("ui-state-hover")},mouseleave:function(t){e(t.currentTarget).removeClass("ui-state-hover")}})},_focusable:function(t){this.focusable=this.focusable.add(t),this._on(t,{focusin:function(t){e(t.currentTarget).addClass("ui-state-focus")},focusout:function(t){e(t.currentTarget).removeClass("ui-state-focus")}})},_trigger:function(t,n,r){var i,s,o=this.options[t];r=r||{},n=e.Event(n),n.type=(t===this.widgetEventPrefix?t:this.widgetEventPrefix+t).toLowerCase(),n.target=this.element[0],s=n.originalEvent;if(s)for(i in s)i in n||(n[i]=s[i]);return this.element.trigger(n,r),!(e.isFunction(o)&&o.apply(this.element[0],[n].concat(r))===!1||n.isDefaultPrevented())}},e.each({show:"fadeIn",hide:"fadeOut"},function(t,n){e.Widget.prototype["_"+t]=function(r,i,s){typeof i=="string"&&(i={effect:i});var o,u=i?i===!0||typeof i=="number"?n:i.effect||n:t;i=i||{},typeof i=="number"&&(i={duration:i}),o=!e.isEmptyObject(i),i.complete=s,i.delay&&r.delay(i.delay),o&&e.effects&&(e.effects.effect[u]||e.uiBackCompat!==!1&&e.effects[u])?r[t](i):u!==t&&r[u]?r[u](i.duration,i.easing,s):r.queue(function(n){e(this)[t](),s&&s.call(r[0]),n()})}}),e.uiBackCompat!==!1&&(e.Widget.prototype._getCreateOptions=function(){return e.metadata&&e.metadata.get(this.element[0])[this.widgetName]})})(jQuery);(function(e,t){var n=!1;e(document).mouseup(function(e){n=!1}),e.widget("ui.mouse",{version:"1.9.0",options:{cancel:"input,textarea,button,select,option",distance:1,delay:0},_mouseInit:function(){var t=this;this.element.bind("mousedown."+this.widgetName,function(e){return t._mouseDown(e)}).bind("click."+this.widgetName,function(n){if(!0===e.data(n.target,t.widgetName+".preventClickEvent"))return e.removeData(n.target,t.widgetName+".preventClickEvent"),n.stopImmediatePropagation(),!1}),this.started=!1},_mouseDestroy:function(){this.element.unbind("."+this.widgetName),this._mouseMoveDelegate&&e(document).unbind("mousemove."+this.widgetName,this._mouseMoveDelegate).unbind("mouseup."+this.widgetName,this._mouseUpDelegate)},_mouseDown:function(t){if(n)return;this._mouseStarted&&this._mouseUp(t),this._mouseDownEvent=t;var r=this,i=t.which===1,s=typeof this.options.cancel=="string"&&t.target.nodeName?e(t.target).closest(this.options.cancel).length:!1;if(!i||s||!this._mouseCapture(t))return!0;this.mouseDelayMet=!this.options.delay,this.mouseDelayMet||(this._mouseDelayTimer=setTimeout(function(){r.mouseDelayMet=!0},this.options.delay));if(this._mouseDistanceMet(t)&&this._mouseDelayMet(t)){this._mouseStarted=this._mouseStart(t)!==!1;if(!this._mouseStarted)return t.preventDefault(),!0}return!0===e.data(t.target,this.widgetName+".preventClickEvent")&&e.removeData(t.target,this.widgetName+".preventClickEvent"),this._mouseMoveDelegate=function(e){return r._mouseMove(e)},this._mouseUpDelegate=function(e){return r._mouseUp(e)},e(document).bind("mousemove."+this.widgetName,this._mouseMoveDelegate).bind("mouseup."+this.widgetName,this._mouseUpDelegate),t.preventDefault(),n=!0,!0},_mouseMove:function(t){return!e.browser.msie||document.documentMode>=9||!!t.button?this._mouseStarted?(this._mouseDrag(t),t.preventDefault()):(this._mouseDistanceMet(t)&&this._mouseDelayMet(t)&&(this._mouseStarted=this._mouseStart(this._mouseDownEvent,t)!==!1,this._mouseStarted?this._mouseDrag(t):this._mouseUp(t)),!this._mouseStarted):this._mouseUp(t)},_mouseUp:function(t){return e(document).unbind("mousemove."+this.widgetName,this._mouseMoveDelegate).unbind("mouseup."+this.widgetName,this._mouseUpDelegate),this._mouseStarted&&(this._mouseStarted=!1,t.target===this._mouseDownEvent.target&&e.data(t.target,this.widgetName+".preventClickEvent",!0),this._mouseStop(t)),!1},_mouseDistanceMet:function(e){return Math.max(Math.abs(this._mouseDownEvent.pageX-e.pageX),Math.abs(this._mouseDownEvent.pageY-e.pageY))>=this.options.distance},_mouseDelayMet:function(e){return this.mouseDelayMet},_mouseStart:function(e){},_mouseDrag:function(e){},_mouseStop:function(e){},_mouseCapture:function(e){return!0}})})(jQuery);(function(e,t){function h(e,t,n){return[parseInt(e[0],10)*(l.test(e[0])?t/100:1),parseInt(e[1],10)*(l.test(e[1])?n/100:1)]}function p(t,n){return parseInt(e.css(t,n),10)||0}e.ui=e.ui||{};var n,r=Math.max,i=Math.abs,s=Math.round,o=/left|center|right/,u=/top|center|bottom/,a=/[\+\-]\d+%?/,f=/^\w+/,l=/%$/,c=e.fn.position;e.position={scrollbarWidth:function(){if(n!==t)return n;var r,i,s=e("<div style='display:block;width:50px;height:50px;overflow:hidden;'><div style='height:100px;width:auto;'></div></div>"),o=s.children()[0];return e("body").append(s),r=o.offsetWidth,s.css("overflow","scroll"),i=o.offsetWidth,r===i&&(i=s[0].clientWidth),s.remove(),n=r-i},getScrollInfo:function(t){var n=t.isWindow?"":t.element.css("overflow-x"),r=t.isWindow?"":t.element.css("overflow-y"),i=n==="scroll"||n==="auto"&&t.width<t.element[0].scrollWidth,s=r==="scroll"||r==="auto"&&t.height<t.element[0].scrollHeight;return{width:i?e.position.scrollbarWidth():0,height:s?e.position.scrollbarWidth():0}},getWithinInfo:function(t){var n=e(t||window),r=e.isWindow(n[0]);return{element:n,isWindow:r,offset:n.offset()||{left:0,top:0},scrollLeft:n.scrollLeft(),scrollTop:n.scrollTop(),width:r?n.width():n.outerWidth(),height:r?n.height():n.outerHeight()}}},e.fn.position=function(t){if(!t||!t.of)return c.apply(this,arguments);t=e.extend({},t);var n,l,d,v,m,g=e(t.of),y=e.position.getWithinInfo(t.within),b=e.position.getScrollInfo(y),w=g[0],E=(t.collision||"flip").split(" "),S={};return w.nodeType===9?(l=g.width(),d=g.height(),v={top:0,left:0}):e.isWindow(w)?(l=g.width(),d=g.height(),v={top:g.scrollTop(),left:g.scrollLeft()}):w.preventDefault?(t.at="left top",l=d=0,v={top:w.pageY,left:w.pageX}):(l=g.outerWidth(),d=g.outerHeight(),v=g.offset()),m=e.extend({},v),e.each(["my","at"],function(){var e=(t[this]||"").split(" "),n,r;e.length===1&&(e=o.test(e[0])?e.concat(["center"]):u.test(e[0])?["center"].concat(e):["center","center"]),e[0]=o.test(e[0])?e[0]:"center",e[1]=u.test(e[1])?e[1]:"center",n=a.exec(e[0]),r=a.exec(e[1]),S[this]=[n?n[0]:0,r?r[0]:0],t[this]=[f.exec(e[0])[0],f.exec(e[1])[0]]}),E.length===1&&(E[1]=E[0]),t.at[0]==="right"?m.left+=l:t.at[0]==="center"&&(m.left+=l/2),t.at[1]==="bottom"?m.top+=d:t.at[1]==="center"&&(m.top+=d/2),n=h(S.at,l,d),m.left+=n[0],m.top+=n[1],this.each(function(){var o,u,a=e(this),f=a.outerWidth(),c=a.outerHeight(),w=p(this,"marginLeft"),x=p(this,"marginTop"),T=f+w+p(this,"marginRight")+b.width,N=c+x+p(this,"marginBottom")+b.height,C=e.extend({},m),k=h(S.my,a.outerWidth(),a.outerHeight());t.my[0]==="right"?C.left-=f:t.my[0]==="center"&&(C.left-=f/2),t.my[1]==="bottom"?C.top-=c:t.my[1]==="center"&&(C.top-=c/2),C.left+=k[0],C.top+=k[1],e.support.offsetFractions||(C.left=s(C.left),C.top=s(C.top)),o={marginLeft:w,marginTop:x},e.each(["left","top"],function(r,i){e.ui.position[E[r]]&&e.ui.position[E[r]][i](C,{targetWidth:l,targetHeight:d,elemWidth:f,elemHeight:c,collisionPosition:o,collisionWidth:T,collisionHeight:N,offset:[n[0]+k[0],n[1]+k[1]],my:t.my,at:t.at,within:y,elem:a})}),e.fn.bgiframe&&a.bgiframe(),t.using&&(u=function(e){var n=v.left-C.left,s=n+l-f,o=v.top-C.top,u=o+d-c,h={target:{element:g,left:v.left,top:v.top,width:l,height:d},element:{element:a,left:C.left,top:C.top,width:f,height:c},horizontal:s<0?"left":n>0?"right":"center",vertical:u<0?"top":o>0?"bottom":"middle"};l<f&&i(n+s)<l&&(h.horizontal="center"),d<c&&i(o+u)<d&&(h.vertical="middle"),r(i(n),i(s))>r(i(o),i(u))?h.important="horizontal":h.important="vertical",t.using.call(this,e,h)}),a.offset(e.extend(C,{using:u}))})},e.ui.position={fit:{left:function(e,t){var n=t.within,i=n.isWindow?n.scrollLeft:n.offset.left,s=n.width,o=e.left-t.collisionPosition.marginLeft,u=i-o,a=o+t.collisionWidth-s-i,f;t.collisionWidth>s?u>0&&a<=0?(f=e.left+u+t.collisionWidth-s-i,e.left+=u-f):a>0&&u<=0?e.left=i:u>a?e.left=i+s-t.collisionWidth:e.left=i:u>0?e.left+=u:a>0?e.left-=a:e.left=r(e.left-o,e.left)},top:function(e,t){var n=t.within,i=n.isWindow?n.scrollTop:n.offset.top,s=t.within.height,o=e.top-t.collisionPosition.marginTop,u=i-o,a=o+t.collisionHeight-s-i,f;t.collisionHeight>s?u>0&&a<=0?(f=e.top+u+t.collisionHeight-s-i,e.top+=u-f):a>0&&u<=0?e.top=i:u>a?e.top=i+s-t.collisionHeight:e.top=i:u>0?e.top+=u:a>0?e.top-=a:e.top=r(e.top-o,e.top)}},flip:{left:function(e,t){var n=t.within,r=n.offset.left+n.scrollLeft,s=n.width,o=n.isWindow?n.scrollLeft:n.offset.left,u=e.left-t.collisionPosition.marginLeft,a=u-o,f=u+t.collisionWidth-s-o,l=t.my[0]==="left"?-t.elemWidth:t.my[0]==="right"?t.elemWidth:0,c=t.at[0]==="left"?t.targetWidth:t.at[0]==="right"?-t.targetWidth:0,h=-2*t.offset[0],p,d;if(a<0){p=e.left+l+c+h+t.collisionWidth-s-r;if(p<0||p<i(a))e.left+=l+c+h}else if(f>0){d=e.left-t.collisionPosition.marginLeft+l+c+h-o;if(d>0||i(d)<f)e.left+=l+c+h}},top:function(e,t){var n=t.within,r=n.offset.top+n.scrollTop,s=n.height,o=n.isWindow?n.scrollTop:n.offset.top,u=e.top-t.collisionPosition.marginTop,a=u-o,f=u+t.collisionHeight-s-o,l=t.my[1]==="top",c=l?-t.elemHeight:t.my[1]==="bottom"?t.elemHeight:0,h=t.at[1]==="top"?t.targetHeight:t.at[1]==="bottom"?-t.targetHeight:0,p=-2*t.offset[1],d,v;a<0?(v=e.top+c+h+p+t.collisionHeight-s-r,e.top+c+h+p>a&&(v<0||v<i(a))&&(e.top+=c+h+p)):f>0&&(d=e.top-t.collisionPosition.marginTop+c+h+p-o,e.top+c+h+p>f&&(d>0||i(d)<f)&&(e.top+=c+h+p))}},flipfit:{left:function(){e.ui.position.flip.left.apply(this,arguments),e.ui.position.fit.left.apply(this,arguments)},top:function(){e.ui.position.flip.top.apply(this,arguments),e.ui.position.fit.top.apply(this,arguments)}}},function(){var t,n,r,i,s,o=document.getElementsByTagName("body")[0],u=document.createElement("div");t=document.createElement(o?"div":"body"),r={visibility:"hidden",width:0,height:0,border:0,margin:0,background:"none"},o&&e.extend(r,{position:"absolute",left:"-1000px",top:"-1000px"});for(s in r)t.style[s]=r[s];t.appendChild(u),n=o||document.documentElement,n.insertBefore(t,n.firstChild),u.style.cssText="position: absolute; left: 10.7432222px;",i=e(u).offset().left,e.support.offsetFractions=i>10&&i<11,t.innerHTML="",n.removeChild(t)}(),e.uiBackCompat!==!1&&function(e){var n=e.fn.position;e.fn.position=function(r){if(!r||!r.offset)return n.call(this,r);var i=r.offset.split(" "),s=r.at.split(" ");return i.length===1&&(i[1]=i[0]),/^\d/.test(i[0])&&(i[0]="+"+i[0]),/^\d/.test(i[1])&&(i[1]="+"+i[1]),s.length===1&&(/left|center|right/.test(s[0])?s[1]="center":(s[1]=s[0],s[0]="center")),n.call(this,e.extend(r,{at:s[0]+i[0]+" "+s[1]+i[1],offset:t}))}}(jQuery)})(jQuery);(function(e,t){e.widget("ui.draggable",e.ui.mouse,{version:"1.9.0",widgetEventPrefix:"drag",options:{addClasses:!0,appendTo:"parent",axis:!1,connectToSortable:!1,containment:!1,cursor:"auto",cursorAt:!1,grid:!1,handle:!1,helper:"original",iframeFix:!1,opacity:!1,refreshPositions:!1,revert:!1,revertDuration:500,scope:"default",scroll:!0,scrollSensitivity:20,scrollSpeed:20,snap:!1,snapMode:"both",snapTolerance:20,stack:!1,zIndex:!1},_create:function(){this.options.helper=="original"&&!/^(?:r|a|f)/.test(this.element.css("position"))&&(this.element[0].style.position="relative"),this.options.addClasses&&this.element.addClass("ui-draggable"),this.options.disabled&&this.element.addClass("ui-draggable-disabled"),this._mouseInit()},_destroy:function(){this.element.removeClass("ui-draggable ui-draggable-dragging ui-draggable-disabled"),this._mouseDestroy()},_mouseCapture:function(t){var n=this.options;return this.helper||n.disabled||e(t.target).is(".ui-resizable-handle")?!1:(this.handle=this._getHandle(t),this.handle?(e(n.iframeFix===!0?"iframe":n.iframeFix).each(function(){e('<div class="ui-draggable-iframeFix" style="background: #fff;"></div>').css({width:this.offsetWidth+"px",height:this.offsetHeight+"px",position:"absolute",opacity:"0.001",zIndex:1e3}).css(e(this).offset()).appendTo("body")}),!0):!1)},_mouseStart:function(t){var n=this.options;return this.helper=this._createHelper(t),this.helper.addClass("ui-draggable-dragging"),this._cacheHelperProportions(),e.ui.ddmanager&&(e.ui.ddmanager.current=this),this._cacheMargins(),this.cssPosition=this.helper.css("position"),this.scrollParent=this.helper.scrollParent(),this.offset=this.positionAbs=this.element.offset(),this.offset={top:this.offset.top-this.margins.top,left:this.offset.left-this.margins.left},e.extend(this.offset,{click:{left:t.pageX-this.offset.left,top:t.pageY-this.offset.top},parent:this._getParentOffset(),relative:this._getRelativeOffset()}),this.originalPosition=this.position=this._generatePosition(t),this.originalPageX=t.pageX,this.originalPageY=t.pageY,n.cursorAt&&this._adjustOffsetFromHelper(n.cursorAt),n.containment&&this._setContainment(),this._trigger("start",t)===!1?(this._clear(),!1):(this._cacheHelperProportions(),e.ui.ddmanager&&!n.dropBehaviour&&e.ui.ddmanager.prepareOffsets(this,t),this._mouseDrag(t,!0),e.ui.ddmanager&&e.ui.ddmanager.dragStart(this,t),!0)},_mouseDrag:function(t,n){this.position=this._generatePosition(t),this.positionAbs=this._convertPositionTo("absolute");if(!n){var r=this._uiHash();if(this._trigger("drag",t,r)===!1)return this._mouseUp({}),!1;this.position=r.position}if(!this.options.axis||this.options.axis!="y")this.helper[0].style.left=this.position.left+"px";if(!this.options.axis||this.options.axis!="x")this.helper[0].style.top=this.position.top+"px";return e.ui.ddmanager&&e.ui.ddmanager.drag(this,t),!1},_mouseStop:function(t){var n=!1;e.ui.ddmanager&&!this.options.dropBehaviour&&(n=e.ui.ddmanager.drop(this,t)),this.dropped&&(n=this.dropped,this.dropped=!1);var r=this.element[0],i=!1;while(r&&(r=r.parentNode))r==document&&(i=!0);if(!i&&this.options.helper==="original")return!1;if(this.options.revert=="invalid"&&!n||this.options.revert=="valid"&&n||this.options.revert===!0||e.isFunction(this.options.revert)&&this.options.revert.call(this.element,n)){var s=this;e(this.helper).animate(this.originalPosition,parseInt(this.options.revertDuration,10),function(){s._trigger("stop",t)!==!1&&s._clear()})}else this._trigger("stop",t)!==!1&&this._clear();return!1},_mouseUp:function(t){return e("div.ui-draggable-iframeFix").each(function(){this.parentNode.removeChild(this)}),e.ui.ddmanager&&e.ui.ddmanager.dragStop(this,t),e.ui.mouse.prototype._mouseUp.call(this,t)},cancel:function(){return this.helper.is(".ui-draggable-dragging")?this._mouseUp({}):this._clear(),this},_getHandle:function(t){var n=!this.options.handle||!e(this.options.handle,this.element).length?!0:!1;return e(this.options.handle,this.element).find("*").andSelf().each(function(){this==t.target&&(n=!0)}),n},_createHelper:function(t){var n=this.options,r=e.isFunction(n.helper)?e(n.helper.apply(this.element[0],[t])):n.helper=="clone"?this.element.clone().removeAttr("id"):this.element;return r.parents("body").length||r.appendTo(n.appendTo=="parent"?this.element[0].parentNode:n.appendTo),r[0]!=this.element[0]&&!/(fixed|absolute)/.test(r.css("position"))&&r.css("position","absolute"),r},_adjustOffsetFromHelper:function(t){typeof t=="string"&&(t=t.split(" ")),e.isArray(t)&&(t={left:+t[0],top:+t[1]||0}),"left"in t&&(this.offset.click.left=t.left+this.margins.left),"right"in t&&(this.offset.click.left=this.helperProportions.width-t.right+this.margins.left),"top"in t&&(this.offset.click.top=t.top+this.margins.top),"bottom"in t&&(this.offset.click.top=this.helperProportions.height-t.bottom+this.margins.top)},_getParentOffset:function(){this.offsetParent=this.helper.offsetParent();var t=this.offsetParent.offset();this.cssPosition=="absolute"&&this.scrollParent[0]!=document&&e.contains(this.scrollParent[0],this.offsetParent[0])&&(t.left+=this.scrollParent.scrollLeft(),t.top+=this.scrollParent.scrollTop());if(this.offsetParent[0]==document.body||this.offsetParent[0].tagName&&this.offsetParent[0].tagName.toLowerCase()=="html"&&e.browser.msie)t={top:0,left:0};return{top:t.top+(parseInt(this.offsetParent.css("borderTopWidth"),10)||0),left:t.left+(parseInt(this.offsetParent.css("borderLeftWidth"),10)||0)}},_getRelativeOffset:function(){if(this.cssPosition=="relative"){var e=this.element.position();return{top:e.top-(parseInt(this.helper.css("top"),10)||0)+this.scrollParent.scrollTop(),left:e.left-(parseInt(this.helper.css("left"),10)||0)+this.scrollParent.scrollLeft()}}return{top:0,left:0}},_cacheMargins:function(){this.margins={left:parseInt(this.element.css("marginLeft"),10)||0,top:parseInt(this.element.css("marginTop"),10)||0,right:parseInt(this.element.css("marginRight"),10)||0,bottom:parseInt(this.element.css("marginBottom"),10)||0}},_cacheHelperProportions:function(){this.helperProportions={width:this.helper.outerWidth(),height:this.helper.outerHeight()}},_setContainment:function(){var t=this.options;t.containment=="parent"&&(t.containment=this.helper[0].parentNode);if(t.containment=="document"||t.containment=="window")this.containment=[t.containment=="document"?0:e(window).scrollLeft()-this.offset.relative.left-this.offset.parent.left,t.containment=="document"?0:e(window).scrollTop()-this.offset.relative.top-this.offset.parent.top,(t.containment=="document"?0:e(window).scrollLeft())+e(t.containment=="document"?document:window).width()-this.helperProportions.width-this.margins.left,(t.containment=="document"?0:e(window).scrollTop())+(e(t.containment=="document"?document:window).height()||document.body.parentNode.scrollHeight)-this.helperProportions.height-this.margins.top];if(!/^(document|window|parent)$/.test(t.containment)&&t.containment.constructor!=Array){var n=e(t.containment),r=n[0];if(!r)return;var i=n.offset(),s=e(r).css("overflow")!="hidden";this.containment=[(parseInt(e(r).css("borderLeftWidth"),10)||0)+(parseInt(e(r).css("paddingLeft"),10)||0),(parseInt(e(r).css("borderTopWidth"),10)||0)+(parseInt(e(r).css("paddingTop"),10)||0),(s?Math.max(r.scrollWidth,r.offsetWidth):r.offsetWidth)-(parseInt(e(r).css("borderLeftWidth"),10)||0)-(parseInt(e(r).css("paddingRight"),10)||0)-this.helperProportions.width-this.margins.left-this.margins.right,(s?Math.max(r.scrollHeight,r.offsetHeight):r.offsetHeight)-(parseInt(e(r).css("borderTopWidth"),10)||0)-(parseInt(e(r).css("paddingBottom"),10)||0)-this.helperProportions.height-this.margins.top-this.margins.bottom],this.relative_container=n}else t.containment.constructor==Array&&(this.containment=t.containment)},_convertPositionTo:function(t,n){n||(n=this.position);var r=t=="absolute"?1:-1,i=this.options,s=this.cssPosition!="absolute"||this.scrollParent[0]!=document&&!!e.contains(this.scrollParent[0],this.offsetParent[0])?this.scrollParent:this.offsetParent,o=/(html|body)/i.test(s[0].tagName);return{top:n.top+this.offset.relative.top*r+this.offset.parent.top*r-(this.cssPosition=="fixed"?-this.scrollParent.scrollTop():o?0:s.scrollTop())*r,left:n.left+this.offset.relative.left*r+this.offset.parent.left*r-(this.cssPosition=="fixed"?-this.scrollParent.scrollLeft():o?0:s.scrollLeft())*r}},_generatePosition:function(t){var n=this.options,r=this.cssPosition!="absolute"||this.scrollParent[0]!=document&&!!e.contains(this.scrollParent[0],this.offsetParent[0])?this.scrollParent:this.offsetParent,i=/(html|body)/i.test(r[0].tagName),s=t.pageX,o=t.pageY;if(this.originalPosition){var u;if(this.containment){if(this.relative_container){var a=this.relative_container.offset();u=[this.containment[0]+a.left,this.containment[1]+a.top,this.containment[2]+a.left,this.containment[3]+a.top]}else u=this.containment;t.pageX-this.offset.click.left<u[0]&&(s=u[0]+this.offset.click.left),t.pageY-this.offset.click.top<u[1]&&(o=u[1]+this.offset.click.top),t.pageX-this.offset.click.left>u[2]&&(s=u[2]+this.offset.click.left),t.pageY-this.offset.click.top>u[3]&&(o=u[3]+this.offset.click.top)}if(n.grid){var f=n.grid[1]?this.originalPageY+Math.round((o-this.originalPageY)/n.grid[1])*n.grid[1]:this.originalPageY;o=u?f-this.offset.click.top<u[1]||f-this.offset.click.top>u[3]?f-this.offset.click.top<u[1]?f+n.grid[1]:f-n.grid[1]:f:f;var l=n.grid[0]?this.originalPageX+Math.round((s-this.originalPageX)/n.grid[0])*n.grid[0]:this.originalPageX;s=u?l-this.offset.click.left<u[0]||l-this.offset.click.left>u[2]?l-this.offset.click.left<u[0]?l+n.grid[0]:l-n.grid[0]:l:l}}return{top:o-this.offset.click.top-this.offset.relative.top-this.offset.parent.top+(this.cssPosition=="fixed"?-this.scrollParent.scrollTop():i?0:r.scrollTop()),left:s-this.offset.click.left-this.offset.relative.left-this.offset.parent.left+(this.cssPosition=="fixed"?-this.scrollParent.scrollLeft():i?0:r.scrollLeft())}},_clear:function(){this.helper.removeClass("ui-draggable-dragging"),this.helper[0]!=this.element[0]&&!this.cancelHelperRemoval&&this.helper.remove(),this.helper=null,this.cancelHelperRemoval=!1},_trigger:function(t,n,r){return r=r||this._uiHash(),e.ui.plugin.call(this,t,[n,r]),t=="drag"&&(this.positionAbs=this._convertPositionTo("absolute")),e.Widget.prototype._trigger.call(this,t,n,r)},plugins:{},_uiHash:function(e){return{helper:this.helper,position:this.position,originalPosition:this.originalPosition,offset:this.positionAbs}}}),e.ui.plugin.add("draggable","connectToSortable",{start:function(t,n){var r=e(this).data("draggable"),i=r.options,s=e.extend({},n,{item:r.element});r.sortables=[],e(i.connectToSortable).each(function(){var n=e.data(this,"sortable");n&&!n.options.disabled&&(r.sortables.push({instance:n,shouldRevert:n.options.revert}),n.refreshPositions(),n._trigger("activate",t,s))})},stop:function(t,n){var r=e(this).data("draggable"),i=e.extend({},n,{item:r.element});e.each(r.sortables,function(){this.instance.isOver?(this.instance.isOver=0,r.cancelHelperRemoval=!0,this.instance.cancelHelperRemoval=!1,this.shouldRevert&&(this.instance.options.revert=!0),this.instance._mouseStop(t),this.instance.options.helper=this.instance.options._helper,r.options.helper=="original"&&this.instance.currentItem.css({top:"auto",left:"auto"})):(this.instance.cancelHelperRemoval=!1,this.instance._trigger("deactivate",t,i))})},drag:function(t,n){var r=e(this).data("draggable"),i=this,s=function(t){var n=this.offset.click.top,r=this.offset.click.left,i=this.positionAbs.top,s=this.positionAbs.left,o=t.height,u=t.width,a=t.top,f=t.left;return e.ui.isOver(i+n,s+r,a,f,o,u)};e.each(r.sortables,function(s){this.instance.positionAbs=r.positionAbs,this.instance.helperProportions=r.helperProportions,this.instance.offset.click=r.offset.click,this.instance._intersectsWith(this.instance.containerCache)?(this.instance.isOver||(this.instance.isOver=1,this.instance.currentItem=e(i).clone().removeAttr("id").appendTo(this.instance.element).data("sortable-item",!0),this.instance.options._helper=this.instance.options.helper,this.instance.options.helper=function(){return n.helper[0]},t.target=this.instance.currentItem[0],this.instance._mouseCapture(t,!0),this.instance._mouseStart(t,!0,!0),this.instance.offset.click.top=r.offset.click.top,this.instance.offset.click.left=r.offset.click.left,this.instance.offset.parent.left-=r.offset.parent.left-this.instance.offset.parent.left,this.instance.offset.parent.top-=r.offset.parent.top-this.instance.offset.parent.top,r._trigger("toSortable",t),r.dropped=this.instance.element,r.currentItem=r.element,this.instance.fromOutside=r),this.instance.currentItem&&this.instance._mouseDrag(t)):this.instance.isOver&&(this.instance.isOver=0,this.instance.cancelHelperRemoval=!0,this.instance.options.revert=!1,this.instance._trigger("out",t,this.instance._uiHash(this.instance)),this.instance._mouseStop(t,!0),this.instance.options.helper=this.instance.options._helper,this.instance.currentItem.remove(),this.instance.placeholder&&this.instance.placeholder.remove(),r._trigger("fromSortable",t),r.dropped=!1)})}}),e.ui.plugin.add("draggable","cursor",{start:function(t,n){var r=e("body"),i=e(this).data("draggable").options;r.css("cursor")&&(i._cursor=r.css("cursor")),r.css("cursor",i.cursor)},stop:function(t,n){var r=e(this).data("draggable").options;r._cursor&&e("body").css("cursor",r._cursor)}}),e.ui.plugin.add("draggable","opacity",{start:function(t,n){var r=e(n.helper),i=e(this).data("draggable").options;r.css("opacity")&&(i._opacity=r.css("opacity")),r.css("opacity",i.opacity)},stop:function(t,n){var r=e(this).data("draggable").options;r._opacity&&e(n.helper).css("opacity",r._opacity)}}),e.ui.plugin.add("draggable","scroll",{start:function(t,n){var r=e(this).data("draggable");r.scrollParent[0]!=document&&r.scrollParent[0].tagName!="HTML"&&(r.overflowOffset=r.scrollParent.offset())},drag:function(t,n){var r=e(this).data("draggable"),i=r.options,s=!1;if(r.scrollParent[0]!=document&&r.scrollParent[0].tagName!="HTML"){if(!i.axis||i.axis!="x")r.overflowOffset.top+r.scrollParent[0].offsetHeight-t.pageY<i.scrollSensitivity?r.scrollParent[0].scrollTop=s=r.scrollParent[0].scrollTop+i.scrollSpeed:t.pageY-r.overflowOffset.top<i.scrollSensitivity&&(r.scrollParent[0].scrollTop=s=r.scrollParent[0].scrollTop-i.scrollSpeed);if(!i.axis||i.axis!="y")r.overflowOffset.left+r.scrollParent[0].offsetWidth-t.pageX<i.scrollSensitivity?r.scrollParent[0].scrollLeft=s=r.scrollParent[0].scrollLeft+i.scrollSpeed:t.pageX-r.overflowOffset.left<i.scrollSensitivity&&(r.scrollParent[0].scrollLeft=s=r.scrollParent[0].scrollLeft-i.scrollSpeed)}else{if(!i.axis||i.axis!="x")t.pageY-e(document).scrollTop()<i.scrollSensitivity?s=e(document).scrollTop(e(document).scrollTop()-i.scrollSpeed):e(window).height()-(t.pageY-e(document).scrollTop())<i.scrollSensitivity&&(s=e(document).scrollTop(e(document).scrollTop()+i.scrollSpeed));if(!i.axis||i.axis!="y")t.pageX-e(document).scrollLeft()<i.scrollSensitivity?s=e(document).scrollLeft(e(document).scrollLeft()-i.scrollSpeed):e(window).width()-(t.pageX-e(document).scrollLeft())<i.scrollSensitivity&&(s=e(document).scrollLeft(e(document).scrollLeft()+i.scrollSpeed))}s!==!1&&e.ui.ddmanager&&!i.dropBehaviour&&e.ui.ddmanager.prepareOffsets(r,t)}}),e.ui.plugin.add("draggable","snap",{start:function(t,n){var r=e(this).data("draggable"),i=r.options;r.snapElements=[],e(i.snap.constructor!=String?i.snap.items||":data(draggable)":i.snap).each(function(){var t=e(this),n=t.offset();this!=r.element[0]&&r.snapElements.push({item:this,width:t.outerWidth(),height:t.outerHeight(),top:n.top,left:n.left})})},drag:function(t,n){var r=e(this).data("draggable"),i=r.options,s=i.snapTolerance,o=n.offset.left,u=o+r.helperProportions.width,a=n.offset.top,f=a+r.helperProportions.height;for(var l=r.snapElements.length-1;l>=0;l--){var c=r.snapElements[l].left,h=c+r.snapElements[l].width,p=r.snapElements[l].top,d=p+r.snapElements[l].height;if(!(c-s<o&&o<h+s&&p-s<a&&a<d+s||c-s<o&&o<h+s&&p-s<f&&f<d+s||c-s<u&&u<h+s&&p-s<a&&a<d+s||c-s<u&&u<h+s&&p-s<f&&f<d+s)){r.snapElements[l].snapping&&r.options.snap.release&&r.options.snap.release.call(r.element,t,e.extend(r._uiHash(),{snapItem:r.snapElements[l].item})),r.snapElements[l].snapping=!1;continue}if(i.snapMode!="inner"){var v=Math.abs(p-f)<=s,m=Math.abs(d-a)<=s,g=Math.abs(c-u)<=s,y=Math.abs(h-o)<=s;v&&(n.position.top=r._convertPositionTo("relative",{top:p-r.helperProportions.height,left:0}).top-r.margins.top),m&&(n.position.top=r._convertPositionTo("relative",{top:d,left:0}).top-r.margins.top),g&&(n.position.left=r._convertPositionTo("relative",{top:0,left:c-r.helperProportions.width}).left-r.margins.left),y&&(n.position.left=r._convertPositionTo("relative",{top:0,left:h}).left-r.margins.left)}var b=v||m||g||y;if(i.snapMode!="outer"){var v=Math.abs(p-a)<=s,m=Math.abs(d-f)<=s,g=Math.abs(c-o)<=s,y=Math.abs(h-u)<=s;v&&(n.position.top=r._convertPositionTo("relative",{top:p,left:0}).top-r.margins.top),m&&(n.position.top=r._convertPositionTo("relative",{top:d-r.helperProportions.height,left:0}).top-r.margins.top),g&&(n.position.left=r._convertPositionTo("relative",{top:0,left:c}).left-r.margins.left),y&&(n.position.left=r._convertPositionTo("relative",{top:0,left:h-r.helperProportions.width}).left-r.margins.left)}!r.snapElements[l].snapping&&(v||m||g||y||b)&&r.options.snap.snap&&r.options.snap.snap.call(r.element,t,e.extend(r._uiHash(),{snapItem:r.snapElements[l].item})),r.snapElements[l].snapping=v||m||g||y||b}}}),e.ui.plugin.add("draggable","stack",{start:function(t,n){var r=e(this).data("draggable").options,i=e.makeArray(e(r.stack)).sort(function(t,n){return(parseInt(e(t).css("zIndex"),10)||0)-(parseInt(e(n).css("zIndex"),10)||0)});if(!i.length)return;var s=parseInt(i[0].style.zIndex)||0;e(i).each(function(e){this.style.zIndex=s+e}),this[0].style.zIndex=s+i.length}}),e.ui.plugin.add("draggable","zIndex",{start:function(t,n){var r=e(n.helper),i=e(this).data("draggable").options;r.css("zIndex")&&(i._zIndex=r.css("zIndex")),r.css("zIndex",i.zIndex)},stop:function(t,n){var r=e(this).data("draggable").options;r._zIndex&&e(n.helper).css("zIndex",r._zIndex)}})})(jQuery);(function(e,t){e.widget("ui.droppable",{version:"1.9.0",widgetEventPrefix:"drop",options:{accept:"*",activeClass:!1,addClasses:!0,greedy:!1,hoverClass:!1,scope:"default",tolerance:"intersect"},_create:function(){var t=this.options,n=t.accept;this.isover=0,this.isout=1,this.accept=e.isFunction(n)?n:function(e){return e.is(n)},this.proportions={width:this.element[0].offsetWidth,height:this.element[0].offsetHeight},e.ui.ddmanager.droppables[t.scope]=e.ui.ddmanager.droppables[t.scope]||[],e.ui.ddmanager.droppables[t.scope].push(this),t.addClasses&&this.element.addClass("ui-droppable")},_destroy:function(){var t=e.ui.ddmanager.droppables[this.options.scope];for(var n=0;n<t.length;n++)t[n]==this&&t.splice(n,1);this.element.removeClass("ui-droppable ui-droppable-disabled")},_setOption:function(t,n){t=="accept"&&(this.accept=e.isFunction(n)?n:function(e){return e.is(n)}),e.Widget.prototype._setOption.apply(this,arguments)},_activate:function(t){var n=e.ui.ddmanager.current;this.options.activeClass&&this.element.addClass(this.options.activeClass),n&&this._trigger("activate",t,this.ui(n))},_deactivate:function(t){var n=e.ui.ddmanager.current;this.options.activeClass&&this.element.removeClass(this.options.activeClass),n&&this._trigger("deactivate",t,this.ui(n))},_over:function(t){var n=e.ui.ddmanager.current;if(!n||(n.currentItem||n.element)[0]==this.element[0])return;this.accept.call(this.element[0],n.currentItem||n.element)&&(this.options.hoverClass&&this.element.addClass(this.options.hoverClass),this._trigger("over",t,this.ui(n)))},_out:function(t){var n=e.ui.ddmanager.current;if(!n||(n.currentItem||n.element)[0]==this.element[0])return;this.accept.call(this.element[0],n.currentItem||n.element)&&(this.options.hoverClass&&this.element.removeClass(this.options.hoverClass),this._trigger("out",t,this.ui(n)))},_drop:function(t,n){var r=n||e.ui.ddmanager.current;if(!r||(r.currentItem||r.element)[0]==this.element[0])return!1;var i=!1;return this.element.find(":data(droppable)").not(".ui-draggable-dragging").each(function(){var t=e.data(this,"droppable");if(t.options.greedy&&!t.options.disabled&&t.options.scope==r.options.scope&&t.accept.call(t.element[0],r.currentItem||r.element)&&e.ui.intersect(r,e.extend(t,{offset:t.element.offset()}),t.options.tolerance))return i=!0,!1}),i?!1:this.accept.call(this.element[0],r.currentItem||r.element)?(this.options.activeClass&&this.element.removeClass(this.options.activeClass),this.options.hoverClass&&this.element.removeClass(this.options.hoverClass),this._trigger("drop",t,this.ui(r)),this.element):!1},ui:function(e){return{draggable:e.currentItem||e.element,helper:e.helper,position:e.position,offset:e.positionAbs}}}),e.ui.intersect=function(t,n,r){if(!n.offset)return!1;var i=(t.positionAbs||t.position.absolute).left,s=i+t.helperProportions.width,o=(t.positionAbs||t.position.absolute).top,u=o+t.helperProportions.height,a=n.offset.left,f=a+n.proportions.width,l=n.offset.top,c=l+n.proportions.height;switch(r){case"fit":return a<=i&&s<=f&&l<=o&&u<=c;case"intersect":return a<i+t.helperProportions.width/2&&s-t.helperProportions.width/2<f&&l<o+t.helperProportions.height/2&&u-t.helperProportions.height/2<c;case"pointer":var h=(t.positionAbs||t.position.absolute).left+(t.clickOffset||t.offset.click).left,p=(t.positionAbs||t.position.absolute).top+(t.clickOffset||t.offset.click).top,d=e.ui.isOver(p,h,l,a,n.proportions.height,n.proportions.width);return d;case"touch":return(o>=l&&o<=c||u>=l&&u<=c||o<l&&u>c)&&(i>=a&&i<=f||s>=a&&s<=f||i<a&&s>f);default:return!1}},e.ui.ddmanager={current:null,droppables:{"default":[]},prepareOffsets:function(t,n){var r=e.ui.ddmanager.droppables[t.options.scope]||[],i=n?n.type:null,s=(t.currentItem||t.element).find(":data(droppable)").andSelf();e:for(var o=0;o<r.length;o++){if(r[o].options.disabled||t&&!r[o].accept.call(r[o].element[0],t.currentItem||t.element))continue;for(var u=0;u<s.length;u++)if(s[u]==r[o].element[0]){r[o].proportions.height=0;continue e}r[o].visible=r[o].element.css("display")!="none";if(!r[o].visible)continue;i=="mousedown"&&r[o]._activate.call(r[o],n),r[o].offset=r[o].element.offset(),r[o].proportions={width:r[o].element[0].offsetWidth,height:r[o].element[0].offsetHeight}}},drop:function(t,n){var r=!1;return e.each(e.ui.ddmanager.droppables[t.options.scope]||[],function(){if(!this.options)return;!this.options.disabled&&this.visible&&e.ui.intersect(t,this,this.options.tolerance)&&(r=this._drop.call(this,n)||r),!this.options.disabled&&this.visible&&this.accept.call(this.element[0],t.currentItem||t.element)&&(this.isout=1,this.isover=0,this._deactivate.call(this,n))}),r},dragStart:function(t,n){t.element.parentsUntil("body").bind("scroll.droppable",function(){t.options.refreshPositions||e.ui.ddmanager.prepareOffsets(t,n)})},drag:function(t,n){t.options.refreshPositions&&e.ui.ddmanager.prepareOffsets(t,n),e.each(e.ui.ddmanager.droppables[t.options.scope]||[],function(){if(this.options.disabled||this.greedyChild||!this.visible)return;var r=e.ui.intersect(t,this,this.options.tolerance),i=!r&&this.isover==1?"isout":r&&this.isover==0?"isover":null;if(!i)return;var s;if(this.options.greedy){var o=this.options.scope,u=this.element.parents(":data(droppable)").filter(function(){return e.data(this,"droppable").options.scope===o});u.length&&(s=e.data(u[0],"droppable"),s.greedyChild=i=="isover"?1:0)}s&&i=="isover"&&(s.isover=0,s.isout=1,s._out.call(s,n)),this[i]=1,this[i=="isout"?"isover":"isout"]=0,this[i=="isover"?"_over":"_out"].call(this,n),s&&i=="isout"&&(s.isout=0,s.isover=1,s._over.call(s,n))})},dragStop:function(t,n){t.element.parentsUntil("body").unbind("scroll.droppable"),t.options.refreshPositions||e.ui.ddmanager.prepareOffsets(t,n)}}})(jQuery);(function(e,t){e.widget("ui.resizable",e.ui.mouse,{version:"1.9.0",widgetEventPrefix:"resize",options:{alsoResize:!1,animate:!1,animateDuration:"slow",animateEasing:"swing",aspectRatio:!1,autoHide:!1,containment:!1,ghost:!1,grid:!1,handles:"e,s,se",helper:!1,maxHeight:null,maxWidth:null,minHeight:10,minWidth:10,zIndex:1e3},_create:function(){var t=this,n=this.options;this.element.addClass("ui-resizable"),e.extend(this,{_aspectRatio:!!n.aspectRatio,aspectRatio:n.aspectRatio,originalElement:this.element,_proportionallyResizeElements:[],_helper:n.helper||n.ghost||n.animate?n.helper||"ui-resizable-helper":null}),this.element[0].nodeName.match(/canvas|textarea|input|select|button|img/i)&&(this.element.wrap(e('<div class="ui-wrapper" style="overflow: hidden;"></div>').css({position:this.element.css("position"),width:this.element.outerWidth(),height:this.element.outerHeight(),top:this.element.css("top"),left:this.element.css("left")})),this.element=this.element.parent().data("resizable",this.element.data("resizable")),this.elementIsWrapper=!0,this.element.css({marginLeft:this.originalElement.css("marginLeft"),marginTop:this.originalElement.css("marginTop"),marginRight:this.originalElement.css("marginRight"),marginBottom:this.originalElement.css("marginBottom")}),this.originalElement.css({marginLeft:0,marginTop:0,marginRight:0,marginBottom:0}),this.originalResizeStyle=this.originalElement.css("resize"),this.originalElement.css("resize","none"),this._proportionallyResizeElements.push(this.originalElement.css({position:"static",zoom:1,display:"block"})),this.originalElement.css({margin:this.originalElement.css("margin")}),this._proportionallyResize()),this.handles=n.handles||(e(".ui-resizable-handle",this.element).length?{n:".ui-resizable-n",e:".ui-resizable-e",s:".ui-resizable-s",w:".ui-resizable-w",se:".ui-resizable-se",sw:".ui-resizable-sw",ne:".ui-resizable-ne",nw:".ui-resizable-nw"}:"e,s,se");if(this.handles.constructor==String){this.handles=="all"&&(this.handles="n,e,s,w,se,sw,ne,nw");var r=this.handles.split(",");this.handles={};for(var i=0;i<r.length;i++){var s=e.trim(r[i]),o="ui-resizable-"+s,u=e('<div class="ui-resizable-handle '+o+'"></div>');u.css({zIndex:n.zIndex}),"se"==s&&u.addClass("ui-icon ui-icon-gripsmall-diagonal-se"),this.handles[s]=".ui-resizable-"+s,this.element.append(u)}}this._renderAxis=function(t){t=t||this.element;for(var n in this.handles){this.handles[n].constructor==String&&(this.handles[n]=e(this.handles[n],this.element).show());if(this.elementIsWrapper&&this.originalElement[0].nodeName.match(/textarea|input|select|button/i)){var r=e(this.handles[n],this.element),i=0;i=/sw|ne|nw|se|n|s/.test(n)?r.outerHeight():r.outerWidth();var s=["padding",/ne|nw|n/.test(n)?"Top":/se|sw|s/.test(n)?"Bottom":/^e$/.test(n)?"Right":"Left"].join("");t.css(s,i),this._proportionallyResize()}if(!e(this.handles[n]).length)continue}},this._renderAxis(this.element),this._handles=e(".ui-resizable-handle",this.element).disableSelection(),this._handles.mouseover(function(){if(!t.resizing){if(this.className)var e=this.className.match(/ui-resizable-(se|sw|ne|nw|n|e|s|w)/i);t.axis=e&&e[1]?e[1]:"se"}}),n.autoHide&&(this._handles.hide(),e(this.element).addClass("ui-resizable-autohide").mouseenter(function(){if(n.disabled)return;e(this).removeClass("ui-resizable-autohide"),t._handles.show()}).mouseleave(function(){if(n.disabled)return;t.resizing||(e(this).addClass("ui-resizable-autohide"),t._handles.hide())})),this._mouseInit()},_destroy:function(){this._mouseDestroy();var t=function(t){e(t).removeClass("ui-resizable ui-resizable-disabled ui-resizable-resizing").removeData("resizable").removeData("ui-resizable").unbind(".resizable").find(".ui-resizable-handle").remove()};if(this.elementIsWrapper){t(this.element);var n=this.element;n.after(this.originalElement.css({position:n.css("position"),width:n.outerWidth(),height:n.outerHeight(),top:n.css("top"),left:n.css("left")})).remove()}return this.originalElement.css("resize",this.originalResizeStyle),t(this.originalElement),this},_mouseCapture:function(t){var n=!1;for(var r in this.handles)e(this.handles[r])[0]==t.target&&(n=!0);return!this.options.disabled&&n},_mouseStart:function(t){var r=this.options,i=this.element.position(),s=this.element;this.resizing=!0,this.documentScroll={top:e(document).scrollTop(),left:e(document).scrollLeft()},(s.is(".ui-draggable")||/absolute/.test(s.css("position")))&&s.css({position:"absolute",top:i.top,left:i.left}),this._renderProxy();var o=n(this.helper.css("left")),u=n(this.helper.css("top"));r.containment&&(o+=e(r.containment).scrollLeft()||0,u+=e(r.containment).scrollTop()||0),this.offset=this.helper.offset(),this.position={left:o,top:u},this.size=this._helper?{width:s.outerWidth(),height:s.outerHeight()}:{width:s.width(),height:s.height()},this.originalSize=this._helper?{width:s.outerWidth(),height:s.outerHeight()}:{width:s.width(),height:s.height()},this.originalPosition={left:o,top:u},this.sizeDiff={width:s.outerWidth()-s.width(),height:s.outerHeight()-s.height()},this.originalMousePosition={left:t.pageX,top:t.pageY},this.aspectRatio=typeof r.aspectRatio=="number"?r.aspectRatio:this.originalSize.width/this.originalSize.height||1;var a=e(".ui-resizable-"+this.axis).css("cursor");return e("body").css("cursor",a=="auto"?this.axis+"-resize":a),s.addClass("ui-resizable-resizing"),this._propagate("start",t),!0},_mouseDrag:function(e){var t=this.helper,n=this.options,r={},i=this,s=this.originalMousePosition,o=this.axis,u=e.pageX-s.left||0,a=e.pageY-s.top||0,f=this._change[o];if(!f)return!1;var l=f.apply(this,[e,u,a]);this._updateVirtualBoundaries(e.shiftKey);if(this._aspectRatio||e.shiftKey)l=this._updateRatio(l,e);return l=this._respectSize(l,e),this._propagate("resize",e),t.css({top:this.position.top+"px",left:this.position.left+"px",width:this.size.width+"px",height:this.size.height+"px"}),!this._helper&&this._proportionallyResizeElements.length&&this._proportionallyResize(),this._updateCache(l),this._trigger("resize",e,this.ui()),!1},_mouseStop:function(t){this.resizing=!1;var n=this.options,r=this;if(this._helper){var i=this._proportionallyResizeElements,s=i.length&&/textarea/i.test(i[0].nodeName),o=s&&e.ui.hasScroll(i[0],"left")?0:r.sizeDiff.height,u=s?0:r.sizeDiff.width,a={width:r.helper.width()-u,height:r.helper.height()-o},f=parseInt(r.element.css("left"),10)+(r.position.left-r.originalPosition.left)||null,l=parseInt(r.element.css("top"),10)+(r.position.top-r.originalPosition.top)||null;n.animate||this.element.css(e.extend(a,{top:l,left:f})),r.helper.height(r.size.height),r.helper.width(r.size.width),this._helper&&!n.animate&&this._proportionallyResize()}return e("body").css("cursor","auto"),this.element.removeClass("ui-resizable-resizing"),this._propagate("stop",t),this._helper&&this.helper.remove(),!1},_updateVirtualBoundaries:function(e){var t=this.options,n,i,s,o,u;u={minWidth:r(t.minWidth)?t.minWidth:0,maxWidth:r(t.maxWidth)?t.maxWidth:Infinity,minHeight:r(t.minHeight)?t.minHeight:0,maxHeight:r(t.maxHeight)?t.maxHeight:Infinity};if(this._aspectRatio||e)n=u.minHeight*this.aspectRatio,s=u.minWidth/this.aspectRatio,i=u.maxHeight*this.aspectRatio,o=u.maxWidth/this.aspectRatio,n>u.minWidth&&(u.minWidth=n),s>u.minHeight&&(u.minHeight=s),i<u.maxWidth&&(u.maxWidth=i),o<u.maxHeight&&(u.maxHeight=o);this._vBoundaries=u},_updateCache:function(e){var t=this.options;this.offset=this.helper.offset(),r(e.left)&&(this.position.left=e.left),r(e.top)&&(this.position.top=e.top),r(e.height)&&(this.size.height=e.height),r(e.width)&&(this.size.width=e.width)},_updateRatio:function(e,t){var n=this.options,i=this.position,s=this.size,o=this.axis;return r(e.height)?e.width=e.height*this.aspectRatio:r(e.width)&&(e.height=e.width/this.aspectRatio),o=="sw"&&(e.left=i.left+(s.width-e.width),e.top=null),o=="nw"&&(e.top=i.top+(s.height-e.height),e.left=i.left+(s.width-e.width)),e},_respectSize:function(e,t){var n=this.helper,i=this._vBoundaries,s=this._aspectRatio||t.shiftKey,o=this.axis,u=r(e.width)&&i.maxWidth&&i.maxWidth<e.width,a=r(e.height)&&i.maxHeight&&i.maxHeight<e.height,f=r(e.width)&&i.minWidth&&i.minWidth>e.width,l=r(e.height)&&i.minHeight&&i.minHeight>e.height;f&&(e.width=i.minWidth),l&&(e.height=i.minHeight),u&&(e.width=i.maxWidth),a&&(e.height=i.maxHeight);var c=this.originalPosition.left+this.originalSize.width,h=this.position.top+this.size.height,p=/sw|nw|w/.test(o),d=/nw|ne|n/.test(o);f&&p&&(e.left=c-i.minWidth),u&&p&&(e.left=c-i.maxWidth),l&&d&&(e.top=h-i.minHeight),a&&d&&(e.top=h-i.maxHeight);var v=!e.width&&!e.height;return v&&!e.left&&e.top?e.top=null:v&&!e.top&&e.left&&(e.left=null),e},_proportionallyResize:function(){var t=this.options;if(!this._proportionallyResizeElements.length)return;var n=this.helper||this.element;for(var r=0;r<this._proportionallyResizeElements.length;r++){var i=this._proportionallyResizeElements[r];if(!this.borderDif){var s=[i.css("borderTopWidth"),i.css("borderRightWidth"),i.css("borderBottomWidth"),i.css("borderLeftWidth")],o=[i.css("paddingTop"),i.css("paddingRight"),i.css("paddingBottom"),i.css("paddingLeft")];this.borderDif=e.map(s,function(e,t){var n=parseInt(e,10)||0,r=parseInt(o[t],10)||0;return n+r})}i.css({height:n.height()-this.borderDif[0]-this.borderDif[2]||0,width:n.width()-this.borderDif[1]-this.borderDif[3]||0})}},_renderProxy:function(){var t=this.element,n=this.options;this.elementOffset=t.offset();if(this._helper){this.helper=this.helper||e('<div style="overflow:hidden;"></div>');var r=e.browser.msie&&e.browser.version<7,i=r?1:0,s=r?2:-1;this.helper.addClass(this._helper).css({width:this.element.outerWidth()+s,height:this.element.outerHeight()+s,position:"absolute",left:this.elementOffset.left-i+"px",top:this.elementOffset.top-i+"px",zIndex:++n.zIndex}),this.helper.appendTo("body").disableSelection()}else this.helper=this.element},_change:{e:function(e,t,n){return{width:this.originalSize.width+t}},w:function(e,t,n){var r=this.options,i=this.originalSize,s=this.originalPosition;return{left:s.left+t,width:i.width-t}},n:function(e,t,n){var r=this.options,i=this.originalSize,s=this.originalPosition;return{top:s.top+n,height:i.height-n}},s:function(e,t,n){return{height:this.originalSize.height+n}},se:function(t,n,r){return e.extend(this._change.s.apply(this,arguments),this._change.e.apply(this,[t,n,r]))},sw:function(t,n,r){return e.extend(this._change.s.apply(this,arguments),this._change.w.apply(this,[t,n,r]))},ne:function(t,n,r){return e.extend(this._change.n.apply(this,arguments),this._change.e.apply(this,[t,n,r]))},nw:function(t,n,r){return e.extend(this._change.n.apply(this,arguments),this._change.w.apply(this,[t,n,r]))}},_propagate:function(t,n){e.ui.plugin.call(this,t,[n,this.ui()]),t!="resize"&&this._trigger(t,n,this.ui())},plugins:{},ui:function(){return{originalElement:this.originalElement,element:this.element,helper:this.helper,position:this.position,size:this.size,originalSize:this.originalSize,originalPosition:this.originalPosition}}}),e.ui.plugin.add("resizable","alsoResize",{start:function(t,n){var r=e(this).data("resizable"),i=r.options,s=function(t){e(t).each(function(){var t=e(this);t.data("resizable-alsoresize",{width:parseInt(t.width(),10),height:parseInt(t.height(),10),left:parseInt(t.css("left"),10),top:parseInt(t.css("top"),10)})})};typeof i.alsoResize=="object"&&!i.alsoResize.parentNode?i.alsoResize.length?(i.alsoResize=i.alsoResize[0],s(i.alsoResize)):e.each(i.alsoResize,function(e){s(e)}):s(i.alsoResize)},resize:function(t,n){var r=e(this).data("resizable"),i=r.options,s=r.originalSize,o=r.originalPosition,u={height:r.size.height-s.height||0,width:r.size.width-s.width||0,top:r.position.top-o.top||0,left:r.position.left-o.left||0},a=function(t,r){e(t).each(function(){var t=e(this),i=e(this).data("resizable-alsoresize"),s={},o=r&&r.length?r:t.parents(n.originalElement[0]).length?["width","height"]:["width","height","top","left"];e.each(o,function(e,t){var n=(i[t]||0)+(u[t]||0);n&&n>=0&&(s[t]=n||null)}),t.css(s)})};typeof i.alsoResize=="object"&&!i.alsoResize.nodeType?e.each(i.alsoResize,function(e,t){a(e,t)}):a(i.alsoResize)},stop:function(t,n){e(this).removeData("resizable-alsoresize")}}),e.ui.plugin.add("resizable","animate",{stop:function(t,n){var r=e(this).data("resizable"),i=r.options,s=r._proportionallyResizeElements,o=s.length&&/textarea/i.test(s[0].nodeName),u=o&&e.ui.hasScroll(s[0],"left")?0:r.sizeDiff.height,a=o?0:r.sizeDiff.width,f={width:r.size.width-a,height:r.size.height-u},l=parseInt(r.element.css("left"),10)+(r.position.left-r.originalPosition.left)||null,c=parseInt(r.element.css("top"),10)+(r.position.top-r.originalPosition.top)||null;r.element.animate(e.extend(f,c&&l?{top:c,left:l}:{}),{duration:i.animateDuration,easing:i.animateEasing,step:function(){var n={width:parseInt(r.element.css("width"),10),height:parseInt(r.element.css("height"),10),top:parseInt(r.element.css("top"),10),left:parseInt(r.element.css("left"),10)};s&&s.length&&e(s[0]).css({width:n.width,height:n.height}),r._updateCache(n),r._propagate("resize",t)}})}}),e.ui.plugin.add("resizable","containment",{start:function(t,r){var i=e(this).data("resizable"),s=i.options,o=i.element,u=s.containment,a=u instanceof e?u.get(0):/parent/.test(u)?o.parent().get(0):u;if(!a)return;i.containerElement=e(a);if(/document/.test(u)||u==document)i.containerOffset={left:0,top:0},i.containerPosition={left:0,top:0},i.parentData={element:e(document),left:0,top:0,width:e(document).width(),height:e(document).height()||document.body.parentNode.scrollHeight};else{var f=e(a),l=[];e(["Top","Right","Left","Bottom"]).each(function(e,t){l[e]=n(f.css("padding"+t))}),i.containerOffset=f.offset(),i.containerPosition=f.position(),i.containerSize={height:f.innerHeight()-l[3],width:f.innerWidth()-l[1]};var c=i.containerOffset,h=i.containerSize.height,p=i.containerSize.width,d=e.ui.hasScroll(a,"left")?a.scrollWidth:p,v=e.ui.hasScroll(a)?a.scrollHeight:h;i.parentData={element:a,left:c.left,top:c.top,width:d,height:v}}},resize:function(t,n){var r=e(this).data("resizable"),i=r.options,s=r.containerSize,o=r.containerOffset,u=r.size,a=r.position,f=r._aspectRatio||t.shiftKey,l={top:0,left:0},c=r.containerElement;c[0]!=document&&/static/.test(c.css("position"))&&(l=o),a.left<(r._helper?o.left:0)&&(r.size.width=r.size.width+(r._helper?r.position.left-o.left:r.position.left-l.left),f&&(r.size.height=r.size.width/r.aspectRatio),r.position.left=i.helper?o.left:0),a.top<(r._helper?o.top:0)&&(r.size.height=r.size.height+(r._helper?r.position.top-o.top:r.position.top),f&&(r.size.width=r.size.height*r.aspectRatio),r.position.top=r._helper?o.top:0),r.offset.left=r.parentData.left+r.position.left,r.offset.top=r.parentData.top+r.position.top;var h=Math.abs((r._helper?r.offset.left-l.left:r.offset.left-l.left)+r.sizeDiff.width),p=Math.abs((r._helper?r.offset.top-l.top:r.offset.top-o.top)+r.sizeDiff.height),d=r.containerElement.get(0)==r.element.parent().get(0),v=/relative|absolute/.test(r.containerElement.css("position"));d&&v&&(h-=r.parentData.left),h+r.size.width>=r.parentData.width&&(r.size.width=r.parentData.width-h,f&&(r.size.height=r.size.width/r.aspectRatio)),p+r.size.height>=r.parentData.height&&(r.size.height=r.parentData.height-p,f&&(r.size.width=r.size.height*r.aspectRatio))},stop:function(t,n){var r=e(this).data("resizable"),i=r.options,s=r.position,o=r.containerOffset,u=r.containerPosition,a=r.containerElement,f=e(r.helper),l=f.offset(),c=f.outerWidth()-r.sizeDiff.width,h=f.outerHeight()-r.sizeDiff.height;r._helper&&!i.animate&&/relative/.test(a.css("position"))&&e(this).css({left:l.left-u.left-o.left,width:c,height:h}),r._helper&&!i.animate&&/static/.test(a.css("position"))&&e(this).css({left:l.left-u.left-o.left,width:c,height:h})}}),e.ui.plugin.add("resizable","ghost",{start:function(t,n){var r=e(this).data("resizable"),i=r.options,s=r.size;r.ghost=r.originalElement.clone(),r.ghost.css({opacity:.25,display:"block",position:"relative",height:s.height,width:s.width,margin:0,left:0,top:0}).addClass("ui-resizable-ghost").addClass(typeof i.ghost=="string"?i.ghost:""),r.ghost.appendTo(r.helper)},resize:function(t,n){var r=e(this).data("resizable"),i=r.options;r.ghost&&r.ghost.css({position:"relative",height:r.size.height,width:r.size.width})},stop:function(t,n){var r=e(this).data("resizable"),i=r.options;r.ghost&&r.helper&&r.helper.get(0).removeChild(r.ghost.get(0))}}),e.ui.plugin.add("resizable","grid",{resize:function(t,n){var r=e(this).data("resizable"),i=r.options,s=r.size,o=r.originalSize,u=r.originalPosition,a=r.axis,f=i._aspectRatio||t.shiftKey;i.grid=typeof i.grid=="number"?[i.grid,i.grid]:i.grid;var l=Math.round((s.width-o.width)/(i.grid[0]||1))*(i.grid[0]||1),c=Math.round((s.height-o.height)/(i.grid[1]||1))*(i.grid[1]||1);/^(se|s|e)$/.test(a)?(r.size.width=o.width+l,r.size.height=o.height+c):/^(ne)$/.test(a)?(r.size.width=o.width+l,r.size.height=o.height+c,r.position.top=u.top-c):/^(sw)$/.test(a)?(r.size.width=o.width+l,r.size.height=o.height+c,r.position.left=u.left-l):(r.size.width=o.width+l,r.size.height=o.height+c,r.position.top=u.top-c,r.position.left=u.left-l)}});var n=function(e){return parseInt(e,10)||0},r=function(e){return!isNaN(parseInt(e,10))}})(jQuery);(function(e,t){e.widget("ui.sortable",e.ui.mouse,{version:"1.9.0",widgetEventPrefix:"sort",ready:!1,options:{appendTo:"parent",axis:!1,connectWith:!1,containment:!1,cursor:"auto",cursorAt:!1,dropOnEmpty:!0,forcePlaceholderSize:!1,forceHelperSize:!1,grid:!1,handle:!1,helper:"original",items:"> *",opacity:!1,placeholder:!1,revert:!1,scroll:!0,scrollSensitivity:20,scrollSpeed:20,scope:"default",tolerance:"intersect",zIndex:1e3},_create:function(){var e=this.options;this.containerCache={},this.element.addClass("ui-sortable"),this.refresh(),this.floating=this.items.length?e.axis==="x"||/left|right/.test(this.items[0].item.css("float"))||/inline|table-cell/.test(this.items[0].item.css("display")):!1,this.offset=this.element.offset(),this._mouseInit(),this.ready=!0},_destroy:function(){this.element.removeClass("ui-sortable ui-sortable-disabled"),this._mouseDestroy();for(var e=this.items.length-1;e>=0;e--)this.items[e].item.removeData(this.widgetName+"-item");return this},_setOption:function(t,n){t==="disabled"?(this.options[t]=n,this.widget().toggleClass("ui-sortable-disabled",!!n)):e.Widget.prototype._setOption.apply(this,arguments)},_mouseCapture:function(t,n){var r=this;if(this.reverting)return!1;if(this.options.disabled||this.options.type=="static")return!1;this._refreshItems(t);var i=null,s=e(t.target).parents().each(function(){if(e.data(this,r.widgetName+"-item")==r)return i=e(this),!1});e.data(t.target,r.widgetName+"-item")==r&&(i=e(t.target));if(!i)return!1;if(this.options.handle&&!n){var o=!1;e(this.options.handle,i).find("*").andSelf().each(function(){this==t.target&&(o=!0)});if(!o)return!1}return this.currentItem=i,this._removeCurrentsFromItems(),!0},_mouseStart:function(t,n,r){var i=this.options;this.currentContainer=this,this.refreshPositions(),this.helper=this._createHelper(t),this._cacheHelperProportions(),this._cacheMargins(),this.scrollParent=this.helper.scrollParent(),this.offset=this.currentItem.offset(),this.offset={top:this.offset.top-this.margins.top,left:this.offset.left-this.margins.left},e.extend(this.offset,{click:{left:t.pageX-this.offset.left,top:t.pageY-this.offset.top},parent:this._getParentOffset(),relative:this._getRelativeOffset()}),this.helper.css("position","absolute"),this.cssPosition=this.helper.css("position"),this.originalPosition=this._generatePosition(t),this.originalPageX=t.pageX,this.originalPageY=t.pageY,i.cursorAt&&this._adjustOffsetFromHelper(i.cursorAt),this.domPosition={prev:this.currentItem.prev()[0],parent:this.currentItem.parent()[0]},this.helper[0]!=this.currentItem[0]&&this.currentItem.hide(),this._createPlaceholder(),i.containment&&this._setContainment(),i.cursor&&(e("body").css("cursor")&&(this._storedCursor=e("body").css("cursor")),e("body").css("cursor",i.cursor)),i.opacity&&(this.helper.css("opacity")&&(this._storedOpacity=this.helper.css("opacity")),this.helper.css("opacity",i.opacity)),i.zIndex&&(this.helper.css("zIndex")&&(this._storedZIndex=this.helper.css("zIndex")),this.helper.css("zIndex",i.zIndex)),this.scrollParent[0]!=document&&this.scrollParent[0].tagName!="HTML"&&(this.overflowOffset=this.scrollParent.offset()),this._trigger("start",t,this._uiHash()),this._preserveHelperProportions||this._cacheHelperProportions();if(!r)for(var s=this.containers.length-1;s>=0;s--)this.containers[s]._trigger("activate",t,this._uiHash(this));return e.ui.ddmanager&&(e.ui.ddmanager.current=this),e.ui.ddmanager&&!i.dropBehaviour&&e.ui.ddmanager.prepareOffsets(this,t),this.dragging=!0,this.helper.addClass("ui-sortable-helper"),this._mouseDrag(t),!0},_mouseDrag:function(t){this.position=this._generatePosition(t),this.positionAbs=this._convertPositionTo("absolute"),this.lastPositionAbs||(this.lastPositionAbs=this.positionAbs);if(this.options.scroll){var n=this.options,r=!1;this.scrollParent[0]!=document&&this.scrollParent[0].tagName!="HTML"?(this.overflowOffset.top+this.scrollParent[0].offsetHeight-t.pageY<n.scrollSensitivity?this.scrollParent[0].scrollTop=r=this.scrollParent[0].scrollTop+n.scrollSpeed:t.pageY-this.overflowOffset.top<n.scrollSensitivity&&(this.scrollParent[0].scrollTop=r=this.scrollParent[0].scrollTop-n.scrollSpeed),this.overflowOffset.left+this.scrollParent[0].offsetWidth-t.pageX<n.scrollSensitivity?this.scrollParent[0].scrollLeft=r=this.scrollParent[0].scrollLeft+n.scrollSpeed:t.pageX-this.overflowOffset.left<n.scrollSensitivity&&(this.scrollParent[0].scrollLeft=r=this.scrollParent[0].scrollLeft-n.scrollSpeed)):(t.pageY-e(document).scrollTop()<n.scrollSensitivity?r=e(document).scrollTop(e(document).scrollTop()-n.scrollSpeed):e(window).height()-(t.pageY-e(document).scrollTop())<n.scrollSensitivity&&(r=e(document).scrollTop(e(document).scrollTop()+n.scrollSpeed)),t.pageX-e(document).scrollLeft()<n.scrollSensitivity?r=e(document).scrollLeft(e(document).scrollLeft()-n.scrollSpeed):e(window).width()-(t.pageX-e(document).scrollLeft())<n.scrollSensitivity&&(r=e(document).scrollLeft(e(document).scrollLeft()+n.scrollSpeed))),r!==!1&&e.ui.ddmanager&&!n.dropBehaviour&&e.ui.ddmanager.prepareOffsets(this,t)}this.positionAbs=this._convertPositionTo("absolute");if(!this.options.axis||this.options.axis!="y")this.helper[0].style.left=this.position.left+"px";if(!this.options.axis||this.options.axis!="x")this.helper[0].style.top=this.position.top+"px";for(var i=this.items.length-1;i>=0;i--){var s=this.items[i],o=s.item[0],u=this._intersectsWithPointer(s);if(!u)continue;if(s.instance!==this.currentContainer)continue;if(o!=this.currentItem[0]&&this.placeholder[u==1?"next":"prev"]()[0]!=o&&!e.contains(this.placeholder[0],o)&&(this.options.type=="semi-dynamic"?!e.contains(this.element[0],o):!0)){this.direction=u==1?"down":"up";if(this.options.tolerance!="pointer"&&!this._intersectsWithSides(s))break;this._rearrange(t,s),this._trigger("change",t,this._uiHash());break}}return this._contactContainers(t),e.ui.ddmanager&&e.ui.ddmanager.drag(this,t),this._trigger("sort",t,this._uiHash()),this.lastPositionAbs=this.positionAbs,!1},_mouseStop:function(t,n){if(!t)return;e.ui.ddmanager&&!this.options.dropBehaviour&&e.ui.ddmanager.drop(this,t);if(this.options.revert){var r=this,i=this.placeholder.offset();this.reverting=!0,e(this.helper).animate({left:i.left-this.offset.parent.left-this.margins.left+(this.offsetParent[0]==document.body?0:this.offsetParent[0].scrollLeft),top:i.top-this.offset.parent.top-this.margins.top+(this.offsetParent[0]==document.body?0:this.offsetParent[0].scrollTop)},parseInt(this.options.revert,10)||500,function(){r._clear(t)})}else this._clear(t,n);return!1},cancel:function(){if(this.dragging){this._mouseUp({target:null}),this.options.helper=="original"?this.currentItem.css(this._storedCSS).removeClass("ui-sortable-helper"):this.currentItem.show();for(var t=this.containers.length-1;t>=0;t--)this.containers[t]._trigger("deactivate",null,this._uiHash(this)),this.containers[t].containerCache.over&&(this.containers[t]._trigger("out",null,this._uiHash(this)),this.containers[t].containerCache.over=0)}return this.placeholder&&(this.placeholder[0].parentNode&&this.placeholder[0].parentNode.removeChild(this.placeholder[0]),this.options.helper!="original"&&this.helper&&this.helper[0].parentNode&&this.helper.remove(),e.extend(this,{helper:null,dragging:!1,reverting:!1,_noFinalSort:null}),this.domPosition.prev?e(this.domPosition.prev).after(this.currentItem):e(this.domPosition.parent).prepend(this.currentItem)),this},serialize:function(t){var n=this._getItemsAsjQuery(t&&t.connected),r=[];return t=t||{},e(n).each(function(){var n=(e(t.item||this).attr(t.attribute||"id")||"").match(t.expression||/(.+)[-=_](.+)/);n&&r.push((t.key||n[1]+"[]")+"="+(t.key&&t.expression?n[1]:n[2]))}),!r.length&&t.key&&r.push(t.key+"="),r.join("&")},toArray:function(t){var n=this._getItemsAsjQuery(t&&t.connected),r=[];return t=t||{},n.each(function(){r.push(e(t.item||this).attr(t.attribute||"id")||"")}),r},_intersectsWith:function(e){var t=this.positionAbs.left,n=t+this.helperProportions.width,r=this.positionAbs.top,i=r+this.helperProportions.height,s=e.left,o=s+e.width,u=e.top,a=u+e.height,f=this.offset.click.top,l=this.offset.click.left,c=r+f>u&&r+f<a&&t+l>s&&t+l<o;return this.options.tolerance=="pointer"||this.options.forcePointerForContainers||this.options.tolerance!="pointer"&&this.helperProportions[this.floating?"width":"height"]>e[this.floating?"width":"height"]?c:s<t+this.helperProportions.width/2&&n-this.helperProportions.width/2<o&&u<r+this.helperProportions.height/2&&i-this.helperProportions.height/2<a},_intersectsWithPointer:function(t){var n=this.options.axis==="x"||e.ui.isOverAxis(this.positionAbs.top+this.offset.click.top,t.top,t.height),r=this.options.axis==="y"||e.ui.isOverAxis(this.positionAbs.left+this.offset.click.left,t.left,t.width),i=n&&r,s=this._getDragVerticalDirection(),o=this._getDragHorizontalDirection();return i?this.floating?o&&o=="right"||s=="down"?2:1:s&&(s=="down"?2:1):!1},_intersectsWithSides:function(t){var n=e.ui.isOverAxis(this.positionAbs.top+this.offset.click.top,t.top+t.height/2,t.height),r=e.ui.isOverAxis(this.positionAbs.left+this.offset.click.left,t.left+t.width/2,t.width),i=this._getDragVerticalDirection(),s=this._getDragHorizontalDirection();return this.floating&&s?s=="right"&&r||s=="left"&&!r:i&&(i=="down"&&n||i=="up"&&!n)},_getDragVerticalDirection:function(){var e=this.positionAbs.top-this.lastPositionAbs.top;return e!=0&&(e>0?"down":"up")},_getDragHorizontalDirection:function(){var e=this.positionAbs.left-this.lastPositionAbs.left;return e!=0&&(e>0?"right":"left")},refresh:function(e){return this._refreshItems(e),this.refreshPositions(),this},_connectWith:function(){var e=this.options;return e.connectWith.constructor==String?[e.connectWith]:e.connectWith},_getItemsAsjQuery:function(t){var n=[],r=[],i=this._connectWith();if(i&&t)for(var s=i.length-1;s>=0;s--){var o=e(i[s]);for(var u=o.length-1;u>=0;u--){var a=e.data(o[u],this.widgetName);a&&a!=this&&!a.options.disabled&&r.push([e.isFunction(a.options.items)?a.options.items.call(a.element):e(a.options.items,a.element).not(".ui-sortable-helper").not(".ui-sortable-placeholder"),a])}}r.push([e.isFunction(this.options.items)?this.options.items.call(this.element,null,{options:this.options,item:this.currentItem}):e(this.options.items,this.element).not(".ui-sortable-helper").not(".ui-sortable-placeholder"),this]);for(var s=r.length-1;s>=0;s--)r[s][0].each(function(){n.push(this)});return e(n)},_removeCurrentsFromItems:function(){var e=this.currentItem.find(":data("+this.widgetName+"-item)");for(var t=0;t<this.items.length;t++)for(var n=0;n<e.length;n++)e[n]==this.items[t].item[0]&&this.items.splice(t,1)},_refreshItems:function(t){this.items=[],this.containers=[this];var n=this.items,r=[[e.isFunction(this.options.items)?this.options.items.call(this.element[0],t,{item:this.currentItem}):e(this.options.items,this.element),this]],i=this._connectWith();if(i&&this.ready)for(var s=i.length-1;s>=0;s--){var o=e(i[s]);for(var u=o.length-1;u>=0;u--){var a=e.data(o[u],this.widgetName);a&&a!=this&&!a.options.disabled&&(r.push([e.isFunction(a.options.items)?a.options.items.call(a.element[0],t,{item:this.currentItem}):e(a.options.items,a.element),a]),this.containers.push(a))}}for(var s=r.length-1;s>=0;s--){var f=r[s][1],l=r[s][0];for(var u=0,c=l.length;u<c;u++){var h=e(l[u]);h.data(this.widgetName+"-item",f),n.push({item:h,instance:f,width:0,height:0,left:0,top:0})}}},refreshPositions:function(t){this.offsetParent&&this.helper&&(this.offset.parent=this._getParentOffset());for(var n=this.items.length-1;n>=0;n--){var r=this.items[n];if(r.instance!=this.currentContainer&&this.currentContainer&&r.item[0]!=this.currentItem[0])continue;var i=this.options.toleranceElement?e(this.options.toleranceElement,r.item):r.item;t||(r.width=i.outerWidth(),r.height=i.outerHeight());var s=i.offset();r.left=s.left,r.top=s.top}if(this.options.custom&&this.options.custom.refreshContainers)this.options.custom.refreshContainers.call(this);else for(var n=this.containers.length-1;n>=0;n--){var s=this.containers[n].element.offset();this.containers[n].containerCache.left=s.left,this.containers[n].containerCache.top=s.top,this.containers[n].containerCache.width=this.containers[n].element.outerWidth(),this.containers[n].containerCache.height=this.containers[n].element.outerHeight()}return this},_createPlaceholder:function(t){t=t||this;var n=t.options;if(!n.placeholder||n.placeholder.constructor==String){var r=n.placeholder;n.placeholder={element:function(){var n=e(document.createElement(t.currentItem[0].nodeName)).addClass(r||t.currentItem[0].className+" ui-sortable-placeholder").removeClass("ui-sortable-helper")[0];return r||(n.style.visibility="hidden"),n},update:function(e,i){if(r&&!n.forcePlaceholderSize)return;i.height()||i.height(t.currentItem.innerHeight()-parseInt(t.currentItem.css("paddingTop")||0,10)-parseInt(t.currentItem.css("paddingBottom")||0,10)),i.width()||i.width(t.currentItem.innerWidth()-parseInt(t.currentItem.css("paddingLeft")||0,10)-parseInt(t.currentItem.css("paddingRight")||0,10))}}}t.placeholder=e(n.placeholder.element.call(t.element,t.currentItem)),t.currentItem.after(t.placeholder),n.placeholder.update(t,t.placeholder)},_contactContainers:function(t){var n=null,r=null;for(var i=this.containers.length-1;i>=0;i--){if(e.contains(this.currentItem[0],this.containers[i].element[0]))continue;if(this._intersectsWith(this.containers[i].containerCache)){if(n&&e.contains(this.containers[i].element[0],n.element[0]))continue;n=this.containers[i],r=i}else this.containers[i].containerCache.over&&(this.containers[i]._trigger("out",t,this._uiHash(this)),this.containers[i].containerCache.over=0)}if(!n)return;if(this.containers.length===1)this.containers[r]._trigger("over",t,this._uiHash(this)),this.containers[r].containerCache.over=1;else if(this.currentContainer!=this.containers[r]){var s=1e4,o=null,u=this.positionAbs[this.containers[r].floating?"left":"top"];for(var a=this.items.length-1;a>=0;a--){if(!e.contains(this.containers[r].element[0],this.items[a].item[0]))continue;var f=this.containers[r].floating?this.items[a].item.offset().left:this.items[a].item.offset().top;Math.abs(f-u)<s&&(s=Math.abs(f-u),o=this.items[a],this.direction=f-u>0?"down":"up")}if(!o&&!this.options.dropOnEmpty)return;this.currentContainer=this.containers[r],o?this._rearrange(t,o,null,!0):this._rearrange(t,null,this.containers[r].element,!0),this._trigger("change",t,this._uiHash()),this.containers[r]._trigger("change",t,this._uiHash(this)),this.options.placeholder.update(this.currentContainer,this.placeholder),this.containers[r]._trigger("over",t,this._uiHash(this)),this.containers[r].containerCache.over=1}},_createHelper:function(t){var n=this.options,r=e.isFunction(n.helper)?e(n.helper.apply(this.element[0],[t,this.currentItem])):n.helper=="clone"?this.currentItem.clone():this.currentItem;return r.parents("body").length||e(n.appendTo!="parent"?n.appendTo:this.currentItem[0].parentNode)[0].appendChild(r[0]),r[0]==this.currentItem[0]&&(this._storedCSS={width:this.currentItem[0].style.width,height:this.currentItem[0].style.height,position:this.currentItem.css("position"),top:this.currentItem.css("top"),left:this.currentItem.css("left")}),(r[0].style.width==""||n.forceHelperSize)&&r.width(this.currentItem.width()),(r[0].style.height==""||n.forceHelperSize)&&r.height(this.currentItem.height()),r},_adjustOffsetFromHelper:function(t){typeof t=="string"&&(t=t.split(" ")),e.isArray(t)&&(t={left:+t[0],top:+t[1]||0}),"left"in t&&(this.offset.click.left=t.left+this.margins.left),"right"in t&&(this.offset.click.left=this.helperProportions.width-t.right+this.margins.left),"top"in t&&(this.offset.click.top=t.top+this.margins.top),"bottom"in t&&(this.offset.click.top=this.helperProportions.height-t.bottom+this.margins.top)},_getParentOffset:function(){this.offsetParent=this.helper.offsetParent();var t=this.offsetParent.offset();this.cssPosition=="absolute"&&this.scrollParent[0]!=document&&e.contains(this.scrollParent[0],this.offsetParent[0])&&(t.left+=this.scrollParent.scrollLeft(),t.top+=this.scrollParent.scrollTop());if(this.offsetParent[0]==document.body||this.offsetParent[0].tagName&&this.offsetParent[0].tagName.toLowerCase()=="html"&&e.browser.msie)t={top:0,left:0};return{top:t.top+(parseInt(this.offsetParent.css("borderTopWidth"),10)||0),left:t.left+(parseInt(this.offsetParent.css("borderLeftWidth"),10)||0)}},_getRelativeOffset:function(){if(this.cssPosition=="relative"){var e=this.currentItem.position();return{top:e.top-(parseInt(this.helper.css("top"),10)||0)+this.scrollParent.scrollTop(),left:e.left-(parseInt(this.helper.css("left"),10)||0)+this.scrollParent.scrollLeft()}}return{top:0,left:0}},_cacheMargins:function(){this.margins={left:parseInt(this.currentItem.css("marginLeft"),10)||0,top:parseInt(this.currentItem.css("marginTop"),10)||0}},_cacheHelperProportions:function(){this.helperProportions={width:this.helper.outerWidth(),height:this.helper.outerHeight()}},_setContainment:function(){var t=this.options;t.containment=="parent"&&(t.containment=this.helper[0].parentNode);if(t.containment=="document"||t.containment=="window")this.containment=[0-this.offset.relative.left-this.offset.parent.left,0-this.offset.relative.top-this.offset.parent.top,e(t.containment=="document"?document:window).width()-this.helperProportions.width-this.margins.left,(e(t.containment=="document"?document:window).height()||document.body.parentNode.scrollHeight)-this.helperProportions.height-this.margins.top];if(!/^(document|window|parent)$/.test(t.containment)){var n=e(t.containment)[0],r=e(t.containment).offset(),i=e(n).css("overflow")!="hidden";this.containment=[r.left+(parseInt(e(n).css("borderLeftWidth"),10)||0)+(parseInt(e(n).css("paddingLeft"),10)||0)-this.margins.left,r.top+(parseInt(e(n).css("borderTopWidth"),10)||0)+(parseInt(e(n).css("paddingTop"),10)||0)-this.margins.top,r.left+(i?Math.max(n.scrollWidth,n.offsetWidth):n.offsetWidth)-(parseInt(e(n).css("borderLeftWidth"),10)||0)-(parseInt(e(n).css("paddingRight"),10)||0)-this.helperProportions.width-this.margins.left,r.top+(i?Math.max(n.scrollHeight,n.offsetHeight):n.offsetHeight)-(parseInt(e(n).css("borderTopWidth"),10)||0)-(parseInt(e(n).css("paddingBottom"),10)||0)-this.helperProportions.height-this.margins.top]}},_convertPositionTo:function(t,n){n||(n=this.position);var r=t=="absolute"?1:-1,i=this.options,s=this.cssPosition!="absolute"||this.scrollParent[0]!=document&&!!e.contains(this.scrollParent[0],this.offsetParent[0])?this.scrollParent:this.offsetParent,o=/(html|body)/i.test(s[0].tagName);return{top:n.top+this.offset.relative.top*r+this.offset.parent.top*r-(this.cssPosition=="fixed"?-this.scrollParent.scrollTop():o?0:s.scrollTop())*r,left:n.left+this.offset.relative.left*r+this.offset.parent.left*r-(this.cssPosition=="fixed"?-this.scrollParent.scrollLeft():o?0:s.scrollLeft())*r}},_generatePosition:function(t){var n=this.options,r=this.cssPosition!="absolute"||this.scrollParent[0]!=document&&!!e.contains(this.scrollParent[0],this.offsetParent[0])?this.scrollParent:this.offsetParent,i=/(html|body)/i.test(r[0].tagName);this.cssPosition=="relative"&&(this.scrollParent[0]==document||this.scrollParent[0]==this.offsetParent[0])&&(this.offset.relative=this._getRelativeOffset());var s=t.pageX,o=t.pageY;if(this.originalPosition){this.containment&&(t.pageX-this.offset.click.left<this.containment[0]&&(s=this.containment[0]+this.offset.click.left),t.pageY-this.offset.click.top<this.containment[1]&&(o=this.containment[1]+this.offset.click.top),t.pageX-this.offset.click.left>this.containment[2]&&(s=this.containment[2]+this.offset.click.left),t.pageY-this.offset.click.top>this.containment[3]&&(o=this.containment[3]+this.offset.click.top));if(n.grid){var u=this.originalPageY+Math.round((o-this.originalPageY)/n.grid[1])*n.grid[1];o=this.containment?u-this.offset.click.top<this.containment[1]||u-this.offset.click.top>this.containment[3]?u-this.offset.click.top<this.containment[1]?u+n.grid[1]:u-n.grid[1]:u:u;var a=this.originalPageX+Math.round((s-this.originalPageX)/n.grid[0])*n.grid[0];s=this.containment?a-this.offset.click.left<this.containment[0]||a-this.offset.click.left>this.containment[2]?a-this.offset.click.left<this.containment[0]?a+n.grid[0]:a-n.grid[0]:a:a}}return{top:o-this.offset.click.top-this.offset.relative.top-this.offset.parent.top+(this.cssPosition=="fixed"?-this.scrollParent.scrollTop():i?0:r.scrollTop()),left:s-this.offset.click.left-this.offset.relative.left-this.offset.parent.left+(this.cssPosition=="fixed"?-this.scrollParent.scrollLeft():i?0:r.scrollLeft())}},_rearrange:function(e,t,n,r){n?n[0].appendChild(this.placeholder[0]):t.item[0].parentNode.insertBefore(this.placeholder[0],this.direction=="down"?t.item[0]:t.item[0].nextSibling),this.counter=this.counter?++this.counter:1;var i=this.counter;this._delay(function(){i==this.counter&&this.refreshPositions(!r)})},_clear:function(t,n){this.reverting=!1;var r=[];!this._noFinalSort&&this.currentItem.parent().length&&this.placeholder.before(this.currentItem),this._noFinalSort=null;if(this.helper[0]==this.currentItem[0]){for(var i in this._storedCSS)if(this._storedCSS[i]=="auto"||this._storedCSS[i]=="static")this._storedCSS[i]="";this.currentItem.css(this._storedCSS).removeClass("ui-sortable-helper")}else this.currentItem.show();this.fromOutside&&!n&&r.push(function(e){this._trigger("receive",e,this._uiHash(this.fromOutside))}),(this.fromOutside||this.domPosition.prev!=this.currentItem.prev().not(".ui-sortable-helper")[0]||this.domPosition.parent!=this.currentItem.parent()[0])&&!n&&r.push(function(e){this._trigger("update",e,this._uiHash())}),this!==this.currentContainer&&(n||(r.push(function(e){this._trigger("remove",e,this._uiHash())}),r.push(function(e){return function(t){e._trigger("receive",t,this._uiHash(this))}}.call(this,this.currentContainer)),r.push(function(e){return function(t){e._trigger("update",t,this._uiHash(this))}}.call(this,this.currentContainer))));for(var i=this.containers.length-1;i>=0;i--)n||r.push(function(e){return function(t){e._trigger("deactivate",t,this._uiHash(this))}}.call(this,this.containers[i])),this.containers[i].containerCache.over&&(r.push(function(e){return function(t){e._trigger("out",t,this._uiHash(this))}}.call(this,this.containers[i])),this.containers[i].containerCache.over=0);this._storedCursor&&e("body").css("cursor",this._storedCursor),this._storedOpacity&&this.helper.css("opacity",this._storedOpacity),this._storedZIndex&&this.helper.css("zIndex",this._storedZIndex=="auto"?"":this._storedZIndex),this.dragging=!1;if(this.cancelHelperRemoval){if(!n){this._trigger("beforeStop",t,this._uiHash());for(var i=0;i<r.length;i++)r[i].call(this,t);this._trigger("stop",t,this._uiHash())}return this.fromOutside=!1,!1}n||this._trigger("beforeStop",t,this._uiHash()),this.placeholder[0].parentNode.removeChild(this.placeholder[0]),this.helper[0]!=this.currentItem[0]&&this.helper.remove(),this.helper=null;if(!n){for(var i=0;i<r.length;i++)r[i].call(this,t);this._trigger("stop",t,this._uiHash())}return this.fromOutside=!1,!0},_trigger:function(){e.Widget.prototype._trigger.apply(this,arguments)===!1&&this.cancel()},_uiHash:function(t){var n=t||this;return{helper:n.helper,placeholder:n.placeholder||e([]),position:n.position,originalPosition:n.originalPosition,offset:n.positionAbs,item:n.currentItem,sender:t?t.element:null}}})})(jQuery);(function(e,t){var n,r,i,s,o="ui-button ui-widget ui-state-default ui-corner-all",u="ui-state-hover ui-state-active ",a="ui-button-icons-only ui-button-icon-only ui-button-text-icons ui-button-text-icon-primary ui-button-text-icon-secondary ui-button-text-only",f=function(){var t=e(this).find(":ui-button");setTimeout(function(){t.button("refresh")},1)},l=function(t){var n=t.name,r=t.form,i=e([]);return n&&(r?i=e(r).find("[name='"+n+"']"):i=e("[name='"+n+"']",t.ownerDocument).filter(function(){return!this.form})),i};e.widget("ui.button",{version:"1.9.0",defaultElement:"<button>",options:{disabled:null,text:!0,label:null,icons:{primary:null,secondary:null}},_create:function(){this.element.closest("form").unbind("reset"+this.eventNamespace).bind("reset"+this.eventNamespace,f),typeof this.options.disabled!="boolean"?this.options.disabled=!!this.element.prop("disabled"):this.element.prop("disabled",this.options.disabled),this._determineButtonType(),this.hasTitle=!!this.buttonElement.attr("title");var t=this,u=this.options,a=this.type==="checkbox"||this.type==="radio",c="ui-state-hover"+(a?"":" ui-state-active"),h="ui-state-focus";u.label===null&&(u.label=this.type==="input"?this.buttonElement.val():this.buttonElement.html()),this.buttonElement.addClass(o).attr("role","button").bind("mouseenter"+this.eventNamespace,function(){if(u.disabled)return;e(this).addClass("ui-state-hover"),this===n&&e(this).addClass("ui-state-active")}).bind("mouseleave"+this.eventNamespace,function(){if(u.disabled)return;e(this).removeClass(c)}).bind("click"+this.eventNamespace,function(e){u.disabled&&(e.preventDefault(),e.stopImmediatePropagation())}),this.element.bind("focus"+this.eventNamespace,function(){t.buttonElement.addClass(h)}).bind("blur"+this.eventNamespace,function(){t.buttonElement.removeClass(h)}),a&&(this.element.bind("change"+this.eventNamespace,function(){if(s)return;t.refresh()}),this.buttonElement.bind("mousedown"+this.eventNamespace,function(e){if(u.disabled)return;s=!1,r=e.pageX,i=e.pageY}).bind("mouseup"+this.eventNamespace,function(e){if(u.disabled)return;if(r!==e.pageX||i!==e.pageY)s=!0})),this.type==="checkbox"?this.buttonElement.bind("click"+this.eventNamespace,function(){if(u.disabled||s)return!1;e(this).toggleClass("ui-state-active"),t.buttonElement.attr("aria-pressed",t.element[0].checked)}):this.type==="radio"?this.buttonElement.bind("click"+this.eventNamespace,function(){if(u.disabled||s)return!1;e(this).addClass("ui-state-active"),t.buttonElement.attr("aria-pressed","true");var n=t.element[0];l(n).not(n).map(function(){return e(this).button("widget")[0]}).removeClass("ui-state-active").attr("aria-pressed","false")}):(this.buttonElement.bind("mousedown"+this.eventNamespace,function(){if(u.disabled)return!1;e(this).addClass("ui-state-active"),n=this,t.document.one("mouseup",function(){n=null})}).bind("mouseup"+this.eventNamespace,function(){if(u.disabled)return!1;e(this).removeClass("ui-state-active")}).bind("keydown"+this.eventNamespace,function(t){if(u.disabled)return!1;(t.keyCode===e.ui.keyCode.SPACE||t.keyCode===e.ui.keyCode.ENTER)&&e(this).addClass("ui-state-active")}).bind("keyup"+this.eventNamespace,function(){e(this).removeClass("ui-state-active")}),this.buttonElement.is("a")&&this.buttonElement.keyup(function(t){t.keyCode===e.ui.keyCode.SPACE&&e(this).click()})),this._setOption("disabled",u.disabled),this._resetButton()},_determineButtonType:function(){var e,t,n;this.element.is("[type=checkbox]")?this.type="checkbox":this.element.is("[type=radio]")?this.type="radio":this.element.is("input")?this.type="input":this.type="button",this.type==="checkbox"||this.type==="radio"?(e=this.element.parents().last(),t="label[for='"+this.element.attr("id")+"']",this.buttonElement=e.find(t),this.buttonElement.length||(e=e.length?e.siblings():this.element.siblings(),this.buttonElement=e.filter(t),this.buttonElement.length||(this.buttonElement=e.find(t))),this.element.addClass("ui-helper-hidden-accessible"),n=this.element.is(":checked"),n&&this.buttonElement.addClass("ui-state-active"),this.buttonElement.prop("aria-pressed",n)):this.buttonElement=this.element},widget:function(){return this.buttonElement},_destroy:function(){this.element.removeClass("ui-helper-hidden-accessible"),this.buttonElement.removeClass(o+" "+u+" "+a).removeAttr("role").removeAttr("aria-pressed").html(this.buttonElement.find(".ui-button-text").html()),this.hasTitle||this.buttonElement.removeAttr("title")},_setOption:function(e,t){this._super(e,t);if(e==="disabled"){t?this.element.prop("disabled",!0):this.element.prop("disabled",!1);return}this._resetButton()},refresh:function(){var t=this.element.is(":disabled");t!==this.options.disabled&&this._setOption("disabled",t),this.type==="radio"?l(this.element[0]).each(function(){e(this).is(":checked")?e(this).button("widget").addClass("ui-state-active").attr("aria-pressed","true"):e(this).button("widget").removeClass("ui-state-active").attr("aria-pressed","false")}):this.type==="checkbox"&&(this.element.is(":checked")?this.buttonElement.addClass("ui-state-active").attr("aria-pressed","true"):this.buttonElement.removeClass("ui-state-active").attr("aria-pressed","false"))},_resetButton:function(){if(this.type==="input"){this.options.label&&this.element.val(this.options.label);return}var t=this.buttonElement.removeClass(a),n=e("<span></span>",this.document[0]).addClass("ui-button-text").html(this.options.label).appendTo(t.empty()).text(),r=this.options.icons,i=r.primary&&r.secondary,s=[];r.primary||r.secondary?(this.options.text&&s.push("ui-button-text-icon"+(i?"s":r.primary?"-primary":"-secondary")),r.primary&&t.prepend("<span class='ui-button-icon-primary ui-icon "+r.primary+"'></span>"),r.secondary&&t.append("<span class='ui-button-icon-secondary ui-icon "+r.secondary+"'></span>"),this.options.text||(s.push(i?"ui-button-icons-only":"ui-button-icon-only"),this.hasTitle||t.attr("title",e.trim(n)))):s.push("ui-button-text-only"),t.addClass(s.join(" "))}}),e.widget("ui.buttonset",{version:"1.9.0",options:{items:"button, input[type=button], input[type=submit], input[type=reset], input[type=checkbox], input[type=radio], a, :data(button)"},_create:function(){this.element.addClass("ui-buttonset")},_init:function(){this.refresh()},_setOption:function(e,t){e==="disabled"&&this.buttons.button("option",e,t),this._super(e,t)},refresh:function(){var t=this.element.css("direction")==="rtl";this.buttons=this.element.find(this.options.items).filter(":ui-button").button("refresh").end().not(":ui-button").button().end().map(function(){return e(this).button("widget")[0]}).removeClass("ui-corner-all ui-corner-left ui-corner-right").filter(":first").addClass(t?"ui-corner-right":"ui-corner-left").end().filter(":last").addClass(t?"ui-corner-left":"ui-corner-right").end().end()},_destroy:function(){this.element.removeClass("ui-buttonset"),this.buttons.map(function(){return e(this).button("widget")[0]}).removeClass("ui-corner-left ui-corner-right").end().button("destroy")}})})(jQuery);(function($,undefined){function Datepicker(){this.debug=!1,this._curInst=null,this._keyEvent=!1,this._disabledInputs=[],this._datepickerShowing=!1,this._inDialog=!1,this._mainDivId="ui-datepicker-div",this._inlineClass="ui-datepicker-inline",this._appendClass="ui-datepicker-append",this._triggerClass="ui-datepicker-trigger",this._dialogClass="ui-datepicker-dialog",this._disableClass="ui-datepicker-disabled",this._unselectableClass="ui-datepicker-unselectable",this._currentClass="ui-datepicker-current-day",this._dayOverClass="ui-datepicker-days-cell-over",this.regional=[],this.regional[""]={closeText:"Done",prevText:"Prev",nextText:"Next",currentText:"Today",monthNames:["January","February","March","April","May","June","July","August","September","October","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],dayNames:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],dayNamesShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],dayNamesMin:["Su","Mo","Tu","We","Th","Fr","Sa"],weekHeader:"Wk",dateFormat:"mm/dd/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},this._defaults={showOn:"focus",showAnim:"fadeIn",showOptions:{},defaultDate:null,appendText:"",buttonText:"...",buttonImage:"",buttonImageOnly:!1,hideIfNoPrevNext:!1,navigationAsDateFormat:!1,gotoCurrent:!1,changeMonth:!1,changeYear:!1,yearRange:"c-10:c+10",showOtherMonths:!1,selectOtherMonths:!1,showWeek:!1,calculateWeek:this.iso8601Week,shortYearCutoff:"+10",minDate:null,maxDate:null,duration:"fast",beforeShowDay:null,beforeShow:null,onSelect:null,onChangeMonthYear:null,onClose:null,numberOfMonths:1,showCurrentAtPos:0,stepMonths:1,stepBigMonths:12,altField:"",altFormat:"",constrainInput:!0,showButtonPanel:!1,autoSize:!1,disabled:!1},$.extend(this._defaults,this.regional[""]),this.dpDiv=bindHover($('<div id="'+this._mainDivId+'" class="ui-datepicker ui-widget ui-widget-content ui-helper-clearfix ui-corner-all"></div>'))}function bindHover(e){var t="button, .ui-datepicker-prev, .ui-datepicker-next, .ui-datepicker-calendar td a";return e.delegate(t,"mouseout",function(){$(this).removeClass("ui-state-hover"),this.className.indexOf("ui-datepicker-prev")!=-1&&$(this).removeClass("ui-datepicker-prev-hover"),this.className.indexOf("ui-datepicker-next")!=-1&&$(this).removeClass("ui-datepicker-next-hover")}).delegate(t,"mouseover",function(){$.datepicker._isDisabledDatepicker(instActive.inline?e.parent()[0]:instActive.input[0])||($(this).parents(".ui-datepicker-calendar").find("a").removeClass("ui-state-hover"),$(this).addClass("ui-state-hover"),this.className.indexOf("ui-datepicker-prev")!=-1&&$(this).addClass("ui-datepicker-prev-hover"),this.className.indexOf("ui-datepicker-next")!=-1&&$(this).addClass("ui-datepicker-next-hover"))})}function extendRemove(e,t){$.extend(e,t);for(var n in t)if(t[n]==null||t[n]==undefined)e[n]=t[n];return e}$.extend($.ui,{datepicker:{version:"1.9.0"}});var PROP_NAME="datepicker",dpuuid=(new Date).getTime(),instActive;$.extend(Datepicker.prototype,{markerClassName:"hasDatepicker",maxRows:4,log:function(){this.debug&&console.log.apply("",arguments)},_widgetDatepicker:function(){return this.dpDiv},setDefaults:function(e){return extendRemove(this._defaults,e||{}),this},_attachDatepicker:function(target,settings){var inlineSettings=null;for(var attrName in this._defaults){var attrValue=target.getAttribute("date:"+attrName);if(attrValue){inlineSettings=inlineSettings||{};try{inlineSettings[attrName]=eval(attrValue)}catch(err){inlineSettings[attrName]=attrValue}}}var nodeName=target.nodeName.toLowerCase(),inline=nodeName=="div"||nodeName=="span";target.id||(this.uuid+=1,target.id="dp"+this.uuid);var inst=this._newInst($(target),inline);inst.settings=$.extend({},settings||{},inlineSettings||{}),nodeName=="input"?this._connectDatepicker(target,inst):inline&&this._inlineDatepicker(target,inst)},_newInst:function(e,t){var n=e[0].id.replace(/([^A-Za-z0-9_-])/g,"\\\\$1");return{id:n,input:e,selectedDay:0,selectedMonth:0,selectedYear:0,drawMonth:0,drawYear:0,inline:t,dpDiv:t?bindHover($('<div class="'+this._inlineClass+' ui-datepicker ui-widget ui-widget-content ui-helper-clearfix ui-corner-all"></div>')):this.dpDiv}},_connectDatepicker:function(e,t){var n=$(e);t.append=$([]),t.trigger=$([]);if(n.hasClass(this.markerClassName))return;this._attachments(n,t),n.addClass(this.markerClassName).keydown(this._doKeyDown).keypress(this._doKeyPress).keyup(this._doKeyUp).bind("setData.datepicker",function(e,n,r){t.settings[n]=r}).bind("getData.datepicker",function(e,n){return this._get(t,n)}),this._autoSize(t),$.data(e,PROP_NAME,t),t.settings.disabled&&this._disableDatepicker(e)},_attachments:function(e,t){var n=this._get(t,"appendText"),r=this._get(t,"isRTL");t.append&&t.append.remove(),n&&(t.append=$('<span class="'+this._appendClass+'">'+n+"</span>"),e[r?"before":"after"](t.append)),e.unbind("focus",this._showDatepicker),t.trigger&&t.trigger.remove();var i=this._get(t,"showOn");(i=="focus"||i=="both")&&e.focus(this._showDatepicker);if(i=="button"||i=="both"){var s=this._get(t,"buttonText"),o=this._get(t,"buttonImage");t.trigger=$(this._get(t,"buttonImageOnly")?$("<img/>").addClass(this._triggerClass).attr({src:o,alt:s,title:s}):$('<button type="button"></button>').addClass(this._triggerClass).html(o==""?s:$("<img/>").attr({src:o,alt:s,title:s}))),e[r?"before":"after"](t.trigger),t.trigger.click(function(){return $.datepicker._datepickerShowing&&$.datepicker._lastInput==e[0]?$.datepicker._hideDatepicker():$.datepicker._datepickerShowing&&$.datepicker._lastInput!=e[0]?($.datepicker._hideDatepicker(),$.datepicker._showDatepicker(e[0])):$.datepicker._showDatepicker(e[0]),!1})}},_autoSize:function(e){if(this._get(e,"autoSize")&&!e.inline){var t=new Date(2009,11,20),n=this._get(e,"dateFormat");if(n.match(/[DM]/)){var r=function(e){var t=0,n=0;for(var r=0;r<e.length;r++)e[r].length>t&&(t=e[r].length,n=r);return n};t.setMonth(r(this._get(e,n.match(/MM/)?"monthNames":"monthNamesShort"))),t.setDate(r(this._get(e,n.match(/DD/)?"dayNames":"dayNamesShort"))+20-t.getDay())}e.input.attr("size",this._formatDate(e,t).length)}},_inlineDatepicker:function(e,t){var n=$(e);if(n.hasClass(this.markerClassName))return;n.addClass(this.markerClassName).append(t.dpDiv).bind("setData.datepicker",function(e,n,r){t.settings[n]=r}).bind("getData.datepicker",function(e,n){return this._get(t,n)}),$.data(e,PROP_NAME,t),this._setDate(t,this._getDefaultDate(t),!0),this._updateDatepicker(t),this._updateAlternate(t),t.settings.disabled&&this._disableDatepicker(e),t.dpDiv.css("display","block")},_dialogDatepicker:function(e,t,n,r,i){var s=this._dialogInst;if(!s){this.uuid+=1;var o="dp"+this.uuid;this._dialogInput=$('<input type="text" id="'+o+'" style="position: absolute; top: -100px; width: 0px;"/>'),this._dialogInput.keydown(this._doKeyDown),$("body").append(this._dialogInput),s=this._dialogInst=this._newInst(this._dialogInput,!1),s.settings={},$.data(this._dialogInput[0],PROP_NAME,s)}extendRemove(s.settings,r||{}),t=t&&t.constructor==Date?this._formatDate(s,t):t,this._dialogInput.val(t),this._pos=i?i.length?i:[i.pageX,i.pageY]:null;if(!this._pos){var u=document.documentElement.clientWidth,a=document.documentElement.clientHeight,f=document.documentElement.scrollLeft||document.body.scrollLeft,l=document.documentElement.scrollTop||document.body.scrollTop;this._pos=[u/2-100+f,a/2-150+l]}return this._dialogInput.css("left",this._pos[0]+20+"px").css("top",this._pos[1]+"px"),s.settings.onSelect=n,this._inDialog=!0,this.dpDiv.addClass(this._dialogClass),this._showDatepicker(this._dialogInput[0]),$.blockUI&&$.blockUI(this.dpDiv),$.data(this._dialogInput[0],PROP_NAME,s),this},_destroyDatepicker:function(e){var t=$(e),n=$.data(e,PROP_NAME);if(!t.hasClass(this.markerClassName))return;var r=e.nodeName.toLowerCase();$.removeData(e,PROP_NAME),r=="input"?(n.append.remove(),n.trigger.remove(),t.removeClass(this.markerClassName).unbind("focus",this._showDatepicker).unbind("keydown",this._doKeyDown).unbind("keypress",this._doKeyPress).unbind("keyup",this._doKeyUp)):(r=="div"||r=="span")&&t.removeClass(this.markerClassName).empty()},_enableDatepicker:function(e){var t=$(e),n=$.data(e,PROP_NAME);if(!t.hasClass(this.markerClassName))return;var r=e.nodeName.toLowerCase();if(r=="input")e.disabled=!1,n.trigger.filter("button").each(function(){this.disabled=!1}).end().filter("img").css({opacity:"1.0",cursor:""});else if(r=="div"||r=="span"){var i=t.children("."+this._inlineClass);i.children().removeClass("ui-state-disabled"),i.find("select.ui-datepicker-month, select.ui-datepicker-year").prop("disabled",!1)}this._disabledInputs=$.map(this._disabledInputs,function(t){return t==e?null:t})},_disableDatepicker:function(e){var t=$(e),n=$.data(e,PROP_NAME);if(!t.hasClass(this.markerClassName))return;var r=e.nodeName.toLowerCase();if(r=="input")e.disabled=!0,n.trigger.filter("button").each(function(){this.disabled=!0}).end().filter("img").css({opacity:"0.5",cursor:"default"});else if(r=="div"||r=="span"){var i=t.children("."+this._inlineClass);i.children().addClass("ui-state-disabled"),i.find("select.ui-datepicker-month, select.ui-datepicker-year").prop("disabled",!0)}this._disabledInputs=$.map(this._disabledInputs,function(t){return t==e?null:t}),this._disabledInputs[this._disabledInputs.length]=e},_isDisabledDatepicker:function(e){if(!e)return!1;for(var t=0;t<this._disabledInputs.length;t++)if(this._disabledInputs[t]==e)return!0;return!1},_getInst:function(e){try{return $.data(e,PROP_NAME)}catch(t){throw"Missing instance data for this datepicker"}},_optionDatepicker:function(e,t,n){var r=this._getInst(e);if(arguments.length==2&&typeof t=="string")return t=="defaults"?$.extend({},$.datepicker._defaults):r?t=="all"?$.extend({},r.settings):this._get(r,t):null;var i=t||{};typeof t=="string"&&(i={},i[t]=n);if(r){this._curInst==r&&this._hideDatepicker();var s=this._getDateDatepicker(e,!0),o=this._getMinMaxDate(r,"min"),u=this._getMinMaxDate(r,"max");extendRemove(r.settings,i),o!==null&&i.dateFormat!==undefined&&i.minDate===undefined&&(r.settings.minDate=this._formatDate(r,o)),u!==null&&i.dateFormat!==undefined&&i.maxDate===undefined&&(r.settings.maxDate=this._formatDate(r,u)),this._attachments($(e),r),this._autoSize(r),this._setDate(r,s),this._updateAlternate(r),this._updateDatepicker(r)}},_changeDatepicker:function(e,t,n){this._optionDatepicker(e,t,n)},_refreshDatepicker:function(e){var t=this._getInst(e);t&&this._updateDatepicker(t)},_setDateDatepicker:function(e,t){var n=this._getInst(e);n&&(this._setDate(n,t),this._updateDatepicker(n),this._updateAlternate(n))},_getDateDatepicker:function(e,t){var n=this._getInst(e);return n&&!n.inline&&this._setDateFromField(n,t),n?this._getDate(n):null},_doKeyDown:function(e){var t=$.datepicker._getInst(e.target),n=!0,r=t.dpDiv.is(".ui-datepicker-rtl");t._keyEvent=!0;if($.datepicker._datepickerShowing)switch(e.keyCode){case 9:$.datepicker._hideDatepicker(),n=!1;break;case 13:var i=$("td."+$.datepicker._dayOverClass+":not(."+$.datepicker._currentClass+")",t.dpDiv);i[0]&&$.datepicker._selectDay(e.target,t.selectedMonth,t.selectedYear,i[0]);var s=$.datepicker._get(t,"onSelect");if(s){var o=$.datepicker._formatDate(t);s.apply(t.input?t.input[0]:null,[o,t])}else $.datepicker._hideDatepicker();return!1;case 27:$.datepicker._hideDatepicker();break;case 33:$.datepicker._adjustDate(e.target,e.ctrlKey?-$.datepicker._get(t,"stepBigMonths"):-$.datepicker._get(t,"stepMonths"),"M");break;case 34:$.datepicker._adjustDate(e.target,e.ctrlKey?+$.datepicker._get(t,"stepBigMonths"):+$.datepicker._get(t,"stepMonths"),"M");break;case 35:(e.ctrlKey||e.metaKey)&&$.datepicker._clearDate(e.target),n=e.ctrlKey||e.metaKey;break;case 36:(e.ctrlKey||e.metaKey)&&$.datepicker._gotoToday(e.target),n=e.ctrlKey||e.metaKey;break;case 37:(e.ctrlKey||e.metaKey)&&$.datepicker._adjustDate(e.target,r?1:-1,"D"),n=e.ctrlKey||e.metaKey,e.originalEvent.altKey&&$.datepicker._adjustDate(e.target,e.ctrlKey?-$.datepicker._get(t,"stepBigMonths"):-$.datepicker._get(t,"stepMonths"),"M");break;case 38:(e.ctrlKey||e.metaKey)&&$.datepicker._adjustDate(e.target,-7,"D"),n=e.ctrlKey||e.metaKey;break;case 39:(e.ctrlKey||e.metaKey)&&$.datepicker._adjustDate(e.target,r?-1:1,"D"),n=e.ctrlKey||e.metaKey,e.originalEvent.altKey&&$.datepicker._adjustDate(e.target,e.ctrlKey?+$.datepicker._get(t,"stepBigMonths"):+$.datepicker._get(t,"stepMonths"),"M");break;case 40:(e.ctrlKey||e.metaKey)&&$.datepicker._adjustDate(e.target,7,"D"),n=e.ctrlKey||e.metaKey;break;default:n=!1}else e.keyCode==36&&e.ctrlKey?$.datepicker._showDatepicker(this):n=!1;n&&(e.preventDefault(),e.stopPropagation())},_doKeyPress:function(e){var t=$.datepicker._getInst(e.target);if($.datepicker._get(t,"constrainInput")){var n=$.datepicker._possibleChars($.datepicker._get(t,"dateFormat")),r=String.fromCharCode(e.charCode==undefined?e.keyCode:e.charCode);return e.ctrlKey||e.metaKey||r<" "||!n||n.indexOf(r)>-1}},_doKeyUp:function(e){var t=$.datepicker._getInst(e.target);if(t.input.val()!=t.lastVal)try{var n=$.datepicker.parseDate($.datepicker._get(t,"dateFormat"),t.input?t.input.val():null,$.datepicker._getFormatConfig(t));n&&($.datepicker._setDateFromField(t),$.datepicker._updateAlternate(t),$.datepicker._updateDatepicker(t))}catch(r){$.datepicker.log(r)}return!0},_showDatepicker:function(e){e=e.target||e,e.nodeName.toLowerCase()!="input"&&(e=$("input",e.parentNode)[0]);if($.datepicker._isDisabledDatepicker(e)||$.datepicker._lastInput==e)return;var t=$.datepicker._getInst(e);$.datepicker._curInst&&$.datepicker._curInst!=t&&($.datepicker._curInst.dpDiv.stop(!0,!0),t&&$.datepicker._datepickerShowing&&$.datepicker._hideDatepicker($.datepicker._curInst.input[0]));var n=$.datepicker._get(t,"beforeShow"),r=n?n.apply(e,[e,t]):{};if(r===!1)return;extendRemove(t.settings,r),t.lastVal=null,$.datepicker._lastInput=e,$.datepicker._setDateFromField(t),$.datepicker._inDialog&&(e.value=""),$.datepicker._pos||($.datepicker._pos=$.datepicker._findPos(e),$.datepicker._pos[1]+=e.offsetHeight);var i=!1;$(e).parents().each(function(){return i|=$(this).css("position")=="fixed",!i});var s={left:$.datepicker._pos[0],top:$.datepicker._pos[1]};$.datepicker._pos=null,t.dpDiv.empty(),t.dpDiv.css({position:"absolute",display:"block",top:"-1000px"}),$.datepicker._updateDatepicker(t),s=$.datepicker._checkOffset(t,s,i),t.dpDiv.css({position:$.datepicker._inDialog&&$.blockUI?"static":i?"fixed":"absolute",display:"none",left:s.left+"px",top:s.top+"px"});if(!t.inline){var o=$.datepicker._get(t,"showAnim"),u=$.datepicker._get(t,"duration"),a=function(){var e=t.dpDiv.find("iframe.ui-datepicker-cover");if(!!e.length){var n=$.datepicker._getBorders(t.dpDiv);e.css({left:-n[0],top:-n[1],width:t.dpDiv.outerWidth(),height:t.dpDiv.outerHeight()})}};t.dpDiv.zIndex($(e).zIndex()+1),$.datepicker._datepickerShowing=!0,$.effects&&($.effects.effect[o]||$.effects[o])?t.dpDiv.show(o,$.datepicker._get(t,"showOptions"),u,a):t.dpDiv[o||"show"](o?u:null,a),(!o||!u)&&a(),t.input.is(":visible")&&!t.input.is(":disabled")&&t.input.focus(),$.datepicker._curInst=t}},_updateDatepicker:function(e){this.maxRows=4;var t=$.datepicker._getBorders(e.dpDiv);instActive=e,e.dpDiv.empty().append(this._generateHTML(e)),this._attachHandlers(e);var n=e.dpDiv.find("iframe.ui-datepicker-cover");!n.length||n.css({left:-t[0],top:-t[1],width:e.dpDiv.outerWidth(),height:e.dpDiv.outerHeight()}),e.dpDiv.find("."+this._dayOverClass+" a").mouseover();var r=this._getNumberOfMonths(e),i=r[1],s=17;e.dpDiv.removeClass("ui-datepicker-multi-2 ui-datepicker-multi-3 ui-datepicker-multi-4").width(""),i>1&&e.dpDiv.addClass("ui-datepicker-multi-"+i).css("width",s*i+"em"),e.dpDiv[(r[0]!=1||r[1]!=1?"add":"remove")+"Class"]("ui-datepicker-multi"),e.dpDiv[(this._get(e,"isRTL")?"add":"remove")+"Class"]("ui-datepicker-rtl"),e==$.datepicker._curInst&&$.datepicker._datepickerShowing&&e.input&&e.input.is(":visible")&&!e.input.is(":disabled")&&e.input[0]!=document.activeElement&&e.input.focus();if(e.yearshtml){var o=e.yearshtml;setTimeout(function(){o===e.yearshtml&&e.yearshtml&&e.dpDiv.find("select.ui-datepicker-year:first").replaceWith(e.yearshtml),o=e.yearshtml=null},0)}},_getBorders:function(e){var t=function(e){return{thin:1,medium:2,thick:3}[e]||e};return[parseFloat(t(e.css("border-left-width"))),parseFloat(t(e.css("border-top-width")))]},_checkOffset:function(e,t,n){var r=e.dpDiv.outerWidth(),i=e.dpDiv.outerHeight(),s=e.input?e.input.outerWidth():0,o=e.input?e.input.outerHeight():0,u=document.documentElement.clientWidth+(n?0:$(document).scrollLeft()),a=document.documentElement.clientHeight+(n?0:$(document).scrollTop());return t.left-=this._get(e,"isRTL")?r-s:0,t.left-=n&&t.left==e.input.offset().left?$(document).scrollLeft():0,t.top-=n&&t.top==e.input.offset().top+o?$(document).scrollTop():0,t.left-=Math.min(t.left,t.left+r>u&&u>r?Math.abs(t.left+r-u):0),t.top-=Math.min(t.top,t.top+i>a&&a>i?Math.abs(i+o):0),t},_findPos:function(e){var t=this._getInst(e),n=this._get(t,"isRTL");while(e&&(e.type=="hidden"||e.nodeType!=1||$.expr.filters.hidden(e)))e=e[n?"previousSibling":"nextSibling"];var r=$(e).offset();return[r.left,r.top]},_hideDatepicker:function(e){var t=this._curInst;if(!t||e&&t!=$.data(e,PROP_NAME))return;if(this._datepickerShowing){var n=this._get(t,"showAnim"),r=this._get(t,"duration"),i=function(){$.datepicker._tidyDialog(t)};$.effects&&($.effects.effect[n]||$.effects[n])?t.dpDiv.hide(n,$.datepicker._get(t,"showOptions"),r,i):t.dpDiv[n=="slideDown"?"slideUp":n=="fadeIn"?"fadeOut":"hide"](n?r:null,i),n||i(),this._datepickerShowing=!1;var s=this._get(t,"onClose");s&&s.apply(t.input?t.input[0]:null,[t.input?t.input.val():"",t]),this._lastInput=null,this._inDialog&&(this._dialogInput.css({position:"absolute",left:"0",top:"-100px"}),$.blockUI&&($.unblockUI(),$("body").append(this.dpDiv))),this._inDialog=!1}},_tidyDialog:function(e){e.dpDiv.removeClass(this._dialogClass).unbind(".ui-datepicker-calendar")},_checkExternalClick:function(e){if(!$.datepicker._curInst)return;var t=$(e.target),n=$.datepicker._getInst(t[0]);(t[0].id!=$.datepicker._mainDivId&&t.parents("#"+$.datepicker._mainDivId).length==0&&!t.hasClass($.datepicker.markerClassName)&&!t.closest("."+$.datepicker._triggerClass).length&&$.datepicker._datepickerShowing&&(!$.datepicker._inDialog||!$.blockUI)||t.hasClass($.datepicker.markerClassName)&&$.datepicker._curInst!=n)&&$.datepicker._hideDatepicker()},_adjustDate:function(e,t,n){var r=$(e),i=this._getInst(r[0]);if(this._isDisabledDatepicker(r[0]))return;this._adjustInstDate(i,t+(n=="M"?this._get(i,"showCurrentAtPos"):0),n),this._updateDatepicker(i)},_gotoToday:function(e){var t=$(e),n=this._getInst(t[0]);if(this._get(n,"gotoCurrent")&&n.currentDay)n.selectedDay=n.currentDay,n.drawMonth=n.selectedMonth=n.currentMonth,n.drawYear=n.selectedYear=n.currentYear;else{var r=new Date;n.selectedDay=r.getDate(),n.drawMonth=n.selectedMonth=r.getMonth(),n.drawYear=n.selectedYear=r.getFullYear()}this._notifyChange(n),this._adjustDate(t)},_selectMonthYear:function(e,t,n){var r=$(e),i=this._getInst(r[0]);i["selected"+(n=="M"?"Month":"Year")]=i["draw"+(n=="M"?"Month":"Year")]=parseInt(t.options[t.selectedIndex].value,10),this._notifyChange(i),this._adjustDate(r)},_selectDay:function(e,t,n,r){var i=$(e);if($(r).hasClass(this._unselectableClass)||this._isDisabledDatepicker(i[0]))return;var s=this._getInst(i[0]);s.selectedDay=s.currentDay=$("a",r).html(),s.selectedMonth=s.currentMonth=t,s.selectedYear=s.currentYear=n,this._selectDate(e,this._formatDate(s,s.currentDay,s.currentMonth,s.currentYear))},_clearDate:function(e){var t=$(e),n=this._getInst(t[0]);this._selectDate(t,"")},_selectDate:function(e,t){var n=$(e),r=this._getInst(n[0]);t=t!=null?t:this._formatDate(r),r.input&&r.input.val(t),this._updateAlternate(r);var i=this._get(r,"onSelect");i?i.apply(r.input?r.input[0]:null,[t,r]):r.input&&r.input.trigger("change"),r.inline?this._updateDatepicker(r):(this._hideDatepicker(),this._lastInput=r.input[0],typeof r.input[0]!="object"&&r.input.focus(),this._lastInput=null)},_updateAlternate:function(e){var t=this._get(e,"altField");if(t){var n=this._get(e,"altFormat")||this._get(e,"dateFormat"),r=this._getDate(e),i=this.formatDate(n,r,this._getFormatConfig(e));$(t).each(function(){$(this).val(i)})}},noWeekends:function(e){var t=e.getDay();return[t>0&&t<6,""]},iso8601Week:function(e){var t=new Date(e.getTime());t.setDate(t.getDate()+4-(t.getDay()||7));var n=t.getTime();return t.setMonth(0),t.setDate(1),Math.floor(Math.round((n-t)/864e5)/7)+1},parseDate:function(e,t,n){if(e==null||t==null)throw"Invalid arguments";t=typeof t=="object"?t.toString():t+"";if(t=="")return null;var r=(n?n.shortYearCutoff:null)||this._defaults.shortYearCutoff;r=typeof r!="string"?r:(new Date).getFullYear()%100+parseInt(r,10);var i=(n?n.dayNamesShort:null)||this._defaults.dayNamesShort,s=(n?n.dayNames:null)||this._defaults.dayNames,o=(n?n.monthNamesShort:null)||this._defaults.monthNamesShort,u=(n?n.monthNames:null)||this._defaults.monthNames,a=-1,f=-1,l=-1,c=-1,h=!1,p=function(t){var n=y+1<e.length&&e.charAt(y+1)==t;return n&&y++,n},d=function(e){var n=p(e),r=e=="@"?14:e=="!"?20:e=="y"&&n?4:e=="o"?3:2,i=new RegExp("^\\d{1,"+r+"}"),s=t.substring(g).match(i);if(!s)throw"Missing number at position "+g;return g+=s[0].length,parseInt(s[0],10)},v=function(e,n,r){var i=$.map(p(e)?r:n,function(e,t){return[[t,e]]}).sort(function(e,t){return-(e[1].length-t[1].length)}),s=-1;$.each(i,function(e,n){var r=n[1];if(t.substr(g,r.length).toLowerCase()==r.toLowerCase())return s=n[0],g+=r.length,!1});if(s!=-1)return s+1;throw"Unknown name at position "+g},m=function(){if(t.charAt(g)!=e.charAt(y))throw"Unexpected literal at position "+g;g++},g=0;for(var y=0;y<e.length;y++)if(h)e.charAt(y)=="'"&&!p("'")?h=!1:m();else switch(e.charAt(y)){case"d":l=d("d");break;case"D":v("D",i,s);break;case"o":c=d("o");break;case"m":f=d("m");break;case"M":f=v("M",o,u);break;case"y":a=d("y");break;case"@":var b=new Date(d("@"));a=b.getFullYear(),f=b.getMonth()+1,l=b.getDate();break;case"!":var b=new Date((d("!")-this._ticksTo1970)/1e4);a=b.getFullYear(),f=b.getMonth()+1,l=b.getDate();break;case"'":p("'")?m():h=!0;break;default:m()}if(g<t.length){var w=t.substr(g);if(!/^\s+/.test(w))throw"Extra/unparsed characters found in date: "+w}a==-1?a=(new Date).getFullYear():a<100&&(a+=(new Date).getFullYear()-(new Date).getFullYear()%100+(a<=r?0:-100));if(c>-1){f=1,l=c;do{var E=this._getDaysInMonth(a,f-1);if(l<=E)break;f++,l-=E}while(!0)}var b=this._daylightSavingAdjust(new Date(a,f-1,l));if(b.getFullYear()!=a||b.getMonth()+1!=f||b.getDate()!=l)throw"Invalid date";return b},ATOM:"yy-mm-dd",COOKIE:"D, dd M yy",ISO_8601:"yy-mm-dd",RFC_822:"D, d M y",RFC_850:"DD, dd-M-y",RFC_1036:"D, d M y",RFC_1123:"D, d M yy",RFC_2822:"D, d M yy",RSS:"D, d M y",TICKS:"!",TIMESTAMP:"@",W3C:"yy-mm-dd",_ticksTo1970:(718685+Math.floor(492.5)-Math.floor(19.7)+Math.floor(4.925))*24*60*60*1e7,formatDate:function(e,t,n){if(!t)return"";var r=(n?n.dayNamesShort:null)||this._defaults.dayNamesShort,i=(n?n.dayNames:null)||this._defaults.dayNames,s=(n?n.monthNamesShort:null)||this._defaults.monthNamesShort,o=(n?n.monthNames:null)||this._defaults.monthNames,u=function(t){var n=h+1<e.length&&e.charAt(h+1)==t;return n&&h++,n},a=function(e,t,n){var r=""+t;if(u(e))while(r.length<n)r="0"+r;return r},f=function(e,t,n,r){return u(e)?r[t]:n[t]},l="",c=!1;if(t)for(var h=0;h<e.length;h++)if(c)e.charAt(h)=="'"&&!u("'")?c=!1:l+=e.charAt(h);else switch(e.charAt(h)){case"d":l+=a("d",t.getDate(),2);break;case"D":l+=f("D",t.getDay(),r,i);break;case"o":l+=a("o",Math.round(((new Date(t.getFullYear(),t.getMonth(),t.getDate())).getTime()-(new Date(t.getFullYear(),0,0)).getTime())/864e5),3);break;case"m":l+=a("m",t.getMonth()+1,2);break;case"M":l+=f("M",t.getMonth(),s,o);break;case"y":l+=u("y")?t.getFullYear():(t.getYear()%100<10?"0":"")+t.getYear()%100;break;case"@":l+=t.getTime();break;case"!":l+=t.getTime()*1e4+this._ticksTo1970;break;case"'":u("'")?l+="'":c=!0;break;default:l+=e.charAt(h)}return l},_possibleChars:function(e){var t="",n=!1,r=function(t){var n=i+1<e.length&&e.charAt(i+1)==t;return n&&i++,n};for(var i=0;i<e.length;i++)if(n)e.charAt(i)=="'"&&!r("'")?n=!1:t+=e.charAt(i);else switch(e.charAt(i)){case"d":case"m":case"y":case"@":t+="0123456789";break;case"D":case"M":return null;case"'":r("'")?t+="'":n=!0;break;default:t+=e.charAt(i)}return t},_get:function(e,t){return e.settings[t]!==undefined?e.settings[t]:this._defaults[t]},_setDateFromField:function(e,t){if(e.input.val()==e.lastVal)return;var n=this._get(e,"dateFormat"),r=e.lastVal=e.input?e.input.val():null,i,s;i=s=this._getDefaultDate(e);var o=this._getFormatConfig(e);try{i=this.parseDate(n,r,o)||s}catch(u){this.log(u),r=t?"":r}e.selectedDay=i.getDate(),e.drawMonth=e.selectedMonth=i.getMonth(),e.drawYear=e.selectedYear=i.getFullYear(),e.currentDay=r?i.getDate():0,e.currentMonth=r?i.getMonth():0,e.currentYear=r?i.getFullYear():0,this._adjustInstDate(e)},_getDefaultDate:function(e){return this._restrictMinMax(e,this._determineDate(e,this._get(e,"defaultDate"),new Date))},_determineDate:function(e,t,n){var r=function(e){var t=new Date;return t.setDate(t.getDate()+e),t},i=function(t){try{return $.datepicker.parseDate($.datepicker._get(e,"dateFormat"),t,$.datepicker._getFormatConfig(e))}catch(n){}var r=(t.toLowerCase().match(/^c/)?$.datepicker._getDate(e):null)||new Date,i=r.getFullYear(),s=r.getMonth(),o=r.getDate(),u=/([+-]?[0-9]+)\s*(d|D|w|W|m|M|y|Y)?/g,a=u.exec(t);while(a){switch(a[2]||"d"){case"d":case"D":o+=parseInt(a[1],10);break;case"w":case"W":o+=parseInt(a[1],10)*7;break;case"m":case"M":s+=parseInt(a[1],10),o=Math.min(o,$.datepicker._getDaysInMonth(i,s));break;case"y":case"Y":i+=parseInt(a[1],10),o=Math.min(o,$.datepicker._getDaysInMonth(i,s))}a=u.exec(t)}return new Date(i,s,o)},s=t==null||t===""?n:typeof t=="string"?i(t):typeof t=="number"?isNaN(t)?n:r(t):new Date(t.getTime());return s=s&&s.toString()=="Invalid Date"?n:s,s&&(s.setHours(0),s.setMinutes(0),s.setSeconds(0),s.setMilliseconds(0)),this._daylightSavingAdjust(s)},_daylightSavingAdjust:function(e){return e?(e.setHours(e.getHours()>12?e.getHours()+2:0),e):null},_setDate:function(e,t,n){var r=!t,i=e.selectedMonth,s=e.selectedYear,o=this._restrictMinMax(e,this._determineDate(e,t,new Date));e.selectedDay=e.currentDay=o.getDate(),e.drawMonth=e.selectedMonth=e.currentMonth=o.getMonth(),e.drawYear=e.selectedYear=e.currentYear=o.getFullYear(),(i!=e.selectedMonth||s!=e.selectedYear)&&!n&&this._notifyChange(e),this._adjustInstDate(e),e.input&&e.input.val(r?"":this._formatDate(e))},_getDate:function(e){var t=!e.currentYear||e.input&&e.input.val()==""?null:this._daylightSavingAdjust(new Date(e.currentYear,e.currentMonth,e.currentDay));return t},_attachHandlers:function(e){var t=this._get(e,"stepMonths"),n="#"+e.id.replace(/\\\\/g,"\\");e.dpDiv.find("[data-handler]").map(function(){var e={prev:function(){window["DP_jQuery_"+dpuuid].datepicker._adjustDate(n,-t,"M")},next:function(){window["DP_jQuery_"+dpuuid].datepicker._adjustDate(n,+t,"M")},hide:function(){window["DP_jQuery_"+dpuuid].datepicker._hideDatepicker()},today:function(){window["DP_jQuery_"+dpuuid].datepicker._gotoToday(n)},selectDay:function(){return window["DP_jQuery_"+dpuuid].datepicker._selectDay(n,+this.getAttribute("data-month"),+this.getAttribute("data-year"),this),!1},selectMonth:function(){return window["DP_jQuery_"+dpuuid].datepicker._selectMonthYear(n,this,"M"),!1},selectYear:function(){return window["DP_jQuery_"+dpuuid].datepicker._selectMonthYear(n,this,"Y"),!1}};$(this).bind(this.getAttribute("data-event"),e[this.getAttribute("data-handler")])})},_generateHTML:function(e){var t=new Date;t=this._daylightSavingAdjust(new Date(t.getFullYear(),t.getMonth(),t.getDate()));var n=this._get(e,"isRTL"),r=this._get(e,"showButtonPanel"),i=this._get(e,"hideIfNoPrevNext"),s=this._get(e,"navigationAsDateFormat"),o=this._getNumberOfMonths(e),u=this._get(e,"showCurrentAtPos"),a=this._get(e,"stepMonths"),f=o[0]!=1||o[1]!=1,l=this._daylightSavingAdjust(e.currentDay?new Date(e.currentYear,e.currentMonth,e.currentDay):new Date(9999,9,9)),c=this._getMinMaxDate(e,"min"),h=this._getMinMaxDate(e,"max"),p=e.drawMonth-u,d=e.drawYear;p<0&&(p+=12,d--);if(h){var v=this._daylightSavingAdjust(new Date(h.getFullYear(),h.getMonth()-o[0]*o[1]+1,h.getDate()));v=c&&v<c?c:v;while(this._daylightSavingAdjust(new Date(d,p,1))>v)p--,p<0&&(p=11,d--)}e.drawMonth=p,e.drawYear=d;var m=this._get(e,"prevText");m=s?this.formatDate(m,this._daylightSavingAdjust(new Date(d,p-a,1)),this._getFormatConfig(e)):m;var g=this._canAdjustMonth(e,-1,d,p)?'<a class="ui-datepicker-prev ui-corner-all" data-handler="prev" data-event="click" title="'+m+'"><span class="ui-icon ui-icon-circle-triangle-'+(n?"e":"w")+'">'+m+"</span></a>":i?"":'<a class="ui-datepicker-prev ui-corner-all ui-state-disabled" title="'+m+'"><span class="ui-icon ui-icon-circle-triangle-'+(n?"e":"w")+'">'+m+"</span></a>",y=this._get(e,"nextText");y=s?this.formatDate(y,this._daylightSavingAdjust(new Date(d,p+a,1)),this._getFormatConfig(e)):y;var b=this._canAdjustMonth(e,1,d,p)?'<a class="ui-datepicker-next ui-corner-all" data-handler="next" data-event="click" title="'+y+'"><span class="ui-icon ui-icon-circle-triangle-'+(n?"w":"e")+'">'+y+"</span></a>":i?"":'<a class="ui-datepicker-next ui-corner-all ui-state-disabled" title="'+y+'"><span class="ui-icon ui-icon-circle-triangle-'+(n?"w":"e")+'">'+y+"</span></a>",w=this._get(e,"currentText"),E=this._get(e,"gotoCurrent")&&e.currentDay?l:t;w=s?this.formatDate(w,E,this._getFormatConfig(e)):w;var S=e.inline?"":'<button type="button" class="ui-datepicker-close ui-state-default ui-priority-primary ui-corner-all" data-handler="hide" data-event="click">'+this._get(e,"closeText")+"</button>",x=r?'<div class="ui-datepicker-buttonpane ui-widget-content">'+(n?S:"")+(this._isInRange(e,E)?'<button type="button" class="ui-datepicker-current ui-state-default ui-priority-secondary ui-corner-all" data-handler="today" data-event="click">'+w+"</button>":"")+(n?"":S)+"</div>":"",T=parseInt(this._get(e,"firstDay"),10);T=isNaN(T)?0:T;var N=this._get(e,"showWeek"),C=this._get(e,"dayNames"),k=this._get(e,"dayNamesShort"),L=this._get(e,"dayNamesMin"),A=this._get(e,"monthNames"),O=this._get(e,"monthNamesShort"),M=this._get(e,"beforeShowDay"),_=this._get(e,"showOtherMonths"),D=this._get(e,"selectOtherMonths"),P=this._get(e,"calculateWeek")||this.iso8601Week,H=this._getDefaultDate(e),B="";for(var j=0;j<o[0];j++){var F="";this.maxRows=4;for(var I=0;I<o[1];I++){var q=this._daylightSavingAdjust(new Date(d,p,e.selectedDay)),R=" ui-corner-all",U="";if(f){U+='<div class="ui-datepicker-group';if(o[1]>1)switch(I){case 0:U+=" ui-datepicker-group-first",R=" ui-corner-"+(n?"right":"left");break;case o[1]-1:U+=" ui-datepicker-group-last",R=" ui-corner-"+(n?"left":"right");break;default:U+=" ui-datepicker-group-middle",R=""}U+='">'}U+='<div class="ui-datepicker-header ui-widget-header ui-helper-clearfix'+R+'">'+(/all|left/.test(R)&&j==0?n?b:g:"")+(/all|right/.test(R)&&j==0?n?g:b:"")+this._generateMonthYearHeader(e,p,d,c,h,j>0||I>0,A,O)+'</div><table class="ui-datepicker-calendar"><thead>'+"<tr>";var z=N?'<th class="ui-datepicker-week-col">'+this._get(e,"weekHeader")+"</th>":"";for(var W=0;W<7;W++){var X=(W+T)%7;z+="<th"+((W+T+6)%7>=5?' class="ui-datepicker-week-end"':"")+">"+'<span title="'+C[X]+'">'+L[X]+"</span></th>"}U+=z+"</tr></thead><tbody>";var V=this._getDaysInMonth(d,p);d==e.selectedYear&&p==e.selectedMonth&&(e.selectedDay=Math.min(e.selectedDay,V));var J=(this._getFirstDayOfMonth(d,p)-T+7)%7,K=Math.ceil((J+V)/7),Q=f?this.maxRows>K?this.maxRows:K:K;this.maxRows=Q;var G=this._daylightSavingAdjust(new Date(d,p,1-J));for(var Y=0;Y<Q;Y++){U+="<tr>";var Z=N?'<td class="ui-datepicker-week-col">'+this._get(e,"calculateWeek")(G)+"</td>":"";for(var W=0;W<7;W++){var et=M?M.apply(e.input?e.input[0]:null,[G]):[!0,""],tt=G.getMonth()!=p,nt=tt&&!D||!et[0]||c&&G<c||h&&G>h;Z+='<td class="'+((W+T+6)%7>=5?" ui-datepicker-week-end":"")+(tt?" ui-datepicker-other-month":"")+(G.getTime()==q.getTime()&&p==e.selectedMonth&&e._keyEvent||H.getTime()==G.getTime()&&H.getTime()==q.getTime()?" "+this._dayOverClass:"")+(nt?" "+this._unselectableClass+" ui-state-disabled":"")+(tt&&!_?"":" "+et[1]+(G.getTime()==l.getTime()?" "+this._currentClass:"")+(G.getTime()==t.getTime()?" ui-datepicker-today":""))+'"'+((!tt||_)&&et[2]?' title="'+et[2]+'"':"")+(nt?"":' data-handler="selectDay" data-event="click" data-month="'+G.getMonth()+'" data-year="'+G.getFullYear()+'"')+">"+(tt&&!_?" ":nt?'<span class="ui-state-default">'+G.getDate()+"</span>":'<a class="ui-state-default'+(G.getTime()==t.getTime()?" ui-state-highlight":"")+(G.getTime()==l.getTime()?" ui-state-active":"")+(tt?" ui-priority-secondary":"")+'" href="#">'+G.getDate()+"</a>")+"</td>",G.setDate(G.getDate()+1),G=this._daylightSavingAdjust(G)}U+=Z+"</tr>"}p++,p>11&&(p=0,d++),U+="</tbody></table>"+(f?"</div>"+(o[0]>0&&I==o[1]-1?'<div class="ui-datepicker-row-break"></div>':""):""),F+=U}B+=F}return B+=x+($.browser.msie&&parseInt($.browser.version,10)<7&&!e.inline?'<iframe src="javascript:false;" class="ui-datepicker-cover" frameborder="0"></iframe>':""),e._keyEvent=!1,B},_generateMonthYearHeader:function(e,t,n,r,i,s,o,u){var a=this._get(e,"changeMonth"),f=this._get(e,"changeYear"),l=this._get(e,"showMonthAfterYear"),c='<div class="ui-datepicker-title">',h="";if(s||!a)h+='<span class="ui-datepicker-month">'+o[t]+"</span>";else{var p=r&&r.getFullYear()==n,d=i&&i.getFullYear()==n;h+='<select class="ui-datepicker-month" data-handler="selectMonth" data-event="change">';for(var v=0;v<12;v++)(!p||v>=r.getMonth())&&(!d||v<=i.getMonth())&&(h+='<option value="'+v+'"'+(v==t?' selected="selected"':"")+">"+u[v]+"</option>");h+="</select>"}l||(c+=h+(s||!a||!f?" ":""));if(!e.yearshtml){e.yearshtml="";if(s||!f)c+='<span class="ui-datepicker-year">'+n+"</span>";else{var m=this._get(e,"yearRange").split(":"),g=(new Date).getFullYear(),y=function(e){var t=e.match(/c[+-].*/)?n+parseInt(e.substring(1),10):e.match(/[+-].*/)?g+parseInt(e,10):parseInt(e,10);return isNaN(t)?g:t},b=y(m[0]),w=Math.max(b,y(m[1]||""));b=r?Math.max(b,r.getFullYear()):b,w=i?Math.min(w,i.getFullYear()):w,e.yearshtml+='<select class="ui-datepicker-year" data-handler="selectYear" data-event="change">';for(;b<=w;b++)e.yearshtml+='<option value="'+b+'"'+(b==n?' selected="selected"':"")+">"+b+"</option>";e.yearshtml+="</select>",c+=e.yearshtml,e.yearshtml=null}}return c+=this._get(e,"yearSuffix"),l&&(c+=(s||!a||!f?" ":"")+h),c+="</div>",c},_adjustInstDate:function(e,t,n){var r=e.drawYear+(n=="Y"?t:0),i=e.drawMonth+(n=="M"?t:0),s=Math.min(e.selectedDay,this._getDaysInMonth(r,i))+(n=="D"?t:0),o=this._restrictMinMax(e,this._daylightSavingAdjust(new Date(r,i,s)));e.selectedDay=o.getDate(),e.drawMonth=e.selectedMonth=o.getMonth(),e.drawYear=e.selectedYear=o.getFullYear(),(n=="M"||n=="Y")&&this._notifyChange(e)},_restrictMinMax:function(e,t){var n=this._getMinMaxDate(e,"min"),r=this._getMinMaxDate(e,"max"),i=n&&t<n?n:t;return i=r&&i>r?r:i,i},_notifyChange:function(e){var t=this._get(e,"onChangeMonthYear");t&&t.apply(e.input?e.input[0]:null,[e.selectedYear,e.selectedMonth+1,e])},_getNumberOfMonths:function(e){var t=this._get(e,"numberOfMonths");return t==null?[1,1]:typeof t=="number"?[1,t]:t},_getMinMaxDate:function(e,t){return this._determineDate(e,this._get(e,t+"Date"),null)},_getDaysInMonth:function(e,t){return 32-this._daylightSavingAdjust(new Date(e,t,32)).getDate()},_getFirstDayOfMonth:function(e,t){return(new Date(e,t,1)).getDay()},_canAdjustMonth:function(e,t,n,r){var i=this._getNumberOfMonths(e),s=this._daylightSavingAdjust(new Date(n,r+(t<0?t:i[0]*i[1]),1));return t<0&&s.setDate(this._getDaysInMonth(s.getFullYear(),s.getMonth())),this._isInRange(e,s)},_isInRange:function(e,t){var n=this._getMinMaxDate(e,"min"),r=this._getMinMaxDate(e,"max");return(!n||t.getTime()>=n.getTime())&&(!r||t.getTime()<=r.getTime())},_getFormatConfig:function(e){var t=this._get(e,"shortYearCutoff");return t=typeof t!="string"?t:(new Date).getFullYear()%100+parseInt(t,10),{shortYearCutoff:t,dayNamesShort:this._get(e,"dayNamesShort"),dayNames:this._get(e,"dayNames"),monthNamesShort:this._get(e,"monthNamesShort"),monthNames:this._get(e,"monthNames")}},_formatDate:function(e,t,n,r){t||(e.currentDay=e.selectedDay,e.currentMonth=e.selectedMonth,e.currentYear=e.selectedYear);var i=t?typeof t=="object"?t:this._daylightSavingAdjust(new Date(r,n,t)):this._daylightSavingAdjust(new Date(e.currentYear,e.currentMonth,e.currentDay));return this.formatDate(this._get(e,"dateFormat"),i,this._getFormatConfig(e))}}),$.fn.datepicker=function(e){if(!this.length)return this;$.datepicker.initialized||($(document).mousedown($.datepicker._checkExternalClick).find(document.body).append($.datepicker.dpDiv),$.datepicker.initialized=!0);var t=Array.prototype.slice.call(arguments,1);return typeof e!="string"||e!="isDisabled"&&e!="getDate"&&e!="widget"?e=="option"&&arguments.length==2&&typeof arguments[1]=="string"?$.datepicker["_"+e+"Datepicker"].apply($.datepicker,[this[0]].concat(t)):this.each(function(){typeof e=="string"?$.datepicker["_"+e+"Datepicker"].apply($.datepicker,[this].concat(t)):$.datepicker._attachDatepicker(this,e)}):$.datepicker["_"+e+"Datepicker"].apply($.datepicker,[this[0]].concat(t))},$.datepicker=new Datepicker,$.datepicker.initialized=!1,$.datepicker.uuid=(new Date).getTime(),$.datepicker.version="1.9.0",window["DP_jQuery_"+dpuuid]=$})(jQuery);(function(e,t){var n="ui-dialog ui-widget ui-widget-content ui-corner-all ",r={buttons:!0,height:!0,maxHeight:!0,maxWidth:!0,minHeight:!0,minWidth:!0,width:!0},i={maxHeight:!0,maxWidth:!0,minHeight:!0,minWidth:!0};e.widget("ui.dialog",{version:"1.9.0",options:{autoOpen:!0,buttons:{},closeOnEscape:!0,closeText:"close",dialogClass:"",draggable:!0,hide:null,height:"auto",maxHeight:!1,maxWidth:!1,minHeight:150,minWidth:150,modal:!1,position:{my:"center",at:"center",of:window,collision:"fit",using:function(t){var n=e(this).css(t).offset().top;n<0&&e(this).css("top",t.top-n)}},resizable:!0,show:null,stack:!0,title:"",width:300,zIndex:1e3},_create:function(){this.originalTitle=this.element.attr("title"),typeof this.originalTitle!="string"&&(this.originalTitle=""),this.oldPosition={parent:this.element.parent(),index:this.element.parent().children().index(this.element)},this.options.title=this.options.title||this.originalTitle;var t=this,r=this.options,i=r.title||" ",s=(this.uiDialog=e("<div>")).addClass(n+r.dialogClass).css({display:"none",outline:0,zIndex:r.zIndex}).attr("tabIndex",-1).keydown(function(n){r.closeOnEscape&&!n.isDefaultPrevented()&&n.keyCode&&n.keyCode===e.ui.keyCode.ESCAPE&&(t.close(n),n.preventDefault())}).mousedown(function(e){t.moveToTop(!1,e)}).appendTo("body"),o=this.element.show().removeAttr("title").addClass("ui-dialog-content ui-widget-content").appendTo(s),u=(this.uiDialogTitlebar=e("<div>")).addClass("ui-dialog-titlebar ui-widget-header ui-corner-all ui-helper-clearfix").prependTo(s),a=e("<a href='#'></a>").addClass("ui-dialog-titlebar-close ui-corner-all").attr("role","button").click(function(e){e.preventDefault(),t.close(e)}).appendTo(u),f=(this.uiDialogTitlebarCloseText=e("<span>")).addClass("ui-icon ui-icon-closethick").text(r.closeText).appendTo(a),l=e("<span>").uniqueId().addClass("ui-dialog-title").html(i).prependTo(u),c=(this.uiDialogButtonPane=e("<div>")).addClass("ui-dialog-buttonpane ui-widget-content ui-helper-clearfix"),h=(this.uiButtonSet=e("<div>")).addClass("ui-dialog-buttonset").appendTo(c);s.attr({role:"dialog","aria-labelledby":l.attr("id")}),u.find("*").add(u).disableSelection(),this._hoverable(a),this._focusable(a),r.draggable&&e.fn.draggable&&this._makeDraggable(),r.resizable&&e.fn.resizable&&this._makeResizable(),this._createButtons(r.buttons),this._isOpen=!1,e.fn.bgiframe&&s.bgiframe(),this._on(s,{keydown:function(t){if(!r.modal||t.keyCode!==e.ui.keyCode.TAB)return;var n=e(":tabbable",s),i=n.filter(":first"),o=n.filter(":last");if(t.target===o[0]&&!t.shiftKey)return i.focus(1),!1;if(t.target===i[0]&&t.shiftKey)return o.focus(1),!1}})},_init:function(){this.options.autoOpen&&this.open()},_destroy:function(){var e,t=this.oldPosition;this.overlay&&this.overlay.destroy(),this.uiDialog.hide(),this.element.removeClass("ui-dialog-content ui-widget-content").hide().appendTo("body"),this.uiDialog.remove(),this.originalTitle&&this.element.attr("title",this.originalTitle),e=t.parent.children().eq(t.index),e.length&&e[0]!==this.element[0]?e.before(this.element):t.parent.append(this.element)},widget:function(){return this.uiDialog},close:function(t){var n=this,r,i;if(!this._isOpen)return;if(!1===this._trigger("beforeClose",t))return;return this._isOpen=!1,this.overlay&&this.overlay.destroy(),this.options.hide?this.uiDialog.hide(this.options.hide,function(){n._trigger("close",t)}):(this.uiDialog.hide(),this._trigger("close",t)),e.ui.dialog.overlay.resize(),this.options.modal&&(r=0,e(".ui-dialog").each(function(){this!==n.uiDialog[0]&&(i=e(this).css("z-index"),isNaN(i)||(r=Math.max(r,i)))}),e.ui.dialog.maxZ=r),this},isOpen:function(){return this._isOpen},moveToTop:function(t,n){var r=this.options,i;return r.modal&&!t||!r.stack&&!r.modal?this._trigger("focus",n):(r.zIndex>e.ui.dialog.maxZ&&(e.ui.dialog.maxZ=r.zIndex),this.overlay&&(e.ui.dialog.maxZ+=1,e.ui.dialog.overlay.maxZ=e.ui.dialog.maxZ,this.overlay.$el.css("z-index",e.ui.dialog.overlay.maxZ)),i={scrollTop:this.element.scrollTop(),scrollLeft:this.element.scrollLeft()},e.ui.dialog.maxZ+=1,this.uiDialog.css("z-index",e.ui.dialog.maxZ),this.element.attr(i),this._trigger("focus",n),this)},open:function(){if(this._isOpen)return;var t,n=this.options,r=this.uiDialog;return this._size(),this._position(n.position),r.show(n.show),this.overlay=n.modal?new e.ui.dialog.overlay(this):null,this.moveToTop(!0),t=this.element.find(":tabbable"),t.length||(t=this.uiDialogButtonPane.find(":tabbable"),t.length||(t=r)),t.eq(0).focus(),this._isOpen=!0,this._trigger("open"),this},_createButtons:function(t){var n,r,i=this,s=!1;this.uiDialogButtonPane.remove(),this.uiButtonSet.empty(),typeof t=="object"&&t!==null&&e.each(t,function(){return!(s=!0)}),s?(e.each(t,function(t,n){n=e.isFunction(n)?{click:n,text:t}:n;var r=e("<button type='button'>").attr(n,!0).unbind("click").click(function(){n.click.apply(i.element[0],arguments)}).appendTo(i.uiButtonSet);e.fn.button&&r.button()}),this.uiDialog.addClass("ui-dialog-buttons"),this.uiDialogButtonPane.appendTo(this.uiDialog)):this.uiDialog.removeClass("ui-dialog-buttons")},_makeDraggable:function(){function r(e){return{position:e.position,offset:e.offset}}var t=this,n=this.options;this.uiDialog.draggable({cancel:".ui-dialog-content, .ui-dialog-titlebar-close",handle:".ui-dialog-titlebar",containment:"document",start:function(n,i){e(this).addClass("ui-dialog-dragging"),t._trigger("dragStart",n,r(i))},drag:function(e,n){t._trigger("drag",e,r(n))},stop:function(i,s){n.position=[s.position.left-t.document.scrollLeft(),s.position.top-t.document.scrollTop()],e(this).removeClass("ui-dialog-dragging"),t._trigger("dragStop",i,r(s)),e.ui.dialog.overlay.resize()}})},_makeResizable:function(n){function u(e){return{originalPosition:e.originalPosition,originalSize:e.originalSize,position:e.position,size:e.size}}n=n===t?this.options.resizable:n;var r=this,i=this.options,s=this.uiDialog.css("position"),o=typeof n=="string"?n:"n,e,s,w,se,sw,ne,nw";this.uiDialog.resizable({cancel:".ui-dialog-content",containment:"document",alsoResize:this.element,maxWidth:i.maxWidth,maxHeight:i.maxHeight,minWidth:i.minWidth,minHeight:this._minHeight(),handles:o,start:function(t,n){e(this).addClass("ui-dialog-resizing"),r._trigger("resizeStart",t,u(n))},resize:function(e,t){r._trigger("resize",e,u(t))},stop:function(t,n){e(this).removeClass("ui-dialog-resizing"),i.height=e(this).height(),i.width=e(this).width(),r._trigger("resizeStop",t,u(n)),e.ui.dialog.overlay.resize()}}).css("position",s).find(".ui-resizable-se").addClass("ui-icon ui-icon-grip-diagonal-se")},_minHeight:function(){var e=this.options;return e.height==="auto"?e.minHeight:Math.min(e.minHeight,e.height)},_position:function(t){var n=[],r=[0,0],i;if(t){if(typeof t=="string"||typeof t=="object"&&"0"in t)n=t.split?t.split(" "):[t[0],t[1]],n.length===1&&(n[1]=n[0]),e.each(["left","top"],function(e,t){+n[e]===n[e]&&(r[e]=n[e],n[e]=t)}),t={my:n.join(" "),at:n.join(" "),offset:r.join(" ")};t=e.extend({},e.ui.dialog.prototype.options.position,t)}else t=e.ui.dialog.prototype.options.position;i=this.uiDialog.is(":visible"),i||this.uiDialog.show(),this.uiDialog.position(t),i||this.uiDialog.hide()},_setOptions:function(t){var n=this,s={},o=!1;e.each(t,function(e,t){n._setOption(e,t),e in r&&(o=!0),e in i&&(s[e]=t)}),o&&this._size(),this.uiDialog.is(":data(resizable)")&&this.uiDialog.resizable("option",s)},_setOption:function(t,r){var i,s,o=this.uiDialog;switch(t){case"buttons":this._createButtons(r);break;case"closeText":this.uiDialogTitlebarCloseText.text(""+r);break;case"dialogClass":o.removeClass(this.options.dialogClass).addClass(n+r);break;case"disabled":r?o.addClass("ui-dialog-disabled"):o.removeClass("ui-dialog-disabled");break;case"draggable":i=o.is(":data(draggable)"),i&&!r&&o.draggable("destroy"),!i&&r&&this._makeDraggable();break;case"position":this._position(r);break;case"resizable":s=o.is(":data(resizable)"),s&&!r&&o.resizable("destroy"),s&&typeof r=="string"&&o.resizable("option","handles",r),!s&&r!==!1&&this._makeResizable(r);break;case"title":e(".ui-dialog-title",this.uiDialogTitlebar).html(""+(r||" "))}this._super(t,r)},_size:function(){var t,n,r,i=this.options,s=this.uiDialog.is(":visible");this.element.show().css({width:"auto",minHeight:0,height:0}),i.minWidth>i.width&&(i.width=i.minWidth),t=this.uiDialog.css({height:"auto",width:i.width}).outerHeight(),n=Math.max(0,i.minHeight-t),i.height==="auto"?e.support.minHeight?this.element.css({minHeight:n,height:"auto"}):(this.uiDialog.show(),r=this.element.css("height","auto").height(),s||this.uiDialog.hide(),this.element.height(Math.max(r,n))):this.element.height(Math.max(i.height-t,0)),this.uiDialog.is(":data(resizable)")&&this.uiDialog.resizable("option","minHeight",this._minHeight())}}),e.extend(e.ui.dialog,{uuid:0,maxZ:0,getTitleId:function(e){var t=e.attr("id");return t||(this.uuid+=1,t=this.uuid),"ui-dialog-title-"+t},overlay:function(t){this.$el=e.ui.dialog.overlay.create(t)}}),e.extend(e.ui.dialog.overlay,{instances:[],oldInstances:[],maxZ:0,events:e.map("focus,mousedown,mouseup,keydown,keypress,click".split(","),function(e){return e+".dialog-overlay"}).join(" "),create:function(t){this.instances.length===0&&(setTimeout(function(){e.ui.dialog.overlay.instances.length&&e(document).bind(e.ui.dialog.overlay.events,function(t){if(e(t.target).zIndex()<e.ui.dialog.overlay.maxZ)return!1})},1),e(window).bind("resize.dialog-overlay",e.ui.dialog.overlay.resize));var n=this.oldInstances.pop()||e("<div>").addClass("ui-widget-overlay");return e(document).bind("keydown.dialog-overlay",function(r){var i=e.ui.dialog.overlay.instances;i.length!==0&&i[i.length-1]===n&&t.options.closeOnEscape&&!r.isDefaultPrevented()&&r.keyCode&&r.keyCode===e.ui.keyCode.ESCAPE&&(t.close(r),r.preventDefault())}),n.appendTo(document.body).css({width:this.width(),height:this.height()}),e.fn.bgiframe&&n.bgiframe(),this.instances.push(n),n},destroy:function(t){var n=e.inArray(t,this.instances),r=0;n!==-1&&this.oldInstances.push(this.instances.splice(n,1)[0]),this.instances.length===0&&e([document,window]).unbind(".dialog-overlay"),t.height(0).width(0).remove(),e.each(this.instances,function(){r=Math.max(r,this.css("z-index"))}),this.maxZ=r},height:function(){var t,n;return e.browser.msie?(t=Math.max(document.documentElement.scrollHeight,document.body.scrollHeight),n=Math.max(document.documentElement.offsetHeight,document.body.offsetHeight),t<n?e(window).height()+"px":t+"px"):e(document).height()+"px"},width:function(){var t,n;return e.browser.msie?(t=Math.max(document.documentElement.scrollWidth,document.body.scrollWidth),n=Math.max(document.documentElement.offsetWidth,document.body.offsetWidth),t<n?e(window).width()+"px":t+"px"):e(document).width()+"px"},resize:function(){var t=e([]);e.each(e.ui.dialog.overlay.instances,function(){t=t.add(this)}),t.css({width:0,height:0}).css({width:e.ui.dialog.overlay.width(),height:e.ui.dialog.overlay.height()})}}),e.extend(e.ui.dialog.overlay.prototype,{destroy:function(){e.ui.dialog.overlay.destroy(this.$el)}})})(jQuery);(function(e,t){var n=5;e.widget("ui.slider",e.ui.mouse,{version:"1.9.0",widgetEventPrefix:"slide",options:{animate:!1,distance:0,max:100,min:0,orientation:"horizontal",range:!1,step:1,value:0,values:null},_create:function(){var t,r=this.options,i=this.element.find(".ui-slider-handle").addClass("ui-state-default ui-corner-all"),s="<a class='ui-slider-handle ui-state-default ui-corner-all' href='#'></a>",o=r.values&&r.values.length||1,u=[];this._keySliding=!1,this._mouseSliding=!1,this._animateOff=!0,this._handleIndex=null,this._detectOrientation(),this._mouseInit(),this.element.addClass("ui-slider ui-slider-"+this.orientation+" ui-widget"+" ui-widget-content"+" ui-corner-all"+(r.disabled?" ui-slider-disabled ui-disabled":"")),this.range=e([]),r.range&&(r.range===!0&&(r.values||(r.values=[this._valueMin(),this._valueMin()]),r.values.length&&r.values.length!==2&&(r.values=[r.values[0],r.values[0]])),this.range=e("<div></div>").appendTo(this.element).addClass("ui-slider-range ui-widget-header"+(r.range==="min"||r.range==="max"?" ui-slider-range-"+r.range:"")));for(t=i.length;t<o;t++)u.push(s);this.handles=i.add(e(u.join("")).appendTo(this.element)),this.handle=this.handles.eq(0),this.handles.add(this.range).filter("a").click(function(e){e.preventDefault()}).mouseenter(function(){r.disabled||e(this).addClass("ui-state-hover")}).mouseleave(function(){e(this).removeClass("ui-state-hover")}).focus(function(){r.disabled?e(this).blur():(e(".ui-slider .ui-state-focus").removeClass("ui-state-focus"),e(this).addClass("ui-state-focus"))}).blur(function(){e(this).removeClass("ui-state-focus")}),this.handles.each(function(t){e(this).data("ui-slider-handle-index",t)}),this._on(this.handles,{keydown:function(t){var r,i,s,o,u=e(t.target).data("ui-slider-handle-index");switch(t.keyCode){case e.ui.keyCode.HOME:case e.ui.keyCode.END:case e.ui.keyCode.PAGE_UP:case e.ui.keyCode.PAGE_DOWN:case e.ui.keyCode.UP:case e.ui.keyCode.RIGHT:case e.ui.keyCode.DOWN:case e.ui.keyCode.LEFT:t.preventDefault();if(!this._keySliding){this._keySliding=!0,e(t.target).addClass("ui-state-active"),r=this._start(t,u);if(r===!1)return}}o=this.options.step,this.options.values&&this.options.values.length?i=s=this.values(u):i=s=this.value();switch(t.keyCode){case e.ui.keyCode.HOME:s=this._valueMin();break;case e.ui.keyCode.END:s=this._valueMax();break;case e.ui.keyCode.PAGE_UP:s=this._trimAlignValue(i+(this._valueMax()-this._valueMin())/n);break;case e.ui.keyCode.PAGE_DOWN:s=this._trimAlignValue(i-(this._valueMax()-this._valueMin())/n);break;case e.ui.keyCode.UP:case e.ui.keyCode.RIGHT:if(i===this._valueMax())return;s=this._trimAlignValue(i+o);break;case e.ui.keyCode.DOWN:case e.ui.keyCode.LEFT:if(i===this._valueMin())return;s=this._trimAlignValue(i-o)}this._slide(t,u,s)},keyup:function(t){var n=e(t.target).data("ui-slider-handle-index");this._keySliding&&(this._keySliding=!1,this._stop(t,n),this._change(t,n),e(t.target).removeClass("ui-state-active"))}}),this._refreshValue(),this._animateOff=!1},_destroy:function(){this.handles.remove(),this.range.remove(),this.element.removeClass("ui-slider ui-slider-horizontal ui-slider-vertical ui-slider-disabled ui-widget ui-widget-content ui-corner-all"),this._mouseDestroy()},_mouseCapture:function(t){var n,r,i,s,o,u,a,f,l=this,c=this.options;return c.disabled?!1:(this.elementSize={width:this.element.outerWidth(),height:this.element.outerHeight()},this.elementOffset=this.element.offset(),n={x:t.pageX,y:t.pageY},r=this._normValueFromMouse(n),i=this._valueMax()-this._valueMin()+1,this.handles.each(function(t){var n=Math.abs(r-l.values(t));i>n&&(i=n,s=e(this),o=t)}),c.range===!0&&this.values(1)===c.min&&(o+=1,s=e(this.handles[o])),u=this._start(t,o),u===!1?!1:(this._mouseSliding=!0,this._handleIndex=o,s.addClass("ui-state-active").focus(),a=s.offset(),f=!e(t.target).parents().andSelf().is(".ui-slider-handle"),this._clickOffset=f?{left:0,top:0}:{left:t.pageX-a.left-s.width()/2,top:t.pageY-a.top-s.height()/2-(parseInt(s.css("borderTopWidth"),10)||0)-(parseInt(s.css("borderBottomWidth"),10)||0)+(parseInt(s.css("marginTop"),10)||0)},this.handles.hasClass("ui-state-hover")||this._slide(t,o,r),this._animateOff=!0,!0))},_mouseStart:function(e){return!0},_mouseDrag:function(e){var t={x:e.pageX,y:e.pageY},n=this._normValueFromMouse(t);return this._slide(e,this._handleIndex,n),!1},_mouseStop:function(e){return this.handles.removeClass("ui-state-active"),this._mouseSliding=!1,this._stop(e,this._handleIndex),this._change(e,this._handleIndex),this._handleIndex=null,this._clickOffset=null,this._animateOff=!1,!1},_detectOrientation:function(){this.orientation=this.options.orientation==="vertical"?"vertical":"horizontal"},_normValueFromMouse:function(e){var t,n,r,i,s;return this.orientation==="horizontal"?(t=this.elementSize.width,n=e.x-this.elementOffset.left-(this._clickOffset?this._clickOffset.left:0)):(t=this.elementSize.height,n=e.y-this.elementOffset.top-(this._clickOffset?this._clickOffset.top:0)),r=n/t,r>1&&(r=1),r<0&&(r=0),this.orientation==="vertical"&&(r=1-r),i=this._valueMax()-this._valueMin(),s=this._valueMin()+r*i,this._trimAlignValue(s)},_start:function(e,t){var n={handle:this.handles[t],value:this.value()};return this.options.values&&this.options.values.length&&(n.value=this.values(t),n.values=this.values()),this._trigger("start",e,n)},_slide:function(e,t,n){var r,i,s;this.options.values&&this.options.values.length?(r=this.values(t?0:1),this.options.values.length===2&&this.options.range===!0&&(t===0&&n>r||t===1&&n<r)&&(n=r),n!==this.values(t)&&(i=this.values(),i[t]=n,s=this._trigger("slide",e,{handle:this.handles[t],value:n,values:i}),r=this.values(t?0:1),s!==!1&&this.values(t,n,!0))):n!==this.value()&&(s=this._trigger("slide",e,{handle:this.handles[t],value:n}),s!==!1&&this.value(n))},_stop:function(e,t){var n={handle:this.handles[t],value:this.value()};this.options.values&&this.options.values.length&&(n.value=this.values(t),n.values=this.values()),this._trigger("stop",e,n)},_change:function(e,t){if(!this._keySliding&&!this._mouseSliding){var n={handle:this.handles[t],value:this.value()};this.options.values&&this.options.values.length&&(n.value=this.values(t),n.values=this.values()),this._trigger("change",e,n)}},value:function(e){if(arguments.length){this.options.value=this._trimAlignValue(e),this._refreshValue(),this._change(null,0);return}return this._value()},values:function(t,n){var r,i,s;if(arguments.length>1){this.options.values[t]=this._trimAlignValue(n),this._refreshValue(),this._change(null,t);return}if(!arguments.length)return this._values();if(!e.isArray(arguments[0]))return this.options.values&&this.options.values.length?this._values(t):this.value();r=this.options.values,i=arguments[0];for(s=0;s<r.length;s+=1)r[s]=this._trimAlignValue(i[s]),this._change(null,s);this._refreshValue()},_setOption:function(t,n){var r,i=0;e.isArray(this.options.values)&&(i=this.options.values.length),e.Widget.prototype._setOption.apply(this,arguments);switch(t){case"disabled":n?(this.handles.filter(".ui-state-focus").blur(),this.handles.removeClass("ui-state-hover"),this.handles.prop("disabled",!0),this.element.addClass("ui-disabled")):(this.handles.prop("disabled",!1),this.element.removeClass("ui-disabled"));break;case"orientation":this._detectOrientation(),this.element.removeClass("ui-slider-horizontal ui-slider-vertical").addClass("ui-slider-"+this.orientation),this._refreshValue();break;case"value":this._animateOff=!0,this._refreshValue(),this._change(null,0),this._animateOff=!1;break;case"values":this._animateOff=!0,this._refreshValue();for(r=0;r<i;r+=1)this._change(null,r);this._animateOff=!1}},_value:function(){var e=this.options.value;return e=this._trimAlignValue(e),e},_values:function(e){var t,n,r;if(arguments.length)return t=this.options.values[e],t=this._trimAlignValue(t),t;n=this.options.values.slice();for(r=0;r<n.length;r+=1)n[r]=this._trimAlignValue(n[r]);return n},_trimAlignValue:function(e){if(e<=this._valueMin())return this._valueMin();if(e>=this._valueMax())return this._valueMax();var t=this.options.step>0?this.options.step:1,n=(e-this._valueMin())%t,r=e-n;return Math.abs(n)*2>=t&&(r+=n>0?t:-t),parseFloat(r.toFixed(5))},_valueMin:function(){return this.options.min},_valueMax:function(){return this.options.max},_refreshValue:function(){var t,n,r,i,s,o=this.options.range,u=this.options,a=this,f=this._animateOff?!1:u.animate,l={};this.options.values&&this.options.values.length?this.handles.each(function(r,i){n=(a.values(r)-a._valueMin())/(a._valueMax()-a._valueMin())*100,l[a.orientation==="horizontal"?"left":"bottom"]=n+"%",e(this).stop(1,1)[f?"animate":"css"](l,u.animate),a.options.range===!0&&(a.orientation==="horizontal"?(r===0&&a.range.stop(1,1)[f?"animate":"css"]({left:n+"%"},u.animate),r===1&&a.range[f?"animate":"css"]({width:n-t+"%"},{queue:!1,duration:u.animate})):(r===0&&a.range.stop(1,1)[f?"animate":"css"]({bottom:n+"%"},u.animate),r===1&&a.range[f?"animate":"css"]({height:n-t+"%"},{queue:!1,duration:u.animate}))),t=n}):(r=this.value(),i=this._valueMin(),s=this._valueMax(),n=s!==i?(r-i)/(s-i)*100:0,l[this.orientation==="horizontal"?"left":"bottom"]=n+"%",this.handle.stop(1,1)[f?"animate":"css"](l,u.animate),o==="min"&&this.orientation==="horizontal"&&this.range.stop(1,1)[f?"animate":"css"]({width:n+"%"},u.animate),o==="max"&&this.orientation==="horizontal"&&this.range[f?"animate":"css"]({width:100-n+"%"},{queue:!1,duration:u.animate}),o==="min"&&this.orientation==="vertical"&&this.range.stop(1,1)[f?"animate":"css"]({height:n+"%"},u.animate),o==="max"&&this.orientation==="vertical"&&this.range[f?"animate":"css"]({height:100-n+"%"},{queue:!1,duration:u.animate}))}})})(jQuery);jQuery.effects||function(e,t){var n=e.uiBackCompat!==!1,r="ui-effects-";e.effects={effect:{}},function(t,n){function p(e,t,n){var r=a[t.type]||{};return e==null?n||!t.def?null:t.def:(e=r.floor?~~e:parseFloat(e),isNaN(e)?t.def:r.mod?(e+r.mod)%r.mod:0>e?0:r.max<e?r.max:e)}function d(e){var n=o(),r=n._rgba=[];return e=e.toLowerCase(),h(s,function(t,i){var s,o=i.re.exec(e),a=o&&i.parse(o),f=i.space||"rgba";if(a)return s=n[f](a),n[u[f].cache]=s[u[f].cache],r=n._rgba=s._rgba,!1}),r.length?(r.join()==="0,0,0,0"&&t.extend(r,c.transparent),n):c[e]}function v(e,t,n){return n=(n+1)%1,n*6<1?e+(t-e)*n*6:n*2<1?t:n*3<2?e+(t-e)*(2/3-n)*6:e}var r="backgroundColor borderBottomColor borderLeftColor borderRightColor borderTopColor color columnRuleColor outlineColor textDecorationColor textEmphasisColor".split(" "),i=/^([\-+])=\s*(\d+\.?\d*)/,s=[{re:/rgba?\(\s*(\d{1,3})\s*,\s*(\d{1,3})\s*,\s*(\d{1,3})\s*(?:,\s*(\d+(?:\.\d+)?)\s*)?\)/,parse:function(e){return[e[1],e[2],e[3],e[4]]}},{re:/rgba?\(\s*(\d+(?:\.\d+)?)\%\s*,\s*(\d+(?:\.\d+)?)\%\s*,\s*(\d+(?:\.\d+)?)\%\s*(?:,\s*(\d+(?:\.\d+)?)\s*)?\)/,parse:function(e){return[e[1]*2.55,e[2]*2.55,e[3]*2.55,e[4]]}},{re:/#([a-f0-9]{2})([a-f0-9]{2})([a-f0-9]{2})/,parse:function(e){return[parseInt(e[1],16),parseInt(e[2],16),parseInt(e[3],16)]}},{re:/#([a-f0-9])([a-f0-9])([a-f0-9])/,parse:function(e){return[parseInt(e[1]+e[1],16),parseInt(e[2]+e[2],16),parseInt(e[3]+e[3],16)]}},{re:/hsla?\(\s*(\d+(?:\.\d+)?)\s*,\s*(\d+(?:\.\d+)?)\%\s*,\s*(\d+(?:\.\d+)?)\%\s*(?:,\s*(\d+(?:\.\d+)?)\s*)?\)/,space:"hsla",parse:function(e){return[e[1],e[2]/100,e[3]/100,e[4]]}}],o=t.Color=function(e,n,r,i){return new t.Color.fn.parse(e,n,r,i)},u={rgba:{props:{red:{idx:0,type:"byte"},green:{idx:1,type:"byte"},blue:{idx:2,type:"byte"}}},hsla:{props:{hue:{idx:0,type:"degrees"},saturation:{idx:1,type:"percent"},lightness:{idx:2,type:"percent"}}}},a={"byte":{floor:!0,max:255},percent:{max:1},degrees:{mod:360,floor:!0}},f=o.support={},l=t("<p>")[0],c,h=t.each;l.style.cssText="background-color:rgba(1,1,1,.5)",f.rgba=l.style.backgroundColor.indexOf("rgba")>-1,h(u,function(e,t){t.cache="_"+e,t.props.alpha={idx:3,type:"percent",def:1}}),o.fn=t.extend(o.prototype,{parse:function(r,i,s,a){if(r===n)return this._rgba=[null,null,null,null],this;if(r.jquery||r.nodeType)r=t(r).css(i),i=n;var f=this,l=t.type(r),v=this._rgba=[],m;i!==n&&(r=[r,i,s,a],l="array");if(l==="string")return this.parse(d(r)||c._default);if(l==="array")return h(u.rgba.props,function(e,t){v[t.idx]=p(r[t.idx],t)}),this;if(l==="object")return r instanceof o?h(u,function(e,t){r[t.cache]&&(f[t.cache]=r[t.cache].slice())}):h(u,function(t,n){var i=n.cache;h(n.props,function(e,t){if(!f[i]&&n.to){if(e==="alpha"||r[e]==null)return;f[i]=n.to(f._rgba)}f[i][t.idx]=p(r[e],t,!0)}),f[i]&&e.inArray(null,f[i].slice(0,3))<0&&(f[i][3]=1,n.from&&(f._rgba=n.from(f[i])))}),this},is:function(e){var t=o(e),n=!0,r=this;return h(u,function(e,i){var s,o=t[i.cache];return o&&(s=r[i.cache]||i.to&&i.to(r._rgba)||[],h(i.props,function(e,t){if(o[t.idx]!=null)return n=o[t.idx]===s[t.idx],n})),n}),n},_space:function(){var e=[],t=this;return h(u,function(n,r){t[r.cache]&&e.push(n)}),e.pop()},transition:function(e,t){var n=o(e),r=n._space(),i=u[r],s=this.alpha()===0?o("transparent"):this,f=s[i.cache]||i.to(s._rgba),l=f.slice();return n=n[i.cache],h(i.props,function(e,r){var i=r.idx,s=f[i],o=n[i],u=a[r.type]||{};if(o===null)return;s===null?l[i]=o:(u.mod&&(o-s>u.mod/2?s+=u.mod:s-o>u.mod/2&&(s-=u.mod)),l[i]=p((o-s)*t+s,r))}),this[r](l)},blend:function(e){if(this._rgba[3]===1)return this;var n=this._rgba.slice(),r=n.pop(),i=o(e)._rgba;return o(t.map(n,function(e,t){return(1-r)*i[t]+r*e}))},toRgbaString:function(){var e="rgba(",n=t.map(this._rgba,function(e,t){return e==null?t>2?1:0:e});return n[3]===1&&(n.pop(),e="rgb("),e+n.join()+")"},toHslaString:function(){var e="hsla(",n=t.map(this.hsla(),function(e,t){return e==null&&(e=t>2?1:0),t&&t<3&&(e=Math.round(e*100)+"%"),e});return n[3]===1&&(n.pop(),e="hsl("),e+n.join()+")"},toHexString:function(e){var n=this._rgba.slice(),r=n.pop();return e&&n.push(~~(r*255)),"#"+t.map(n,function(e,t){return e=(e||0).toString(16),e.length===1?"0"+e:e}).join("")},toString:function(){return this._rgba[3]===0?"transparent":this.toRgbaString()}}),o.fn.parse.prototype=o.fn,u.hsla.to=function(e){if(e[0]==null||e[1]==null||e[2]==null)return[null,null,null,e[3]];var t=e[0]/255,n=e[1]/255,r=e[2]/255,i=e[3],s=Math.max(t,n,r),o=Math.min(t,n,r),u=s-o,a=s+o,f=a*.5,l,c;return o===s?l=0:t===s?l=60*(n-r)/u+360:n===s?l=60*(r-t)/u+120:l=60*(t-n)/u+240,f===0||f===1?c=f:f<=.5?c=u/a:c=u/(2-a),[Math.round(l)%360,c,f,i==null?1:i]},u.hsla.from=function(e){if(e[0]==null||e[1]==null||e[2]==null)return[null,null,null,e[3]];var t=e[0]/360,n=e[1],r=e[2],i=e[3],s=r<=.5?r*(1+n):r+n-r*n,o=2*r-s,u,a,f;return[Math.round(v(o,s,t+1/3)*255),Math.round(v(o,s,t)*255),Math.round(v(o,s,t-1/3)*255),i]},h(u,function(e,r){var s=r.props,u=r.cache,a=r.to,f=r.from;o.fn[e]=function(e){a&&!this[u]&&(this[u]=a(this._rgba));if(e===n)return this[u].slice();var r,i=t.type(e),l=i==="array"||i==="object"?e:arguments,c=this[u].slice();return h(s,function(e,t){var n=l[i==="object"?e:t.idx];n==null&&(n=c[t.idx]),c[t.idx]=p(n,t)}),f?(r=o(f(c)),r[u]=c,r):o(c)},h(s,function(n,r){if(o.fn[n])return;o.fn[n]=function(s){var o=t.type(s),u=n==="alpha"?this._hsla?"hsla":"rgba":e,a=this[u](),f=a[r.idx],l;return o==="undefined"?f:(o==="function"&&(s=s.call(this,f),o=t.type(s)),s==null&&r.empty?this:(o==="string"&&(l=i.exec(s),l&&(s=f+parseFloat(l[2])*(l[1]==="+"?1:-1))),a[r.idx]=s,this[u](a)))}})}),h(r,function(e,n){t.cssHooks[n]={set:function(e,r){var i,s,u="";if(t.type(r)!=="string"||(i=d(r))){r=o(i||r);if(!f.rgba&&r._rgba[3]!==1){s=n==="backgroundColor"?e.parentNode:e;while((u===""||u==="transparent")&&s&&s.style)try{u=t.css(s,"backgroundColor"),s=s.parentNode}catch(a){}r=r.blend(u&&u!=="transparent"?u:"_default")}r=r.toRgbaString()}try{e.style[n]=r}catch(r){}}},t.fx.step[n]=function(e){e.colorInit||(e.start=o(e.elem,n),e.end=o(e.end),e.colorInit=!0),t.cssHooks[n].set(e.elem,e.start.transition(e.end,e.pos))}}),t.cssHooks.borderColor={expand:function(e){var t={};return h(["Top","Right","Bottom","Left"],function(n,r){t["border"+r+"Color"]=e}),t}},c=t.Color.names={aqua:"#00ffff",black:"#000000",blue:"#0000ff",fuchsia:"#ff00ff",gray:"#808080",green:"#008000",lime:"#00ff00",maroon:"#800000",navy:"#000080",olive:"#808000",purple:"#800080",red:"#ff0000",silver:"#c0c0c0",teal:"#008080",white:"#ffffff",yellow:"#ffff00",transparent:[null,null,null,0],_default:"#ffffff"}}(jQuery),function(){function i(){var t=this.ownerDocument.defaultView?this.ownerDocument.defaultView.getComputedStyle(this,null):this.currentStyle,n={},r,i,s;if(t&&t.length&&t[0]&&t[t[0]]){s=t.length;while(s--)r=t[s],typeof t[r]=="string"&&(n[e.camelCase(r)]=t[r])}else for(r in t)typeof t[r]=="string"&&(n[r]=t[r]);return n}function s(t,n){var i={},s,o;for(s in n)o=n[s],t[s]!==o&&!r[s]&&(e.fx.step[s]||!isNaN(parseFloat(o)))&&(i[s]=o);return i}var n=["add","remove","toggle"],r={border:1,borderBottom:1,borderColor:1,borderLeft:1,borderRight:1,borderTop:1,borderWidth:1,margin:1,padding:1};e.each(["borderLeftStyle","borderRightStyle","borderBottomStyle","borderTopStyle"],function(t,n){e.fx.step[n]=function(e){if(e.end!=="none"&&!e.setAttr||e.pos===1&&!e.setAttr)jQuery.style(e.elem,n,e.end),e.setAttr=!0}}),e.effects.animateClass=function(t,r,o,u){var a=e.speed(r,o,u);return this.queue(function(){var r=e(this),o=r.attr("class")||"",u,f=a.children?r.find("*").andSelf():r;f=f.map(function(){var t=e(this);return{el:t,start:i.call(this)}}),u=function(){e.each(n,function(e,n){t[n]&&r[n+"Class"](t[n])})},u(),f=f.map(function(){return this.end=i.call(this.el[0]),this.diff=s(this.start,this.end),this}),r.attr("class",o),f=f.map(function(){var t=this,n=e.Deferred(),r=jQuery.extend({},a,{queue:!1,complete:function(){n.resolve(t)}});return this.el.animate(this.diff,r),n.promise()}),e.when.apply(e,f.get()).done(function(){u(),e.each(arguments,function(){var t=this.el;e.each(this.diff,function(e){t.css(e,"")})}),a.complete.call(r[0])})})},e.fn.extend({_addClass:e.fn.addClass,addClass:function(t,n,r,i){return n?e.effects.animateClass.call(this,{add:t},n,r,i):this._addClass(t)},_removeClass:e.fn.removeClass,removeClass:function(t,n,r,i){return n?e.effects.animateClass.call(this,{remove:t},n,r,i):this._removeClass(t)},_toggleClass:e.fn.toggleClass,toggleClass:function(n,r,i,s,o){return typeof r=="boolean"||r===t?i?e.effects.animateClass.call(this,r?{add:n}:{remove:n},i,s,o):this._toggleClass(n,r):e.effects.animateClass.call(this,{toggle:n},r,i,s)},switchClass:function(t,n,r,i,s){return e.effects.animateClass.call(this,{add:n,remove:t},r,i,s)}})}(),function(){function i(n,r,i,s){e.isPlainObject(n)&&(r=n,n=n.effect),n={effect:n},r===t&&(r={}),e.isFunction(r)&&(s=r,i=null,r={});if(typeof r=="number"||e.fx.speeds[r])s=i,i=r,r={};return e.isFunction(i)&&(s=i,i=null),r&&e.extend(n,r),i=i||r.duration,n.duration=e.fx.off?0:typeof i=="number"?i:i in e.fx.speeds?e.fx.speeds[i]:e.fx.speeds._default,n.complete=s||r.complete,n}function s(t){return!t||typeof t=="number"||e.fx.speeds[t]?!0:typeof t=="string"&&!e.effects.effect[t]?n&&e.effects[t]?!1:!0:!1}e.extend(e.effects,{version:"1.9.0",save:function(e,t){for(var n=0;n<t.length;n++)t[n]!==null&&e.data(r+t[n],e[0].style[t[n]])},restore:function(e,n){var i,s;for(s=0;s<n.length;s++)n[s]!==null&&(i=e.data(r+n[s]),i===t&&(i=""),e.css(n[s],i))},setMode:function(e,t){return t==="toggle"&&(t=e.is(":hidden")?"show":"hide"),t},getBaseline:function(e,t){var n,r;switch(e[0]){case"top":n=0;break;case"middle":n=.5;break;case"bottom":n=1;break;default:n=e[0]/t.height}switch(e[1]){case"left":r=0;break;case"center":r=.5;break;case"right":r=1;break;default:r=e[1]/t.width}return{x:r,y:n}},createWrapper:function(t){if(t.parent().is(".ui-effects-wrapper"))return t.parent();var n={width:t.outerWidth(!0),height:t.outerHeight(!0),"float":t.css("float")},r=e("<div></div>").addClass("ui-effects-wrapper").css({fontSize:"100%",background:"transparent",border:"none",margin:0,padding:0}),i={width:t.width(),height:t.height()},s=document.activeElement;try{s.id}catch(o){s=document.body}return t.wrap(r),(t[0]===s||e.contains(t[0],s))&&e(s).focus(),r=t.parent(),t.css("position")==="static"?(r.css({position:"relative"}),t.css({position:"relative"})):(e.extend(n,{position:t.css("position"),zIndex:t.css("z-index")}),e.each(["top","left","bottom","right"],function(e,r){n[r]=t.css(r),isNaN(parseInt(n[r],10))&&(n[r]="auto")}),t.css({position:"relative",top:0,left:0,right:"auto",bottom:"auto"})),t.css(i),r.css(n).show()},removeWrapper:function(t){var n=document.activeElement;return t.parent().is(".ui-effects-wrapper")&&(t.parent().replaceWith(t),(t[0]===n||e.contains(t[0],n))&&e(n).focus()),t},setTransition:function(t,n,r,i){return i=i||{},e.each(n,function(e,n){var s=t.cssUnit(n);s[0]>0&&(i[n]=s[0]*r+s[1])}),i}}),e.fn.extend({effect:function(t,r,s,o){function h(t){function s(){e.isFunction(r)&&r.call(n[0]),e.isFunction(t)&&t()}var n=e(this),r=u.complete,i=u.mode;(n.is(":hidden")?i==="hide":i==="show")?s():l.call(n[0],u,s)}var u=i.apply(this,arguments),a=u.mode,f=u.queue,l=e.effects.effect[u.effect],c=!l&&n&&e.effects[u.effect];return e.fx.off||!l&&!c?a?this[a](u.duration,u.complete):this.each(function(){u.complete&&u.complete.call(this)}):l?f===!1?this.each(h):this.queue(f||"fx",h):c.call(this,{options:u,duration:u.duration,callback:u.complete,mode:u.mode})},_show:e.fn.show,show:function(e){if(s(e))return this._show.apply(this,arguments);var t=i.apply(this,arguments);return t.mode="show",this.effect.call(this,t)},_hide:e.fn.hide,hide:function(e){if(s(e))return this._hide.apply(this,arguments);var t=i.apply(this,arguments);return t.mode="hide",this.effect.call(this,t)},__toggle:e.fn.toggle,toggle:function(t){if(s(t)||typeof t=="boolean"||e.isFunction(t))return this.__toggle.apply(this,arguments);var n=i.apply(this,arguments);return n.mode="toggle",this.effect.call(this,n)},cssUnit:function(t){var n=this.css(t),r=[];return e.each(["em","px","%","pt"],function(e,t){n.indexOf(t)>0&&(r=[parseFloat(n),t])}),r}})}(),function(){var t={};e.each(["Quad","Cubic","Quart","Quint","Expo"],function(e,n){t[n]=function(t){return Math.pow(t,e+2)}}),e.extend(t,{Sine:function(e){return 1-Math.cos(e*Math.PI/2)},Circ:function(e){return 1-Math.sqrt(1-e*e)},Elastic:function(e){return e===0||e===1?e:-Math.pow(2,8*(e-1))*Math.sin(((e-1)*80-7.5)*Math.PI/15)},Back:function(e){return e*e*(3*e-2)},Bounce:function(e){var t,n=4;while(e<((t=Math.pow(2,--n))-1)/11);return 1/Math.pow(4,3-n)-7.5625*Math.pow((t*3-2)/22-e,2)}}),e.each(t,function(t,n){e.easing["easeIn"+t]=n,e.easing["easeOut"+t]=function(e){return 1-n(1-e)},e.easing["easeInOut"+t]=function(e){return e<.5?n(e*2)/2:1-n(e*-2+2)/2}})}()}(jQuery); \ No newline at end of file diff --git a/pub/lib/jquery/jquery-ui-1.9.1.custom.min.js b/pub/lib/jquery/jquery-ui-1.9.1.custom.min.js deleted file mode 100644 index 3e411b3f2fc9d2f0cf81eefd52ae5165c441275a..0000000000000000000000000000000000000000 --- a/pub/lib/jquery/jquery-ui-1.9.1.custom.min.js +++ /dev/null @@ -1,6 +0,0 @@ -/*! jQuery UI - v1.9.1 - 2012-11-22 -* http://jqueryui.com -* Includes: jquery.ui.core.js, jquery.ui.widget.js, jquery.ui.mouse.js, jquery.ui.position.js, jquery.ui.draggable.js, jquery.ui.droppable.js, jquery.ui.resizable.js, jquery.ui.sortable.js, jquery.ui.autocomplete.js, jquery.ui.button.js, jquery.ui.datepicker.js, jquery.ui.dialog.js, jquery.ui.menu.js, jquery.ui.slider.js, jquery.ui.tabs.js, jquery.ui.effect.js -* Copyright (c) 2012 jQuery Foundation and other contributors Licensed MIT */ - -(function(e,t){function i(t,n){var r,i,o,u=t.nodeName.toLowerCase();return"area"===u?(r=t.parentNode,i=r.name,!t.href||!i||r.nodeName.toLowerCase()!=="map"?!1:(o=e("img[usemap=#"+i+"]")[0],!!o&&s(o))):(/input|select|textarea|button|object/.test(u)?!t.disabled:"a"===u?t.href||n:n)&&s(t)}function s(t){return e.expr.filters.visible(t)&&!e(t).parents().andSelf().filter(function(){return e.css(this,"visibility")==="hidden"}).length}var n=0,r=/^ui-id-\d+$/;e.ui=e.ui||{};if(e.ui.version)return;e.extend(e.ui,{version:"1.9.1",keyCode:{BACKSPACE:8,COMMA:188,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,LEFT:37,NUMPAD_ADD:107,NUMPAD_DECIMAL:110,NUMPAD_DIVIDE:111,NUMPAD_ENTER:108,NUMPAD_MULTIPLY:106,NUMPAD_SUBTRACT:109,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SPACE:32,TAB:9,UP:38}}),e.fn.extend({_focus:e.fn.focus,focus:function(t,n){return typeof t=="number"?this.each(function(){var r=this;setTimeout(function(){e(r).focus(),n&&n.call(r)},t)}):this._focus.apply(this,arguments)},scrollParent:function(){var t;return e.ui.ie&&/(static|relative)/.test(this.css("position"))||/absolute/.test(this.css("position"))?t=this.parents().filter(function(){return/(relative|absolute|fixed)/.test(e.css(this,"position"))&&/(auto|scroll)/.test(e.css(this,"overflow")+e.css(this,"overflow-y")+e.css(this,"overflow-x"))}).eq(0):t=this.parents().filter(function(){return/(auto|scroll)/.test(e.css(this,"overflow")+e.css(this,"overflow-y")+e.css(this,"overflow-x"))}).eq(0),/fixed/.test(this.css("position"))||!t.length?e(document):t},zIndex:function(n){if(n!==t)return this.css("zIndex",n);if(this.length){var r=e(this[0]),i,s;while(r.length&&r[0]!==document){i=r.css("position");if(i==="absolute"||i==="relative"||i==="fixed"){s=parseInt(r.css("zIndex"),10);if(!isNaN(s)&&s!==0)return s}r=r.parent()}}return 0},uniqueId:function(){return this.each(function(){this.id||(this.id="ui-id-"+ ++n)})},removeUniqueId:function(){return this.each(function(){r.test(this.id)&&e(this).removeAttr("id")})}}),e("<a>").outerWidth(1).jquery||e.each(["Width","Height"],function(n,r){function u(t,n,r,s){return e.each(i,function(){n-=parseFloat(e.css(t,"padding"+this))||0,r&&(n-=parseFloat(e.css(t,"border"+this+"Width"))||0),s&&(n-=parseFloat(e.css(t,"margin"+this))||0)}),n}var i=r==="Width"?["Left","Right"]:["Top","Bottom"],s=r.toLowerCase(),o={innerWidth:e.fn.innerWidth,innerHeight:e.fn.innerHeight,outerWidth:e.fn.outerWidth,outerHeight:e.fn.outerHeight};e.fn["inner"+r]=function(n){return n===t?o["inner"+r].call(this):this.each(function(){e(this).css(s,u(this,n)+"px")})},e.fn["outer"+r]=function(t,n){return typeof t!="number"?o["outer"+r].call(this,t):this.each(function(){e(this).css(s,u(this,t,!0,n)+"px")})}}),e.extend(e.expr[":"],{data:e.expr.createPseudo?e.expr.createPseudo(function(t){return function(n){return!!e.data(n,t)}}):function(t,n,r){return!!e.data(t,r[3])},focusable:function(t){return i(t,!isNaN(e.attr(t,"tabindex")))},tabbable:function(t){var n=e.attr(t,"tabindex"),r=isNaN(n);return(r||n>=0)&&i(t,!r)}}),e(function(){var t=document.body,n=t.appendChild(n=document.createElement("div"));n.offsetHeight,e.extend(n.style,{minHeight:"100px",height:"auto",padding:0,borderWidth:0}),e.support.minHeight=n.offsetHeight===100,e.support.selectstart="onselectstart"in n,t.removeChild(n).style.display="none"}),function(){var t=/msie ([\w.]+)/.exec(navigator.userAgent.toLowerCase())||[];e.ui.ie=t.length?!0:!1,e.ui.ie6=parseFloat(t[1],10)===6}(),e.fn.extend({disableSelection:function(){return this.bind((e.support.selectstart?"selectstart":"mousedown")+".ui-disableSelection",function(e){e.preventDefault()})},enableSelection:function(){return this.unbind(".ui-disableSelection")}}),e.extend(e.ui,{plugin:{add:function(t,n,r){var i,s=e.ui[t].prototype;for(i in r)s.plugins[i]=s.plugins[i]||[],s.plugins[i].push([n,r[i]])},call:function(e,t,n){var r,i=e.plugins[t];if(!i||!e.element[0].parentNode||e.element[0].parentNode.nodeType===11)return;for(r=0;r<i.length;r++)e.options[i[r][0]]&&i[r][1].apply(e.element,n)}},contains:e.contains,hasScroll:function(t,n){if(e(t).css("overflow")==="hidden")return!1;var r=n&&n==="left"?"scrollLeft":"scrollTop",i=!1;return t[r]>0?!0:(t[r]=1,i=t[r]>0,t[r]=0,i)},isOverAxis:function(e,t,n){return e>t&&e<t+n},isOver:function(t,n,r,i,s,o){return e.ui.isOverAxis(t,r,s)&&e.ui.isOverAxis(n,i,o)}})})(jQuery);(function(e,t){var n=0,r=Array.prototype.slice,i=e.cleanData;e.cleanData=function(t){for(var n=0,r;(r=t[n])!=null;n++)try{e(r).triggerHandler("remove")}catch(s){}i(t)},e.widget=function(t,n,r){var i,s,o,u,a=t.split(".")[0];t=t.split(".")[1],i=a+"-"+t,r||(r=n,n=e.Widget),e.expr[":"][i.toLowerCase()]=function(t){return!!e.data(t,i)},e[a]=e[a]||{},s=e[a][t],o=e[a][t]=function(e,t){if(!this._createWidget)return new o(e,t);arguments.length&&this._createWidget(e,t)},e.extend(o,s,{version:r.version,_proto:e.extend({},r),_childConstructors:[]}),u=new n,u.options=e.widget.extend({},u.options),e.each(r,function(t,i){e.isFunction(i)&&(r[t]=function(){var e=function(){return n.prototype[t].apply(this,arguments)},r=function(e){return n.prototype[t].apply(this,e)};return function(){var t=this._super,n=this._superApply,s;return this._super=e,this._superApply=r,s=i.apply(this,arguments),this._super=t,this._superApply=n,s}}())}),o.prototype=e.widget.extend(u,{widgetEventPrefix:u.widgetEventPrefix||t},r,{constructor:o,namespace:a,widgetName:t,widgetBaseClass:i,widgetFullName:i}),s?(e.each(s._childConstructors,function(t,n){var r=n.prototype;e.widget(r.namespace+"."+r.widgetName,o,n._proto)}),delete s._childConstructors):n._childConstructors.push(o),e.widget.bridge(t,o)},e.widget.extend=function(n){var i=r.call(arguments,1),s=0,o=i.length,u,a;for(;s<o;s++)for(u in i[s])a=i[s][u],i[s].hasOwnProperty(u)&&a!==t&&(e.isPlainObject(a)?n[u]=e.isPlainObject(n[u])?e.widget.extend({},n[u],a):e.widget.extend({},a):n[u]=a);return n},e.widget.bridge=function(n,i){var s=i.prototype.widgetFullName;e.fn[n]=function(o){var u=typeof o=="string",a=r.call(arguments,1),f=this;return o=!u&&a.length?e.widget.extend.apply(null,[o].concat(a)):o,u?this.each(function(){var r,i=e.data(this,s);if(!i)return e.error("cannot call methods on "+n+" prior to initialization; "+"attempted to call method '"+o+"'");if(!e.isFunction(i[o])||o.charAt(0)==="_")return e.error("no such method '"+o+"' for "+n+" widget instance");r=i[o].apply(i,a);if(r!==i&&r!==t)return f=r&&r.jquery?f.pushStack(r.get()):r,!1}):this.each(function(){var t=e.data(this,s);t?t.option(o||{})._init():new i(o,this)}),f}},e.Widget=function(){},e.Widget._childConstructors=[],e.Widget.prototype={widgetName:"widget",widgetEventPrefix:"",defaultElement:"<div>",options:{disabled:!1,create:null},_createWidget:function(t,r){r=e(r||this.defaultElement||this)[0],this.element=e(r),this.uuid=n++,this.eventNamespace="."+this.widgetName+this.uuid,this.options=e.widget.extend({},this.options,this._getCreateOptions(),t),this.bindings=e(),this.hoverable=e(),this.focusable=e(),r!==this&&(e.data(r,this.widgetName,this),e.data(r,this.widgetFullName,this),this._on(this.element,{remove:function(e){e.target===r&&this.destroy()}}),this.document=e(r.style?r.ownerDocument:r.document||r),this.window=e(this.document[0].defaultView||this.document[0].parentWindow)),this._create(),this._trigger("create",null,this._getCreateEventData()),this._init()},_getCreateOptions:e.noop,_getCreateEventData:e.noop,_create:e.noop,_init:e.noop,destroy:function(){this._destroy(),this.element.unbind(this.eventNamespace).removeData(this.widgetName).removeData(this.widgetFullName).removeData(e.camelCase(this.widgetFullName)),this.widget().unbind(this.eventNamespace).removeAttr("aria-disabled").removeClass(this.widgetFullName+"-disabled "+"ui-state-disabled"),this.bindings.unbind(this.eventNamespace),this.hoverable.removeClass("ui-state-hover"),this.focusable.removeClass("ui-state-focus")},_destroy:e.noop,widget:function(){return this.element},option:function(n,r){var i=n,s,o,u;if(arguments.length===0)return e.widget.extend({},this.options);if(typeof n=="string"){i={},s=n.split("."),n=s.shift();if(s.length){o=i[n]=e.widget.extend({},this.options[n]);for(u=0;u<s.length-1;u++)o[s[u]]=o[s[u]]||{},o=o[s[u]];n=s.pop();if(r===t)return o[n]===t?null:o[n];o[n]=r}else{if(r===t)return this.options[n]===t?null:this.options[n];i[n]=r}}return this._setOptions(i),this},_setOptions:function(e){var t;for(t in e)this._setOption(t,e[t]);return this},_setOption:function(e,t){return this.options[e]=t,e==="disabled"&&(this.widget().toggleClass(this.widgetFullName+"-disabled ui-state-disabled",!!t).attr("aria-disabled",t),this.hoverable.removeClass("ui-state-hover"),this.focusable.removeClass("ui-state-focus")),this},enable:function(){return this._setOption("disabled",!1)},disable:function(){return this._setOption("disabled",!0)},_on:function(t,n){var r,i=this;n?(t=r=e(t),this.bindings=this.bindings.add(t)):(n=t,t=this.element,r=this.widget()),e.each(n,function(n,s){function o(){if(i.options.disabled===!0||e(this).hasClass("ui-state-disabled"))return;return(typeof s=="string"?i[s]:s).apply(i,arguments)}typeof s!="string"&&(o.guid=s.guid=s.guid||o.guid||e.guid++);var u=n.match(/^(\w+)\s*(.*)$/),a=u[1]+i.eventNamespace,f=u[2];f?r.delegate(f,a,o):t.bind(a,o)})},_off:function(e,t){t=(t||"").split(" ").join(this.eventNamespace+" ")+this.eventNamespace,e.unbind(t).undelegate(t)},_delay:function(e,t){function n(){return(typeof e=="string"?r[e]:e).apply(r,arguments)}var r=this;return setTimeout(n,t||0)},_hoverable:function(t){this.hoverable=this.hoverable.add(t),this._on(t,{mouseenter:function(t){e(t.currentTarget).addClass("ui-state-hover")},mouseleave:function(t){e(t.currentTarget).removeClass("ui-state-hover")}})},_focusable:function(t){this.focusable=this.focusable.add(t),this._on(t,{focusin:function(t){e(t.currentTarget).addClass("ui-state-focus")},focusout:function(t){e(t.currentTarget).removeClass("ui-state-focus")}})},_trigger:function(t,n,r){var i,s,o=this.options[t];r=r||{},n=e.Event(n),n.type=(t===this.widgetEventPrefix?t:this.widgetEventPrefix+t).toLowerCase(),n.target=this.element[0],s=n.originalEvent;if(s)for(i in s)i in n||(n[i]=s[i]);return this.element.trigger(n,r),!(e.isFunction(o)&&o.apply(this.element[0],[n].concat(r))===!1||n.isDefaultPrevented())}},e.each({show:"fadeIn",hide:"fadeOut"},function(t,n){e.Widget.prototype["_"+t]=function(r,i,s){typeof i=="string"&&(i={effect:i});var o,u=i?i===!0||typeof i=="number"?n:i.effect||n:t;i=i||{},typeof i=="number"&&(i={duration:i}),o=!e.isEmptyObject(i),i.complete=s,i.delay&&r.delay(i.delay),o&&e.effects&&(e.effects.effect[u]||e.uiBackCompat!==!1&&e.effects[u])?r[t](i):u!==t&&r[u]?r[u](i.duration,i.easing,s):r.queue(function(n){e(this)[t](),s&&s.call(r[0]),n()})}}),e.uiBackCompat!==!1&&(e.Widget.prototype._getCreateOptions=function(){return e.metadata&&e.metadata.get(this.element[0])[this.widgetName]})})(jQuery);(function(e,t){var n=!1;e(document).mouseup(function(e){n=!1}),e.widget("ui.mouse",{version:"1.9.1",options:{cancel:"input,textarea,button,select,option",distance:1,delay:0},_mouseInit:function(){var t=this;this.element.bind("mousedown."+this.widgetName,function(e){return t._mouseDown(e)}).bind("click."+this.widgetName,function(n){if(!0===e.data(n.target,t.widgetName+".preventClickEvent"))return e.removeData(n.target,t.widgetName+".preventClickEvent"),n.stopImmediatePropagation(),!1}),this.started=!1},_mouseDestroy:function(){this.element.unbind("."+this.widgetName),this._mouseMoveDelegate&&e(document).unbind("mousemove."+this.widgetName,this._mouseMoveDelegate).unbind("mouseup."+this.widgetName,this._mouseUpDelegate)},_mouseDown:function(t){if(n)return;this._mouseStarted&&this._mouseUp(t),this._mouseDownEvent=t;var r=this,i=t.which===1,s=typeof this.options.cancel=="string"&&t.target.nodeName?e(t.target).closest(this.options.cancel).length:!1;if(!i||s||!this._mouseCapture(t))return!0;this.mouseDelayMet=!this.options.delay,this.mouseDelayMet||(this._mouseDelayTimer=setTimeout(function(){r.mouseDelayMet=!0},this.options.delay));if(this._mouseDistanceMet(t)&&this._mouseDelayMet(t)){this._mouseStarted=this._mouseStart(t)!==!1;if(!this._mouseStarted)return t.preventDefault(),!0}return!0===e.data(t.target,this.widgetName+".preventClickEvent")&&e.removeData(t.target,this.widgetName+".preventClickEvent"),this._mouseMoveDelegate=function(e){return r._mouseMove(e)},this._mouseUpDelegate=function(e){return r._mouseUp(e)},e(document).bind("mousemove."+this.widgetName,this._mouseMoveDelegate).bind("mouseup."+this.widgetName,this._mouseUpDelegate),t.preventDefault(),n=!0,!0},_mouseMove:function(t){return!e.ui.ie||document.documentMode>=9||!!t.button?this._mouseStarted?(this._mouseDrag(t),t.preventDefault()):(this._mouseDistanceMet(t)&&this._mouseDelayMet(t)&&(this._mouseStarted=this._mouseStart(this._mouseDownEvent,t)!==!1,this._mouseStarted?this._mouseDrag(t):this._mouseUp(t)),!this._mouseStarted):this._mouseUp(t)},_mouseUp:function(t){return e(document).unbind("mousemove."+this.widgetName,this._mouseMoveDelegate).unbind("mouseup."+this.widgetName,this._mouseUpDelegate),this._mouseStarted&&(this._mouseStarted=!1,t.target===this._mouseDownEvent.target&&e.data(t.target,this.widgetName+".preventClickEvent",!0),this._mouseStop(t)),!1},_mouseDistanceMet:function(e){return Math.max(Math.abs(this._mouseDownEvent.pageX-e.pageX),Math.abs(this._mouseDownEvent.pageY-e.pageY))>=this.options.distance},_mouseDelayMet:function(e){return this.mouseDelayMet},_mouseStart:function(e){},_mouseDrag:function(e){},_mouseStop:function(e){},_mouseCapture:function(e){return!0}})})(jQuery);(function(e,t){function h(e,t,n){return[parseInt(e[0],10)*(l.test(e[0])?t/100:1),parseInt(e[1],10)*(l.test(e[1])?n/100:1)]}function p(t,n){return parseInt(e.css(t,n),10)||0}e.ui=e.ui||{};var n,r=Math.max,i=Math.abs,s=Math.round,o=/left|center|right/,u=/top|center|bottom/,a=/[\+\-]\d+%?/,f=/^\w+/,l=/%$/,c=e.fn.position;e.position={scrollbarWidth:function(){if(n!==t)return n;var r,i,s=e("<div style='display:block;width:50px;height:50px;overflow:hidden;'><div style='height:100px;width:auto;'></div></div>"),o=s.children()[0];return e("body").append(s),r=o.offsetWidth,s.css("overflow","scroll"),i=o.offsetWidth,r===i&&(i=s[0].clientWidth),s.remove(),n=r-i},getScrollInfo:function(t){var n=t.isWindow?"":t.element.css("overflow-x"),r=t.isWindow?"":t.element.css("overflow-y"),i=n==="scroll"||n==="auto"&&t.width<t.element[0].scrollWidth,s=r==="scroll"||r==="auto"&&t.height<t.element[0].scrollHeight;return{width:i?e.position.scrollbarWidth():0,height:s?e.position.scrollbarWidth():0}},getWithinInfo:function(t){var n=e(t||window),r=e.isWindow(n[0]);return{element:n,isWindow:r,offset:n.offset()||{left:0,top:0},scrollLeft:n.scrollLeft(),scrollTop:n.scrollTop(),width:r?n.width():n.outerWidth(),height:r?n.height():n.outerHeight()}}},e.fn.position=function(t){if(!t||!t.of)return c.apply(this,arguments);t=e.extend({},t);var n,l,d,v,m,g=e(t.of),y=e.position.getWithinInfo(t.within),b=e.position.getScrollInfo(y),w=g[0],E=(t.collision||"flip").split(" "),S={};return w.nodeType===9?(l=g.width(),d=g.height(),v={top:0,left:0}):e.isWindow(w)?(l=g.width(),d=g.height(),v={top:g.scrollTop(),left:g.scrollLeft()}):w.preventDefault?(t.at="left top",l=d=0,v={top:w.pageY,left:w.pageX}):(l=g.outerWidth(),d=g.outerHeight(),v=g.offset()),m=e.extend({},v),e.each(["my","at"],function(){var e=(t[this]||"").split(" "),n,r;e.length===1&&(e=o.test(e[0])?e.concat(["center"]):u.test(e[0])?["center"].concat(e):["center","center"]),e[0]=o.test(e[0])?e[0]:"center",e[1]=u.test(e[1])?e[1]:"center",n=a.exec(e[0]),r=a.exec(e[1]),S[this]=[n?n[0]:0,r?r[0]:0],t[this]=[f.exec(e[0])[0],f.exec(e[1])[0]]}),E.length===1&&(E[1]=E[0]),t.at[0]==="right"?m.left+=l:t.at[0]==="center"&&(m.left+=l/2),t.at[1]==="bottom"?m.top+=d:t.at[1]==="center"&&(m.top+=d/2),n=h(S.at,l,d),m.left+=n[0],m.top+=n[1],this.each(function(){var o,u,a=e(this),f=a.outerWidth(),c=a.outerHeight(),w=p(this,"marginLeft"),x=p(this,"marginTop"),T=f+w+p(this,"marginRight")+b.width,N=c+x+p(this,"marginBottom")+b.height,C=e.extend({},m),k=h(S.my,a.outerWidth(),a.outerHeight());t.my[0]==="right"?C.left-=f:t.my[0]==="center"&&(C.left-=f/2),t.my[1]==="bottom"?C.top-=c:t.my[1]==="center"&&(C.top-=c/2),C.left+=k[0],C.top+=k[1],e.support.offsetFractions||(C.left=s(C.left),C.top=s(C.top)),o={marginLeft:w,marginTop:x},e.each(["left","top"],function(r,i){e.ui.position[E[r]]&&e.ui.position[E[r]][i](C,{targetWidth:l,targetHeight:d,elemWidth:f,elemHeight:c,collisionPosition:o,collisionWidth:T,collisionHeight:N,offset:[n[0]+k[0],n[1]+k[1]],my:t.my,at:t.at,within:y,elem:a})}),e.fn.bgiframe&&a.bgiframe(),t.using&&(u=function(e){var n=v.left-C.left,s=n+l-f,o=v.top-C.top,u=o+d-c,h={target:{element:g,left:v.left,top:v.top,width:l,height:d},element:{element:a,left:C.left,top:C.top,width:f,height:c},horizontal:s<0?"left":n>0?"right":"center",vertical:u<0?"top":o>0?"bottom":"middle"};l<f&&i(n+s)<l&&(h.horizontal="center"),d<c&&i(o+u)<d&&(h.vertical="middle"),r(i(n),i(s))>r(i(o),i(u))?h.important="horizontal":h.important="vertical",t.using.call(this,e,h)}),a.offset(e.extend(C,{using:u}))})},e.ui.position={fit:{left:function(e,t){var n=t.within,i=n.isWindow?n.scrollLeft:n.offset.left,s=n.width,o=e.left-t.collisionPosition.marginLeft,u=i-o,a=o+t.collisionWidth-s-i,f;t.collisionWidth>s?u>0&&a<=0?(f=e.left+u+t.collisionWidth-s-i,e.left+=u-f):a>0&&u<=0?e.left=i:u>a?e.left=i+s-t.collisionWidth:e.left=i:u>0?e.left+=u:a>0?e.left-=a:e.left=r(e.left-o,e.left)},top:function(e,t){var n=t.within,i=n.isWindow?n.scrollTop:n.offset.top,s=t.within.height,o=e.top-t.collisionPosition.marginTop,u=i-o,a=o+t.collisionHeight-s-i,f;t.collisionHeight>s?u>0&&a<=0?(f=e.top+u+t.collisionHeight-s-i,e.top+=u-f):a>0&&u<=0?e.top=i:u>a?e.top=i+s-t.collisionHeight:e.top=i:u>0?e.top+=u:a>0?e.top-=a:e.top=r(e.top-o,e.top)}},flip:{left:function(e,t){var n=t.within,r=n.offset.left+n.scrollLeft,s=n.width,o=n.isWindow?n.scrollLeft:n.offset.left,u=e.left-t.collisionPosition.marginLeft,a=u-o,f=u+t.collisionWidth-s-o,l=t.my[0]==="left"?-t.elemWidth:t.my[0]==="right"?t.elemWidth:0,c=t.at[0]==="left"?t.targetWidth:t.at[0]==="right"?-t.targetWidth:0,h=-2*t.offset[0],p,d;if(a<0){p=e.left+l+c+h+t.collisionWidth-s-r;if(p<0||p<i(a))e.left+=l+c+h}else if(f>0){d=e.left-t.collisionPosition.marginLeft+l+c+h-o;if(d>0||i(d)<f)e.left+=l+c+h}},top:function(e,t){var n=t.within,r=n.offset.top+n.scrollTop,s=n.height,o=n.isWindow?n.scrollTop:n.offset.top,u=e.top-t.collisionPosition.marginTop,a=u-o,f=u+t.collisionHeight-s-o,l=t.my[1]==="top",c=l?-t.elemHeight:t.my[1]==="bottom"?t.elemHeight:0,h=t.at[1]==="top"?t.targetHeight:t.at[1]==="bottom"?-t.targetHeight:0,p=-2*t.offset[1],d,v;a<0?(v=e.top+c+h+p+t.collisionHeight-s-r,e.top+c+h+p>a&&(v<0||v<i(a))&&(e.top+=c+h+p)):f>0&&(d=e.top-t.collisionPosition.marginTop+c+h+p-o,e.top+c+h+p>f&&(d>0||i(d)<f)&&(e.top+=c+h+p))}},flipfit:{left:function(){e.ui.position.flip.left.apply(this,arguments),e.ui.position.fit.left.apply(this,arguments)},top:function(){e.ui.position.flip.top.apply(this,arguments),e.ui.position.fit.top.apply(this,arguments)}}},function(){var t,n,r,i,s,o=document.getElementsByTagName("body")[0],u=document.createElement("div");t=document.createElement(o?"div":"body"),r={visibility:"hidden",width:0,height:0,border:0,margin:0,background:"none"},o&&e.extend(r,{position:"absolute",left:"-1000px",top:"-1000px"});for(s in r)t.style[s]=r[s];t.appendChild(u),n=o||document.documentElement,n.insertBefore(t,n.firstChild),u.style.cssText="position: absolute; left: 10.7432222px;",i=e(u).offset().left,e.support.offsetFractions=i>10&&i<11,t.innerHTML="",n.removeChild(t)}(),e.uiBackCompat!==!1&&function(e){var n=e.fn.position;e.fn.position=function(r){if(!r||!r.offset)return n.call(this,r);var i=r.offset.split(" "),s=r.at.split(" ");return i.length===1&&(i[1]=i[0]),/^\d/.test(i[0])&&(i[0]="+"+i[0]),/^\d/.test(i[1])&&(i[1]="+"+i[1]),s.length===1&&(/left|center|right/.test(s[0])?s[1]="center":(s[1]=s[0],s[0]="center")),n.call(this,e.extend(r,{at:s[0]+i[0]+" "+s[1]+i[1],offset:t}))}}(jQuery)})(jQuery);(function(e,t){e.widget("ui.draggable",e.ui.mouse,{version:"1.9.1",widgetEventPrefix:"drag",options:{addClasses:!0,appendTo:"parent",axis:!1,connectToSortable:!1,containment:!1,cursor:"auto",cursorAt:!1,grid:!1,handle:!1,helper:"original",iframeFix:!1,opacity:!1,refreshPositions:!1,revert:!1,revertDuration:500,scope:"default",scroll:!0,scrollSensitivity:20,scrollSpeed:20,snap:!1,snapMode:"both",snapTolerance:20,stack:!1,zIndex:!1},_create:function(){this.options.helper=="original"&&!/^(?:r|a|f)/.test(this.element.css("position"))&&(this.element[0].style.position="relative"),this.options.addClasses&&this.element.addClass("ui-draggable"),this.options.disabled&&this.element.addClass("ui-draggable-disabled"),this._mouseInit()},_destroy:function(){this.element.removeClass("ui-draggable ui-draggable-dragging ui-draggable-disabled"),this._mouseDestroy()},_mouseCapture:function(t){var n=this.options;return this.helper||n.disabled||e(t.target).is(".ui-resizable-handle")?!1:(this.handle=this._getHandle(t),this.handle?(e(n.iframeFix===!0?"iframe":n.iframeFix).each(function(){e('<div class="ui-draggable-iframeFix" style="background: #fff;"></div>').css({width:this.offsetWidth+"px",height:this.offsetHeight+"px",position:"absolute",opacity:"0.001",zIndex:1e3}).css(e(this).offset()).appendTo("body")}),!0):!1)},_mouseStart:function(t){var n=this.options;return this.helper=this._createHelper(t),this.helper.addClass("ui-draggable-dragging"),this._cacheHelperProportions(),e.ui.ddmanager&&(e.ui.ddmanager.current=this),this._cacheMargins(),this.cssPosition=this.helper.css("position"),this.scrollParent=this.helper.scrollParent(),this.offset=this.positionAbs=this.element.offset(),this.offset={top:this.offset.top-this.margins.top,left:this.offset.left-this.margins.left},e.extend(this.offset,{click:{left:t.pageX-this.offset.left,top:t.pageY-this.offset.top},parent:this._getParentOffset(),relative:this._getRelativeOffset()}),this.originalPosition=this.position=this._generatePosition(t),this.originalPageX=t.pageX,this.originalPageY=t.pageY,n.cursorAt&&this._adjustOffsetFromHelper(n.cursorAt),n.containment&&this._setContainment(),this._trigger("start",t)===!1?(this._clear(),!1):(this._cacheHelperProportions(),e.ui.ddmanager&&!n.dropBehaviour&&e.ui.ddmanager.prepareOffsets(this,t),this._mouseDrag(t,!0),e.ui.ddmanager&&e.ui.ddmanager.dragStart(this,t),!0)},_mouseDrag:function(t,n){this.position=this._generatePosition(t),this.positionAbs=this._convertPositionTo("absolute");if(!n){var r=this._uiHash();if(this._trigger("drag",t,r)===!1)return this._mouseUp({}),!1;this.position=r.position}if(!this.options.axis||this.options.axis!="y")this.helper[0].style.left=this.position.left+"px";if(!this.options.axis||this.options.axis!="x")this.helper[0].style.top=this.position.top+"px";return e.ui.ddmanager&&e.ui.ddmanager.drag(this,t),!1},_mouseStop:function(t){var n=!1;e.ui.ddmanager&&!this.options.dropBehaviour&&(n=e.ui.ddmanager.drop(this,t)),this.dropped&&(n=this.dropped,this.dropped=!1);var r=this.element[0],i=!1;while(r&&(r=r.parentNode))r==document&&(i=!0);if(!i&&this.options.helper==="original")return!1;if(this.options.revert=="invalid"&&!n||this.options.revert=="valid"&&n||this.options.revert===!0||e.isFunction(this.options.revert)&&this.options.revert.call(this.element,n)){var s=this;e(this.helper).animate(this.originalPosition,parseInt(this.options.revertDuration,10),function(){s._trigger("stop",t)!==!1&&s._clear()})}else this._trigger("stop",t)!==!1&&this._clear();return!1},_mouseUp:function(t){return e("div.ui-draggable-iframeFix").each(function(){this.parentNode.removeChild(this)}),e.ui.ddmanager&&e.ui.ddmanager.dragStop(this,t),e.ui.mouse.prototype._mouseUp.call(this,t)},cancel:function(){return this.helper.is(".ui-draggable-dragging")?this._mouseUp({}):this._clear(),this},_getHandle:function(t){var n=!this.options.handle||!e(this.options.handle,this.element).length?!0:!1;return e(this.options.handle,this.element).find("*").andSelf().each(function(){this==t.target&&(n=!0)}),n},_createHelper:function(t){var n=this.options,r=e.isFunction(n.helper)?e(n.helper.apply(this.element[0],[t])):n.helper=="clone"?this.element.clone().removeAttr("id"):this.element;return r.parents("body").length||r.appendTo(n.appendTo=="parent"?this.element[0].parentNode:n.appendTo),r[0]!=this.element[0]&&!/(fixed|absolute)/.test(r.css("position"))&&r.css("position","absolute"),r},_adjustOffsetFromHelper:function(t){typeof t=="string"&&(t=t.split(" ")),e.isArray(t)&&(t={left:+t[0],top:+t[1]||0}),"left"in t&&(this.offset.click.left=t.left+this.margins.left),"right"in t&&(this.offset.click.left=this.helperProportions.width-t.right+this.margins.left),"top"in t&&(this.offset.click.top=t.top+this.margins.top),"bottom"in t&&(this.offset.click.top=this.helperProportions.height-t.bottom+this.margins.top)},_getParentOffset:function(){this.offsetParent=this.helper.offsetParent();var t=this.offsetParent.offset();this.cssPosition=="absolute"&&this.scrollParent[0]!=document&&e.contains(this.scrollParent[0],this.offsetParent[0])&&(t.left+=this.scrollParent.scrollLeft(),t.top+=this.scrollParent.scrollTop());if(this.offsetParent[0]==document.body||this.offsetParent[0].tagName&&this.offsetParent[0].tagName.toLowerCase()=="html"&&e.ui.ie)t={top:0,left:0};return{top:t.top+(parseInt(this.offsetParent.css("borderTopWidth"),10)||0),left:t.left+(parseInt(this.offsetParent.css("borderLeftWidth"),10)||0)}},_getRelativeOffset:function(){if(this.cssPosition=="relative"){var e=this.element.position();return{top:e.top-(parseInt(this.helper.css("top"),10)||0)+this.scrollParent.scrollTop(),left:e.left-(parseInt(this.helper.css("left"),10)||0)+this.scrollParent.scrollLeft()}}return{top:0,left:0}},_cacheMargins:function(){this.margins={left:parseInt(this.element.css("marginLeft"),10)||0,top:parseInt(this.element.css("marginTop"),10)||0,right:parseInt(this.element.css("marginRight"),10)||0,bottom:parseInt(this.element.css("marginBottom"),10)||0}},_cacheHelperProportions:function(){this.helperProportions={width:this.helper.outerWidth(),height:this.helper.outerHeight()}},_setContainment:function(){var t=this.options;t.containment=="parent"&&(t.containment=this.helper[0].parentNode);if(t.containment=="document"||t.containment=="window")this.containment=[t.containment=="document"?0:e(window).scrollLeft()-this.offset.relative.left-this.offset.parent.left,t.containment=="document"?0:e(window).scrollTop()-this.offset.relative.top-this.offset.parent.top,(t.containment=="document"?0:e(window).scrollLeft())+e(t.containment=="document"?document:window).width()-this.helperProportions.width-this.margins.left,(t.containment=="document"?0:e(window).scrollTop())+(e(t.containment=="document"?document:window).height()||document.body.parentNode.scrollHeight)-this.helperProportions.height-this.margins.top];if(!/^(document|window|parent)$/.test(t.containment)&&t.containment.constructor!=Array){var n=e(t.containment),r=n[0];if(!r)return;var i=n.offset(),s=e(r).css("overflow")!="hidden";this.containment=[(parseInt(e(r).css("borderLeftWidth"),10)||0)+(parseInt(e(r).css("paddingLeft"),10)||0),(parseInt(e(r).css("borderTopWidth"),10)||0)+(parseInt(e(r).css("paddingTop"),10)||0),(s?Math.max(r.scrollWidth,r.offsetWidth):r.offsetWidth)-(parseInt(e(r).css("borderLeftWidth"),10)||0)-(parseInt(e(r).css("paddingRight"),10)||0)-this.helperProportions.width-this.margins.left-this.margins.right,(s?Math.max(r.scrollHeight,r.offsetHeight):r.offsetHeight)-(parseInt(e(r).css("borderTopWidth"),10)||0)-(parseInt(e(r).css("paddingBottom"),10)||0)-this.helperProportions.height-this.margins.top-this.margins.bottom],this.relative_container=n}else t.containment.constructor==Array&&(this.containment=t.containment)},_convertPositionTo:function(t,n){n||(n=this.position);var r=t=="absolute"?1:-1,i=this.options,s=this.cssPosition!="absolute"||this.scrollParent[0]!=document&&!!e.contains(this.scrollParent[0],this.offsetParent[0])?this.scrollParent:this.offsetParent,o=/(html|body)/i.test(s[0].tagName);return{top:n.top+this.offset.relative.top*r+this.offset.parent.top*r-(this.cssPosition=="fixed"?-this.scrollParent.scrollTop():o?0:s.scrollTop())*r,left:n.left+this.offset.relative.left*r+this.offset.parent.left*r-(this.cssPosition=="fixed"?-this.scrollParent.scrollLeft():o?0:s.scrollLeft())*r}},_generatePosition:function(t){var n=this.options,r=this.cssPosition!="absolute"||this.scrollParent[0]!=document&&!!e.contains(this.scrollParent[0],this.offsetParent[0])?this.scrollParent:this.offsetParent,i=/(html|body)/i.test(r[0].tagName),s=t.pageX,o=t.pageY;if(this.originalPosition){var u;if(this.containment){if(this.relative_container){var a=this.relative_container.offset();u=[this.containment[0]+a.left,this.containment[1]+a.top,this.containment[2]+a.left,this.containment[3]+a.top]}else u=this.containment;t.pageX-this.offset.click.left<u[0]&&(s=u[0]+this.offset.click.left),t.pageY-this.offset.click.top<u[1]&&(o=u[1]+this.offset.click.top),t.pageX-this.offset.click.left>u[2]&&(s=u[2]+this.offset.click.left),t.pageY-this.offset.click.top>u[3]&&(o=u[3]+this.offset.click.top)}if(n.grid){var f=n.grid[1]?this.originalPageY+Math.round((o-this.originalPageY)/n.grid[1])*n.grid[1]:this.originalPageY;o=u?f-this.offset.click.top<u[1]||f-this.offset.click.top>u[3]?f-this.offset.click.top<u[1]?f+n.grid[1]:f-n.grid[1]:f:f;var l=n.grid[0]?this.originalPageX+Math.round((s-this.originalPageX)/n.grid[0])*n.grid[0]:this.originalPageX;s=u?l-this.offset.click.left<u[0]||l-this.offset.click.left>u[2]?l-this.offset.click.left<u[0]?l+n.grid[0]:l-n.grid[0]:l:l}}return{top:o-this.offset.click.top-this.offset.relative.top-this.offset.parent.top+(this.cssPosition=="fixed"?-this.scrollParent.scrollTop():i?0:r.scrollTop()),left:s-this.offset.click.left-this.offset.relative.left-this.offset.parent.left+(this.cssPosition=="fixed"?-this.scrollParent.scrollLeft():i?0:r.scrollLeft())}},_clear:function(){this.helper.removeClass("ui-draggable-dragging"),this.helper[0]!=this.element[0]&&!this.cancelHelperRemoval&&this.helper.remove(),this.helper=null,this.cancelHelperRemoval=!1},_trigger:function(t,n,r){return r=r||this._uiHash(),e.ui.plugin.call(this,t,[n,r]),t=="drag"&&(this.positionAbs=this._convertPositionTo("absolute")),e.Widget.prototype._trigger.call(this,t,n,r)},plugins:{},_uiHash:function(e){return{helper:this.helper,position:this.position,originalPosition:this.originalPosition,offset:this.positionAbs}}}),e.ui.plugin.add("draggable","connectToSortable",{start:function(t,n){var r=e(this).data("draggable"),i=r.options,s=e.extend({},n,{item:r.element});r.sortables=[],e(i.connectToSortable).each(function(){var n=e.data(this,"sortable");n&&!n.options.disabled&&(r.sortables.push({instance:n,shouldRevert:n.options.revert}),n.refreshPositions(),n._trigger("activate",t,s))})},stop:function(t,n){var r=e(this).data("draggable"),i=e.extend({},n,{item:r.element});e.each(r.sortables,function(){this.instance.isOver?(this.instance.isOver=0,r.cancelHelperRemoval=!0,this.instance.cancelHelperRemoval=!1,this.shouldRevert&&(this.instance.options.revert=!0),this.instance._mouseStop(t),this.instance.options.helper=this.instance.options._helper,r.options.helper=="original"&&this.instance.currentItem.css({top:"auto",left:"auto"})):(this.instance.cancelHelperRemoval=!1,this.instance._trigger("deactivate",t,i))})},drag:function(t,n){var r=e(this).data("draggable"),i=this,s=function(t){var n=this.offset.click.top,r=this.offset.click.left,i=this.positionAbs.top,s=this.positionAbs.left,o=t.height,u=t.width,a=t.top,f=t.left;return e.ui.isOver(i+n,s+r,a,f,o,u)};e.each(r.sortables,function(s){var o=!1,u=this;this.instance.positionAbs=r.positionAbs,this.instance.helperProportions=r.helperProportions,this.instance.offset.click=r.offset.click,this.instance._intersectsWith(this.instance.containerCache)&&(o=!0,e.each(r.sortables,function(){return this.instance.positionAbs=r.positionAbs,this.instance.helperProportions=r.helperProportions,this.instance.offset.click=r.offset.click,this!=u&&this.instance._intersectsWith(this.instance.containerCache)&&e.ui.contains(u.instance.element[0],this.instance.element[0])&&(o=!1),o})),o?(this.instance.isOver||(this.instance.isOver=1,this.instance.currentItem=e(i).clone().removeAttr("id").appendTo(this.instance.element).data("sortable-item",!0),this.instance.options._helper=this.instance.options.helper,this.instance.options.helper=function(){return n.helper[0]},t.target=this.instance.currentItem[0],this.instance._mouseCapture(t,!0),this.instance._mouseStart(t,!0,!0),this.instance.offset.click.top=r.offset.click.top,this.instance.offset.click.left=r.offset.click.left,this.instance.offset.parent.left-=r.offset.parent.left-this.instance.offset.parent.left,this.instance.offset.parent.top-=r.offset.parent.top-this.instance.offset.parent.top,r._trigger("toSortable",t),r.dropped=this.instance.element,r.currentItem=r.element,this.instance.fromOutside=r),this.instance.currentItem&&this.instance._mouseDrag(t)):this.instance.isOver&&(this.instance.isOver=0,this.instance.cancelHelperRemoval=!0,this.instance.options.revert=!1,this.instance._trigger("out",t,this.instance._uiHash(this.instance)),this.instance._mouseStop(t,!0),this.instance.options.helper=this.instance.options._helper,this.instance.currentItem.remove(),this.instance.placeholder&&this.instance.placeholder.remove(),r._trigger("fromSortable",t),r.dropped=!1)})}}),e.ui.plugin.add("draggable","cursor",{start:function(t,n){var r=e("body"),i=e(this).data("draggable").options;r.css("cursor")&&(i._cursor=r.css("cursor")),r.css("cursor",i.cursor)},stop:function(t,n){var r=e(this).data("draggable").options;r._cursor&&e("body").css("cursor",r._cursor)}}),e.ui.plugin.add("draggable","opacity",{start:function(t,n){var r=e(n.helper),i=e(this).data("draggable").options;r.css("opacity")&&(i._opacity=r.css("opacity")),r.css("opacity",i.opacity)},stop:function(t,n){var r=e(this).data("draggable").options;r._opacity&&e(n.helper).css("opacity",r._opacity)}}),e.ui.plugin.add("draggable","scroll",{start:function(t,n){var r=e(this).data("draggable");r.scrollParent[0]!=document&&r.scrollParent[0].tagName!="HTML"&&(r.overflowOffset=r.scrollParent.offset())},drag:function(t,n){var r=e(this).data("draggable"),i=r.options,s=!1;if(r.scrollParent[0]!=document&&r.scrollParent[0].tagName!="HTML"){if(!i.axis||i.axis!="x")r.overflowOffset.top+r.scrollParent[0].offsetHeight-t.pageY<i.scrollSensitivity?r.scrollParent[0].scrollTop=s=r.scrollParent[0].scrollTop+i.scrollSpeed:t.pageY-r.overflowOffset.top<i.scrollSensitivity&&(r.scrollParent[0].scrollTop=s=r.scrollParent[0].scrollTop-i.scrollSpeed);if(!i.axis||i.axis!="y")r.overflowOffset.left+r.scrollParent[0].offsetWidth-t.pageX<i.scrollSensitivity?r.scrollParent[0].scrollLeft=s=r.scrollParent[0].scrollLeft+i.scrollSpeed:t.pageX-r.overflowOffset.left<i.scrollSensitivity&&(r.scrollParent[0].scrollLeft=s=r.scrollParent[0].scrollLeft-i.scrollSpeed)}else{if(!i.axis||i.axis!="x")t.pageY-e(document).scrollTop()<i.scrollSensitivity?s=e(document).scrollTop(e(document).scrollTop()-i.scrollSpeed):e(window).height()-(t.pageY-e(document).scrollTop())<i.scrollSensitivity&&(s=e(document).scrollTop(e(document).scrollTop()+i.scrollSpeed));if(!i.axis||i.axis!="y")t.pageX-e(document).scrollLeft()<i.scrollSensitivity?s=e(document).scrollLeft(e(document).scrollLeft()-i.scrollSpeed):e(window).width()-(t.pageX-e(document).scrollLeft())<i.scrollSensitivity&&(s=e(document).scrollLeft(e(document).scrollLeft()+i.scrollSpeed))}s!==!1&&e.ui.ddmanager&&!i.dropBehaviour&&e.ui.ddmanager.prepareOffsets(r,t)}}),e.ui.plugin.add("draggable","snap",{start:function(t,n){var r=e(this).data("draggable"),i=r.options;r.snapElements=[],e(i.snap.constructor!=String?i.snap.items||":data(draggable)":i.snap).each(function(){var t=e(this),n=t.offset();this!=r.element[0]&&r.snapElements.push({item:this,width:t.outerWidth(),height:t.outerHeight(),top:n.top,left:n.left})})},drag:function(t,n){var r=e(this).data("draggable"),i=r.options,s=i.snapTolerance,o=n.offset.left,u=o+r.helperProportions.width,a=n.offset.top,f=a+r.helperProportions.height;for(var l=r.snapElements.length-1;l>=0;l--){var c=r.snapElements[l].left,h=c+r.snapElements[l].width,p=r.snapElements[l].top,d=p+r.snapElements[l].height;if(!(c-s<o&&o<h+s&&p-s<a&&a<d+s||c-s<o&&o<h+s&&p-s<f&&f<d+s||c-s<u&&u<h+s&&p-s<a&&a<d+s||c-s<u&&u<h+s&&p-s<f&&f<d+s)){r.snapElements[l].snapping&&r.options.snap.release&&r.options.snap.release.call(r.element,t,e.extend(r._uiHash(),{snapItem:r.snapElements[l].item})),r.snapElements[l].snapping=!1;continue}if(i.snapMode!="inner"){var v=Math.abs(p-f)<=s,m=Math.abs(d-a)<=s,g=Math.abs(c-u)<=s,y=Math.abs(h-o)<=s;v&&(n.position.top=r._convertPositionTo("relative",{top:p-r.helperProportions.height,left:0}).top-r.margins.top),m&&(n.position.top=r._convertPositionTo("relative",{top:d,left:0}).top-r.margins.top),g&&(n.position.left=r._convertPositionTo("relative",{top:0,left:c-r.helperProportions.width}).left-r.margins.left),y&&(n.position.left=r._convertPositionTo("relative",{top:0,left:h}).left-r.margins.left)}var b=v||m||g||y;if(i.snapMode!="outer"){var v=Math.abs(p-a)<=s,m=Math.abs(d-f)<=s,g=Math.abs(c-o)<=s,y=Math.abs(h-u)<=s;v&&(n.position.top=r._convertPositionTo("relative",{top:p,left:0}).top-r.margins.top),m&&(n.position.top=r._convertPositionTo("relative",{top:d-r.helperProportions.height,left:0}).top-r.margins.top),g&&(n.position.left=r._convertPositionTo("relative",{top:0,left:c}).left-r.margins.left),y&&(n.position.left=r._convertPositionTo("relative",{top:0,left:h-r.helperProportions.width}).left-r.margins.left)}!r.snapElements[l].snapping&&(v||m||g||y||b)&&r.options.snap.snap&&r.options.snap.snap.call(r.element,t,e.extend(r._uiHash(),{snapItem:r.snapElements[l].item})),r.snapElements[l].snapping=v||m||g||y||b}}}),e.ui.plugin.add("draggable","stack",{start:function(t,n){var r=e(this).data("draggable").options,i=e.makeArray(e(r.stack)).sort(function(t,n){return(parseInt(e(t).css("zIndex"),10)||0)-(parseInt(e(n).css("zIndex"),10)||0)});if(!i.length)return;var s=parseInt(i[0].style.zIndex)||0;e(i).each(function(e){this.style.zIndex=s+e}),this[0].style.zIndex=s+i.length}}),e.ui.plugin.add("draggable","zIndex",{start:function(t,n){var r=e(n.helper),i=e(this).data("draggable").options;r.css("zIndex")&&(i._zIndex=r.css("zIndex")),r.css("zIndex",i.zIndex)},stop:function(t,n){var r=e(this).data("draggable").options;r._zIndex&&e(n.helper).css("zIndex",r._zIndex)}})})(jQuery);(function(e,t){e.widget("ui.droppable",{version:"1.9.1",widgetEventPrefix:"drop",options:{accept:"*",activeClass:!1,addClasses:!0,greedy:!1,hoverClass:!1,scope:"default",tolerance:"intersect"},_create:function(){var t=this.options,n=t.accept;this.isover=0,this.isout=1,this.accept=e.isFunction(n)?n:function(e){return e.is(n)},this.proportions={width:this.element[0].offsetWidth,height:this.element[0].offsetHeight},e.ui.ddmanager.droppables[t.scope]=e.ui.ddmanager.droppables[t.scope]||[],e.ui.ddmanager.droppables[t.scope].push(this),t.addClasses&&this.element.addClass("ui-droppable")},_destroy:function(){var t=e.ui.ddmanager.droppables[this.options.scope];for(var n=0;n<t.length;n++)t[n]==this&&t.splice(n,1);this.element.removeClass("ui-droppable ui-droppable-disabled")},_setOption:function(t,n){t=="accept"&&(this.accept=e.isFunction(n)?n:function(e){return e.is(n)}),e.Widget.prototype._setOption.apply(this,arguments)},_activate:function(t){var n=e.ui.ddmanager.current;this.options.activeClass&&this.element.addClass(this.options.activeClass),n&&this._trigger("activate",t,this.ui(n))},_deactivate:function(t){var n=e.ui.ddmanager.current;this.options.activeClass&&this.element.removeClass(this.options.activeClass),n&&this._trigger("deactivate",t,this.ui(n))},_over:function(t){var n=e.ui.ddmanager.current;if(!n||(n.currentItem||n.element)[0]==this.element[0])return;this.accept.call(this.element[0],n.currentItem||n.element)&&(this.options.hoverClass&&this.element.addClass(this.options.hoverClass),this._trigger("over",t,this.ui(n)))},_out:function(t){var n=e.ui.ddmanager.current;if(!n||(n.currentItem||n.element)[0]==this.element[0])return;this.accept.call(this.element[0],n.currentItem||n.element)&&(this.options.hoverClass&&this.element.removeClass(this.options.hoverClass),this._trigger("out",t,this.ui(n)))},_drop:function(t,n){var r=n||e.ui.ddmanager.current;if(!r||(r.currentItem||r.element)[0]==this.element[0])return!1;var i=!1;return this.element.find(":data(droppable)").not(".ui-draggable-dragging").each(function(){var t=e.data(this,"droppable");if(t.options.greedy&&!t.options.disabled&&t.options.scope==r.options.scope&&t.accept.call(t.element[0],r.currentItem||r.element)&&e.ui.intersect(r,e.extend(t,{offset:t.element.offset()}),t.options.tolerance))return i=!0,!1}),i?!1:this.accept.call(this.element[0],r.currentItem||r.element)?(this.options.activeClass&&this.element.removeClass(this.options.activeClass),this.options.hoverClass&&this.element.removeClass(this.options.hoverClass),this._trigger("drop",t,this.ui(r)),this.element):!1},ui:function(e){return{draggable:e.currentItem||e.element,helper:e.helper,position:e.position,offset:e.positionAbs}}}),e.ui.intersect=function(t,n,r){if(!n.offset)return!1;var i=(t.positionAbs||t.position.absolute).left,s=i+t.helperProportions.width,o=(t.positionAbs||t.position.absolute).top,u=o+t.helperProportions.height,a=n.offset.left,f=a+n.proportions.width,l=n.offset.top,c=l+n.proportions.height;switch(r){case"fit":return a<=i&&s<=f&&l<=o&&u<=c;case"intersect":return a<i+t.helperProportions.width/2&&s-t.helperProportions.width/2<f&&l<o+t.helperProportions.height/2&&u-t.helperProportions.height/2<c;case"pointer":var h=(t.positionAbs||t.position.absolute).left+(t.clickOffset||t.offset.click).left,p=(t.positionAbs||t.position.absolute).top+(t.clickOffset||t.offset.click).top,d=e.ui.isOver(p,h,l,a,n.proportions.height,n.proportions.width);return d;case"touch":return(o>=l&&o<=c||u>=l&&u<=c||o<l&&u>c)&&(i>=a&&i<=f||s>=a&&s<=f||i<a&&s>f);default:return!1}},e.ui.ddmanager={current:null,droppables:{"default":[]},prepareOffsets:function(t,n){var r=e.ui.ddmanager.droppables[t.options.scope]||[],i=n?n.type:null,s=(t.currentItem||t.element).find(":data(droppable)").andSelf();e:for(var o=0;o<r.length;o++){if(r[o].options.disabled||t&&!r[o].accept.call(r[o].element[0],t.currentItem||t.element))continue;for(var u=0;u<s.length;u++)if(s[u]==r[o].element[0]){r[o].proportions.height=0;continue e}r[o].visible=r[o].element.css("display")!="none";if(!r[o].visible)continue;i=="mousedown"&&r[o]._activate.call(r[o],n),r[o].offset=r[o].element.offset(),r[o].proportions={width:r[o].element[0].offsetWidth,height:r[o].element[0].offsetHeight}}},drop:function(t,n){var r=!1;return e.each(e.ui.ddmanager.droppables[t.options.scope]||[],function(){if(!this.options)return;!this.options.disabled&&this.visible&&e.ui.intersect(t,this,this.options.tolerance)&&(r=this._drop.call(this,n)||r),!this.options.disabled&&this.visible&&this.accept.call(this.element[0],t.currentItem||t.element)&&(this.isout=1,this.isover=0,this._deactivate.call(this,n))}),r},dragStart:function(t,n){t.element.parentsUntil("body").bind("scroll.droppable",function(){t.options.refreshPositions||e.ui.ddmanager.prepareOffsets(t,n)})},drag:function(t,n){t.options.refreshPositions&&e.ui.ddmanager.prepareOffsets(t,n),e.each(e.ui.ddmanager.droppables[t.options.scope]||[],function(){if(this.options.disabled||this.greedyChild||!this.visible)return;var r=e.ui.intersect(t,this,this.options.tolerance),i=!r&&this.isover==1?"isout":r&&this.isover==0?"isover":null;if(!i)return;var s;if(this.options.greedy){var o=this.options.scope,u=this.element.parents(":data(droppable)").filter(function(){return e.data(this,"droppable").options.scope===o});u.length&&(s=e.data(u[0],"droppable"),s.greedyChild=i=="isover"?1:0)}s&&i=="isover"&&(s.isover=0,s.isout=1,s._out.call(s,n)),this[i]=1,this[i=="isout"?"isover":"isout"]=0,this[i=="isover"?"_over":"_out"].call(this,n),s&&i=="isout"&&(s.isout=0,s.isover=1,s._over.call(s,n))})},dragStop:function(t,n){t.element.parentsUntil("body").unbind("scroll.droppable"),t.options.refreshPositions||e.ui.ddmanager.prepareOffsets(t,n)}}})(jQuery);(function(e,t){e.widget("ui.resizable",e.ui.mouse,{version:"1.9.1",widgetEventPrefix:"resize",options:{alsoResize:!1,animate:!1,animateDuration:"slow",animateEasing:"swing",aspectRatio:!1,autoHide:!1,containment:!1,ghost:!1,grid:!1,handles:"e,s,se",helper:!1,maxHeight:null,maxWidth:null,minHeight:10,minWidth:10,zIndex:1e3},_create:function(){var t=this,n=this.options;this.element.addClass("ui-resizable"),e.extend(this,{_aspectRatio:!!n.aspectRatio,aspectRatio:n.aspectRatio,originalElement:this.element,_proportionallyResizeElements:[],_helper:n.helper||n.ghost||n.animate?n.helper||"ui-resizable-helper":null}),this.element[0].nodeName.match(/canvas|textarea|input|select|button|img/i)&&(this.element.wrap(e('<div class="ui-wrapper" style="overflow: hidden;"></div>').css({position:this.element.css("position"),width:this.element.outerWidth(),height:this.element.outerHeight(),top:this.element.css("top"),left:this.element.css("left")})),this.element=this.element.parent().data("resizable",this.element.data("resizable")),this.elementIsWrapper=!0,this.element.css({marginLeft:this.originalElement.css("marginLeft"),marginTop:this.originalElement.css("marginTop"),marginRight:this.originalElement.css("marginRight"),marginBottom:this.originalElement.css("marginBottom")}),this.originalElement.css({marginLeft:0,marginTop:0,marginRight:0,marginBottom:0}),this.originalResizeStyle=this.originalElement.css("resize"),this.originalElement.css("resize","none"),this._proportionallyResizeElements.push(this.originalElement.css({position:"static",zoom:1,display:"block"})),this.originalElement.css({margin:this.originalElement.css("margin")}),this._proportionallyResize()),this.handles=n.handles||(e(".ui-resizable-handle",this.element).length?{n:".ui-resizable-n",e:".ui-resizable-e",s:".ui-resizable-s",w:".ui-resizable-w",se:".ui-resizable-se",sw:".ui-resizable-sw",ne:".ui-resizable-ne",nw:".ui-resizable-nw"}:"e,s,se");if(this.handles.constructor==String){this.handles=="all"&&(this.handles="n,e,s,w,se,sw,ne,nw");var r=this.handles.split(",");this.handles={};for(var i=0;i<r.length;i++){var s=e.trim(r[i]),o="ui-resizable-"+s,u=e('<div class="ui-resizable-handle '+o+'"></div>');u.css({zIndex:n.zIndex}),"se"==s&&u.addClass("ui-icon ui-icon-gripsmall-diagonal-se"),this.handles[s]=".ui-resizable-"+s,this.element.append(u)}}this._renderAxis=function(t){t=t||this.element;for(var n in this.handles){this.handles[n].constructor==String&&(this.handles[n]=e(this.handles[n],this.element).show());if(this.elementIsWrapper&&this.originalElement[0].nodeName.match(/textarea|input|select|button/i)){var r=e(this.handles[n],this.element),i=0;i=/sw|ne|nw|se|n|s/.test(n)?r.outerHeight():r.outerWidth();var s=["padding",/ne|nw|n/.test(n)?"Top":/se|sw|s/.test(n)?"Bottom":/^e$/.test(n)?"Right":"Left"].join("");t.css(s,i),this._proportionallyResize()}if(!e(this.handles[n]).length)continue}},this._renderAxis(this.element),this._handles=e(".ui-resizable-handle",this.element).disableSelection(),this._handles.mouseover(function(){if(!t.resizing){if(this.className)var e=this.className.match(/ui-resizable-(se|sw|ne|nw|n|e|s|w)/i);t.axis=e&&e[1]?e[1]:"se"}}),n.autoHide&&(this._handles.hide(),e(this.element).addClass("ui-resizable-autohide").mouseenter(function(){if(n.disabled)return;e(this).removeClass("ui-resizable-autohide"),t._handles.show()}).mouseleave(function(){if(n.disabled)return;t.resizing||(e(this).addClass("ui-resizable-autohide"),t._handles.hide())})),this._mouseInit()},_destroy:function(){this._mouseDestroy();var t=function(t){e(t).removeClass("ui-resizable ui-resizable-disabled ui-resizable-resizing").removeData("resizable").removeData("ui-resizable").unbind(".resizable").find(".ui-resizable-handle").remove()};if(this.elementIsWrapper){t(this.element);var n=this.element;this.originalElement.css({position:n.css("position"),width:n.outerWidth(),height:n.outerHeight(),top:n.css("top"),left:n.css("left")}).insertAfter(n),n.remove()}return this.originalElement.css("resize",this.originalResizeStyle),t(this.originalElement),this},_mouseCapture:function(t){var n=!1;for(var r in this.handles)e(this.handles[r])[0]==t.target&&(n=!0);return!this.options.disabled&&n},_mouseStart:function(t){var r=this.options,i=this.element.position(),s=this.element;this.resizing=!0,this.documentScroll={top:e(document).scrollTop(),left:e(document).scrollLeft()},(s.is(".ui-draggable")||/absolute/.test(s.css("position")))&&s.css({position:"absolute",top:i.top,left:i.left}),this._renderProxy();var o=n(this.helper.css("left")),u=n(this.helper.css("top"));r.containment&&(o+=e(r.containment).scrollLeft()||0,u+=e(r.containment).scrollTop()||0),this.offset=this.helper.offset(),this.position={left:o,top:u},this.size=this._helper?{width:s.outerWidth(),height:s.outerHeight()}:{width:s.width(),height:s.height()},this.originalSize=this._helper?{width:s.outerWidth(),height:s.outerHeight()}:{width:s.width(),height:s.height()},this.originalPosition={left:o,top:u},this.sizeDiff={width:s.outerWidth()-s.width(),height:s.outerHeight()-s.height()},this.originalMousePosition={left:t.pageX,top:t.pageY},this.aspectRatio=typeof r.aspectRatio=="number"?r.aspectRatio:this.originalSize.width/this.originalSize.height||1;var a=e(".ui-resizable-"+this.axis).css("cursor");return e("body").css("cursor",a=="auto"?this.axis+"-resize":a),s.addClass("ui-resizable-resizing"),this._propagate("start",t),!0},_mouseDrag:function(e){var t=this.helper,n=this.options,r={},i=this,s=this.originalMousePosition,o=this.axis,u=e.pageX-s.left||0,a=e.pageY-s.top||0,f=this._change[o];if(!f)return!1;var l=f.apply(this,[e,u,a]);this._updateVirtualBoundaries(e.shiftKey);if(this._aspectRatio||e.shiftKey)l=this._updateRatio(l,e);return l=this._respectSize(l,e),this._propagate("resize",e),t.css({top:this.position.top+"px",left:this.position.left+"px",width:this.size.width+"px",height:this.size.height+"px"}),!this._helper&&this._proportionallyResizeElements.length&&this._proportionallyResize(),this._updateCache(l),this._trigger("resize",e,this.ui()),!1},_mouseStop:function(t){this.resizing=!1;var n=this.options,r=this;if(this._helper){var i=this._proportionallyResizeElements,s=i.length&&/textarea/i.test(i[0].nodeName),o=s&&e.ui.hasScroll(i[0],"left")?0:r.sizeDiff.height,u=s?0:r.sizeDiff.width,a={width:r.helper.width()-u,height:r.helper.height()-o},f=parseInt(r.element.css("left"),10)+(r.position.left-r.originalPosition.left)||null,l=parseInt(r.element.css("top"),10)+(r.position.top-r.originalPosition.top)||null;n.animate||this.element.css(e.extend(a,{top:l,left:f})),r.helper.height(r.size.height),r.helper.width(r.size.width),this._helper&&!n.animate&&this._proportionallyResize()}return e("body").css("cursor","auto"),this.element.removeClass("ui-resizable-resizing"),this._propagate("stop",t),this._helper&&this.helper.remove(),!1},_updateVirtualBoundaries:function(e){var t=this.options,n,i,s,o,u;u={minWidth:r(t.minWidth)?t.minWidth:0,maxWidth:r(t.maxWidth)?t.maxWidth:Infinity,minHeight:r(t.minHeight)?t.minHeight:0,maxHeight:r(t.maxHeight)?t.maxHeight:Infinity};if(this._aspectRatio||e)n=u.minHeight*this.aspectRatio,s=u.minWidth/this.aspectRatio,i=u.maxHeight*this.aspectRatio,o=u.maxWidth/this.aspectRatio,n>u.minWidth&&(u.minWidth=n),s>u.minHeight&&(u.minHeight=s),i<u.maxWidth&&(u.maxWidth=i),o<u.maxHeight&&(u.maxHeight=o);this._vBoundaries=u},_updateCache:function(e){var t=this.options;this.offset=this.helper.offset(),r(e.left)&&(this.position.left=e.left),r(e.top)&&(this.position.top=e.top),r(e.height)&&(this.size.height=e.height),r(e.width)&&(this.size.width=e.width)},_updateRatio:function(e,t){var n=this.options,i=this.position,s=this.size,o=this.axis;return r(e.height)?e.width=e.height*this.aspectRatio:r(e.width)&&(e.height=e.width/this.aspectRatio),o=="sw"&&(e.left=i.left+(s.width-e.width),e.top=null),o=="nw"&&(e.top=i.top+(s.height-e.height),e.left=i.left+(s.width-e.width)),e},_respectSize:function(e,t){var n=this.helper,i=this._vBoundaries,s=this._aspectRatio||t.shiftKey,o=this.axis,u=r(e.width)&&i.maxWidth&&i.maxWidth<e.width,a=r(e.height)&&i.maxHeight&&i.maxHeight<e.height,f=r(e.width)&&i.minWidth&&i.minWidth>e.width,l=r(e.height)&&i.minHeight&&i.minHeight>e.height;f&&(e.width=i.minWidth),l&&(e.height=i.minHeight),u&&(e.width=i.maxWidth),a&&(e.height=i.maxHeight);var c=this.originalPosition.left+this.originalSize.width,h=this.position.top+this.size.height,p=/sw|nw|w/.test(o),d=/nw|ne|n/.test(o);f&&p&&(e.left=c-i.minWidth),u&&p&&(e.left=c-i.maxWidth),l&&d&&(e.top=h-i.minHeight),a&&d&&(e.top=h-i.maxHeight);var v=!e.width&&!e.height;return v&&!e.left&&e.top?e.top=null:v&&!e.top&&e.left&&(e.left=null),e},_proportionallyResize:function(){var t=this.options;if(!this._proportionallyResizeElements.length)return;var n=this.helper||this.element;for(var r=0;r<this._proportionallyResizeElements.length;r++){var i=this._proportionallyResizeElements[r];if(!this.borderDif){var s=[i.css("borderTopWidth"),i.css("borderRightWidth"),i.css("borderBottomWidth"),i.css("borderLeftWidth")],o=[i.css("paddingTop"),i.css("paddingRight"),i.css("paddingBottom"),i.css("paddingLeft")];this.borderDif=e.map(s,function(e,t){var n=parseInt(e,10)||0,r=parseInt(o[t],10)||0;return n+r})}i.css({height:n.height()-this.borderDif[0]-this.borderDif[2]||0,width:n.width()-this.borderDif[1]-this.borderDif[3]||0})}},_renderProxy:function(){var t=this.element,n=this.options;this.elementOffset=t.offset();if(this._helper){this.helper=this.helper||e('<div style="overflow:hidden;"></div>');var r=e.ui.ie6?1:0,i=e.ui.ie6?2:-1;this.helper.addClass(this._helper).css({width:this.element.outerWidth()+i,height:this.element.outerHeight()+i,position:"absolute",left:this.elementOffset.left-r+"px",top:this.elementOffset.top-r+"px",zIndex:++n.zIndex}),this.helper.appendTo("body").disableSelection()}else this.helper=this.element},_change:{e:function(e,t,n){return{width:this.originalSize.width+t}},w:function(e,t,n){var r=this.options,i=this.originalSize,s=this.originalPosition;return{left:s.left+t,width:i.width-t}},n:function(e,t,n){var r=this.options,i=this.originalSize,s=this.originalPosition;return{top:s.top+n,height:i.height-n}},s:function(e,t,n){return{height:this.originalSize.height+n}},se:function(t,n,r){return e.extend(this._change.s.apply(this,arguments),this._change.e.apply(this,[t,n,r]))},sw:function(t,n,r){return e.extend(this._change.s.apply(this,arguments),this._change.w.apply(this,[t,n,r]))},ne:function(t,n,r){return e.extend(this._change.n.apply(this,arguments),this._change.e.apply(this,[t,n,r]))},nw:function(t,n,r){return e.extend(this._change.n.apply(this,arguments),this._change.w.apply(this,[t,n,r]))}},_propagate:function(t,n){e.ui.plugin.call(this,t,[n,this.ui()]),t!="resize"&&this._trigger(t,n,this.ui())},plugins:{},ui:function(){return{originalElement:this.originalElement,element:this.element,helper:this.helper,position:this.position,size:this.size,originalSize:this.originalSize,originalPosition:this.originalPosition}}}),e.ui.plugin.add("resizable","alsoResize",{start:function(t,n){var r=e(this).data("resizable"),i=r.options,s=function(t){e(t).each(function(){var t=e(this);t.data("resizable-alsoresize",{width:parseInt(t.width(),10),height:parseInt(t.height(),10),left:parseInt(t.css("left"),10),top:parseInt(t.css("top"),10)})})};typeof i.alsoResize=="object"&&!i.alsoResize.parentNode?i.alsoResize.length?(i.alsoResize=i.alsoResize[0],s(i.alsoResize)):e.each(i.alsoResize,function(e){s(e)}):s(i.alsoResize)},resize:function(t,n){var r=e(this).data("resizable"),i=r.options,s=r.originalSize,o=r.originalPosition,u={height:r.size.height-s.height||0,width:r.size.width-s.width||0,top:r.position.top-o.top||0,left:r.position.left-o.left||0},a=function(t,r){e(t).each(function(){var t=e(this),i=e(this).data("resizable-alsoresize"),s={},o=r&&r.length?r:t.parents(n.originalElement[0]).length?["width","height"]:["width","height","top","left"];e.each(o,function(e,t){var n=(i[t]||0)+(u[t]||0);n&&n>=0&&(s[t]=n||null)}),t.css(s)})};typeof i.alsoResize=="object"&&!i.alsoResize.nodeType?e.each(i.alsoResize,function(e,t){a(e,t)}):a(i.alsoResize)},stop:function(t,n){e(this).removeData("resizable-alsoresize")}}),e.ui.plugin.add("resizable","animate",{stop:function(t,n){var r=e(this).data("resizable"),i=r.options,s=r._proportionallyResizeElements,o=s.length&&/textarea/i.test(s[0].nodeName),u=o&&e.ui.hasScroll(s[0],"left")?0:r.sizeDiff.height,a=o?0:r.sizeDiff.width,f={width:r.size.width-a,height:r.size.height-u},l=parseInt(r.element.css("left"),10)+(r.position.left-r.originalPosition.left)||null,c=parseInt(r.element.css("top"),10)+(r.position.top-r.originalPosition.top)||null;r.element.animate(e.extend(f,c&&l?{top:c,left:l}:{}),{duration:i.animateDuration,easing:i.animateEasing,step:function(){var n={width:parseInt(r.element.css("width"),10),height:parseInt(r.element.css("height"),10),top:parseInt(r.element.css("top"),10),left:parseInt(r.element.css("left"),10)};s&&s.length&&e(s[0]).css({width:n.width,height:n.height}),r._updateCache(n),r._propagate("resize",t)}})}}),e.ui.plugin.add("resizable","containment",{start:function(t,r){var i=e(this).data("resizable"),s=i.options,o=i.element,u=s.containment,a=u instanceof e?u.get(0):/parent/.test(u)?o.parent().get(0):u;if(!a)return;i.containerElement=e(a);if(/document/.test(u)||u==document)i.containerOffset={left:0,top:0},i.containerPosition={left:0,top:0},i.parentData={element:e(document),left:0,top:0,width:e(document).width(),height:e(document).height()||document.body.parentNode.scrollHeight};else{var f=e(a),l=[];e(["Top","Right","Left","Bottom"]).each(function(e,t){l[e]=n(f.css("padding"+t))}),i.containerOffset=f.offset(),i.containerPosition=f.position(),i.containerSize={height:f.innerHeight()-l[3],width:f.innerWidth()-l[1]};var c=i.containerOffset,h=i.containerSize.height,p=i.containerSize.width,d=e.ui.hasScroll(a,"left")?a.scrollWidth:p,v=e.ui.hasScroll(a)?a.scrollHeight:h;i.parentData={element:a,left:c.left,top:c.top,width:d,height:v}}},resize:function(t,n){var r=e(this).data("resizable"),i=r.options,s=r.containerSize,o=r.containerOffset,u=r.size,a=r.position,f=r._aspectRatio||t.shiftKey,l={top:0,left:0},c=r.containerElement;c[0]!=document&&/static/.test(c.css("position"))&&(l=o),a.left<(r._helper?o.left:0)&&(r.size.width=r.size.width+(r._helper?r.position.left-o.left:r.position.left-l.left),f&&(r.size.height=r.size.width/r.aspectRatio),r.position.left=i.helper?o.left:0),a.top<(r._helper?o.top:0)&&(r.size.height=r.size.height+(r._helper?r.position.top-o.top:r.position.top),f&&(r.size.width=r.size.height*r.aspectRatio),r.position.top=r._helper?o.top:0),r.offset.left=r.parentData.left+r.position.left,r.offset.top=r.parentData.top+r.position.top;var h=Math.abs((r._helper?r.offset.left-l.left:r.offset.left-l.left)+r.sizeDiff.width),p=Math.abs((r._helper?r.offset.top-l.top:r.offset.top-o.top)+r.sizeDiff.height),d=r.containerElement.get(0)==r.element.parent().get(0),v=/relative|absolute/.test(r.containerElement.css("position"));d&&v&&(h-=r.parentData.left),h+r.size.width>=r.parentData.width&&(r.size.width=r.parentData.width-h,f&&(r.size.height=r.size.width/r.aspectRatio)),p+r.size.height>=r.parentData.height&&(r.size.height=r.parentData.height-p,f&&(r.size.width=r.size.height*r.aspectRatio))},stop:function(t,n){var r=e(this).data("resizable"),i=r.options,s=r.position,o=r.containerOffset,u=r.containerPosition,a=r.containerElement,f=e(r.helper),l=f.offset(),c=f.outerWidth()-r.sizeDiff.width,h=f.outerHeight()-r.sizeDiff.height;r._helper&&!i.animate&&/relative/.test(a.css("position"))&&e(this).css({left:l.left-u.left-o.left,width:c,height:h}),r._helper&&!i.animate&&/static/.test(a.css("position"))&&e(this).css({left:l.left-u.left-o.left,width:c,height:h})}}),e.ui.plugin.add("resizable","ghost",{start:function(t,n){var r=e(this).data("resizable"),i=r.options,s=r.size;r.ghost=r.originalElement.clone(),r.ghost.css({opacity:.25,display:"block",position:"relative",height:s.height,width:s.width,margin:0,left:0,top:0}).addClass("ui-resizable-ghost").addClass(typeof i.ghost=="string"?i.ghost:""),r.ghost.appendTo(r.helper)},resize:function(t,n){var r=e(this).data("resizable"),i=r.options;r.ghost&&r.ghost.css({position:"relative",height:r.size.height,width:r.size.width})},stop:function(t,n){var r=e(this).data("resizable"),i=r.options;r.ghost&&r.helper&&r.helper.get(0).removeChild(r.ghost.get(0))}}),e.ui.plugin.add("resizable","grid",{resize:function(t,n){var r=e(this).data("resizable"),i=r.options,s=r.size,o=r.originalSize,u=r.originalPosition,a=r.axis,f=i._aspectRatio||t.shiftKey;i.grid=typeof i.grid=="number"?[i.grid,i.grid]:i.grid;var l=Math.round((s.width-o.width)/(i.grid[0]||1))*(i.grid[0]||1),c=Math.round((s.height-o.height)/(i.grid[1]||1))*(i.grid[1]||1);/^(se|s|e)$/.test(a)?(r.size.width=o.width+l,r.size.height=o.height+c):/^(ne)$/.test(a)?(r.size.width=o.width+l,r.size.height=o.height+c,r.position.top=u.top-c):/^(sw)$/.test(a)?(r.size.width=o.width+l,r.size.height=o.height+c,r.position.left=u.left-l):(r.size.width=o.width+l,r.size.height=o.height+c,r.position.top=u.top-c,r.position.left=u.left-l)}});var n=function(e){return parseInt(e,10)||0},r=function(e){return!isNaN(parseInt(e,10))}})(jQuery);(function(e,t){e.widget("ui.sortable",e.ui.mouse,{version:"1.9.1",widgetEventPrefix:"sort",ready:!1,options:{appendTo:"parent",axis:!1,connectWith:!1,containment:!1,cursor:"auto",cursorAt:!1,dropOnEmpty:!0,forcePlaceholderSize:!1,forceHelperSize:!1,grid:!1,handle:!1,helper:"original",items:"> *",opacity:!1,placeholder:!1,revert:!1,scroll:!0,scrollSensitivity:20,scrollSpeed:20,scope:"default",tolerance:"intersect",zIndex:1e3},_create:function(){var e=this.options;this.containerCache={},this.element.addClass("ui-sortable"),this.refresh(),this.floating=this.items.length?e.axis==="x"||/left|right/.test(this.items[0].item.css("float"))||/inline|table-cell/.test(this.items[0].item.css("display")):!1,this.offset=this.element.offset(),this._mouseInit(),this.ready=!0},_destroy:function(){this.element.removeClass("ui-sortable ui-sortable-disabled"),this._mouseDestroy();for(var e=this.items.length-1;e>=0;e--)this.items[e].item.removeData(this.widgetName+"-item");return this},_setOption:function(t,n){t==="disabled"?(this.options[t]=n,this.widget().toggleClass("ui-sortable-disabled",!!n)):e.Widget.prototype._setOption.apply(this,arguments)},_mouseCapture:function(t,n){var r=this;if(this.reverting)return!1;if(this.options.disabled||this.options.type=="static")return!1;this._refreshItems(t);var i=null,s=e(t.target).parents().each(function(){if(e.data(this,r.widgetName+"-item")==r)return i=e(this),!1});e.data(t.target,r.widgetName+"-item")==r&&(i=e(t.target));if(!i)return!1;if(this.options.handle&&!n){var o=!1;e(this.options.handle,i).find("*").andSelf().each(function(){this==t.target&&(o=!0)});if(!o)return!1}return this.currentItem=i,this._removeCurrentsFromItems(),!0},_mouseStart:function(t,n,r){var i=this.options;this.currentContainer=this,this.refreshPositions(),this.helper=this._createHelper(t),this._cacheHelperProportions(),this._cacheMargins(),this.scrollParent=this.helper.scrollParent(),this.offset=this.currentItem.offset(),this.offset={top:this.offset.top-this.margins.top,left:this.offset.left-this.margins.left},e.extend(this.offset,{click:{left:t.pageX-this.offset.left,top:t.pageY-this.offset.top},parent:this._getParentOffset(),relative:this._getRelativeOffset()}),this.helper.css("position","absolute"),this.cssPosition=this.helper.css("position"),this.originalPosition=this._generatePosition(t),this.originalPageX=t.pageX,this.originalPageY=t.pageY,i.cursorAt&&this._adjustOffsetFromHelper(i.cursorAt),this.domPosition={prev:this.currentItem.prev()[0],parent:this.currentItem.parent()[0]},this.helper[0]!=this.currentItem[0]&&this.currentItem.hide(),this._createPlaceholder(),i.containment&&this._setContainment(),i.cursor&&(e("body").css("cursor")&&(this._storedCursor=e("body").css("cursor")),e("body").css("cursor",i.cursor)),i.opacity&&(this.helper.css("opacity")&&(this._storedOpacity=this.helper.css("opacity")),this.helper.css("opacity",i.opacity)),i.zIndex&&(this.helper.css("zIndex")&&(this._storedZIndex=this.helper.css("zIndex")),this.helper.css("zIndex",i.zIndex)),this.scrollParent[0]!=document&&this.scrollParent[0].tagName!="HTML"&&(this.overflowOffset=this.scrollParent.offset()),this._trigger("start",t,this._uiHash()),this._preserveHelperProportions||this._cacheHelperProportions();if(!r)for(var s=this.containers.length-1;s>=0;s--)this.containers[s]._trigger("activate",t,this._uiHash(this));return e.ui.ddmanager&&(e.ui.ddmanager.current=this),e.ui.ddmanager&&!i.dropBehaviour&&e.ui.ddmanager.prepareOffsets(this,t),this.dragging=!0,this.helper.addClass("ui-sortable-helper"),this._mouseDrag(t),!0},_mouseDrag:function(t){this.position=this._generatePosition(t),this.positionAbs=this._convertPositionTo("absolute"),this.lastPositionAbs||(this.lastPositionAbs=this.positionAbs);if(this.options.scroll){var n=this.options,r=!1;this.scrollParent[0]!=document&&this.scrollParent[0].tagName!="HTML"?(this.overflowOffset.top+this.scrollParent[0].offsetHeight-t.pageY<n.scrollSensitivity?this.scrollParent[0].scrollTop=r=this.scrollParent[0].scrollTop+n.scrollSpeed:t.pageY-this.overflowOffset.top<n.scrollSensitivity&&(this.scrollParent[0].scrollTop=r=this.scrollParent[0].scrollTop-n.scrollSpeed),this.overflowOffset.left+this.scrollParent[0].offsetWidth-t.pageX<n.scrollSensitivity?this.scrollParent[0].scrollLeft=r=this.scrollParent[0].scrollLeft+n.scrollSpeed:t.pageX-this.overflowOffset.left<n.scrollSensitivity&&(this.scrollParent[0].scrollLeft=r=this.scrollParent[0].scrollLeft-n.scrollSpeed)):(t.pageY-e(document).scrollTop()<n.scrollSensitivity?r=e(document).scrollTop(e(document).scrollTop()-n.scrollSpeed):e(window).height()-(t.pageY-e(document).scrollTop())<n.scrollSensitivity&&(r=e(document).scrollTop(e(document).scrollTop()+n.scrollSpeed)),t.pageX-e(document).scrollLeft()<n.scrollSensitivity?r=e(document).scrollLeft(e(document).scrollLeft()-n.scrollSpeed):e(window).width()-(t.pageX-e(document).scrollLeft())<n.scrollSensitivity&&(r=e(document).scrollLeft(e(document).scrollLeft()+n.scrollSpeed))),r!==!1&&e.ui.ddmanager&&!n.dropBehaviour&&e.ui.ddmanager.prepareOffsets(this,t)}this.positionAbs=this._convertPositionTo("absolute");if(!this.options.axis||this.options.axis!="y")this.helper[0].style.left=this.position.left+"px";if(!this.options.axis||this.options.axis!="x")this.helper[0].style.top=this.position.top+"px";for(var i=this.items.length-1;i>=0;i--){var s=this.items[i],o=s.item[0],u=this._intersectsWithPointer(s);if(!u)continue;if(s.instance!==this.currentContainer)continue;if(o!=this.currentItem[0]&&this.placeholder[u==1?"next":"prev"]()[0]!=o&&!e.contains(this.placeholder[0],o)&&(this.options.type=="semi-dynamic"?!e.contains(this.element[0],o):!0)){this.direction=u==1?"down":"up";if(this.options.tolerance!="pointer"&&!this._intersectsWithSides(s))break;this._rearrange(t,s),this._trigger("change",t,this._uiHash());break}}return this._contactContainers(t),e.ui.ddmanager&&e.ui.ddmanager.drag(this,t),this._trigger("sort",t,this._uiHash()),this.lastPositionAbs=this.positionAbs,!1},_mouseStop:function(t,n){if(!t)return;e.ui.ddmanager&&!this.options.dropBehaviour&&e.ui.ddmanager.drop(this,t);if(this.options.revert){var r=this,i=this.placeholder.offset();this.reverting=!0,e(this.helper).animate({left:i.left-this.offset.parent.left-this.margins.left+(this.offsetParent[0]==document.body?0:this.offsetParent[0].scrollLeft),top:i.top-this.offset.parent.top-this.margins.top+(this.offsetParent[0]==document.body?0:this.offsetParent[0].scrollTop)},parseInt(this.options.revert,10)||500,function(){r._clear(t)})}else this._clear(t,n);return!1},cancel:function(){if(this.dragging){this._mouseUp({target:null}),this.options.helper=="original"?this.currentItem.css(this._storedCSS).removeClass("ui-sortable-helper"):this.currentItem.show();for(var t=this.containers.length-1;t>=0;t--)this.containers[t]._trigger("deactivate",null,this._uiHash(this)),this.containers[t].containerCache.over&&(this.containers[t]._trigger("out",null,this._uiHash(this)),this.containers[t].containerCache.over=0)}return this.placeholder&&(this.placeholder[0].parentNode&&this.placeholder[0].parentNode.removeChild(this.placeholder[0]),this.options.helper!="original"&&this.helper&&this.helper[0].parentNode&&this.helper.remove(),e.extend(this,{helper:null,dragging:!1,reverting:!1,_noFinalSort:null}),this.domPosition.prev?e(this.domPosition.prev).after(this.currentItem):e(this.domPosition.parent).prepend(this.currentItem)),this},serialize:function(t){var n=this._getItemsAsjQuery(t&&t.connected),r=[];return t=t||{},e(n).each(function(){var n=(e(t.item||this).attr(t.attribute||"id")||"").match(t.expression||/(.+)[-=_](.+)/);n&&r.push((t.key||n[1]+"[]")+"="+(t.key&&t.expression?n[1]:n[2]))}),!r.length&&t.key&&r.push(t.key+"="),r.join("&")},toArray:function(t){var n=this._getItemsAsjQuery(t&&t.connected),r=[];return t=t||{},n.each(function(){r.push(e(t.item||this).attr(t.attribute||"id")||"")}),r},_intersectsWith:function(e){var t=this.positionAbs.left,n=t+this.helperProportions.width,r=this.positionAbs.top,i=r+this.helperProportions.height,s=e.left,o=s+e.width,u=e.top,a=u+e.height,f=this.offset.click.top,l=this.offset.click.left,c=r+f>u&&r+f<a&&t+l>s&&t+l<o;return this.options.tolerance=="pointer"||this.options.forcePointerForContainers||this.options.tolerance!="pointer"&&this.helperProportions[this.floating?"width":"height"]>e[this.floating?"width":"height"]?c:s<t+this.helperProportions.width/2&&n-this.helperProportions.width/2<o&&u<r+this.helperProportions.height/2&&i-this.helperProportions.height/2<a},_intersectsWithPointer:function(t){var n=this.options.axis==="x"||e.ui.isOverAxis(this.positionAbs.top+this.offset.click.top,t.top,t.height),r=this.options.axis==="y"||e.ui.isOverAxis(this.positionAbs.left+this.offset.click.left,t.left,t.width),i=n&&r,s=this._getDragVerticalDirection(),o=this._getDragHorizontalDirection();return i?this.floating?o&&o=="right"||s=="down"?2:1:s&&(s=="down"?2:1):!1},_intersectsWithSides:function(t){var n=e.ui.isOverAxis(this.positionAbs.top+this.offset.click.top,t.top+t.height/2,t.height),r=e.ui.isOverAxis(this.positionAbs.left+this.offset.click.left,t.left+t.width/2,t.width),i=this._getDragVerticalDirection(),s=this._getDragHorizontalDirection();return this.floating&&s?s=="right"&&r||s=="left"&&!r:i&&(i=="down"&&n||i=="up"&&!n)},_getDragVerticalDirection:function(){var e=this.positionAbs.top-this.lastPositionAbs.top;return e!=0&&(e>0?"down":"up")},_getDragHorizontalDirection:function(){var e=this.positionAbs.left-this.lastPositionAbs.left;return e!=0&&(e>0?"right":"left")},refresh:function(e){return this._refreshItems(e),this.refreshPositions(),this},_connectWith:function(){var e=this.options;return e.connectWith.constructor==String?[e.connectWith]:e.connectWith},_getItemsAsjQuery:function(t){var n=[],r=[],i=this._connectWith();if(i&&t)for(var s=i.length-1;s>=0;s--){var o=e(i[s]);for(var u=o.length-1;u>=0;u--){var a=e.data(o[u],this.widgetName);a&&a!=this&&!a.options.disabled&&r.push([e.isFunction(a.options.items)?a.options.items.call(a.element):e(a.options.items,a.element).not(".ui-sortable-helper").not(".ui-sortable-placeholder"),a])}}r.push([e.isFunction(this.options.items)?this.options.items.call(this.element,null,{options:this.options,item:this.currentItem}):e(this.options.items,this.element).not(".ui-sortable-helper").not(".ui-sortable-placeholder"),this]);for(var s=r.length-1;s>=0;s--)r[s][0].each(function(){n.push(this)});return e(n)},_removeCurrentsFromItems:function(){var t=this.currentItem.find(":data("+this.widgetName+"-item)");this.items=e.grep(this.items,function(e){for(var n=0;n<t.length;n++)if(t[n]==e.item[0])return!1;return!0})},_refreshItems:function(t){this.items=[],this.containers=[this];var n=this.items,r=[[e.isFunction(this.options.items)?this.options.items.call(this.element[0],t,{item:this.currentItem}):e(this.options.items,this.element),this]],i=this._connectWith();if(i&&this.ready)for(var s=i.length-1;s>=0;s--){var o=e(i[s]);for(var u=o.length-1;u>=0;u--){var a=e.data(o[u],this.widgetName);a&&a!=this&&!a.options.disabled&&(r.push([e.isFunction(a.options.items)?a.options.items.call(a.element[0],t,{item:this.currentItem}):e(a.options.items,a.element),a]),this.containers.push(a))}}for(var s=r.length-1;s>=0;s--){var f=r[s][1],l=r[s][0];for(var u=0,c=l.length;u<c;u++){var h=e(l[u]);h.data(this.widgetName+"-item",f),n.push({item:h,instance:f,width:0,height:0,left:0,top:0})}}},refreshPositions:function(t){this.offsetParent&&this.helper&&(this.offset.parent=this._getParentOffset());for(var n=this.items.length-1;n>=0;n--){var r=this.items[n];if(r.instance!=this.currentContainer&&this.currentContainer&&r.item[0]!=this.currentItem[0])continue;var i=this.options.toleranceElement?e(this.options.toleranceElement,r.item):r.item;t||(r.width=i.outerWidth(),r.height=i.outerHeight());var s=i.offset();r.left=s.left,r.top=s.top}if(this.options.custom&&this.options.custom.refreshContainers)this.options.custom.refreshContainers.call(this);else for(var n=this.containers.length-1;n>=0;n--){var s=this.containers[n].element.offset();this.containers[n].containerCache.left=s.left,this.containers[n].containerCache.top=s.top,this.containers[n].containerCache.width=this.containers[n].element.outerWidth(),this.containers[n].containerCache.height=this.containers[n].element.outerHeight()}return this},_createPlaceholder:function(t){t=t||this;var n=t.options;if(!n.placeholder||n.placeholder.constructor==String){var r=n.placeholder;n.placeholder={element:function(){var n=e(document.createElement(t.currentItem[0].nodeName)).addClass(r||t.currentItem[0].className+" ui-sortable-placeholder").removeClass("ui-sortable-helper")[0];return r||(n.style.visibility="hidden"),n},update:function(e,i){if(r&&!n.forcePlaceholderSize)return;i.height()||i.height(t.currentItem.innerHeight()-parseInt(t.currentItem.css("paddingTop")||0,10)-parseInt(t.currentItem.css("paddingBottom")||0,10)),i.width()||i.width(t.currentItem.innerWidth()-parseInt(t.currentItem.css("paddingLeft")||0,10)-parseInt(t.currentItem.css("paddingRight")||0,10))}}}t.placeholder=e(n.placeholder.element.call(t.element,t.currentItem)),t.currentItem.after(t.placeholder),n.placeholder.update(t,t.placeholder)},_contactContainers:function(t){var n=null,r=null;for(var i=this.containers.length-1;i>=0;i--){if(e.contains(this.currentItem[0],this.containers[i].element[0]))continue;if(this._intersectsWith(this.containers[i].containerCache)){if(n&&e.contains(this.containers[i].element[0],n.element[0]))continue;n=this.containers[i],r=i}else this.containers[i].containerCache.over&&(this.containers[i]._trigger("out",t,this._uiHash(this)),this.containers[i].containerCache.over=0)}if(!n)return;if(this.containers.length===1)this.containers[r]._trigger("over",t,this._uiHash(this)),this.containers[r].containerCache.over=1;else{var s=1e4,o=null,u=this.containers[r].floating?"left":"top",a=this.containers[r].floating?"width":"height",f=this.positionAbs[u]+this.offset.click[u];for(var l=this.items.length-1;l>=0;l--){if(!e.contains(this.containers[r].element[0],this.items[l].item[0]))continue;if(this.items[l].item[0]==this.currentItem[0])continue;var c=this.items[l].item.offset()[u],h=!1;Math.abs(c-f)>Math.abs(c+this.items[l][a]-f)&&(h=!0,c+=this.items[l][a]),Math.abs(c-f)<s&&(s=Math.abs(c-f),o=this.items[l],this.direction=h?"up":"down")}if(!o&&!this.options.dropOnEmpty)return;this.currentContainer=this.containers[r],o?this._rearrange(t,o,null,!0):this._rearrange(t,null,this.containers[r].element,!0),this._trigger("change",t,this._uiHash()),this.containers[r]._trigger("change",t,this._uiHash(this)),this.options.placeholder.update(this.currentContainer,this.placeholder),this.containers[r]._trigger("over",t,this._uiHash(this)),this.containers[r].containerCache.over=1}},_createHelper:function(t){var n=this.options,r=e.isFunction(n.helper)?e(n.helper.apply(this.element[0],[t,this.currentItem])):n.helper=="clone"?this.currentItem.clone():this.currentItem;return r.parents("body").length||e(n.appendTo!="parent"?n.appendTo:this.currentItem[0].parentNode)[0].appendChild(r[0]),r[0]==this.currentItem[0]&&(this._storedCSS={width:this.currentItem[0].style.width,height:this.currentItem[0].style.height,position:this.currentItem.css("position"),top:this.currentItem.css("top"),left:this.currentItem.css("left")}),(r[0].style.width==""||n.forceHelperSize)&&r.width(this.currentItem.width()),(r[0].style.height==""||n.forceHelperSize)&&r.height(this.currentItem.height()),r},_adjustOffsetFromHelper:function(t){typeof t=="string"&&(t=t.split(" ")),e.isArray(t)&&(t={left:+t[0],top:+t[1]||0}),"left"in t&&(this.offset.click.left=t.left+this.margins.left),"right"in t&&(this.offset.click.left=this.helperProportions.width-t.right+this.margins.left),"top"in t&&(this.offset.click.top=t.top+this.margins.top),"bottom"in t&&(this.offset.click.top=this.helperProportions.height-t.bottom+this.margins.top)},_getParentOffset:function(){this.offsetParent=this.helper.offsetParent();var t=this.offsetParent.offset();this.cssPosition=="absolute"&&this.scrollParent[0]!=document&&e.contains(this.scrollParent[0],this.offsetParent[0])&&(t.left+=this.scrollParent.scrollLeft(),t.top+=this.scrollParent.scrollTop());if(this.offsetParent[0]==document.body||this.offsetParent[0].tagName&&this.offsetParent[0].tagName.toLowerCase()=="html"&&e.ui.ie)t={top:0,left:0};return{top:t.top+(parseInt(this.offsetParent.css("borderTopWidth"),10)||0),left:t.left+(parseInt(this.offsetParent.css("borderLeftWidth"),10)||0)}},_getRelativeOffset:function(){if(this.cssPosition=="relative"){var e=this.currentItem.position();return{top:e.top-(parseInt(this.helper.css("top"),10)||0)+this.scrollParent.scrollTop(),left:e.left-(parseInt(this.helper.css("left"),10)||0)+this.scrollParent.scrollLeft()}}return{top:0,left:0}},_cacheMargins:function(){this.margins={left:parseInt(this.currentItem.css("marginLeft"),10)||0,top:parseInt(this.currentItem.css("marginTop"),10)||0}},_cacheHelperProportions:function(){this.helperProportions={width:this.helper.outerWidth(),height:this.helper.outerHeight()}},_setContainment:function(){var t=this.options;t.containment=="parent"&&(t.containment=this.helper[0].parentNode);if(t.containment=="document"||t.containment=="window")this.containment=[0-this.offset.relative.left-this.offset.parent.left,0-this.offset.relative.top-this.offset.parent.top,e(t.containment=="document"?document:window).width()-this.helperProportions.width-this.margins.left,(e(t.containment=="document"?document:window).height()||document.body.parentNode.scrollHeight)-this.helperProportions.height-this.margins.top];if(!/^(document|window|parent)$/.test(t.containment)){var n=e(t.containment)[0],r=e(t.containment).offset(),i=e(n).css("overflow")!="hidden";this.containment=[r.left+(parseInt(e(n).css("borderLeftWidth"),10)||0)+(parseInt(e(n).css("paddingLeft"),10)||0)-this.margins.left,r.top+(parseInt(e(n).css("borderTopWidth"),10)||0)+(parseInt(e(n).css("paddingTop"),10)||0)-this.margins.top,r.left+(i?Math.max(n.scrollWidth,n.offsetWidth):n.offsetWidth)-(parseInt(e(n).css("borderLeftWidth"),10)||0)-(parseInt(e(n).css("paddingRight"),10)||0)-this.helperProportions.width-this.margins.left,r.top+(i?Math.max(n.scrollHeight,n.offsetHeight):n.offsetHeight)-(parseInt(e(n).css("borderTopWidth"),10)||0)-(parseInt(e(n).css("paddingBottom"),10)||0)-this.helperProportions.height-this.margins.top]}},_convertPositionTo:function(t,n){n||(n=this.position);var r=t=="absolute"?1:-1,i=this.options,s=this.cssPosition!="absolute"||this.scrollParent[0]!=document&&!!e.contains(this.scrollParent[0],this.offsetParent[0])?this.scrollParent:this.offsetParent,o=/(html|body)/i.test(s[0].tagName);return{top:n.top+this.offset.relative.top*r+this.offset.parent.top*r-(this.cssPosition=="fixed"?-this.scrollParent.scrollTop():o?0:s.scrollTop())*r,left:n.left+this.offset.relative.left*r+this.offset.parent.left*r-(this.cssPosition=="fixed"?-this.scrollParent.scrollLeft():o?0:s.scrollLeft())*r}},_generatePosition:function(t){var n=this.options,r=this.cssPosition!="absolute"||this.scrollParent[0]!=document&&!!e.contains(this.scrollParent[0],this.offsetParent[0])?this.scrollParent:this.offsetParent,i=/(html|body)/i.test(r[0].tagName);this.cssPosition=="relative"&&(this.scrollParent[0]==document||this.scrollParent[0]==this.offsetParent[0])&&(this.offset.relative=this._getRelativeOffset());var s=t.pageX,o=t.pageY;if(this.originalPosition){this.containment&&(t.pageX-this.offset.click.left<this.containment[0]&&(s=this.containment[0]+this.offset.click.left),t.pageY-this.offset.click.top<this.containment[1]&&(o=this.containment[1]+this.offset.click.top),t.pageX-this.offset.click.left>this.containment[2]&&(s=this.containment[2]+this.offset.click.left),t.pageY-this.offset.click.top>this.containment[3]&&(o=this.containment[3]+this.offset.click.top));if(n.grid){var u=this.originalPageY+Math.round((o-this.originalPageY)/n.grid[1])*n.grid[1];o=this.containment?u-this.offset.click.top<this.containment[1]||u-this.offset.click.top>this.containment[3]?u-this.offset.click.top<this.containment[1]?u+n.grid[1]:u-n.grid[1]:u:u;var a=this.originalPageX+Math.round((s-this.originalPageX)/n.grid[0])*n.grid[0];s=this.containment?a-this.offset.click.left<this.containment[0]||a-this.offset.click.left>this.containment[2]?a-this.offset.click.left<this.containment[0]?a+n.grid[0]:a-n.grid[0]:a:a}}return{top:o-this.offset.click.top-this.offset.relative.top-this.offset.parent.top+(this.cssPosition=="fixed"?-this.scrollParent.scrollTop():i?0:r.scrollTop()),left:s-this.offset.click.left-this.offset.relative.left-this.offset.parent.left+(this.cssPosition=="fixed"?-this.scrollParent.scrollLeft():i?0:r.scrollLeft())}},_rearrange:function(e,t,n,r){n?n[0].appendChild(this.placeholder[0]):t.item[0].parentNode.insertBefore(this.placeholder[0],this.direction=="down"?t.item[0]:t.item[0].nextSibling),this.counter=this.counter?++this.counter:1;var i=this.counter;this._delay(function(){i==this.counter&&this.refreshPositions(!r)})},_clear:function(t,n){this.reverting=!1;var r=[];!this._noFinalSort&&this.currentItem.parent().length&&this.placeholder.before(this.currentItem),this._noFinalSort=null;if(this.helper[0]==this.currentItem[0]){for(var i in this._storedCSS)if(this._storedCSS[i]=="auto"||this._storedCSS[i]=="static")this._storedCSS[i]="";this.currentItem.css(this._storedCSS).removeClass("ui-sortable-helper")}else this.currentItem.show();this.fromOutside&&!n&&r.push(function(e){this._trigger("receive",e,this._uiHash(this.fromOutside))}),(this.fromOutside||this.domPosition.prev!=this.currentItem.prev().not(".ui-sortable-helper")[0]||this.domPosition.parent!=this.currentItem.parent()[0])&&!n&&r.push(function(e){this._trigger("update",e,this._uiHash())}),this!==this.currentContainer&&(n||(r.push(function(e){this._trigger("remove",e,this._uiHash())}),r.push(function(e){return function(t){e._trigger("receive",t,this._uiHash(this))}}.call(this,this.currentContainer)),r.push(function(e){return function(t){e._trigger("update",t,this._uiHash(this))}}.call(this,this.currentContainer))));for(var i=this.containers.length-1;i>=0;i--)n||r.push(function(e){return function(t){e._trigger("deactivate",t,this._uiHash(this))}}.call(this,this.containers[i])),this.containers[i].containerCache.over&&(r.push(function(e){return function(t){e._trigger("out",t,this._uiHash(this))}}.call(this,this.containers[i])),this.containers[i].containerCache.over=0);this._storedCursor&&e("body").css("cursor",this._storedCursor),this._storedOpacity&&this.helper.css("opacity",this._storedOpacity),this._storedZIndex&&this.helper.css("zIndex",this._storedZIndex=="auto"?"":this._storedZIndex),this.dragging=!1;if(this.cancelHelperRemoval){if(!n){this._trigger("beforeStop",t,this._uiHash());for(var i=0;i<r.length;i++)r[i].call(this,t);this._trigger("stop",t,this._uiHash())}return this.fromOutside=!1,!1}n||this._trigger("beforeStop",t,this._uiHash()),this.placeholder[0].parentNode.removeChild(this.placeholder[0]),this.helper[0]!=this.currentItem[0]&&this.helper.remove(),this.helper=null;if(!n){for(var i=0;i<r.length;i++)r[i].call(this,t);this._trigger("stop",t,this._uiHash())}return this.fromOutside=!1,!0},_trigger:function(){e.Widget.prototype._trigger.apply(this,arguments)===!1&&this.cancel()},_uiHash:function(t){var n=t||this;return{helper:n.helper,placeholder:n.placeholder||e([]),position:n.position,originalPosition:n.originalPosition,offset:n.positionAbs,item:n.currentItem,sender:t?t.element:null}}})})(jQuery);(function(e,t){var n=0;e.widget("ui.autocomplete",{version:"1.9.1",defaultElement:"<input>",options:{appendTo:"body",autoFocus:!1,delay:300,minLength:1,position:{my:"left top",at:"left bottom",collision:"none"},source:null,change:null,close:null,focus:null,open:null,response:null,search:null,select:null},pending:0,_create:function(){var t,n,r;this.isMultiLine=this._isMultiLine(),this.valueMethod=this.element[this.element.is("input,textarea")?"val":"text"],this.isNewMenu=!0,this.element.addClass("ui-autocomplete-input").attr("autocomplete","off"),this._on(this.element,{keydown:function(i){if(this.element.prop("readOnly")){t=!0,r=!0,n=!0;return}t=!1,r=!1,n=!1;var s=e.ui.keyCode;switch(i.keyCode){case s.PAGE_UP:t=!0,this._move("previousPage",i);break;case s.PAGE_DOWN:t=!0,this._move("nextPage",i);break;case s.UP:t=!0,this._keyEvent("previous",i);break;case s.DOWN:t=!0,this._keyEvent("next",i);break;case s.ENTER:case s.NUMPAD_ENTER:this.menu.active&&(t=!0,i.preventDefault(),this.menu.select(i));break;case s.TAB:this.menu.active&&this.menu.select(i);break;case s.ESCAPE:this.menu.element.is(":visible")&&(this._value(this.term),this.close(i),i.preventDefault());break;default:n=!0,this._searchTimeout(i)}},keypress:function(r){if(t){t=!1,r.preventDefault();return}if(n)return;var i=e.ui.keyCode;switch(r.keyCode){case i.PAGE_UP:this._move("previousPage",r);break;case i.PAGE_DOWN:this._move("nextPage",r);break;case i.UP:this._keyEvent("previous",r);break;case i.DOWN:this._keyEvent("next",r)}},input:function(e){if(r){r=!1,e.preventDefault();return}this._searchTimeout(e)},focus:function(){this.selectedItem=null,this.previous=this._value()},blur:function(e){if(this.cancelBlur){delete this.cancelBlur;return}clearTimeout(this.searching),this.close(e),this._change(e)}}),this._initSource(),this.menu=e("<ul>").addClass("ui-autocomplete").appendTo(this.document.find(this.options.appendTo||"body")[0]).menu({input:e(),role:null}).zIndex(this.element.zIndex()+1).hide().data("menu"),this._on(this.menu.element,{mousedown:function(t){t.preventDefault(),this.cancelBlur=!0,this._delay(function(){delete this.cancelBlur});var n=this.menu.element[0];e(t.target).closest(".ui-menu-item").length||this._delay(function(){var t=this;this.document.one("mousedown",function(r){r.target!==t.element[0]&&r.target!==n&&!e.contains(n,r.target)&&t.close()})})},menufocus:function(t,n){if(this.isNewMenu){this.isNewMenu=!1;if(t.originalEvent&&/^mouse/.test(t.originalEvent.type)){this.menu.blur(),this.document.one("mousemove",function(){e(t.target).trigger(t.originalEvent)});return}}var r=n.item.data("ui-autocomplete-item")||n.item.data("item.autocomplete");!1!==this._trigger("focus",t,{item:r})?t.originalEvent&&/^key/.test(t.originalEvent.type)&&this._value(r.value):this.liveRegion.text(r.value)},menuselect:function(e,t){var n=t.item.data("ui-autocomplete-item")||t.item.data("item.autocomplete"),r=this.previous;this.element[0]!==this.document[0].activeElement&&(this.element.focus(),this.previous=r,this._delay(function(){this.previous=r,this.selectedItem=n})),!1!==this._trigger("select",e,{item:n})&&this._value(n.value),this.term=this._value(),this.close(e),this.selectedItem=n}}),this.liveRegion=e("<span>",{role:"status","aria-live":"polite"}).addClass("ui-helper-hidden-accessible").insertAfter(this.element),e.fn.bgiframe&&this.menu.element.bgiframe(),this._on(this.window,{beforeunload:function(){this.element.removeAttr("autocomplete")}})},_destroy:function(){clearTimeout(this.searching),this.element.removeClass("ui-autocomplete-input").removeAttr("autocomplete"),this.menu.element.remove(),this.liveRegion.remove()},_setOption:function(e,t){this._super(e,t),e==="source"&&this._initSource(),e==="appendTo"&&this.menu.element.appendTo(this.document.find(t||"body")[0]),e==="disabled"&&t&&this.xhr&&this.xhr.abort()},_isMultiLine:function(){return this.element.is("textarea")?!0:this.element.is("input")?!1:this.element.prop("isContentEditable")},_initSource:function(){var t,n,r=this;e.isArray(this.options.source)?(t=this.options.source,this.source=function(n,r){r(e.ui.autocomplete.filter(t,n.term))}):typeof this.options.source=="string"?(n=this.options.source,this.source=function(t,i){r.xhr&&r.xhr.abort(),r.xhr=e.ajax({url:n,data:t,dataType:"json",success:function(e){i(e)},error:function(){i([])}})}):this.source=this.options.source},_searchTimeout:function(e){clearTimeout(this.searching),this.searching=this._delay(function(){this.term!==this._value()&&(this.selectedItem=null,this.search(null,e))},this.options.delay)},search:function(e,t){e=e!=null?e:this._value(),this.term=this._value();if(e.length<this.options.minLength)return this.close(t);if(this._trigger("search",t)===!1)return;return this._search(e)},_search:function(e){this.pending++,this.element.addClass("ui-autocomplete-loading"),this.cancelSearch=!1,this.source({term:e},this._response())},_response:function(){var e=this,t=++n;return function(r){t===n&&e.__response(r),e.pending--,e.pending||e.element.removeClass("ui-autocomplete-loading")}},__response:function(e){e&&(e=this._normalize(e)),this._trigger("response",null,{content:e}),!this.options.disabled&&e&&e.length&&!this.cancelSearch?(this._suggest(e),this._trigger("open")):this._close()},close:function(e){this.cancelSearch=!0,this._close(e)},_close:function(e){this.menu.element.is(":visible")&&(this.menu.element.hide(),this.menu.blur(),this.isNewMenu=!0,this._trigger("close",e))},_change:function(e){this.previous!==this._value()&&this._trigger("change",e,{item:this.selectedItem})},_normalize:function(t){return t.length&&t[0].label&&t[0].value?t:e.map(t,function(t){return typeof t=="string"?{label:t,value:t}:e.extend({label:t.label||t.value,value:t.value||t.label},t)})},_suggest:function(t){var n=this.menu.element.empty().zIndex(this.element.zIndex()+1);this._renderMenu(n,t),this.menu.refresh(),n.show(),this._resizeMenu(),n.position(e.extend({of:this.element},this.options.position)),this.options.autoFocus&&this.menu.next()},_resizeMenu:function(){var e=this.menu.element;e.outerWidth(Math.max(e.width("").outerWidth()+1,this.element.outerWidth()))},_renderMenu:function(t,n){var r=this;e.each(n,function(e,n){r._renderItemData(t,n)})},_renderItemData:function(e,t){return this._renderItem(e,t).data("ui-autocomplete-item",t)},_renderItem:function(t,n){return e("<li>").append(e("<a>").text(n.label)).appendTo(t)},_move:function(e,t){if(!this.menu.element.is(":visible")){this.search(null,t);return}if(this.menu.isFirstItem()&&/^previous/.test(e)||this.menu.isLastItem()&&/^next/.test(e)){this._value(this.term),this.menu.blur();return}this.menu[e](t)},widget:function(){return this.menu.element},_value:function(){return this.valueMethod.apply(this.element,arguments)},_keyEvent:function(e,t){if(!this.isMultiLine||this.menu.element.is(":visible"))this._move(e,t),t.preventDefault()}}),e.extend(e.ui.autocomplete,{escapeRegex:function(e){return e.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g,"\\$&")},filter:function(t,n){var r=new RegExp(e.ui.autocomplete.escapeRegex(n),"i");return e.grep(t,function(e){return r.test(e.label||e.value||e)})}}),e.widget("ui.autocomplete",e.ui.autocomplete,{options:{messages:{noResults:"No search results.",results:function(e){return e+(e>1?" results are":" result is")+" available, use up and down arrow keys to navigate."}}},__response:function(e){var t;this._superApply(arguments);if(this.options.disabled||this.cancelSearch)return;e&&e.length?t=this.options.messages.results(e.length):t=this.options.messages.noResults,this.liveRegion.text(t)}})})(jQuery);(function(e,t){var n,r,i,s,o="ui-button ui-widget ui-state-default ui-corner-all",u="ui-state-hover ui-state-active ",a="ui-button-icons-only ui-button-icon-only ui-button-text-icons ui-button-text-icon-primary ui-button-text-icon-secondary ui-button-text-only",f=function(){var t=e(this).find(":ui-button");setTimeout(function(){t.button("refresh")},1)},l=function(t){var n=t.name,r=t.form,i=e([]);return n&&(r?i=e(r).find("[name='"+n+"']"):i=e("[name='"+n+"']",t.ownerDocument).filter(function(){return!this.form})),i};e.widget("ui.button",{version:"1.9.1",defaultElement:"<button>",options:{disabled:null,text:!0,label:null,icons:{primary:null,secondary:null}},_create:function(){this.element.closest("form").unbind("reset"+this.eventNamespace).bind("reset"+this.eventNamespace,f),typeof this.options.disabled!="boolean"?this.options.disabled=!!this.element.prop("disabled"):this.element.prop("disabled",this.options.disabled),this._determineButtonType(),this.hasTitle=!!this.buttonElement.attr("title");var t=this,u=this.options,a=this.type==="checkbox"||this.type==="radio",c="ui-state-hover"+(a?"":" ui-state-active"),h="ui-state-focus";u.label===null&&(u.label=this.type==="input"?this.buttonElement.val():this.buttonElement.html()),this.buttonElement.addClass(o).attr("role","button").bind("mouseenter"+this.eventNamespace,function(){if(u.disabled)return;e(this).addClass("ui-state-hover"),this===n&&e(this).addClass("ui-state-active")}).bind("mouseleave"+this.eventNamespace,function(){if(u.disabled)return;e(this).removeClass(c)}).bind("click"+this.eventNamespace,function(e){u.disabled&&(e.preventDefault(),e.stopImmediatePropagation())}),this.element.bind("focus"+this.eventNamespace,function(){t.buttonElement.addClass(h)}).bind("blur"+this.eventNamespace,function(){t.buttonElement.removeClass(h)}),a&&(this.element.bind("change"+this.eventNamespace,function(){if(s)return;t.refresh()}),this.buttonElement.bind("mousedown"+this.eventNamespace,function(e){if(u.disabled)return;s=!1,r=e.pageX,i=e.pageY}).bind("mouseup"+this.eventNamespace,function(e){if(u.disabled)return;if(r!==e.pageX||i!==e.pageY)s=!0})),this.type==="checkbox"?this.buttonElement.bind("click"+this.eventNamespace,function(){if(u.disabled||s)return!1;e(this).toggleClass("ui-state-active"),t.buttonElement.attr("aria-pressed",t.element[0].checked)}):this.type==="radio"?this.buttonElement.bind("click"+this.eventNamespace,function(){if(u.disabled||s)return!1;e(this).addClass("ui-state-active"),t.buttonElement.attr("aria-pressed","true");var n=t.element[0];l(n).not(n).map(function(){return e(this).button("widget")[0]}).removeClass("ui-state-active").attr("aria-pressed","false")}):(this.buttonElement.bind("mousedown"+this.eventNamespace,function(){if(u.disabled)return!1;e(this).addClass("ui-state-active"),n=this,t.document.one("mouseup",function(){n=null})}).bind("mouseup"+this.eventNamespace,function(){if(u.disabled)return!1;e(this).removeClass("ui-state-active")}).bind("keydown"+this.eventNamespace,function(t){if(u.disabled)return!1;(t.keyCode===e.ui.keyCode.SPACE||t.keyCode===e.ui.keyCode.ENTER)&&e(this).addClass("ui-state-active")}).bind("keyup"+this.eventNamespace,function(){e(this).removeClass("ui-state-active")}),this.buttonElement.is("a")&&this.buttonElement.keyup(function(t){t.keyCode===e.ui.keyCode.SPACE&&e(this).click()})),this._setOption("disabled",u.disabled),this._resetButton()},_determineButtonType:function(){var e,t,n;this.element.is("[type=checkbox]")?this.type="checkbox":this.element.is("[type=radio]")?this.type="radio":this.element.is("input")?this.type="input":this.type="button",this.type==="checkbox"||this.type==="radio"?(e=this.element.parents().last(),t="label[for='"+this.element.attr("id")+"']",this.buttonElement=e.find(t),this.buttonElement.length||(e=e.length?e.siblings():this.element.siblings(),this.buttonElement=e.filter(t),this.buttonElement.length||(this.buttonElement=e.find(t))),this.element.addClass("ui-helper-hidden-accessible"),n=this.element.is(":checked"),n&&this.buttonElement.addClass("ui-state-active"),this.buttonElement.prop("aria-pressed",n)):this.buttonElement=this.element},widget:function(){return this.buttonElement},_destroy:function(){this.element.removeClass("ui-helper-hidden-accessible"),this.buttonElement.removeClass(o+" "+u+" "+a).removeAttr("role").removeAttr("aria-pressed").html(this.buttonElement.find(".ui-button-text").html()),this.hasTitle||this.buttonElement.removeAttr("title")},_setOption:function(e,t){this._super(e,t);if(e==="disabled"){t?this.element.prop("disabled",!0):this.element.prop("disabled",!1);return}this._resetButton()},refresh:function(){var t=this.element.is(":disabled")||this.element.hasClass("ui-button-disabled");t!==this.options.disabled&&this._setOption("disabled",t),this.type==="radio"?l(this.element[0]).each(function(){e(this).is(":checked")?e(this).button("widget").addClass("ui-state-active").attr("aria-pressed","true"):e(this).button("widget").removeClass("ui-state-active").attr("aria-pressed","false")}):this.type==="checkbox"&&(this.element.is(":checked")?this.buttonElement.addClass("ui-state-active").attr("aria-pressed","true"):this.buttonElement.removeClass("ui-state-active").attr("aria-pressed","false"))},_resetButton:function(){if(this.type==="input"){this.options.label&&this.element.val(this.options.label);return}var t=this.buttonElement.removeClass(a),n=e("<span></span>",this.document[0]).addClass("ui-button-text").html(this.options.label).appendTo(t.empty()).text(),r=this.options.icons,i=r.primary&&r.secondary,s=[];r.primary||r.secondary?(this.options.text&&s.push("ui-button-text-icon"+(i?"s":r.primary?"-primary":"-secondary")),r.primary&&t.prepend("<span class='ui-button-icon-primary ui-icon "+r.primary+"'></span>"),r.secondary&&t.append("<span class='ui-button-icon-secondary ui-icon "+r.secondary+"'></span>"),this.options.text||(s.push(i?"ui-button-icons-only":"ui-button-icon-only"),this.hasTitle||t.attr("title",e.trim(n)))):s.push("ui-button-text-only"),t.addClass(s.join(" "))}}),e.widget("ui.buttonset",{version:"1.9.1",options:{items:"button, input[type=button], input[type=submit], input[type=reset], input[type=checkbox], input[type=radio], a, :data(button)"},_create:function(){this.element.addClass("ui-buttonset")},_init:function(){this.refresh()},_setOption:function(e,t){e==="disabled"&&this.buttons.button("option",e,t),this._super(e,t)},refresh:function(){var t=this.element.css("direction")==="rtl";this.buttons=this.element.find(this.options.items).filter(":ui-button").button("refresh").end().not(":ui-button").button().end().map(function(){return e(this).button("widget")[0]}).removeClass("ui-corner-all ui-corner-left ui-corner-right").filter(":first").addClass(t?"ui-corner-right":"ui-corner-left").end().filter(":last").addClass(t?"ui-corner-left":"ui-corner-right").end().end()},_destroy:function(){this.element.removeClass("ui-buttonset"),this.buttons.map(function(){return e(this).button("widget")[0]}).removeClass("ui-corner-left ui-corner-right").end().button("destroy")}})})(jQuery);(function($,undefined){function Datepicker(){this.debug=!1,this._curInst=null,this._keyEvent=!1,this._disabledInputs=[],this._datepickerShowing=!1,this._inDialog=!1,this._mainDivId="ui-datepicker-div",this._inlineClass="ui-datepicker-inline",this._appendClass="ui-datepicker-append",this._triggerClass="ui-datepicker-trigger",this._dialogClass="ui-datepicker-dialog",this._disableClass="ui-datepicker-disabled",this._unselectableClass="ui-datepicker-unselectable",this._currentClass="ui-datepicker-current-day",this._dayOverClass="ui-datepicker-days-cell-over",this.regional=[],this.regional[""]={closeText:"Done",prevText:"Prev",nextText:"Next",currentText:"Today",monthNames:["January","February","March","April","May","June","July","August","September","October","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],dayNames:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],dayNamesShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],dayNamesMin:["Su","Mo","Tu","We","Th","Fr","Sa"],weekHeader:"Wk",dateFormat:"mm/dd/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},this._defaults={showOn:"focus",showAnim:"fadeIn",showOptions:{},defaultDate:null,appendText:"",buttonText:"...",buttonImage:"",buttonImageOnly:!1,hideIfNoPrevNext:!1,navigationAsDateFormat:!1,gotoCurrent:!1,changeMonth:!1,changeYear:!1,yearRange:"c-10:c+10",showOtherMonths:!1,selectOtherMonths:!1,showWeek:!1,calculateWeek:this.iso8601Week,shortYearCutoff:"+10",minDate:null,maxDate:null,duration:"fast",beforeShowDay:null,beforeShow:null,onSelect:null,onChangeMonthYear:null,onClose:null,numberOfMonths:1,showCurrentAtPos:0,stepMonths:1,stepBigMonths:12,altField:"",altFormat:"",constrainInput:!0,showButtonPanel:!1,autoSize:!1,disabled:!1},$.extend(this._defaults,this.regional[""]),this.dpDiv=bindHover($('<div id="'+this._mainDivId+'" class="ui-datepicker ui-widget ui-widget-content ui-helper-clearfix ui-corner-all"></div>'))}function bindHover(e){var t="button, .ui-datepicker-prev, .ui-datepicker-next, .ui-datepicker-calendar td a";return e.delegate(t,"mouseout",function(){$(this).removeClass("ui-state-hover"),this.className.indexOf("ui-datepicker-prev")!=-1&&$(this).removeClass("ui-datepicker-prev-hover"),this.className.indexOf("ui-datepicker-next")!=-1&&$(this).removeClass("ui-datepicker-next-hover")}).delegate(t,"mouseover",function(){$.datepicker._isDisabledDatepicker(instActive.inline?e.parent()[0]:instActive.input[0])||($(this).parents(".ui-datepicker-calendar").find("a").removeClass("ui-state-hover"),$(this).addClass("ui-state-hover"),this.className.indexOf("ui-datepicker-prev")!=-1&&$(this).addClass("ui-datepicker-prev-hover"),this.className.indexOf("ui-datepicker-next")!=-1&&$(this).addClass("ui-datepicker-next-hover"))})}function extendRemove(e,t){$.extend(e,t);for(var n in t)if(t[n]==null||t[n]==undefined)e[n]=t[n];return e}$.extend($.ui,{datepicker:{version:"1.9.1"}});var PROP_NAME="datepicker",dpuuid=(new Date).getTime(),instActive;$.extend(Datepicker.prototype,{markerClassName:"hasDatepicker",maxRows:4,log:function(){this.debug&&console.log.apply("",arguments)},_widgetDatepicker:function(){return this.dpDiv},setDefaults:function(e){return extendRemove(this._defaults,e||{}),this},_attachDatepicker:function(target,settings){var inlineSettings=null;for(var attrName in this._defaults){var attrValue=target.getAttribute("date:"+attrName);if(attrValue){inlineSettings=inlineSettings||{};try{inlineSettings[attrName]=eval(attrValue)}catch(err){inlineSettings[attrName]=attrValue}}}var nodeName=target.nodeName.toLowerCase(),inline=nodeName=="div"||nodeName=="span";target.id||(this.uuid+=1,target.id="dp"+this.uuid);var inst=this._newInst($(target),inline);inst.settings=$.extend({},settings||{},inlineSettings||{}),nodeName=="input"?this._connectDatepicker(target,inst):inline&&this._inlineDatepicker(target,inst)},_newInst:function(e,t){var n=e[0].id.replace(/([^A-Za-z0-9_-])/g,"\\\\$1");return{id:n,input:e,selectedDay:0,selectedMonth:0,selectedYear:0,drawMonth:0,drawYear:0,inline:t,dpDiv:t?bindHover($('<div class="'+this._inlineClass+' ui-datepicker ui-widget ui-widget-content ui-helper-clearfix ui-corner-all"></div>')):this.dpDiv}},_connectDatepicker:function(e,t){var n=$(e);t.append=$([]),t.trigger=$([]);if(n.hasClass(this.markerClassName))return;this._attachments(n,t),n.addClass(this.markerClassName).keydown(this._doKeyDown).keypress(this._doKeyPress).keyup(this._doKeyUp).bind("setData.datepicker",function(e,n,r){t.settings[n]=r}).bind("getData.datepicker",function(e,n){return this._get(t,n)}),this._autoSize(t),$.data(e,PROP_NAME,t),t.settings.disabled&&this._disableDatepicker(e)},_attachments:function(e,t){var n=this._get(t,"appendText"),r=this._get(t,"isRTL");t.append&&t.append.remove(),n&&(t.append=$('<span class="'+this._appendClass+'">'+n+"</span>"),e[r?"before":"after"](t.append)),e.unbind("focus",this._showDatepicker),t.trigger&&t.trigger.remove();var i=this._get(t,"showOn");(i=="focus"||i=="both")&&e.focus(this._showDatepicker);if(i=="button"||i=="both"){var s=this._get(t,"buttonText"),o=this._get(t,"buttonImage");t.trigger=$(this._get(t,"buttonImageOnly")?$("<img/>").addClass(this._triggerClass).attr({src:o,alt:s,title:s}):$('<button type="button"></button>').addClass(this._triggerClass).html(o==""?s:$("<img/>").attr({src:o,alt:s,title:s}))),e[r?"before":"after"](t.trigger),t.trigger.click(function(){return $.datepicker._datepickerShowing&&$.datepicker._lastInput==e[0]?$.datepicker._hideDatepicker():$.datepicker._datepickerShowing&&$.datepicker._lastInput!=e[0]?($.datepicker._hideDatepicker(),$.datepicker._showDatepicker(e[0])):$.datepicker._showDatepicker(e[0]),!1})}},_autoSize:function(e){if(this._get(e,"autoSize")&&!e.inline){var t=new Date(2009,11,20),n=this._get(e,"dateFormat");if(n.match(/[DM]/)){var r=function(e){var t=0,n=0;for(var r=0;r<e.length;r++)e[r].length>t&&(t=e[r].length,n=r);return n};t.setMonth(r(this._get(e,n.match(/MM/)?"monthNames":"monthNamesShort"))),t.setDate(r(this._get(e,n.match(/DD/)?"dayNames":"dayNamesShort"))+20-t.getDay())}e.input.attr("size",this._formatDate(e,t).length)}},_inlineDatepicker:function(e,t){var n=$(e);if(n.hasClass(this.markerClassName))return;n.addClass(this.markerClassName).append(t.dpDiv).bind("setData.datepicker",function(e,n,r){t.settings[n]=r}).bind("getData.datepicker",function(e,n){return this._get(t,n)}),$.data(e,PROP_NAME,t),this._setDate(t,this._getDefaultDate(t),!0),this._updateDatepicker(t),this._updateAlternate(t),t.settings.disabled&&this._disableDatepicker(e),t.dpDiv.css("display","block")},_dialogDatepicker:function(e,t,n,r,i){var s=this._dialogInst;if(!s){this.uuid+=1;var o="dp"+this.uuid;this._dialogInput=$('<input type="text" id="'+o+'" style="position: absolute; top: -100px; width: 0px;"/>'),this._dialogInput.keydown(this._doKeyDown),$("body").append(this._dialogInput),s=this._dialogInst=this._newInst(this._dialogInput,!1),s.settings={},$.data(this._dialogInput[0],PROP_NAME,s)}extendRemove(s.settings,r||{}),t=t&&t.constructor==Date?this._formatDate(s,t):t,this._dialogInput.val(t),this._pos=i?i.length?i:[i.pageX,i.pageY]:null;if(!this._pos){var u=document.documentElement.clientWidth,a=document.documentElement.clientHeight,f=document.documentElement.scrollLeft||document.body.scrollLeft,l=document.documentElement.scrollTop||document.body.scrollTop;this._pos=[u/2-100+f,a/2-150+l]}return this._dialogInput.css("left",this._pos[0]+20+"px").css("top",this._pos[1]+"px"),s.settings.onSelect=n,this._inDialog=!0,this.dpDiv.addClass(this._dialogClass),this._showDatepicker(this._dialogInput[0]),$.blockUI&&$.blockUI(this.dpDiv),$.data(this._dialogInput[0],PROP_NAME,s),this},_destroyDatepicker:function(e){var t=$(e),n=$.data(e,PROP_NAME);if(!t.hasClass(this.markerClassName))return;var r=e.nodeName.toLowerCase();$.removeData(e,PROP_NAME),r=="input"?(n.append.remove(),n.trigger.remove(),t.removeClass(this.markerClassName).unbind("focus",this._showDatepicker).unbind("keydown",this._doKeyDown).unbind("keypress",this._doKeyPress).unbind("keyup",this._doKeyUp)):(r=="div"||r=="span")&&t.removeClass(this.markerClassName).empty()},_enableDatepicker:function(e){var t=$(e),n=$.data(e,PROP_NAME);if(!t.hasClass(this.markerClassName))return;var r=e.nodeName.toLowerCase();if(r=="input")e.disabled=!1,n.trigger.filter("button").each(function(){this.disabled=!1}).end().filter("img").css({opacity:"1.0",cursor:""});else if(r=="div"||r=="span"){var i=t.children("."+this._inlineClass);i.children().removeClass("ui-state-disabled"),i.find("select.ui-datepicker-month, select.ui-datepicker-year").prop("disabled",!1)}this._disabledInputs=$.map(this._disabledInputs,function(t){return t==e?null:t})},_disableDatepicker:function(e){var t=$(e),n=$.data(e,PROP_NAME);if(!t.hasClass(this.markerClassName))return;var r=e.nodeName.toLowerCase();if(r=="input")e.disabled=!0,n.trigger.filter("button").each(function(){this.disabled=!0}).end().filter("img").css({opacity:"0.5",cursor:"default"});else if(r=="div"||r=="span"){var i=t.children("."+this._inlineClass);i.children().addClass("ui-state-disabled"),i.find("select.ui-datepicker-month, select.ui-datepicker-year").prop("disabled",!0)}this._disabledInputs=$.map(this._disabledInputs,function(t){return t==e?null:t}),this._disabledInputs[this._disabledInputs.length]=e},_isDisabledDatepicker:function(e){if(!e)return!1;for(var t=0;t<this._disabledInputs.length;t++)if(this._disabledInputs[t]==e)return!0;return!1},_getInst:function(e){try{return $.data(e,PROP_NAME)}catch(t){throw"Missing instance data for this datepicker"}},_optionDatepicker:function(e,t,n){var r=this._getInst(e);if(arguments.length==2&&typeof t=="string")return t=="defaults"?$.extend({},$.datepicker._defaults):r?t=="all"?$.extend({},r.settings):this._get(r,t):null;var i=t||{};typeof t=="string"&&(i={},i[t]=n);if(r){this._curInst==r&&this._hideDatepicker();var s=this._getDateDatepicker(e,!0),o=this._getMinMaxDate(r,"min"),u=this._getMinMaxDate(r,"max");extendRemove(r.settings,i),o!==null&&i.dateFormat!==undefined&&i.minDate===undefined&&(r.settings.minDate=this._formatDate(r,o)),u!==null&&i.dateFormat!==undefined&&i.maxDate===undefined&&(r.settings.maxDate=this._formatDate(r,u)),this._attachments($(e),r),this._autoSize(r),this._setDate(r,s),this._updateAlternate(r),this._updateDatepicker(r)}},_changeDatepicker:function(e,t,n){this._optionDatepicker(e,t,n)},_refreshDatepicker:function(e){var t=this._getInst(e);t&&this._updateDatepicker(t)},_setDateDatepicker:function(e,t){var n=this._getInst(e);n&&(this._setDate(n,t),this._updateDatepicker(n),this._updateAlternate(n))},_getDateDatepicker:function(e,t){var n=this._getInst(e);return n&&!n.inline&&this._setDateFromField(n,t),n?this._getDate(n):null},_doKeyDown:function(e){var t=$.datepicker._getInst(e.target),n=!0,r=t.dpDiv.is(".ui-datepicker-rtl");t._keyEvent=!0;if($.datepicker._datepickerShowing)switch(e.keyCode){case 9:$.datepicker._hideDatepicker(),n=!1;break;case 13:var i=$("td."+$.datepicker._dayOverClass+":not(."+$.datepicker._currentClass+")",t.dpDiv);i[0]&&$.datepicker._selectDay(e.target,t.selectedMonth,t.selectedYear,i[0]);var s=$.datepicker._get(t,"onSelect");if(s){var o=$.datepicker._formatDate(t);s.apply(t.input?t.input[0]:null,[o,t])}else $.datepicker._hideDatepicker();return!1;case 27:$.datepicker._hideDatepicker();break;case 33:$.datepicker._adjustDate(e.target,e.ctrlKey?-$.datepicker._get(t,"stepBigMonths"):-$.datepicker._get(t,"stepMonths"),"M");break;case 34:$.datepicker._adjustDate(e.target,e.ctrlKey?+$.datepicker._get(t,"stepBigMonths"):+$.datepicker._get(t,"stepMonths"),"M");break;case 35:(e.ctrlKey||e.metaKey)&&$.datepicker._clearDate(e.target),n=e.ctrlKey||e.metaKey;break;case 36:(e.ctrlKey||e.metaKey)&&$.datepicker._gotoToday(e.target),n=e.ctrlKey||e.metaKey;break;case 37:(e.ctrlKey||e.metaKey)&&$.datepicker._adjustDate(e.target,r?1:-1,"D"),n=e.ctrlKey||e.metaKey,e.originalEvent.altKey&&$.datepicker._adjustDate(e.target,e.ctrlKey?-$.datepicker._get(t,"stepBigMonths"):-$.datepicker._get(t,"stepMonths"),"M");break;case 38:(e.ctrlKey||e.metaKey)&&$.datepicker._adjustDate(e.target,-7,"D"),n=e.ctrlKey||e.metaKey;break;case 39:(e.ctrlKey||e.metaKey)&&$.datepicker._adjustDate(e.target,r?-1:1,"D"),n=e.ctrlKey||e.metaKey,e.originalEvent.altKey&&$.datepicker._adjustDate(e.target,e.ctrlKey?+$.datepicker._get(t,"stepBigMonths"):+$.datepicker._get(t,"stepMonths"),"M");break;case 40:(e.ctrlKey||e.metaKey)&&$.datepicker._adjustDate(e.target,7,"D"),n=e.ctrlKey||e.metaKey;break;default:n=!1}else e.keyCode==36&&e.ctrlKey?$.datepicker._showDatepicker(this):n=!1;n&&(e.preventDefault(),e.stopPropagation())},_doKeyPress:function(e){var t=$.datepicker._getInst(e.target);if($.datepicker._get(t,"constrainInput")){var n=$.datepicker._possibleChars($.datepicker._get(t,"dateFormat")),r=String.fromCharCode(e.charCode==undefined?e.keyCode:e.charCode);return e.ctrlKey||e.metaKey||r<" "||!n||n.indexOf(r)>-1}},_doKeyUp:function(e){var t=$.datepicker._getInst(e.target);if(t.input.val()!=t.lastVal)try{var n=$.datepicker.parseDate($.datepicker._get(t,"dateFormat"),t.input?t.input.val():null,$.datepicker._getFormatConfig(t));n&&($.datepicker._setDateFromField(t),$.datepicker._updateAlternate(t),$.datepicker._updateDatepicker(t))}catch(r){$.datepicker.log(r)}return!0},_showDatepicker:function(e){e=e.target||e,e.nodeName.toLowerCase()!="input"&&(e=$("input",e.parentNode)[0]);if($.datepicker._isDisabledDatepicker(e)||$.datepicker._lastInput==e)return;var t=$.datepicker._getInst(e);$.datepicker._curInst&&$.datepicker._curInst!=t&&($.datepicker._curInst.dpDiv.stop(!0,!0),t&&$.datepicker._datepickerShowing&&$.datepicker._hideDatepicker($.datepicker._curInst.input[0]));var n=$.datepicker._get(t,"beforeShow"),r=n?n.apply(e,[e,t]):{};if(r===!1)return;extendRemove(t.settings,r),t.lastVal=null,$.datepicker._lastInput=e,$.datepicker._setDateFromField(t),$.datepicker._inDialog&&(e.value=""),$.datepicker._pos||($.datepicker._pos=$.datepicker._findPos(e),$.datepicker._pos[1]+=e.offsetHeight);var i=!1;$(e).parents().each(function(){return i|=$(this).css("position")=="fixed",!i});var s={left:$.datepicker._pos[0],top:$.datepicker._pos[1]};$.datepicker._pos=null,t.dpDiv.empty(),t.dpDiv.css({position:"absolute",display:"block",top:"-1000px"}),$.datepicker._updateDatepicker(t),s=$.datepicker._checkOffset(t,s,i),t.dpDiv.css({position:$.datepicker._inDialog&&$.blockUI?"static":i?"fixed":"absolute",display:"none",left:s.left+"px",top:s.top+"px"});if(!t.inline){var o=$.datepicker._get(t,"showAnim"),u=$.datepicker._get(t,"duration"),a=function(){var e=t.dpDiv.find("iframe.ui-datepicker-cover");if(!!e.length){var n=$.datepicker._getBorders(t.dpDiv);e.css({left:-n[0],top:-n[1],width:t.dpDiv.outerWidth(),height:t.dpDiv.outerHeight()})}};t.dpDiv.zIndex($(e).zIndex()+1),$.datepicker._datepickerShowing=!0,$.effects&&($.effects.effect[o]||$.effects[o])?t.dpDiv.show(o,$.datepicker._get(t,"showOptions"),u,a):t.dpDiv[o||"show"](o?u:null,a),(!o||!u)&&a(),t.input.is(":visible")&&!t.input.is(":disabled")&&t.input.focus(),$.datepicker._curInst=t}},_updateDatepicker:function(e){this.maxRows=4;var t=$.datepicker._getBorders(e.dpDiv);instActive=e,e.dpDiv.empty().append(this._generateHTML(e)),this._attachHandlers(e);var n=e.dpDiv.find("iframe.ui-datepicker-cover");!n.length||n.css({left:-t[0],top:-t[1],width:e.dpDiv.outerWidth(),height:e.dpDiv.outerHeight()}),e.dpDiv.find("."+this._dayOverClass+" a").mouseover();var r=this._getNumberOfMonths(e),i=r[1],s=17;e.dpDiv.removeClass("ui-datepicker-multi-2 ui-datepicker-multi-3 ui-datepicker-multi-4").width(""),i>1&&e.dpDiv.addClass("ui-datepicker-multi-"+i).css("width",s*i+"em"),e.dpDiv[(r[0]!=1||r[1]!=1?"add":"remove")+"Class"]("ui-datepicker-multi"),e.dpDiv[(this._get(e,"isRTL")?"add":"remove")+"Class"]("ui-datepicker-rtl"),e==$.datepicker._curInst&&$.datepicker._datepickerShowing&&e.input&&e.input.is(":visible")&&!e.input.is(":disabled")&&e.input[0]!=document.activeElement&&e.input.focus();if(e.yearshtml){var o=e.yearshtml;setTimeout(function(){o===e.yearshtml&&e.yearshtml&&e.dpDiv.find("select.ui-datepicker-year:first").replaceWith(e.yearshtml),o=e.yearshtml=null},0)}},_getBorders:function(e){var t=function(e){return{thin:1,medium:2,thick:3}[e]||e};return[parseFloat(t(e.css("border-left-width"))),parseFloat(t(e.css("border-top-width")))]},_checkOffset:function(e,t,n){var r=e.dpDiv.outerWidth(),i=e.dpDiv.outerHeight(),s=e.input?e.input.outerWidth():0,o=e.input?e.input.outerHeight():0,u=document.documentElement.clientWidth+(n?0:$(document).scrollLeft()),a=document.documentElement.clientHeight+(n?0:$(document).scrollTop());return t.left-=this._get(e,"isRTL")?r-s:0,t.left-=n&&t.left==e.input.offset().left?$(document).scrollLeft():0,t.top-=n&&t.top==e.input.offset().top+o?$(document).scrollTop():0,t.left-=Math.min(t.left,t.left+r>u&&u>r?Math.abs(t.left+r-u):0),t.top-=Math.min(t.top,t.top+i>a&&a>i?Math.abs(i+o):0),t},_findPos:function(e){var t=this._getInst(e),n=this._get(t,"isRTL");while(e&&(e.type=="hidden"||e.nodeType!=1||$.expr.filters.hidden(e)))e=e[n?"previousSibling":"nextSibling"];var r=$(e).offset();return[r.left,r.top]},_hideDatepicker:function(e){var t=this._curInst;if(!t||e&&t!=$.data(e,PROP_NAME))return;if(this._datepickerShowing){var n=this._get(t,"showAnim"),r=this._get(t,"duration"),i=function(){$.datepicker._tidyDialog(t)};$.effects&&($.effects.effect[n]||$.effects[n])?t.dpDiv.hide(n,$.datepicker._get(t,"showOptions"),r,i):t.dpDiv[n=="slideDown"?"slideUp":n=="fadeIn"?"fadeOut":"hide"](n?r:null,i),n||i(),this._datepickerShowing=!1;var s=this._get(t,"onClose");s&&s.apply(t.input?t.input[0]:null,[t.input?t.input.val():"",t]),this._lastInput=null,this._inDialog&&(this._dialogInput.css({position:"absolute",left:"0",top:"-100px"}),$.blockUI&&($.unblockUI(),$("body").append(this.dpDiv))),this._inDialog=!1}},_tidyDialog:function(e){e.dpDiv.removeClass(this._dialogClass).unbind(".ui-datepicker-calendar")},_checkExternalClick:function(e){if(!$.datepicker._curInst)return;var t=$(e.target),n=$.datepicker._getInst(t[0]);(t[0].id!=$.datepicker._mainDivId&&t.parents("#"+$.datepicker._mainDivId).length==0&&!t.hasClass($.datepicker.markerClassName)&&!t.closest("."+$.datepicker._triggerClass).length&&$.datepicker._datepickerShowing&&(!$.datepicker._inDialog||!$.blockUI)||t.hasClass($.datepicker.markerClassName)&&$.datepicker._curInst!=n)&&$.datepicker._hideDatepicker()},_adjustDate:function(e,t,n){var r=$(e),i=this._getInst(r[0]);if(this._isDisabledDatepicker(r[0]))return;this._adjustInstDate(i,t+(n=="M"?this._get(i,"showCurrentAtPos"):0),n),this._updateDatepicker(i)},_gotoToday:function(e){var t=$(e),n=this._getInst(t[0]);if(this._get(n,"gotoCurrent")&&n.currentDay)n.selectedDay=n.currentDay,n.drawMonth=n.selectedMonth=n.currentMonth,n.drawYear=n.selectedYear=n.currentYear;else{var r=new Date;n.selectedDay=r.getDate(),n.drawMonth=n.selectedMonth=r.getMonth(),n.drawYear=n.selectedYear=r.getFullYear()}this._notifyChange(n),this._adjustDate(t)},_selectMonthYear:function(e,t,n){var r=$(e),i=this._getInst(r[0]);i["selected"+(n=="M"?"Month":"Year")]=i["draw"+(n=="M"?"Month":"Year")]=parseInt(t.options[t.selectedIndex].value,10),this._notifyChange(i),this._adjustDate(r)},_selectDay:function(e,t,n,r){var i=$(e);if($(r).hasClass(this._unselectableClass)||this._isDisabledDatepicker(i[0]))return;var s=this._getInst(i[0]);s.selectedDay=s.currentDay=$("a",r).html(),s.selectedMonth=s.currentMonth=t,s.selectedYear=s.currentYear=n,this._selectDate(e,this._formatDate(s,s.currentDay,s.currentMonth,s.currentYear))},_clearDate:function(e){var t=$(e),n=this._getInst(t[0]);this._selectDate(t,"")},_selectDate:function(e,t){var n=$(e),r=this._getInst(n[0]);t=t!=null?t:this._formatDate(r),r.input&&r.input.val(t),this._updateAlternate(r);var i=this._get(r,"onSelect");i?i.apply(r.input?r.input[0]:null,[t,r]):r.input&&r.input.trigger("change"),r.inline?this._updateDatepicker(r):(this._hideDatepicker(),this._lastInput=r.input[0],typeof r.input[0]!="object"&&r.input.focus(),this._lastInput=null)},_updateAlternate:function(e){var t=this._get(e,"altField");if(t){var n=this._get(e,"altFormat")||this._get(e,"dateFormat"),r=this._getDate(e),i=this.formatDate(n,r,this._getFormatConfig(e));$(t).each(function(){$(this).val(i)})}},noWeekends:function(e){var t=e.getDay();return[t>0&&t<6,""]},iso8601Week:function(e){var t=new Date(e.getTime());t.setDate(t.getDate()+4-(t.getDay()||7));var n=t.getTime();return t.setMonth(0),t.setDate(1),Math.floor(Math.round((n-t)/864e5)/7)+1},parseDate:function(e,t,n){if(e==null||t==null)throw"Invalid arguments";t=typeof t=="object"?t.toString():t+"";if(t=="")return null;var r=(n?n.shortYearCutoff:null)||this._defaults.shortYearCutoff;r=typeof r!="string"?r:(new Date).getFullYear()%100+parseInt(r,10);var i=(n?n.dayNamesShort:null)||this._defaults.dayNamesShort,s=(n?n.dayNames:null)||this._defaults.dayNames,o=(n?n.monthNamesShort:null)||this._defaults.monthNamesShort,u=(n?n.monthNames:null)||this._defaults.monthNames,a=-1,f=-1,l=-1,c=-1,h=!1,p=function(t){var n=y+1<e.length&&e.charAt(y+1)==t;return n&&y++,n},d=function(e){var n=p(e),r=e=="@"?14:e=="!"?20:e=="y"&&n?4:e=="o"?3:2,i=new RegExp("^\\d{1,"+r+"}"),s=t.substring(g).match(i);if(!s)throw"Missing number at position "+g;return g+=s[0].length,parseInt(s[0],10)},v=function(e,n,r){var i=$.map(p(e)?r:n,function(e,t){return[[t,e]]}).sort(function(e,t){return-(e[1].length-t[1].length)}),s=-1;$.each(i,function(e,n){var r=n[1];if(t.substr(g,r.length).toLowerCase()==r.toLowerCase())return s=n[0],g+=r.length,!1});if(s!=-1)return s+1;throw"Unknown name at position "+g},m=function(){if(t.charAt(g)!=e.charAt(y))throw"Unexpected literal at position "+g;g++},g=0;for(var y=0;y<e.length;y++)if(h)e.charAt(y)=="'"&&!p("'")?h=!1:m();else switch(e.charAt(y)){case"d":l=d("d");break;case"D":v("D",i,s);break;case"o":c=d("o");break;case"m":f=d("m");break;case"M":f=v("M",o,u);break;case"y":a=d("y");break;case"@":var b=new Date(d("@"));a=b.getFullYear(),f=b.getMonth()+1,l=b.getDate();break;case"!":var b=new Date((d("!")-this._ticksTo1970)/1e4);a=b.getFullYear(),f=b.getMonth()+1,l=b.getDate();break;case"'":p("'")?m():h=!0;break;default:m()}if(g<t.length){var w=t.substr(g);if(!/^\s+/.test(w))throw"Extra/unparsed characters found in date: "+w}a==-1?a=(new Date).getFullYear():a<100&&(a+=(new Date).getFullYear()-(new Date).getFullYear()%100+(a<=r?0:-100));if(c>-1){f=1,l=c;do{var E=this._getDaysInMonth(a,f-1);if(l<=E)break;f++,l-=E}while(!0)}var b=this._daylightSavingAdjust(new Date(a,f-1,l));if(b.getFullYear()!=a||b.getMonth()+1!=f||b.getDate()!=l)throw"Invalid date";return b},ATOM:"yy-mm-dd",COOKIE:"D, dd M yy",ISO_8601:"yy-mm-dd",RFC_822:"D, d M y",RFC_850:"DD, dd-M-y",RFC_1036:"D, d M y",RFC_1123:"D, d M yy",RFC_2822:"D, d M yy",RSS:"D, d M y",TICKS:"!",TIMESTAMP:"@",W3C:"yy-mm-dd",_ticksTo1970:(718685+Math.floor(492.5)-Math.floor(19.7)+Math.floor(4.925))*24*60*60*1e7,formatDate:function(e,t,n){if(!t)return"";var r=(n?n.dayNamesShort:null)||this._defaults.dayNamesShort,i=(n?n.dayNames:null)||this._defaults.dayNames,s=(n?n.monthNamesShort:null)||this._defaults.monthNamesShort,o=(n?n.monthNames:null)||this._defaults.monthNames,u=function(t){var n=h+1<e.length&&e.charAt(h+1)==t;return n&&h++,n},a=function(e,t,n){var r=""+t;if(u(e))while(r.length<n)r="0"+r;return r},f=function(e,t,n,r){return u(e)?r[t]:n[t]},l="",c=!1;if(t)for(var h=0;h<e.length;h++)if(c)e.charAt(h)=="'"&&!u("'")?c=!1:l+=e.charAt(h);else switch(e.charAt(h)){case"d":l+=a("d",t.getDate(),2);break;case"D":l+=f("D",t.getDay(),r,i);break;case"o":l+=a("o",Math.round(((new Date(t.getFullYear(),t.getMonth(),t.getDate())).getTime()-(new Date(t.getFullYear(),0,0)).getTime())/864e5),3);break;case"m":l+=a("m",t.getMonth()+1,2);break;case"M":l+=f("M",t.getMonth(),s,o);break;case"y":l+=u("y")?t.getFullYear():(t.getYear()%100<10?"0":"")+t.getYear()%100;break;case"@":l+=t.getTime();break;case"!":l+=t.getTime()*1e4+this._ticksTo1970;break;case"'":u("'")?l+="'":c=!0;break;default:l+=e.charAt(h)}return l},_possibleChars:function(e){var t="",n=!1,r=function(t){var n=i+1<e.length&&e.charAt(i+1)==t;return n&&i++,n};for(var i=0;i<e.length;i++)if(n)e.charAt(i)=="'"&&!r("'")?n=!1:t+=e.charAt(i);else switch(e.charAt(i)){case"d":case"m":case"y":case"@":t+="0123456789";break;case"D":case"M":return null;case"'":r("'")?t+="'":n=!0;break;default:t+=e.charAt(i)}return t},_get:function(e,t){return e.settings[t]!==undefined?e.settings[t]:this._defaults[t]},_setDateFromField:function(e,t){if(e.input.val()==e.lastVal)return;var n=this._get(e,"dateFormat"),r=e.lastVal=e.input?e.input.val():null,i,s;i=s=this._getDefaultDate(e);var o=this._getFormatConfig(e);try{i=this.parseDate(n,r,o)||s}catch(u){this.log(u),r=t?"":r}e.selectedDay=i.getDate(),e.drawMonth=e.selectedMonth=i.getMonth(),e.drawYear=e.selectedYear=i.getFullYear(),e.currentDay=r?i.getDate():0,e.currentMonth=r?i.getMonth():0,e.currentYear=r?i.getFullYear():0,this._adjustInstDate(e)},_getDefaultDate:function(e){return this._restrictMinMax(e,this._determineDate(e,this._get(e,"defaultDate"),new Date))},_determineDate:function(e,t,n){var r=function(e){var t=new Date;return t.setDate(t.getDate()+e),t},i=function(t){try{return $.datepicker.parseDate($.datepicker._get(e,"dateFormat"),t,$.datepicker._getFormatConfig(e))}catch(n){}var r=(t.toLowerCase().match(/^c/)?$.datepicker._getDate(e):null)||new Date,i=r.getFullYear(),s=r.getMonth(),o=r.getDate(),u=/([+-]?[0-9]+)\s*(d|D|w|W|m|M|y|Y)?/g,a=u.exec(t);while(a){switch(a[2]||"d"){case"d":case"D":o+=parseInt(a[1],10);break;case"w":case"W":o+=parseInt(a[1],10)*7;break;case"m":case"M":s+=parseInt(a[1],10),o=Math.min(o,$.datepicker._getDaysInMonth(i,s));break;case"y":case"Y":i+=parseInt(a[1],10),o=Math.min(o,$.datepicker._getDaysInMonth(i,s))}a=u.exec(t)}return new Date(i,s,o)},s=t==null||t===""?n:typeof t=="string"?i(t):typeof t=="number"?isNaN(t)?n:r(t):new Date(t.getTime());return s=s&&s.toString()=="Invalid Date"?n:s,s&&(s.setHours(0),s.setMinutes(0),s.setSeconds(0),s.setMilliseconds(0)),this._daylightSavingAdjust(s)},_daylightSavingAdjust:function(e){return e?(e.setHours(e.getHours()>12?e.getHours()+2:0),e):null},_setDate:function(e,t,n){var r=!t,i=e.selectedMonth,s=e.selectedYear,o=this._restrictMinMax(e,this._determineDate(e,t,new Date));e.selectedDay=e.currentDay=o.getDate(),e.drawMonth=e.selectedMonth=e.currentMonth=o.getMonth(),e.drawYear=e.selectedYear=e.currentYear=o.getFullYear(),(i!=e.selectedMonth||s!=e.selectedYear)&&!n&&this._notifyChange(e),this._adjustInstDate(e),e.input&&e.input.val(r?"":this._formatDate(e))},_getDate:function(e){var t=!e.currentYear||e.input&&e.input.val()==""?null:this._daylightSavingAdjust(new Date(e.currentYear,e.currentMonth,e.currentDay));return t},_attachHandlers:function(e){var t=this._get(e,"stepMonths"),n="#"+e.id.replace(/\\\\/g,"\\");e.dpDiv.find("[data-handler]").map(function(){var e={prev:function(){window["DP_jQuery_"+dpuuid].datepicker._adjustDate(n,-t,"M")},next:function(){window["DP_jQuery_"+dpuuid].datepicker._adjustDate(n,+t,"M")},hide:function(){window["DP_jQuery_"+dpuuid].datepicker._hideDatepicker()},today:function(){window["DP_jQuery_"+dpuuid].datepicker._gotoToday(n)},selectDay:function(){return window["DP_jQuery_"+dpuuid].datepicker._selectDay(n,+this.getAttribute("data-month"),+this.getAttribute("data-year"),this),!1},selectMonth:function(){return window["DP_jQuery_"+dpuuid].datepicker._selectMonthYear(n,this,"M"),!1},selectYear:function(){return window["DP_jQuery_"+dpuuid].datepicker._selectMonthYear(n,this,"Y"),!1}};$(this).bind(this.getAttribute("data-event"),e[this.getAttribute("data-handler")])})},_generateHTML:function(e){var t=new Date;t=this._daylightSavingAdjust(new Date(t.getFullYear(),t.getMonth(),t.getDate()));var n=this._get(e,"isRTL"),r=this._get(e,"showButtonPanel"),i=this._get(e,"hideIfNoPrevNext"),s=this._get(e,"navigationAsDateFormat"),o=this._getNumberOfMonths(e),u=this._get(e,"showCurrentAtPos"),a=this._get(e,"stepMonths"),f=o[0]!=1||o[1]!=1,l=this._daylightSavingAdjust(e.currentDay?new Date(e.currentYear,e.currentMonth,e.currentDay):new Date(9999,9,9)),c=this._getMinMaxDate(e,"min"),h=this._getMinMaxDate(e,"max"),p=e.drawMonth-u,d=e.drawYear;p<0&&(p+=12,d--);if(h){var v=this._daylightSavingAdjust(new Date(h.getFullYear(),h.getMonth()-o[0]*o[1]+1,h.getDate()));v=c&&v<c?c:v;while(this._daylightSavingAdjust(new Date(d,p,1))>v)p--,p<0&&(p=11,d--)}e.drawMonth=p,e.drawYear=d;var m=this._get(e,"prevText");m=s?this.formatDate(m,this._daylightSavingAdjust(new Date(d,p-a,1)),this._getFormatConfig(e)):m;var g=this._canAdjustMonth(e,-1,d,p)?'<a class="ui-datepicker-prev ui-corner-all" data-handler="prev" data-event="click" title="'+m+'"><span class="ui-icon ui-icon-circle-triangle-'+(n?"e":"w")+'">'+m+"</span></a>":i?"":'<a class="ui-datepicker-prev ui-corner-all ui-state-disabled" title="'+m+'"><span class="ui-icon ui-icon-circle-triangle-'+(n?"e":"w")+'">'+m+"</span></a>",y=this._get(e,"nextText");y=s?this.formatDate(y,this._daylightSavingAdjust(new Date(d,p+a,1)),this._getFormatConfig(e)):y;var b=this._canAdjustMonth(e,1,d,p)?'<a class="ui-datepicker-next ui-corner-all" data-handler="next" data-event="click" title="'+y+'"><span class="ui-icon ui-icon-circle-triangle-'+(n?"w":"e")+'">'+y+"</span></a>":i?"":'<a class="ui-datepicker-next ui-corner-all ui-state-disabled" title="'+y+'"><span class="ui-icon ui-icon-circle-triangle-'+(n?"w":"e")+'">'+y+"</span></a>",w=this._get(e,"currentText"),E=this._get(e,"gotoCurrent")&&e.currentDay?l:t;w=s?this.formatDate(w,E,this._getFormatConfig(e)):w;var S=e.inline?"":'<button type="button" class="ui-datepicker-close ui-state-default ui-priority-primary ui-corner-all" data-handler="hide" data-event="click">'+this._get(e,"closeText")+"</button>",x=r?'<div class="ui-datepicker-buttonpane ui-widget-content">'+(n?S:"")+(this._isInRange(e,E)?'<button type="button" class="ui-datepicker-current ui-state-default ui-priority-secondary ui-corner-all" data-handler="today" data-event="click">'+w+"</button>":"")+(n?"":S)+"</div>":"",T=parseInt(this._get(e,"firstDay"),10);T=isNaN(T)?0:T;var N=this._get(e,"showWeek"),C=this._get(e,"dayNames"),k=this._get(e,"dayNamesShort"),L=this._get(e,"dayNamesMin"),A=this._get(e,"monthNames"),O=this._get(e,"monthNamesShort"),M=this._get(e,"beforeShowDay"),_=this._get(e,"showOtherMonths"),D=this._get(e,"selectOtherMonths"),P=this._get(e,"calculateWeek")||this.iso8601Week,H=this._getDefaultDate(e),B="";for(var j=0;j<o[0];j++){var F="";this.maxRows=4;for(var I=0;I<o[1];I++){var q=this._daylightSavingAdjust(new Date(d,p,e.selectedDay)),R=" ui-corner-all",U="";if(f){U+='<div class="ui-datepicker-group';if(o[1]>1)switch(I){case 0:U+=" ui-datepicker-group-first",R=" ui-corner-"+(n?"right":"left");break;case o[1]-1:U+=" ui-datepicker-group-last",R=" ui-corner-"+(n?"left":"right");break;default:U+=" ui-datepicker-group-middle",R=""}U+='">'}U+='<div class="ui-datepicker-header ui-widget-header ui-helper-clearfix'+R+'">'+(/all|left/.test(R)&&j==0?n?b:g:"")+(/all|right/.test(R)&&j==0?n?g:b:"")+this._generateMonthYearHeader(e,p,d,c,h,j>0||I>0,A,O)+'</div><table class="ui-datepicker-calendar"><thead>'+"<tr>";var z=N?'<th class="ui-datepicker-week-col">'+this._get(e,"weekHeader")+"</th>":"";for(var W=0;W<7;W++){var X=(W+T)%7;z+="<th"+((W+T+6)%7>=5?' class="ui-datepicker-week-end"':"")+">"+'<span title="'+C[X]+'">'+L[X]+"</span></th>"}U+=z+"</tr></thead><tbody>";var V=this._getDaysInMonth(d,p);d==e.selectedYear&&p==e.selectedMonth&&(e.selectedDay=Math.min(e.selectedDay,V));var J=(this._getFirstDayOfMonth(d,p)-T+7)%7,K=Math.ceil((J+V)/7),Q=f?this.maxRows>K?this.maxRows:K:K;this.maxRows=Q;var G=this._daylightSavingAdjust(new Date(d,p,1-J));for(var Y=0;Y<Q;Y++){U+="<tr>";var Z=N?'<td class="ui-datepicker-week-col">'+this._get(e,"calculateWeek")(G)+"</td>":"";for(var W=0;W<7;W++){var et=M?M.apply(e.input?e.input[0]:null,[G]):[!0,""],tt=G.getMonth()!=p,nt=tt&&!D||!et[0]||c&&G<c||h&&G>h;Z+='<td class="'+((W+T+6)%7>=5?" ui-datepicker-week-end":"")+(tt?" ui-datepicker-other-month":"")+(G.getTime()==q.getTime()&&p==e.selectedMonth&&e._keyEvent||H.getTime()==G.getTime()&&H.getTime()==q.getTime()?" "+this._dayOverClass:"")+(nt?" "+this._unselectableClass+" ui-state-disabled":"")+(tt&&!_?"":" "+et[1]+(G.getTime()==l.getTime()?" "+this._currentClass:"")+(G.getTime()==t.getTime()?" ui-datepicker-today":""))+'"'+((!tt||_)&&et[2]?' title="'+et[2]+'"':"")+(nt?"":' data-handler="selectDay" data-event="click" data-month="'+G.getMonth()+'" data-year="'+G.getFullYear()+'"')+">"+(tt&&!_?" ":nt?'<span class="ui-state-default">'+G.getDate()+"</span>":'<a class="ui-state-default'+(G.getTime()==t.getTime()?" ui-state-highlight":"")+(G.getTime()==l.getTime()?" ui-state-active":"")+(tt?" ui-priority-secondary":"")+'" href="#">'+G.getDate()+"</a>")+"</td>",G.setDate(G.getDate()+1),G=this._daylightSavingAdjust(G)}U+=Z+"</tr>"}p++,p>11&&(p=0,d++),U+="</tbody></table>"+(f?"</div>"+(o[0]>0&&I==o[1]-1?'<div class="ui-datepicker-row-break"></div>':""):""),F+=U}B+=F}return B+=x+($.ui.ie6&&!e.inline?'<iframe src="javascript:false;" class="ui-datepicker-cover" frameborder="0"></iframe>':""),e._keyEvent=!1,B},_generateMonthYearHeader:function(e,t,n,r,i,s,o,u){var a=this._get(e,"changeMonth"),f=this._get(e,"changeYear"),l=this._get(e,"showMonthAfterYear"),c='<div class="ui-datepicker-title">',h="";if(s||!a)h+='<span class="ui-datepicker-month">'+o[t]+"</span>";else{var p=r&&r.getFullYear()==n,d=i&&i.getFullYear()==n;h+='<select class="ui-datepicker-month" data-handler="selectMonth" data-event="change">';for(var v=0;v<12;v++)(!p||v>=r.getMonth())&&(!d||v<=i.getMonth())&&(h+='<option value="'+v+'"'+(v==t?' selected="selected"':"")+">"+u[v]+"</option>");h+="</select>"}l||(c+=h+(s||!a||!f?" ":""));if(!e.yearshtml){e.yearshtml="";if(s||!f)c+='<span class="ui-datepicker-year">'+n+"</span>";else{var m=this._get(e,"yearRange").split(":"),g=(new Date).getFullYear(),y=function(e){var t=e.match(/c[+-].*/)?n+parseInt(e.substring(1),10):e.match(/[+-].*/)?g+parseInt(e,10):parseInt(e,10);return isNaN(t)?g:t},b=y(m[0]),w=Math.max(b,y(m[1]||""));b=r?Math.max(b,r.getFullYear()):b,w=i?Math.min(w,i.getFullYear()):w,e.yearshtml+='<select class="ui-datepicker-year" data-handler="selectYear" data-event="change">';for(;b<=w;b++)e.yearshtml+='<option value="'+b+'"'+(b==n?' selected="selected"':"")+">"+b+"</option>";e.yearshtml+="</select>",c+=e.yearshtml,e.yearshtml=null}}return c+=this._get(e,"yearSuffix"),l&&(c+=(s||!a||!f?" ":"")+h),c+="</div>",c},_adjustInstDate:function(e,t,n){var r=e.drawYear+(n=="Y"?t:0),i=e.drawMonth+(n=="M"?t:0),s=Math.min(e.selectedDay,this._getDaysInMonth(r,i))+(n=="D"?t:0),o=this._restrictMinMax(e,this._daylightSavingAdjust(new Date(r,i,s)));e.selectedDay=o.getDate(),e.drawMonth=e.selectedMonth=o.getMonth(),e.drawYear=e.selectedYear=o.getFullYear(),(n=="M"||n=="Y")&&this._notifyChange(e)},_restrictMinMax:function(e,t){var n=this._getMinMaxDate(e,"min"),r=this._getMinMaxDate(e,"max"),i=n&&t<n?n:t;return i=r&&i>r?r:i,i},_notifyChange:function(e){var t=this._get(e,"onChangeMonthYear");t&&t.apply(e.input?e.input[0]:null,[e.selectedYear,e.selectedMonth+1,e])},_getNumberOfMonths:function(e){var t=this._get(e,"numberOfMonths");return t==null?[1,1]:typeof t=="number"?[1,t]:t},_getMinMaxDate:function(e,t){return this._determineDate(e,this._get(e,t+"Date"),null)},_getDaysInMonth:function(e,t){return 32-this._daylightSavingAdjust(new Date(e,t,32)).getDate()},_getFirstDayOfMonth:function(e,t){return(new Date(e,t,1)).getDay()},_canAdjustMonth:function(e,t,n,r){var i=this._getNumberOfMonths(e),s=this._daylightSavingAdjust(new Date(n,r+(t<0?t:i[0]*i[1]),1));return t<0&&s.setDate(this._getDaysInMonth(s.getFullYear(),s.getMonth())),this._isInRange(e,s)},_isInRange:function(e,t){var n=this._getMinMaxDate(e,"min"),r=this._getMinMaxDate(e,"max");return(!n||t.getTime()>=n.getTime())&&(!r||t.getTime()<=r.getTime())},_getFormatConfig:function(e){var t=this._get(e,"shortYearCutoff");return t=typeof t!="string"?t:(new Date).getFullYear()%100+parseInt(t,10),{shortYearCutoff:t,dayNamesShort:this._get(e,"dayNamesShort"),dayNames:this._get(e,"dayNames"),monthNamesShort:this._get(e,"monthNamesShort"),monthNames:this._get(e,"monthNames")}},_formatDate:function(e,t,n,r){t||(e.currentDay=e.selectedDay,e.currentMonth=e.selectedMonth,e.currentYear=e.selectedYear);var i=t?typeof t=="object"?t:this._daylightSavingAdjust(new Date(r,n,t)):this._daylightSavingAdjust(new Date(e.currentYear,e.currentMonth,e.currentDay));return this.formatDate(this._get(e,"dateFormat"),i,this._getFormatConfig(e))}}),$.fn.datepicker=function(e){if(!this.length)return this;$.datepicker.initialized||($(document).mousedown($.datepicker._checkExternalClick).find(document.body).append($.datepicker.dpDiv),$.datepicker.initialized=!0);var t=Array.prototype.slice.call(arguments,1);return typeof e!="string"||e!="isDisabled"&&e!="getDate"&&e!="widget"?e=="option"&&arguments.length==2&&typeof arguments[1]=="string"?$.datepicker["_"+e+"Datepicker"].apply($.datepicker,[this[0]].concat(t)):this.each(function(){typeof e=="string"?$.datepicker["_"+e+"Datepicker"].apply($.datepicker,[this].concat(t)):$.datepicker._attachDatepicker(this,e)}):$.datepicker["_"+e+"Datepicker"].apply($.datepicker,[this[0]].concat(t))},$.datepicker=new Datepicker,$.datepicker.initialized=!1,$.datepicker.uuid=(new Date).getTime(),$.datepicker.version="1.9.1",window["DP_jQuery_"+dpuuid]=$})(jQuery);(function(e,t){var n="ui-dialog ui-widget ui-widget-content ui-corner-all ",r={buttons:!0,height:!0,maxHeight:!0,maxWidth:!0,minHeight:!0,minWidth:!0,width:!0},i={maxHeight:!0,maxWidth:!0,minHeight:!0,minWidth:!0};e.widget("ui.dialog",{version:"1.9.1",options:{autoOpen:!0,buttons:{},closeOnEscape:!0,closeText:"close",dialogClass:"",draggable:!0,hide:null,height:"auto",maxHeight:!1,maxWidth:!1,minHeight:150,minWidth:150,modal:!1,position:{my:"center",at:"center",of:window,collision:"fit",using:function(t){var n=e(this).css(t).offset().top;n<0&&e(this).css("top",t.top-n)}},resizable:!0,show:null,stack:!0,title:"",width:300,zIndex:1e3},_create:function(){this.originalTitle=this.element.attr("title"),typeof this.originalTitle!="string"&&(this.originalTitle=""),this.oldPosition={parent:this.element.parent(),index:this.element.parent().children().index(this.element)},this.options.title=this.options.title||this.originalTitle;var t=this,r=this.options,i=r.title||" ",s,o,u,a,f;s=(this.uiDialog=e("<div>")).addClass(n+r.dialogClass).css({display:"none",outline:0,zIndex:r.zIndex}).attr("tabIndex",-1).keydown(function(n){r.closeOnEscape&&!n.isDefaultPrevented()&&n.keyCode&&n.keyCode===e.ui.keyCode.ESCAPE&&(t.close(n),n.preventDefault())}).mousedown(function(e){t.moveToTop(!1,e)}).appendTo("body"),this.element.show().removeAttr("title").addClass("ui-dialog-content ui-widget-content").appendTo(s),o=(this.uiDialogTitlebar=e("<div>")).addClass("ui-dialog-titlebar ui-widget-header ui-corner-all ui-helper-clearfix").bind("mousedown",function(){s.focus()}).prependTo(s),u=e("<a href='#'></a>").addClass("ui-dialog-titlebar-close ui-corner-all").attr("role","button").click(function(e){e.preventDefault(),t.close(e)}).appendTo(o),(this.uiDialogTitlebarCloseText=e("<span>")).addClass("ui-icon ui-icon-closethick").text(r.closeText).appendTo(u),a=e("<span>").uniqueId().addClass("ui-dialog-title").html(i).prependTo(o),f=(this.uiDialogButtonPane=e("<div>")).addClass("ui-dialog-buttonpane ui-widget-content ui-helper-clearfix"),(this.uiButtonSet=e("<div>")).addClass("ui-dialog-buttonset").appendTo(f),s.attr({role:"dialog","aria-labelledby":a.attr("id")}),o.find("*").add(o).disableSelection(),this._hoverable(u),this._focusable(u),r.draggable&&e.fn.draggable&&this._makeDraggable(),r.resizable&&e.fn.resizable&&this._makeResizable(),this._createButtons(r.buttons),this._isOpen=!1,e.fn.bgiframe&&s.bgiframe(),this._on(s,{keydown:function(t){if(!r.modal||t.keyCode!==e.ui.keyCode.TAB)return;var n=e(":tabbable",s),i=n.filter(":first"),o=n.filter(":last");if(t.target===o[0]&&!t.shiftKey)return i.focus(1),!1;if(t.target===i[0]&&t.shiftKey)return o.focus(1),!1}})},_init:function(){this.options.autoOpen&&this.open()},_destroy:function(){var e,t=this.oldPosition;this.overlay&&this.overlay.destroy(),this.uiDialog.hide(),this.element.removeClass("ui-dialog-content ui-widget-content").hide().appendTo("body"),this.uiDialog.remove(),this.originalTitle&&this.element.attr("title",this.originalTitle),e=t.parent.children().eq(t.index),e.length&&e[0]!==this.element[0]?e.before(this.element):t.parent.append(this.element)},widget:function(){return this.uiDialog},close:function(t){var n=this,r,i;if(!this._isOpen)return;if(!1===this._trigger("beforeClose",t))return;return this._isOpen=!1,this.overlay&&this.overlay.destroy(),this.options.hide?this._hide(this.uiDialog,this.options.hide,function(){n._trigger("close",t)}):(this.uiDialog.hide(),this._trigger("close",t)),e.ui.dialog.overlay.resize(),this.options.modal&&(r=0,e(".ui-dialog").each(function(){this!==n.uiDialog[0]&&(i=e(this).css("z-index"),isNaN(i)||(r=Math.max(r,i)))}),e.ui.dialog.maxZ=r),this},isOpen:function(){return this._isOpen},moveToTop:function(t,n){var r=this.options,i;return r.modal&&!t||!r.stack&&!r.modal?this._trigger("focus",n):(r.zIndex>e.ui.dialog.maxZ&&(e.ui.dialog.maxZ=r.zIndex),this.overlay&&(e.ui.dialog.maxZ+=1,e.ui.dialog.overlay.maxZ=e.ui.dialog.maxZ,this.overlay.$el.css("z-index",e.ui.dialog.overlay.maxZ)),i={scrollTop:this.element.scrollTop(),scrollLeft:this.element.scrollLeft()},e.ui.dialog.maxZ+=1,this.uiDialog.css("z-index",e.ui.dialog.maxZ),this.element.attr(i),this._trigger("focus",n),this)},open:function(){if(this._isOpen)return;var t,n=this.options,r=this.uiDialog;return this._size(),this._position(n.position),r.show(n.show),this.overlay=n.modal?new e.ui.dialog.overlay(this):null,this.moveToTop(!0),t=this.element.find(":tabbable"),t.length||(t=this.uiDialogButtonPane.find(":tabbable"),t.length||(t=r)),t.eq(0).focus(),this._isOpen=!0,this._trigger("open"),this},_createButtons:function(t){var n=this,r=!1;this.uiDialogButtonPane.remove(),this.uiButtonSet.empty(),typeof t=="object"&&t!==null&&e.each(t,function(){return!(r=!0)}),r?(e.each(t,function(t,r){r=e.isFunction(r)?{click:r,text:t}:r;var i=e("<button type='button'></button>").attr(r,!0).unbind("click").click(function(){r.click.apply(n.element[0],arguments)}).appendTo(n.uiButtonSet);e.fn.button&&i.button()}),this.uiDialog.addClass("ui-dialog-buttons"),this.uiDialogButtonPane.appendTo(this.uiDialog)):this.uiDialog.removeClass("ui-dialog-buttons")},_makeDraggable:function(){function r(e){return{position:e.position,offset:e.offset}}var t=this,n=this.options;this.uiDialog.draggable({cancel:".ui-dialog-content, .ui-dialog-titlebar-close",handle:".ui-dialog-titlebar",containment:"document",start:function(n,i){e(this).addClass("ui-dialog-dragging"),t._trigger("dragStart",n,r(i))},drag:function(e,n){t._trigger("drag",e,r(n))},stop:function(i,s){n.position=[s.position.left-t.document.scrollLeft(),s.position.top-t.document.scrollTop()],e(this).removeClass("ui-dialog-dragging"),t._trigger("dragStop",i,r(s)),e.ui.dialog.overlay.resize()}})},_makeResizable:function(n){function u(e){return{originalPosition:e.originalPosition,originalSize:e.originalSize,position:e.position,size:e.size}}n=n===t?this.options.resizable:n;var r=this,i=this.options,s=this.uiDialog.css("position"),o=typeof n=="string"?n:"n,e,s,w,se,sw,ne,nw";this.uiDialog.resizable({cancel:".ui-dialog-content",containment:"document",alsoResize:this.element,maxWidth:i.maxWidth,maxHeight:i.maxHeight,minWidth:i.minWidth,minHeight:this._minHeight(),handles:o,start:function(t,n){e(this).addClass("ui-dialog-resizing"),r._trigger("resizeStart",t,u(n))},resize:function(e,t){r._trigger("resize",e,u(t))},stop:function(t,n){e(this).removeClass("ui-dialog-resizing"),i.height=e(this).height(),i.width=e(this).width(),r._trigger("resizeStop",t,u(n)),e.ui.dialog.overlay.resize()}}).css("position",s).find(".ui-resizable-se").addClass("ui-icon ui-icon-grip-diagonal-se")},_minHeight:function(){var e=this.options;return e.height==="auto"?e.minHeight:Math.min(e.minHeight,e.height)},_position:function(t){var n=[],r=[0,0],i;if(t){if(typeof t=="string"||typeof t=="object"&&"0"in t)n=t.split?t.split(" "):[t[0],t[1]],n.length===1&&(n[1]=n[0]),e.each(["left","top"],function(e,t){+n[e]===n[e]&&(r[e]=n[e],n[e]=t)}),t={my:n[0]+(r[0]<0?r[0]:"+"+r[0])+" "+n[1]+(r[1]<0?r[1]:"+"+r[1]),at:n.join(" ")};t=e.extend({},e.ui.dialog.prototype.options.position,t)}else t=e.ui.dialog.prototype.options.position;i=this.uiDialog.is(":visible"),i||this.uiDialog.show(),this.uiDialog.position(t),i||this.uiDialog.hide()},_setOptions:function(t){var n=this,s={},o=!1;e.each(t,function(e,t){n._setOption(e,t),e in r&&(o=!0),e in i&&(s[e]=t)}),o&&this._size(),this.uiDialog.is(":data(resizable)")&&this.uiDialog.resizable("option",s)},_setOption:function(t,r){var i,s,o=this.uiDialog;switch(t){case"buttons":this._createButtons(r);break;case"closeText":this.uiDialogTitlebarCloseText.text(""+r);break;case"dialogClass":o.removeClass(this.options.dialogClass).addClass(n+r);break;case"disabled":r?o.addClass("ui-dialog-disabled"):o.removeClass("ui-dialog-disabled");break;case"draggable":i=o.is(":data(draggable)"),i&&!r&&o.draggable("destroy"),!i&&r&&this._makeDraggable();break;case"position":this._position(r);break;case"resizable":s=o.is(":data(resizable)"),s&&!r&&o.resizable("destroy"),s&&typeof r=="string"&&o.resizable("option","handles",r),!s&&r!==!1&&this._makeResizable(r);break;case"title":e(".ui-dialog-title",this.uiDialogTitlebar).html(""+(r||" "))}this._super(t,r)},_size:function(){var t,n,r,i=this.options,s=this.uiDialog.is(":visible");this.element.show().css({width:"auto",minHeight:0,height:0}),i.minWidth>i.width&&(i.width=i.minWidth),t=this.uiDialog.css({height:"auto",width:i.width}).outerHeight(),n=Math.max(0,i.minHeight-t),i.height==="auto"?e.support.minHeight?this.element.css({minHeight:n,height:"auto"}):(this.uiDialog.show(),r=this.element.css("height","auto").height(),s||this.uiDialog.hide(),this.element.height(Math.max(r,n))):this.element.height(Math.max(i.height-t,0)),this.uiDialog.is(":data(resizable)")&&this.uiDialog.resizable("option","minHeight",this._minHeight())}}),e.extend(e.ui.dialog,{uuid:0,maxZ:0,getTitleId:function(e){var t=e.attr("id");return t||(this.uuid+=1,t=this.uuid),"ui-dialog-title-"+t},overlay:function(t){this.$el=e.ui.dialog.overlay.create(t)}}),e.extend(e.ui.dialog.overlay,{instances:[],oldInstances:[],maxZ:0,events:e.map("focus,mousedown,mouseup,keydown,keypress,click".split(","),function(e){return e+".dialog-overlay"}).join(" "),create:function(t){this.instances.length===0&&(setTimeout(function(){e.ui.dialog.overlay.instances.length&&e(document).bind(e.ui.dialog.overlay.events,function(t){if(e(t.target).zIndex()<e.ui.dialog.overlay.maxZ)return!1})},1),e(window).bind("resize.dialog-overlay",e.ui.dialog.overlay.resize));var n=this.oldInstances.pop()||e("<div>").addClass("ui-widget-overlay");return e(document).bind("keydown.dialog-overlay",function(r){var i=e.ui.dialog.overlay.instances;i.length!==0&&i[i.length-1]===n&&t.options.closeOnEscape&&!r.isDefaultPrevented()&&r.keyCode&&r.keyCode===e.ui.keyCode.ESCAPE&&(t.close(r),r.preventDefault())}),n.appendTo(document.body).css({width:this.width(),height:this.height()}),e.fn.bgiframe&&n.bgiframe(),this.instances.push(n),n},destroy:function(t){var n=e.inArray(t,this.instances),r=0;n!==-1&&this.oldInstances.push(this.instances.splice(n,1)[0]),this.instances.length===0&&e([document,window]).unbind(".dialog-overlay"),t.height(0).width(0).remove(),e.each(this.instances,function(){r=Math.max(r,this.css("z-index"))}),this.maxZ=r},height:function(){var t,n;return e.ui.ie?(t=Math.max(document.documentElement.scrollHeight,document.body.scrollHeight),n=Math.max(document.documentElement.offsetHeight,document.body.offsetHeight),t<n?e(window).height()+"px":t+"px"):e(document).height()+"px"},width:function(){var t,n;return e.ui.ie?(t=Math.max(document.documentElement.scrollWidth,document.body.scrollWidth),n=Math.max(document.documentElement.offsetWidth,document.body.offsetWidth),t<n?e(window).width()+"px":t+"px"):e(document).width()+"px"},resize:function(){var t=e([]);e.each(e.ui.dialog.overlay.instances,function(){t=t.add(this)}),t.css({width:0,height:0}).css({width:e.ui.dialog.overlay.width(),height:e.ui.dialog.overlay.height()})}}),e.extend(e.ui.dialog.overlay.prototype,{destroy:function(){e.ui.dialog.overlay.destroy(this.$el)}})})(jQuery);(function(e,t){var n=!1;e.widget("ui.menu",{version:"1.9.1",defaultElement:"<ul>",delay:300,options:{icons:{submenu:"ui-icon-carat-1-e"},menus:"ul",position:{my:"left top",at:"right top"},role:"menu",blur:null,focus:null,select:null},_create:function(){this.activeMenu=this.element,this.element.uniqueId().addClass("ui-menu ui-widget ui-widget-content ui-corner-all").toggleClass("ui-menu-icons",!!this.element.find(".ui-icon").length).attr({role:this.options.role,tabIndex:0}).bind("click"+this.eventNamespace,e.proxy(function(e){this.options.disabled&&e.preventDefault()},this)),this.options.disabled&&this.element.addClass("ui-state-disabled").attr("aria-disabled","true"),this._on({"mousedown .ui-menu-item > a":function(e){e.preventDefault()},"click .ui-state-disabled > a":function(e){e.preventDefault()},"click .ui-menu-item:has(a)":function(t){var r=e(t.target).closest(".ui-menu-item");!n&&r.not(".ui-state-disabled").length&&(n=!0,this.select(t),r.has(".ui-menu").length?this.expand(t):this.element.is(":focus")||(this.element.trigger("focus",[!0]),this.active&&this.active.parents(".ui-menu").length===1&&clearTimeout(this.timer)))},"mouseenter .ui-menu-item":function(t){var n=e(t.currentTarget);n.siblings().children(".ui-state-active").removeClass("ui-state-active"),this.focus(t,n)},mouseleave:"collapseAll","mouseleave .ui-menu":"collapseAll",focus:function(e,t){var n=this.active||this.element.children(".ui-menu-item").eq(0);t||this.focus(e,n)},blur:function(t){this._delay(function(){e.contains(this.element[0],this.document[0].activeElement)||this.collapseAll(t)})},keydown:"_keydown"}),this.refresh(),this._on(this.document,{click:function(t){e(t.target).closest(".ui-menu").length||this.collapseAll(t),n=!1}})},_destroy:function(){this.element.removeAttr("aria-activedescendant").find(".ui-menu").andSelf().removeClass("ui-menu ui-widget ui-widget-content ui-corner-all ui-menu-icons").removeAttr("role").removeAttr("tabIndex").removeAttr("aria-labelledby").removeAttr("aria-expanded").removeAttr("aria-hidden").removeAttr("aria-disabled").removeUniqueId().show(),this.element.find(".ui-menu-item").removeClass("ui-menu-item").removeAttr("role").removeAttr("aria-disabled").children("a").removeUniqueId().removeClass("ui-corner-all ui-state-hover").removeAttr("tabIndex").removeAttr("role").removeAttr("aria-haspopup").children().each(function(){var t=e(this);t.data("ui-menu-submenu-carat")&&t.remove()}),this.element.find(".ui-menu-divider").removeClass("ui-menu-divider ui-widget-content")},_keydown:function(t){function a(e){return e.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g,"\\$&")}var n,r,i,s,o,u=!0;switch(t.keyCode){case e.ui.keyCode.PAGE_UP:this.previousPage(t);break;case e.ui.keyCode.PAGE_DOWN:this.nextPage(t);break;case e.ui.keyCode.HOME:this._move("first","first",t);break;case e.ui.keyCode.END:this._move("last","last",t);break;case e.ui.keyCode.UP:this.previous(t);break;case e.ui.keyCode.DOWN:this.next(t);break;case e.ui.keyCode.LEFT:this.collapse(t);break;case e.ui.keyCode.RIGHT:this.active&&!this.active.is(".ui-state-disabled")&&this.expand(t);break;case e.ui.keyCode.ENTER:case e.ui.keyCode.SPACE:this._activate(t);break;case e.ui.keyCode.ESCAPE:this.collapse(t);break;default:u=!1,r=this.previousFilter||"",i=String.fromCharCode(t.keyCode),s=!1,clearTimeout(this.filterTimer),i===r?s=!0:i=r+i,o=new RegExp("^"+a(i),"i"),n=this.activeMenu.children(".ui-menu-item").filter(function(){return o.test(e(this).children("a").text())}),n=s&&n.index(this.active.next())!==-1?this.active.nextAll(".ui-menu-item"):n,n.length||(i=String.fromCharCode(t.keyCode),o=new RegExp("^"+a(i),"i"),n=this.activeMenu.children(".ui-menu-item").filter(function(){return o.test(e(this).children("a").text())})),n.length?(this.focus(t,n),n.length>1?(this.previousFilter=i,this.filterTimer=this._delay(function(){delete this.previousFilter},1e3)):delete this.previousFilter):delete this.previousFilter}u&&t.preventDefault()},_activate:function(e){this.active.is(".ui-state-disabled")||(this.active.children("a[aria-haspopup='true']").length?this.expand(e):this.select(e))},refresh:function(){var t,n=this.options.icons.submenu,r=this.element.find(this.options.menus+":not(.ui-menu)").addClass("ui-menu ui-widget ui-widget-content ui-corner-all").hide().attr({role:this.options.role,"aria-hidden":"true","aria-expanded":"false"});t=r.add(this.element),t.children(":not(.ui-menu-item):has(a)").addClass("ui-menu-item").attr("role","presentation").children("a").uniqueId().addClass("ui-corner-all").attr({tabIndex:-1,role:this._itemRole()}),t.children(":not(.ui-menu-item)").each(function(){var t=e(this);/[^\-—–\s]/.test(t.text())||t.addClass("ui-widget-content ui-menu-divider")}),t.children(".ui-state-disabled").attr("aria-disabled","true"),r.each(function(){var t=e(this),r=t.prev("a"),i=e("<span>").addClass("ui-menu-icon ui-icon "+n).data("ui-menu-submenu-carat",!0);r.attr("aria-haspopup","true").prepend(i),t.attr("aria-labelledby",r.attr("id"))}),this.active&&!e.contains(this.element[0],this.active[0])&&this.blur()},_itemRole:function(){return{menu:"menuitem",listbox:"option"}[this.options.role]},focus:function(e,t){var n,r;this.blur(e,e&&e.type==="focus"),this._scrollIntoView(t),this.active=t.first(),r=this.active.children("a").addClass("ui-state-focus"),this.options.role&&this.element.attr("aria-activedescendant",r.attr("id")),this.active.parent().closest(".ui-menu-item").children("a:first").addClass("ui-state-active"),e&&e.type==="keydown"?this._close():this.timer=this._delay(function(){this._close()},this.delay),n=t.children(".ui-menu"),n.length&&/^mouse/.test(e.type)&&this._startOpening(n),this.activeMenu=t.parent(),this._trigger("focus",e,{item:t})},_scrollIntoView:function(t){var n,r,i,s,o,u;this._hasScroll()&&(n=parseFloat(e.css(this.activeMenu[0],"borderTopWidth"))||0,r=parseFloat(e.css(this.activeMenu[0],"paddingTop"))||0,i=t.offset().top-this.activeMenu.offset().top-n-r,s=this.activeMenu.scrollTop(),o=this.activeMenu.height(),u=t.height(),i<0?this.activeMenu.scrollTop(s+i):i+u>o&&this.activeMenu.scrollTop(s+i-o+u))},blur:function(e,t){t||clearTimeout(this.timer);if(!this.active)return;this.active.children("a").removeClass("ui-state-focus"),this.active=null,this._trigger("blur",e,{item:this.active})},_startOpening:function(e){clearTimeout(this.timer);if(e.attr("aria-hidden")!=="true")return;this.timer=this._delay(function(){this._close(),this._open(e)},this.delay)},_open:function(t){var n=e.extend({of:this.active},this.options.position);clearTimeout(this.timer),this.element.find(".ui-menu").not(t.parents(".ui-menu")).hide().attr("aria-hidden","true"),t.show().removeAttr("aria-hidden").attr("aria-expanded","true").position(n)},collapseAll:function(t,n){clearTimeout(this.timer),this.timer=this._delay(function(){var r=n?this.element:e(t&&t.target).closest(this.element.find(".ui-menu"));r.length||(r=this.element),this._close(r),this.blur(t),this.activeMenu=r},this.delay)},_close:function(e){e||(e=this.active?this.active.parent():this.element),e.find(".ui-menu").hide().attr("aria-hidden","true").attr("aria-expanded","false").end().find("a.ui-state-active").removeClass("ui-state-active")},collapse:function(e){var t=this.active&&this.active.parent().closest(".ui-menu-item",this.element);t&&t.length&&(this._close(),this.focus(e,t))},expand:function(e){var t=this.active&&this.active.children(".ui-menu ").children(".ui-menu-item").first();t&&t.length&&(this._open(t.parent()),this._delay(function(){this.focus(e,t)}))},next:function(e){this._move("next","first",e)},previous:function(e){this._move("prev","last",e)},isFirstItem:function(){return this.active&&!this.active.prevAll(".ui-menu-item").length},isLastItem:function(){return this.active&&!this.active.nextAll(".ui-menu-item").length},_move:function(e,t,n){var r;this.active&&(e==="first"||e==="last"?r=this.active[e==="first"?"prevAll":"nextAll"](".ui-menu-item").eq(-1):r=this.active[e+"All"](".ui-menu-item").eq(0));if(!r||!r.length||!this.active)r=this.activeMenu.children(".ui-menu-item")[t]();this.focus(n,r)},nextPage:function(t){var n,r,i;if(!this.active){this.next(t);return}if(this.isLastItem())return;this._hasScroll()?(r=this.active.offset().top,i=this.element.height(),this.active.nextAll(".ui-menu-item").each(function(){return n=e(this),n.offset().top-r-i<0}),this.focus(t,n)):this.focus(t,this.activeMenu.children(".ui-menu-item")[this.active?"last":"first"]())},previousPage:function(t){var n,r,i;if(!this.active){this.next(t);return}if(this.isFirstItem())return;this._hasScroll()?(r=this.active.offset().top,i=this.element.height(),this.active.prevAll(".ui-menu-item").each(function(){return n=e(this),n.offset().top-r+i>0}),this.focus(t,n)):this.focus(t,this.activeMenu.children(".ui-menu-item").first())},_hasScroll:function(){return this.element.outerHeight()<this.element.prop("scrollHeight")},select:function(t){this.active=this.active||e(t.target).closest(".ui-menu-item");var n={item:this.active};this.active.has(".ui-menu").length||this.collapseAll(t,!0),this._trigger("select",t,n)}})})(jQuery);(function(e,t){var n=5;e.widget("ui.slider",e.ui.mouse,{version:"1.9.1",widgetEventPrefix:"slide",options:{animate:!1,distance:0,max:100,min:0,orientation:"horizontal",range:!1,step:1,value:0,values:null},_create:function(){var t,r,i=this.options,s=this.element.find(".ui-slider-handle").addClass("ui-state-default ui-corner-all"),o="<a class='ui-slider-handle ui-state-default ui-corner-all' href='#'></a>",u=[];this._keySliding=!1,this._mouseSliding=!1,this._animateOff=!0,this._handleIndex=null,this._detectOrientation(),this._mouseInit(),this.element.addClass("ui-slider ui-slider-"+this.orientation+" ui-widget"+" ui-widget-content"+" ui-corner-all"+(i.disabled?" ui-slider-disabled ui-disabled":"")),this.range=e([]),i.range&&(i.range===!0&&(i.values||(i.values=[this._valueMin(),this._valueMin()]),i.values.length&&i.values.length!==2&&(i.values=[i.values[0],i.values[0]])),this.range=e("<div></div>").appendTo(this.element).addClass("ui-slider-range ui-widget-header"+(i.range==="min"||i.range==="max"?" ui-slider-range-"+i.range:""))),r=i.values&&i.values.length||1;for(t=s.length;t<r;t++)u.push(o);this.handles=s.add(e(u.join("")).appendTo(this.element)),this.handle=this.handles.eq(0),this.handles.add(this.range).filter("a").click(function(e){e.preventDefault()}).mouseenter(function(){i.disabled||e(this).addClass("ui-state-hover")}).mouseleave(function(){e(this).removeClass("ui-state-hover")}).focus(function(){i.disabled?e(this).blur():(e(".ui-slider .ui-state-focus").removeClass("ui-state-focus"),e(this).addClass("ui-state-focus"))}).blur(function(){e(this).removeClass("ui-state-focus")}),this.handles.each(function(t){e(this).data("ui-slider-handle-index",t)}),this._on(this.handles,{keydown:function(t){var r,i,s,o,u=e(t.target).data("ui-slider-handle-index");switch(t.keyCode){case e.ui.keyCode.HOME:case e.ui.keyCode.END:case e.ui.keyCode.PAGE_UP:case e.ui.keyCode.PAGE_DOWN:case e.ui.keyCode.UP:case e.ui.keyCode.RIGHT:case e.ui.keyCode.DOWN:case e.ui.keyCode.LEFT:t.preventDefault();if(!this._keySliding){this._keySliding=!0,e(t.target).addClass("ui-state-active"),r=this._start(t,u);if(r===!1)return}}o=this.options.step,this.options.values&&this.options.values.length?i=s=this.values(u):i=s=this.value();switch(t.keyCode){case e.ui.keyCode.HOME:s=this._valueMin();break;case e.ui.keyCode.END:s=this._valueMax();break;case e.ui.keyCode.PAGE_UP:s=this._trimAlignValue(i+(this._valueMax()-this._valueMin())/n);break;case e.ui.keyCode.PAGE_DOWN:s=this._trimAlignValue(i-(this._valueMax()-this._valueMin())/n);break;case e.ui.keyCode.UP:case e.ui.keyCode.RIGHT:if(i===this._valueMax())return;s=this._trimAlignValue(i+o);break;case e.ui.keyCode.DOWN:case e.ui.keyCode.LEFT:if(i===this._valueMin())return;s=this._trimAlignValue(i-o)}this._slide(t,u,s)},keyup:function(t){var n=e(t.target).data("ui-slider-handle-index");this._keySliding&&(this._keySliding=!1,this._stop(t,n),this._change(t,n),e(t.target).removeClass("ui-state-active"))}}),this._refreshValue(),this._animateOff=!1},_destroy:function(){this.handles.remove(),this.range.remove(),this.element.removeClass("ui-slider ui-slider-horizontal ui-slider-vertical ui-slider-disabled ui-widget ui-widget-content ui-corner-all"),this._mouseDestroy()},_mouseCapture:function(t){var n,r,i,s,o,u,a,f,l=this,c=this.options;return c.disabled?!1:(this.elementSize={width:this.element.outerWidth(),height:this.element.outerHeight()},this.elementOffset=this.element.offset(),n={x:t.pageX,y:t.pageY},r=this._normValueFromMouse(n),i=this._valueMax()-this._valueMin()+1,this.handles.each(function(t){var n=Math.abs(r-l.values(t));i>n&&(i=n,s=e(this),o=t)}),c.range===!0&&this.values(1)===c.min&&(o+=1,s=e(this.handles[o])),u=this._start(t,o),u===!1?!1:(this._mouseSliding=!0,this._handleIndex=o,s.addClass("ui-state-active").focus(),a=s.offset(),f=!e(t.target).parents().andSelf().is(".ui-slider-handle"),this._clickOffset=f?{left:0,top:0}:{left:t.pageX-a.left-s.width()/2,top:t.pageY-a.top-s.height()/2-(parseInt(s.css("borderTopWidth"),10)||0)-(parseInt(s.css("borderBottomWidth"),10)||0)+(parseInt(s.css("marginTop"),10)||0)},this.handles.hasClass("ui-state-hover")||this._slide(t,o,r),this._animateOff=!0,!0))},_mouseStart:function(){return!0},_mouseDrag:function(e){var t={x:e.pageX,y:e.pageY},n=this._normValueFromMouse(t);return this._slide(e,this._handleIndex,n),!1},_mouseStop:function(e){return this.handles.removeClass("ui-state-active"),this._mouseSliding=!1,this._stop(e,this._handleIndex),this._change(e,this._handleIndex),this._handleIndex=null,this._clickOffset=null,this._animateOff=!1,!1},_detectOrientation:function(){this.orientation=this.options.orientation==="vertical"?"vertical":"horizontal"},_normValueFromMouse:function(e){var t,n,r,i,s;return this.orientation==="horizontal"?(t=this.elementSize.width,n=e.x-this.elementOffset.left-(this._clickOffset?this._clickOffset.left:0)):(t=this.elementSize.height,n=e.y-this.elementOffset.top-(this._clickOffset?this._clickOffset.top:0)),r=n/t,r>1&&(r=1),r<0&&(r=0),this.orientation==="vertical"&&(r=1-r),i=this._valueMax()-this._valueMin(),s=this._valueMin()+r*i,this._trimAlignValue(s)},_start:function(e,t){var n={handle:this.handles[t],value:this.value()};return this.options.values&&this.options.values.length&&(n.value=this.values(t),n.values=this.values()),this._trigger("start",e,n)},_slide:function(e,t,n){var r,i,s;this.options.values&&this.options.values.length?(r=this.values(t?0:1),this.options.values.length===2&&this.options.range===!0&&(t===0&&n>r||t===1&&n<r)&&(n=r),n!==this.values(t)&&(i=this.values(),i[t]=n,s=this._trigger("slide",e,{handle:this.handles[t],value:n,values:i}),r=this.values(t?0:1),s!==!1&&this.values(t,n,!0))):n!==this.value()&&(s=this._trigger("slide",e,{handle:this.handles[t],value:n}),s!==!1&&this.value(n))},_stop:function(e,t){var n={handle:this.handles[t],value:this.value()};this.options.values&&this.options.values.length&&(n.value=this.values(t),n.values=this.values()),this._trigger("stop",e,n)},_change:function(e,t){if(!this._keySliding&&!this._mouseSliding){var n={handle:this.handles[t],value:this.value()};this.options.values&&this.options.values.length&&(n.value=this.values(t),n.values=this.values()),this._trigger("change",e,n)}},value:function(e){if(arguments.length){this.options.value=this._trimAlignValue(e),this._refreshValue(),this._change(null,0);return}return this._value()},values:function(t,n){var r,i,s;if(arguments.length>1){this.options.values[t]=this._trimAlignValue(n),this._refreshValue(),this._change(null,t);return}if(!arguments.length)return this._values();if(!e.isArray(arguments[0]))return this.options.values&&this.options.values.length?this._values(t):this.value();r=this.options.values,i=arguments[0];for(s=0;s<r.length;s+=1)r[s]=this._trimAlignValue(i[s]),this._change(null,s);this._refreshValue()},_setOption:function(t,n){var r,i=0;e.isArray(this.options.values)&&(i=this.options.values.length),e.Widget.prototype._setOption.apply(this,arguments);switch(t){case"disabled":n?(this.handles.filter(".ui-state-focus").blur(),this.handles.removeClass("ui-state-hover"),this.handles.prop("disabled",!0),this.element.addClass("ui-disabled")):(this.handles.prop("disabled",!1),this.element.removeClass("ui-disabled"));break;case"orientation":this._detectOrientation(),this.element.removeClass("ui-slider-horizontal ui-slider-vertical").addClass("ui-slider-"+this.orientation),this._refreshValue();break;case"value":this._animateOff=!0,this._refreshValue(),this._change(null,0),this._animateOff=!1;break;case"values":this._animateOff=!0,this._refreshValue();for(r=0;r<i;r+=1)this._change(null,r);this._animateOff=!1;break;case"min":case"max":this._animateOff=!0,this._refreshValue(),this._animateOff=!1}},_value:function(){var e=this.options.value;return e=this._trimAlignValue(e),e},_values:function(e){var t,n,r;if(arguments.length)return t=this.options.values[e],t=this._trimAlignValue(t),t;n=this.options.values.slice();for(r=0;r<n.length;r+=1)n[r]=this._trimAlignValue(n[r]);return n},_trimAlignValue:function(e){if(e<=this._valueMin())return this._valueMin();if(e>=this._valueMax())return this._valueMax();var t=this.options.step>0?this.options.step:1,n=(e-this._valueMin())%t,r=e-n;return Math.abs(n)*2>=t&&(r+=n>0?t:-t),parseFloat(r.toFixed(5))},_valueMin:function(){return this.options.min},_valueMax:function(){return this.options.max},_refreshValue:function(){var t,n,r,i,s,o=this.options.range,u=this.options,a=this,f=this._animateOff?!1:u.animate,l={};this.options.values&&this.options.values.length?this.handles.each(function(r){n=(a.values(r)-a._valueMin())/(a._valueMax()-a._valueMin())*100,l[a.orientation==="horizontal"?"left":"bottom"]=n+"%",e(this).stop(1,1)[f?"animate":"css"](l,u.animate),a.options.range===!0&&(a.orientation==="horizontal"?(r===0&&a.range.stop(1,1)[f?"animate":"css"]({left:n+"%"},u.animate),r===1&&a.range[f?"animate":"css"]({width:n-t+"%"},{queue:!1,duration:u.animate})):(r===0&&a.range.stop(1,1)[f?"animate":"css"]({bottom:n+"%"},u.animate),r===1&&a.range[f?"animate":"css"]({height:n-t+"%"},{queue:!1,duration:u.animate}))),t=n}):(r=this.value(),i=this._valueMin(),s=this._valueMax(),n=s!==i?(r-i)/(s-i)*100:0,l[this.orientation==="horizontal"?"left":"bottom"]=n+"%",this.handle.stop(1,1)[f?"animate":"css"](l,u.animate),o==="min"&&this.orientation==="horizontal"&&this.range.stop(1,1)[f?"animate":"css"]({width:n+"%"},u.animate),o==="max"&&this.orientation==="horizontal"&&this.range[f?"animate":"css"]({width:100-n+"%"},{queue:!1,duration:u.animate}),o==="min"&&this.orientation==="vertical"&&this.range.stop(1,1)[f?"animate":"css"]({height:n+"%"},u.animate),o==="max"&&this.orientation==="vertical"&&this.range[f?"animate":"css"]({height:100-n+"%"},{queue:!1,duration:u.animate}))}})})(jQuery);(function(e,t){function i(){return++n}function s(e){return e.hash.length>1&&e.href.replace(r,"")===location.href.replace(r,"")}var n=0,r=/#.*$/;e.widget("ui.tabs",{version:"1.9.1",delay:300,options:{active:null,collapsible:!1,event:"click",heightStyle:"content",hide:null,show:null,activate:null,beforeActivate:null,beforeLoad:null,load:null},_create:function(){var t=this,n=this.options,r=n.active,i=location.hash.substring(1);this.running=!1,this.element.addClass("ui-tabs ui-widget ui-widget-content ui-corner-all").toggleClass("ui-tabs-collapsible",n.collapsible).delegate(".ui-tabs-nav > li","mousedown"+this.eventNamespace,function(t){e(this).is(".ui-state-disabled")&&t.preventDefault()}).delegate(".ui-tabs-anchor","focus"+this.eventNamespace,function(){e(this).closest("li").is(".ui-state-disabled")&&this.blur()}),this._processTabs();if(r===null){i&&this.tabs.each(function(t,n){if(e(n).attr("aria-controls")===i)return r=t,!1}),r===null&&(r=this.tabs.index(this.tabs.filter(".ui-tabs-active")));if(r===null||r===-1)r=this.tabs.length?0:!1}r!==!1&&(r=this.tabs.index(this.tabs.eq(r)),r===-1&&(r=n.collapsible?!1:0)),n.active=r,!n.collapsible&&n.active===!1&&this.anchors.length&&(n.active=0),e.isArray(n.disabled)&&(n.disabled=e.unique(n.disabled.concat(e.map(this.tabs.filter(".ui-state-disabled"),function(e){return t.tabs.index(e)}))).sort()),this.options.active!==!1&&this.anchors.length?this.active=this._findActive(this.options.active):this.active=e(),this._refresh(),this.active.length&&this.load(n.active)},_getCreateEventData:function(){return{tab:this.active,panel:this.active.length?this._getPanelForTab(this.active):e()}},_tabKeydown:function(t){var n=e(this.document[0].activeElement).closest("li"),r=this.tabs.index(n),i=!0;if(this._handlePageNav(t))return;switch(t.keyCode){case e.ui.keyCode.RIGHT:case e.ui.keyCode.DOWN:r++;break;case e.ui.keyCode.UP:case e.ui.keyCode.LEFT:i=!1,r--;break;case e.ui.keyCode.END:r=this.anchors.length-1;break;case e.ui.keyCode.HOME:r=0;break;case e.ui.keyCode.SPACE:t.preventDefault(),clearTimeout(this.activating),this._activate(r);return;case e.ui.keyCode.ENTER:t.preventDefault(),clearTimeout(this.activating),this._activate(r===this.options.active?!1:r);return;default:return}t.preventDefault(),clearTimeout(this.activating),r=this._focusNextTab(r,i),t.ctrlKey||(n.attr("aria-selected","false"),this.tabs.eq(r).attr("aria-selected","true"),this.activating=this._delay(function(){this.option("active",r)},this.delay))},_panelKeydown:function(t){if(this._handlePageNav(t))return;t.ctrlKey&&t.keyCode===e.ui.keyCode.UP&&(t.preventDefault(),this.active.focus())},_handlePageNav:function(t){if(t.altKey&&t.keyCode===e.ui.keyCode.PAGE_UP)return this._activate(this._focusNextTab(this.options.active-1,!1)),!0;if(t.altKey&&t.keyCode===e.ui.keyCode.PAGE_DOWN)return this._activate(this._focusNextTab(this.options.active+1,!0)),!0},_findNextTab:function(t,n){function i(){return t>r&&(t=0),t<0&&(t=r),t}var r=this.tabs.length-1;while(e.inArray(i(),this.options.disabled)!==-1)t=n?t+1:t-1;return t},_focusNextTab:function(e,t){return e=this._findNextTab(e,t),this.tabs.eq(e).focus(),e},_setOption:function(e,t){if(e==="active"){this._activate(t);return}if(e==="disabled"){this._setupDisabled(t);return}this._super(e,t),e==="collapsible"&&(this.element.toggleClass("ui-tabs-collapsible",t),!t&&this.options.active===!1&&this._activate(0)),e==="event"&&this._setupEvents(t),e==="heightStyle"&&this._setupHeightStyle(t)},_tabId:function(e){return e.attr("aria-controls")||"ui-tabs-"+i()},_sanitizeSelector:function(e){return e?e.replace(/[!"$%&'()*+,.\/:;<=>?@\[\]\^`{|}~]/g,"\\$&"):""},refresh:function(){var t=this.options,n=this.tablist.children(":has(a[href])");t.disabled=e.map(n.filter(".ui-state-disabled"),function(e){return n.index(e)}),this._processTabs(),t.active===!1||!this.anchors.length?(t.active=!1,this.active=e()):this.active.length&&!e.contains(this.tablist[0],this.active[0])?this.tabs.length===t.disabled.length?(t.active=!1,this.active=e()):this._activate(this._findNextTab(Math.max(0,t.active-1),!1)):t.active=this.tabs.index(this.active),this._refresh()},_refresh:function(){this._setupDisabled(this.options.disabled),this._setupEvents(this.options.event),this._setupHeightStyle(this.options.heightStyle),this.tabs.not(this.active).attr({"aria-selected":"false",tabIndex:-1}),this.panels.not(this._getPanelForTab(this.active)).hide().attr({"aria-expanded":"false","aria-hidden":"true"}),this.active.length?(this.active.addClass("ui-tabs-active ui-state-active").attr({"aria-selected":"true",tabIndex:0}),this._getPanelForTab(this.active).show().attr({"aria-expanded":"true","aria-hidden":"false"})):this.tabs.eq(0).attr("tabIndex",0)},_processTabs:function(){var t=this;this.tablist=this._getList().addClass("ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all").attr("role","tablist"),this.tabs=this.tablist.find("> li:has(a[href])").addClass("ui-state-default ui-corner-top").attr({role:"tab",tabIndex:-1}),this.anchors=this.tabs.map(function(){return e("a",this)[0]}).addClass("ui-tabs-anchor").attr({role:"presentation",tabIndex:-1}),this.panels=e(),this.anchors.each(function(n,r){var i,o,u,a=e(r).uniqueId().attr("id"),f=e(r).closest("li"),l=f.attr("aria-controls");s(r)?(i=r.hash,o=t.element.find(t._sanitizeSelector(i))):(u=t._tabId(f),i="#"+u,o=t.element.find(i),o.length||(o=t._createPanel(u),o.insertAfter(t.panels[n-1]||t.tablist)),o.attr("aria-live","polite")),o.length&&(t.panels=t.panels.add(o)),l&&f.data("ui-tabs-aria-controls",l),f.attr({"aria-controls":i.substring(1),"aria-labelledby":a}),o.attr("aria-labelledby",a)}),this.panels.addClass("ui-tabs-panel ui-widget-content ui-corner-bottom").attr("role","tabpanel")},_getList:function(){return this.element.find("ol,ul").eq(0)},_createPanel:function(t){return e("<div>").attr("id",t).addClass("ui-tabs-panel ui-widget-content ui-corner-bottom").data("ui-tabs-destroy",!0)},_setupDisabled:function(t){e.isArray(t)&&(t.length?t.length===this.anchors.length&&(t=!0):t=!1);for(var n=0,r;r=this.tabs[n];n++)t===!0||e.inArray(n,t)!==-1?e(r).addClass("ui-state-disabled").attr("aria-disabled","true"):e(r).removeClass("ui-state-disabled").removeAttr("aria-disabled");this.options.disabled=t},_setupEvents:function(t){var n={click:function(e){e.preventDefault()}};t&&e.each(t.split(" "),function(e,t){n[t]="_eventHandler"}),this._off(this.anchors.add(this.tabs).add(this.panels)),this._on(this.anchors,n),this._on(this.tabs,{keydown:"_tabKeydown"}),this._on(this.panels,{keydown:"_panelKeydown"}),this._focusable(this.tabs),this._hoverable(this.tabs)},_setupHeightStyle:function(t){var n,r,i=this.element.parent();t==="fill"?(e.support.minHeight||(r=i.css("overflow"),i.css("overflow","hidden")),n=i.height(),this.element.siblings(":visible").each(function(){var t=e(this),r=t.css("position");if(r==="absolute"||r==="fixed")return;n-=t.outerHeight(!0)}),r&&i.css("overflow",r),this.element.children().not(this.panels).each(function(){n-=e(this).outerHeight(!0)}),this.panels.each(function(){e(this).height(Math.max(0,n-e(this).innerHeight()+e(this).height()))}).css("overflow","auto")):t==="auto"&&(n=0,this.panels.each(function(){n=Math.max(n,e(this).height("").height())}).height(n))},_eventHandler:function(t){var n=this.options,r=this.active,i=e(t.currentTarget),s=i.closest("li"),o=s[0]===r[0],u=o&&n.collapsible,a=u?e():this._getPanelForTab(s),f=r.length?this._getPanelForTab(r):e(),l={oldTab:r,oldPanel:f,newTab:u?e():s,newPanel:a};t.preventDefault();if(s.hasClass("ui-state-disabled")||s.hasClass("ui-tabs-loading")||this.running||o&&!n.collapsible||this._trigger("beforeActivate",t,l)===!1)return;n.active=u?!1:this.tabs.index(s),this.active=o?e():s,this.xhr&&this.xhr.abort(),!f.length&&!a.length&&e.error("jQuery UI Tabs: Mismatching fragment identifier."),a.length&&this.load(this.tabs.index(s),t),this._toggle(t,l)},_toggle:function(t,n){function o(){r.running=!1,r._trigger("activate",t,n)}function u(){n.newTab.closest("li").addClass("ui-tabs-active ui-state-active"),i.length&&r.options.show?r._show(i,r.options.show,o):(i.show(),o())}var r=this,i=n.newPanel,s=n.oldPanel;this.running=!0,s.length&&this.options.hide?this._hide(s,this.options.hide,function(){n.oldTab.closest("li").removeClass("ui-tabs-active ui-state-active"),u()}):(n.oldTab.closest("li").removeClass("ui-tabs-active ui-state-active"),s.hide(),u()),s.attr({"aria-expanded":"false","aria-hidden":"true"}),n.oldTab.attr("aria-selected","false"),i.length&&s.length?n.oldTab.attr("tabIndex",-1):i.length&&this.tabs.filter(function(){return e(this).attr("tabIndex")===0}).attr("tabIndex",-1),i.attr({"aria-expanded":"true","aria-hidden":"false"}),n.newTab.attr({"aria-selected":"true",tabIndex:0})},_activate:function(t){var n,r=this._findActive(t);if(r[0]===this.active[0])return;r.length||(r=this.active),n=r.find(".ui-tabs-anchor")[0],this._eventHandler({target:n,currentTarget:n,preventDefault:e.noop})},_findActive:function(t){return t===!1?e():this.tabs.eq(t)},_getIndex:function(e){return typeof e=="string"&&(e=this.anchors.index(this.anchors.filter("[href$='"+e+"']"))),e},_destroy:function(){this.xhr&&this.xhr.abort(),this.element.removeClass("ui-tabs ui-widget ui-widget-content ui-corner-all ui-tabs-collapsible"),this.tablist.removeClass("ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all").removeAttr("role"),this.anchors.removeClass("ui-tabs-anchor").removeAttr("role").removeAttr("tabIndex").removeData("href.tabs").removeData("load.tabs").removeUniqueId(),this.tabs.add(this.panels).each(function(){e.data(this,"ui-tabs-destroy")?e(this).remove():e(this).removeClass("ui-state-default ui-state-active ui-state-disabled ui-corner-top ui-corner-bottom ui-widget-content ui-tabs-active ui-tabs-panel").removeAttr("tabIndex").removeAttr("aria-live").removeAttr("aria-busy").removeAttr("aria-selected").removeAttr("aria-labelledby").removeAttr("aria-hidden").removeAttr("aria-expanded").removeAttr("role")}),this.tabs.each(function(){var t=e(this),n=t.data("ui-tabs-aria-controls");n?t.attr("aria-controls",n):t.removeAttr("aria-controls")}),this.options.heightStyle!=="content"&&this.panels.css("height","")},enable:function(n){var r=this.options.disabled;if(r===!1)return;n===t?r=!1:(n=this._getIndex(n),e.isArray(r)?r=e.map(r,function(e){return e!==n?e:null}):r=e.map(this.tabs,function(e,t){return t!==n?t:null})),this._setupDisabled(r)},disable:function(n){var r=this.options.disabled;if(r===!0)return;if(n===t)r=!0;else{n=this._getIndex(n);if(e.inArray(n,r)!==-1)return;e.isArray(r)?r=e.merge([n],r).sort():r=[n]}this._setupDisabled(r)},load:function(t,n){t=this._getIndex(t);var r=this,i=this.tabs.eq(t),o=i.find(".ui-tabs-anchor"),u=this._getPanelForTab(i),a={tab:i,panel:u};if(s(o[0]))return;this.xhr=e.ajax(this._ajaxSettings(o,n,a)),this.xhr&&this.xhr.statusText!=="canceled"&&(i.addClass("ui-tabs-loading"),u.attr("aria-busy","true"),this.xhr.success(function(e){setTimeout(function(){u.html(e),r._trigger("load",n,a)},1)}).complete(function(e,t){setTimeout(function(){t==="abort"&&r.panels.stop(!1,!0),i.removeClass("ui-tabs-loading"),u.removeAttr("aria-busy"),e===r.xhr&&delete r.xhr},1)}))},_ajaxSettings:function(t,n,r){var i=this;return{url:t.attr("href"),beforeSend:function(t,s){return i._trigger("beforeLoad",n,e.extend({jqXHR:t,ajaxSettings:s},r))}}},_getPanelForTab:function(t){var n=e(t).attr("aria-controls");return this.element.find(this._sanitizeSelector("#"+n))}}),e.uiBackCompat!==!1&&(e.ui.tabs.prototype._ui=function(e,t){return{tab:e,panel:t,index:this.anchors.index(e)}},e.widget("ui.tabs",e.ui.tabs,{url:function(e,t){this.anchors.eq(e).attr("href",t)}}),e.widget("ui.tabs",e.ui.tabs,{options:{ajaxOptions:null,cache:!1},_create:function(){this._super();var t=this;this._on({tabsbeforeload:function(n,r){if(e.data(r.tab[0],"cache.tabs")){n.preventDefault();return}r.jqXHR.success(function(){t.options.cache&&e.data(r.tab[0],"cache.tabs",!0)})}})},_ajaxSettings:function(t,n,r){var i=this.options.ajaxOptions;return e.extend({},i,{error:function(e,t){try{i.error(e,t,r.tab.closest("li").index(),r.tab[0])}catch(n){}}},this._superApply(arguments))},_setOption:function(e,t){e==="cache"&&t===!1&&this.anchors.removeData("cache.tabs"),this._super(e,t)},_destroy:function(){this.anchors.removeData("cache.tabs"),this._super()},url:function(e){this.anchors.eq(e).removeData("cache.tabs"),this._superApply(arguments)}}),e.widget("ui.tabs",e.ui.tabs,{abort:function(){this.xhr&&this.xhr.abort()}}),e.widget("ui.tabs",e.ui.tabs,{options:{spinner:"<em>Loading…</em>"},_create:function(){this._super(),this._on({tabsbeforeload:function(e,t){if(e.target!==this.element[0]||!this.options.spinner)return;var n=t.tab.find("span"),r=n.html();n.html(this.options.spinner),t.jqXHR.complete(function(){n.html(r)})}})}}),e.widget("ui.tabs",e.ui.tabs,{options:{enable:null,disable:null},enable:function(t){var n=this.options,r;if(t&&n.disabled===!0||e.isArray(n.disabled)&&e.inArray(t,n.disabled)!==-1)r=!0;this._superApply(arguments),r&&this._trigger("enable",null,this._ui(this.anchors[t],this.panels[t]))},disable:function(t){var n=this.options,r;if(t&&n.disabled===!1||e.isArray(n.disabled)&&e.inArray(t,n.disabled)===-1)r=!0;this._superApply(arguments),r&&this._trigger("disable",null,this._ui(this.anchors[t],this.panels[t]))}}),e.widget("ui.tabs",e.ui.tabs,{options:{add:null,remove:null,tabTemplate:"<li><a href='#{href}'><span>#{label}</span></a></li>"},add:function(n,r,i){i===t&&(i=this.anchors.length);var s,o,u=this.options,a=e(u.tabTemplate.replace(/#\{href\}/g,n).replace(/#\{label\}/g,r)),f=n.indexOf("#")?this._tabId(a):n.replace("#","");return a.addClass("ui-state-default ui-corner-top").data("ui-tabs-destroy",!0),a.attr("aria-controls",f),s=i>=this.tabs.length,o=this.element.find("#"+f),o.length||(o=this._createPanel(f),s?i>0?o.insertAfter(this.panels.eq(-1)):o.appendTo(this.element):o.insertBefore(this.panels[i])),o.addClass("ui-tabs-panel ui-widget-content ui-corner-bottom").hide(),s?a.appendTo(this.tablist):a.insertBefore(this.tabs[i]),u.disabled=e.map(u.disabled,function(e){return e>=i?++e:e}),this.refresh(),this.tabs.length===1&&u.active===!1&&this.option("active",0),this._trigger("add",null,this._ui(this.anchors[i],this.panels[i])),this},remove:function(t){t=this._getIndex(t);var n=this.options,r=this.tabs.eq(t).remove(),i=this._getPanelForTab(r).remove();return r.hasClass("ui-tabs-active")&&this.anchors.length>2&&this._activate(t+(t+1<this.anchors.length?1:-1)),n.disabled=e.map(e.grep(n.disabled,function(e){return e!==t}),function(e){return e>=t?--e:e}),this.refresh(),this._trigger("remove",null,this._ui(r.find("a")[0],i[0])),this}}),e.widget("ui.tabs",e.ui.tabs,{length:function(){return this.anchors.length}}),e.widget("ui.tabs",e.ui.tabs,{options:{idPrefix:"ui-tabs-"},_tabId:function(t){var n=t.is("li")?t.find("a[href]"):t;return n=n[0],e(n).closest("li").attr("aria-controls")||n.title&&n.title.replace(/\s/g,"_").replace(/[^\w\u00c0-\uFFFF\-]/g,"")||this.options.idPrefix+i()}}),e.widget("ui.tabs",e.ui.tabs,{options:{panelTemplate:"<div></div>"},_createPanel:function(t){return e(this.options.panelTemplate).attr("id",t).addClass("ui-tabs-panel ui-widget-content ui-corner-bottom").data("ui-tabs-destroy",!0)}}),e.widget("ui.tabs",e.ui.tabs,{_create:function(){var e=this.options;e.active===null&&e.selected!==t&&(e.active=e.selected===-1?!1:e.selected),this._super(),e.selected=e.active,e.selected===!1&&(e.selected=-1)},_setOption:function(e,t){if(e!=="selected")return this._super(e,t);var n=this.options;this._super("active",t===-1?!1:t),n.selected=n.active,n.selected===!1&&(n.selected=-1)},_eventHandler:function(){this._superApply(arguments),this.options.selected=this.options.active,this.options.selected===!1&&(this.options.selected=-1)}}),e.widget("ui.tabs",e.ui.tabs,{options:{show:null,select:null},_create:function(){this._super(),this.options.active!==!1&&this._trigger("show",null,this._ui(this.active.find(".ui-tabs-anchor")[0],this._getPanelForTab(this.active)[0]))},_trigger:function(e,t,n){var r=this._superApply(arguments);return r?(e==="beforeActivate"&&n.newTab.length?r=this._super("select",t,{tab:n.newTab.find(".ui-tabs-anchor")[0],panel:n.newPanel[0],index:n.newTab.closest("li").index()}):e==="activate"&&n.newTab.length&&(r=this._super("show",t,{tab:n.newTab.find(".ui-tabs-anchor")[0],panel:n.newPanel[0],index:n.newTab.closest("li").index()})),r):!1}}),e.widget("ui.tabs",e.ui.tabs,{select:function(e){e=this._getIndex(e);if(e===-1){if(!this.options.collapsible||this.options.selected===-1)return;e=this.options.selected}this.anchors.eq(e).trigger(this.options.event+this.eventNamespace)}}),function(){var t=0;e.widget("ui.tabs",e.ui.tabs,{options:{cookie:null},_create:function(){var e=this.options,t;e.active==null&&e.cookie&&(t=parseInt(this._cookie(),10),t===-1&&(t=!1),e.active=t),this._super()},_cookie:function(n){var r=[this.cookie||(this.cookie=this.options.cookie.name||"ui-tabs-"+ ++t)];return arguments.length&&(r.push(n===!1?-1:n),r.push(this.options.cookie)),e.cookie.apply(null,r)},_refresh:function(){this._super(),this.options.cookie&&this._cookie(this.options.active,this.options.cookie)},_eventHandler:function(){this._superApply(arguments),this.options.cookie&&this._cookie(this.options.active,this.options.cookie)},_destroy:function(){this._super(),this.options.cookie&&this._cookie(null,this.options.cookie)}})}(),e.widget("ui.tabs",e.ui.tabs,{_trigger:function(t,n,r){var i=e.extend({},r);return t==="load"&&(i.panel=i.panel[0],i.tab=i.tab.find(".ui-tabs-anchor")[0]),this._super(t,n,i)}}),e.widget("ui.tabs",e.ui.tabs,{options:{fx:null},_getFx:function(){var t,n,r=this.options.fx;return r&&(e.isArray(r)?(t=r[0],n=r[1]):t=n=r),r?{show:n,hide:t}:null},_toggle:function(e,t){function o(){n.running=!1,n._trigger("activate",e,t)}function u(){t.newTab.closest("li").addClass("ui-tabs-active ui-state-active"),r.length&&s.show?r.animate(s.show,s.show.duration,function(){o()}):(r.show(),o())}var n=this,r=t.newPanel,i=t.oldPanel,s=this._getFx();if(!s)return this._super(e,t);n.running=!0,i.length&&s.hide?i.animate(s.hide,s.hide.duration,function(){t.oldTab.closest("li").removeClass("ui-tabs-active ui-state-active"),u()}):(t.oldTab.closest("li").removeClass("ui-tabs-active ui-state-active"),i.hide(),u())}}))})(jQuery);jQuery.effects||function(e,t){var n=e.uiBackCompat!==!1,r="ui-effects-";e.effects={effect:{}},function(t,n){function p(e,t,n){var r=a[t.type]||{};return e==null?n||!t.def?null:t.def:(e=r.floor?~~e:parseFloat(e),isNaN(e)?t.def:r.mod?(e+r.mod)%r.mod:0>e?0:r.max<e?r.max:e)}function d(e){var n=o(),r=n._rgba=[];return e=e.toLowerCase(),h(s,function(t,i){var s,o=i.re.exec(e),a=o&&i.parse(o),f=i.space||"rgba";if(a)return s=n[f](a),n[u[f].cache]=s[u[f].cache],r=n._rgba=s._rgba,!1}),r.length?(r.join()==="0,0,0,0"&&t.extend(r,c.transparent),n):c[e]}function v(e,t,n){return n=(n+1)%1,n*6<1?e+(t-e)*n*6:n*2<1?t:n*3<2?e+(t-e)*(2/3-n)*6:e}var r="backgroundColor borderBottomColor borderLeftColor borderRightColor borderTopColor color columnRuleColor outlineColor textDecorationColor textEmphasisColor".split(" "),i=/^([\-+])=\s*(\d+\.?\d*)/,s=[{re:/rgba?\(\s*(\d{1,3})\s*,\s*(\d{1,3})\s*,\s*(\d{1,3})\s*(?:,\s*(\d+(?:\.\d+)?)\s*)?\)/,parse:function(e){return[e[1],e[2],e[3],e[4]]}},{re:/rgba?\(\s*(\d+(?:\.\d+)?)\%\s*,\s*(\d+(?:\.\d+)?)\%\s*,\s*(\d+(?:\.\d+)?)\%\s*(?:,\s*(\d+(?:\.\d+)?)\s*)?\)/,parse:function(e){return[e[1]*2.55,e[2]*2.55,e[3]*2.55,e[4]]}},{re:/#([a-f0-9]{2})([a-f0-9]{2})([a-f0-9]{2})/,parse:function(e){return[parseInt(e[1],16),parseInt(e[2],16),parseInt(e[3],16)]}},{re:/#([a-f0-9])([a-f0-9])([a-f0-9])/,parse:function(e){return[parseInt(e[1]+e[1],16),parseInt(e[2]+e[2],16),parseInt(e[3]+e[3],16)]}},{re:/hsla?\(\s*(\d+(?:\.\d+)?)\s*,\s*(\d+(?:\.\d+)?)\%\s*,\s*(\d+(?:\.\d+)?)\%\s*(?:,\s*(\d+(?:\.\d+)?)\s*)?\)/,space:"hsla",parse:function(e){return[e[1],e[2]/100,e[3]/100,e[4]]}}],o=t.Color=function(e,n,r,i){return new t.Color.fn.parse(e,n,r,i)},u={rgba:{props:{red:{idx:0,type:"byte"},green:{idx:1,type:"byte"},blue:{idx:2,type:"byte"}}},hsla:{props:{hue:{idx:0,type:"degrees"},saturation:{idx:1,type:"percent"},lightness:{idx:2,type:"percent"}}}},a={"byte":{floor:!0,max:255},percent:{max:1},degrees:{mod:360,floor:!0}},f=o.support={},l=t("<p>")[0],c,h=t.each;l.style.cssText="background-color:rgba(1,1,1,.5)",f.rgba=l.style.backgroundColor.indexOf("rgba")>-1,h(u,function(e,t){t.cache="_"+e,t.props.alpha={idx:3,type:"percent",def:1}}),o.fn=t.extend(o.prototype,{parse:function(r,i,s,a){if(r===n)return this._rgba=[null,null,null,null],this;if(r.jquery||r.nodeType)r=t(r).css(i),i=n;var f=this,l=t.type(r),v=this._rgba=[];i!==n&&(r=[r,i,s,a],l="array");if(l==="string")return this.parse(d(r)||c._default);if(l==="array")return h(u.rgba.props,function(e,t){v[t.idx]=p(r[t.idx],t)}),this;if(l==="object")return r instanceof o?h(u,function(e,t){r[t.cache]&&(f[t.cache]=r[t.cache].slice())}):h(u,function(t,n){var i=n.cache;h(n.props,function(e,t){if(!f[i]&&n.to){if(e==="alpha"||r[e]==null)return;f[i]=n.to(f._rgba)}f[i][t.idx]=p(r[e],t,!0)}),f[i]&&e.inArray(null,f[i].slice(0,3))<0&&(f[i][3]=1,n.from&&(f._rgba=n.from(f[i])))}),this},is:function(e){var t=o(e),n=!0,r=this;return h(u,function(e,i){var s,o=t[i.cache];return o&&(s=r[i.cache]||i.to&&i.to(r._rgba)||[],h(i.props,function(e,t){if(o[t.idx]!=null)return n=o[t.idx]===s[t.idx],n})),n}),n},_space:function(){var e=[],t=this;return h(u,function(n,r){t[r.cache]&&e.push(n)}),e.pop()},transition:function(e,t){var n=o(e),r=n._space(),i=u[r],s=this.alpha()===0?o("transparent"):this,f=s[i.cache]||i.to(s._rgba),l=f.slice();return n=n[i.cache],h(i.props,function(e,r){var i=r.idx,s=f[i],o=n[i],u=a[r.type]||{};if(o===null)return;s===null?l[i]=o:(u.mod&&(o-s>u.mod/2?s+=u.mod:s-o>u.mod/2&&(s-=u.mod)),l[i]=p((o-s)*t+s,r))}),this[r](l)},blend:function(e){if(this._rgba[3]===1)return this;var n=this._rgba.slice(),r=n.pop(),i=o(e)._rgba;return o(t.map(n,function(e,t){return(1-r)*i[t]+r*e}))},toRgbaString:function(){var e="rgba(",n=t.map(this._rgba,function(e,t){return e==null?t>2?1:0:e});return n[3]===1&&(n.pop(),e="rgb("),e+n.join()+")"},toHslaString:function(){var e="hsla(",n=t.map(this.hsla(),function(e,t){return e==null&&(e=t>2?1:0),t&&t<3&&(e=Math.round(e*100)+"%"),e});return n[3]===1&&(n.pop(),e="hsl("),e+n.join()+")"},toHexString:function(e){var n=this._rgba.slice(),r=n.pop();return e&&n.push(~~(r*255)),"#"+t.map(n,function(e){return e=(e||0).toString(16),e.length===1?"0"+e:e}).join("")},toString:function(){return this._rgba[3]===0?"transparent":this.toRgbaString()}}),o.fn.parse.prototype=o.fn,u.hsla.to=function(e){if(e[0]==null||e[1]==null||e[2]==null)return[null,null,null,e[3]];var t=e[0]/255,n=e[1]/255,r=e[2]/255,i=e[3],s=Math.max(t,n,r),o=Math.min(t,n,r),u=s-o,a=s+o,f=a*.5,l,c;return o===s?l=0:t===s?l=60*(n-r)/u+360:n===s?l=60*(r-t)/u+120:l=60*(t-n)/u+240,f===0||f===1?c=f:f<=.5?c=u/a:c=u/(2-a),[Math.round(l)%360,c,f,i==null?1:i]},u.hsla.from=function(e){if(e[0]==null||e[1]==null||e[2]==null)return[null,null,null,e[3]];var t=e[0]/360,n=e[1],r=e[2],i=e[3],s=r<=.5?r*(1+n):r+n-r*n,o=2*r-s;return[Math.round(v(o,s,t+1/3)*255),Math.round(v(o,s,t)*255),Math.round(v(o,s,t-1/3)*255),i]},h(u,function(e,r){var s=r.props,u=r.cache,a=r.to,f=r.from;o.fn[e]=function(e){a&&!this[u]&&(this[u]=a(this._rgba));if(e===n)return this[u].slice();var r,i=t.type(e),l=i==="array"||i==="object"?e:arguments,c=this[u].slice();return h(s,function(e,t){var n=l[i==="object"?e:t.idx];n==null&&(n=c[t.idx]),c[t.idx]=p(n,t)}),f?(r=o(f(c)),r[u]=c,r):o(c)},h(s,function(n,r){if(o.fn[n])return;o.fn[n]=function(s){var o=t.type(s),u=n==="alpha"?this._hsla?"hsla":"rgba":e,a=this[u](),f=a[r.idx],l;return o==="undefined"?f:(o==="function"&&(s=s.call(this,f),o=t.type(s)),s==null&&r.empty?this:(o==="string"&&(l=i.exec(s),l&&(s=f+parseFloat(l[2])*(l[1]==="+"?1:-1))),a[r.idx]=s,this[u](a)))}})}),h(r,function(e,n){t.cssHooks[n]={set:function(e,r){var i,s,u="";if(t.type(r)!=="string"||(i=d(r))){r=o(i||r);if(!f.rgba&&r._rgba[3]!==1){s=n==="backgroundColor"?e.parentNode:e;while((u===""||u==="transparent")&&s&&s.style)try{u=t.css(s,"backgroundColor"),s=s.parentNode}catch(a){}r=r.blend(u&&u!=="transparent"?u:"_default")}r=r.toRgbaString()}try{e.style[n]=r}catch(l){}}},t.fx.step[n]=function(e){e.colorInit||(e.start=o(e.elem,n),e.end=o(e.end),e.colorInit=!0),t.cssHooks[n].set(e.elem,e.start.transition(e.end,e.pos))}}),t.cssHooks.borderColor={expand:function(e){var t={};return h(["Top","Right","Bottom","Left"],function(n,r){t["border"+r+"Color"]=e}),t}},c=t.Color.names={aqua:"#00ffff",black:"#000000",blue:"#0000ff",fuchsia:"#ff00ff",gray:"#808080",green:"#008000",lime:"#00ff00",maroon:"#800000",navy:"#000080",olive:"#808000",purple:"#800080",red:"#ff0000",silver:"#c0c0c0",teal:"#008080",white:"#ffffff",yellow:"#ffff00",transparent:[null,null,null,0],_default:"#ffffff"}}(jQuery),function(){function i(){var t=this.ownerDocument.defaultView?this.ownerDocument.defaultView.getComputedStyle(this,null):this.currentStyle,n={},r,i;if(t&&t.length&&t[0]&&t[t[0]]){i=t.length;while(i--)r=t[i],typeof t[r]=="string"&&(n[e.camelCase(r)]=t[r])}else for(r in t)typeof t[r]=="string"&&(n[r]=t[r]);return n}function s(t,n){var i={},s,o;for(s in n)o=n[s],t[s]!==o&&!r[s]&&(e.fx.step[s]||!isNaN(parseFloat(o)))&&(i[s]=o);return i}var n=["add","remove","toggle"],r={border:1,borderBottom:1,borderColor:1,borderLeft:1,borderRight:1,borderTop:1,borderWidth:1,margin:1,padding:1};e.each(["borderLeftStyle","borderRightStyle","borderBottomStyle","borderTopStyle"],function(t,n){e.fx.step[n]=function(e){if(e.end!=="none"&&!e.setAttr||e.pos===1&&!e.setAttr)jQuery.style(e.elem,n,e.end),e.setAttr=!0}}),e.effects.animateClass=function(t,r,o,u){var a=e.speed(r,o,u);return this.queue(function(){var r=e(this),o=r.attr("class")||"",u,f=a.children?r.find("*").andSelf():r;f=f.map(function(){var t=e(this);return{el:t,start:i.call(this)}}),u=function(){e.each(n,function(e,n){t[n]&&r[n+"Class"](t[n])})},u(),f=f.map(function(){return this.end=i.call(this.el[0]),this.diff=s(this.start,this.end),this}),r.attr("class",o),f=f.map(function(){var t=this,n=e.Deferred(),r=jQuery.extend({},a,{queue:!1,complete:function(){n.resolve(t)}});return this.el.animate(this.diff,r),n.promise()}),e.when.apply(e,f.get()).done(function(){u(),e.each(arguments,function(){var t=this.el;e.each(this.diff,function(e){t.css(e,"")})}),a.complete.call(r[0])})})},e.fn.extend({_addClass:e.fn.addClass,addClass:function(t,n,r,i){return n?e.effects.animateClass.call(this,{add:t},n,r,i):this._addClass(t)},_removeClass:e.fn.removeClass,removeClass:function(t,n,r,i){return n?e.effects.animateClass.call(this,{remove:t},n,r,i):this._removeClass(t)},_toggleClass:e.fn.toggleClass,toggleClass:function(n,r,i,s,o){return typeof r=="boolean"||r===t?i?e.effects.animateClass.call(this,r?{add:n}:{remove:n},i,s,o):this._toggleClass(n,r):e.effects.animateClass.call(this,{toggle:n},r,i,s)},switchClass:function(t,n,r,i,s){return e.effects.animateClass.call(this,{add:n,remove:t},r,i,s)}})}(),function(){function i(t,n,r,i){e.isPlainObject(t)&&(n=t,t=t.effect),t={effect:t},n==null&&(n={}),e.isFunction(n)&&(i=n,r=null,n={});if(typeof n=="number"||e.fx.speeds[n])i=r,r=n,n={};return e.isFunction(r)&&(i=r,r=null),n&&e.extend(t,n),r=r||n.duration,t.duration=e.fx.off?0:typeof r=="number"?r:r in e.fx.speeds?e.fx.speeds[r]:e.fx.speeds._default,t.complete=i||n.complete,t}function s(t){return!t||typeof t=="number"||e.fx.speeds[t]?!0:typeof t=="string"&&!e.effects.effect[t]?n&&e.effects[t]?!1:!0:!1}e.extend(e.effects,{version:"1.9.1",save:function(e,t){for(var n=0;n<t.length;n++)t[n]!==null&&e.data(r+t[n],e[0].style[t[n]])},restore:function(e,n){var i,s;for(s=0;s<n.length;s++)n[s]!==null&&(i=e.data(r+n[s]),i===t&&(i=""),e.css(n[s],i))},setMode:function(e,t){return t==="toggle"&&(t=e.is(":hidden")?"show":"hide"),t},getBaseline:function(e,t){var n,r;switch(e[0]){case"top":n=0;break;case"middle":n=.5;break;case"bottom":n=1;break;default:n=e[0]/t.height}switch(e[1]){case"left":r=0;break;case"center":r=.5;break;case"right":r=1;break;default:r=e[1]/t.width}return{x:r,y:n}},createWrapper:function(t){if(t.parent().is(".ui-effects-wrapper"))return t.parent();var n={width:t.outerWidth(!0),height:t.outerHeight(!0),"float":t.css("float")},r=e("<div></div>").addClass("ui-effects-wrapper").css({fontSize:"100%",background:"transparent",border:"none",margin:0,padding:0}),i={width:t.width(),height:t.height()},s=document.activeElement;try{s.id}catch(o){s=document.body}return t.wrap(r),(t[0]===s||e.contains(t[0],s))&&e(s).focus(),r=t.parent(),t.css("position")==="static"?(r.css({position:"relative"}),t.css({position:"relative"})):(e.extend(n,{position:t.css("position"),zIndex:t.css("z-index")}),e.each(["top","left","bottom","right"],function(e,r){n[r]=t.css(r),isNaN(parseInt(n[r],10))&&(n[r]="auto")}),t.css({position:"relative",top:0,left:0,right:"auto",bottom:"auto"})),t.css(i),r.css(n).show()},removeWrapper:function(t){var n=document.activeElement;return t.parent().is(".ui-effects-wrapper")&&(t.parent().replaceWith(t),(t[0]===n||e.contains(t[0],n))&&e(n).focus()),t},setTransition:function(t,n,r,i){return i=i||{},e.each(n,function(e,n){var s=t.cssUnit(n);s[0]>0&&(i[n]=s[0]*r+s[1])}),i}}),e.fn.extend({effect:function(){function a(n){function u(){e.isFunction(i)&&i.call(r[0]),e.isFunction(n)&&n()}var r=e(this),i=t.complete,s=t.mode;(r.is(":hidden")?s==="hide":s==="show")?u():o.call(r[0],t,u)}var t=i.apply(this,arguments),r=t.mode,s=t.queue,o=e.effects.effect[t.effect],u=!o&&n&&e.effects[t.effect];return e.fx.off||!o&&!u?r?this[r](t.duration,t.complete):this.each(function(){t.complete&&t.complete.call(this)}):o?s===!1?this.each(a):this.queue(s||"fx",a):u.call(this,{options:t,duration:t.duration,callback:t.complete,mode:t.mode})},_show:e.fn.show,show:function(e){if(s(e))return this._show.apply(this,arguments);var t=i.apply(this,arguments);return t.mode="show",this.effect.call(this,t)},_hide:e.fn.hide,hide:function(e){if(s(e))return this._hide.apply(this,arguments);var t=i.apply(this,arguments);return t.mode="hide",this.effect.call(this,t)},__toggle:e.fn.toggle,toggle:function(t){if(s(t)||typeof t=="boolean"||e.isFunction(t))return this.__toggle.apply(this,arguments);var n=i.apply(this,arguments);return n.mode="toggle",this.effect.call(this,n)},cssUnit:function(t){var n=this.css(t),r=[];return e.each(["em","px","%","pt"],function(e,t){n.indexOf(t)>0&&(r=[parseFloat(n),t])}),r}})}(),function(){var t={};e.each(["Quad","Cubic","Quart","Quint","Expo"],function(e,n){t[n]=function(t){return Math.pow(t,e+2)}}),e.extend(t,{Sine:function(e){return 1-Math.cos(e*Math.PI/2)},Circ:function(e){return 1-Math.sqrt(1-e*e)},Elastic:function(e){return e===0||e===1?e:-Math.pow(2,8*(e-1))*Math.sin(((e-1)*80-7.5)*Math.PI/15)},Back:function(e){return e*e*(3*e-2)},Bounce:function(e){var t,n=4;while(e<((t=Math.pow(2,--n))-1)/11);return 1/Math.pow(4,3-n)-7.5625*Math.pow((t*3-2)/22-e,2)}}),e.each(t,function(t,n){e.easing["easeIn"+t]=n,e.easing["easeOut"+t]=function(e){return 1-n(1-e)},e.easing["easeInOut"+t]=function(e){return e<.5?n(e*2)/2:1-n(e*-2+2)/2}})}()}(jQuery); \ No newline at end of file diff --git a/pub/lib/jquery/jquery-ui.custom.min.js b/pub/lib/jquery/jquery-ui.custom.min.js new file mode 100644 index 0000000000000000000000000000000000000000..f97100ba3f7b3af11c0fbf56945605f7db483831 --- /dev/null +++ b/pub/lib/jquery/jquery-ui.custom.min.js @@ -0,0 +1,6 @@ +/*! jQuery UI - v1.9.2 - 2013-01-08 +* http://jqueryui.com +* Includes: jquery.ui.core.js, jquery.ui.widget.js, jquery.ui.mouse.js, jquery.ui.position.js, jquery.ui.draggable.js, jquery.ui.droppable.js, jquery.ui.resizable.js, jquery.ui.sortable.js, jquery.ui.accordion.js, jquery.ui.autocomplete.js, jquery.ui.button.js, jquery.ui.datepicker.js, jquery.ui.dialog.js, jquery.ui.menu.js, jquery.ui.slider.js, jquery.ui.tabs.js, jquery.ui.effect.js +* Copyright (c) 2013 jQuery Foundation and other contributors Licensed MIT */ + +(function(e,t){function i(t,n){var r,i,o,u=t.nodeName.toLowerCase();return"area"===u?(r=t.parentNode,i=r.name,!t.href||!i||r.nodeName.toLowerCase()!=="map"?!1:(o=e("img[usemap=#"+i+"]")[0],!!o&&s(o))):(/input|select|textarea|button|object/.test(u)?!t.disabled:"a"===u?t.href||n:n)&&s(t)}function s(t){return e.expr.filters.visible(t)&&!e(t).parents().andSelf().filter(function(){return e.css(this,"visibility")==="hidden"}).length}var n=0,r=/^ui-id-\d+$/;e.ui=e.ui||{};if(e.ui.version)return;e.extend(e.ui,{version:"1.9.2",keyCode:{BACKSPACE:8,COMMA:188,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,LEFT:37,NUMPAD_ADD:107,NUMPAD_DECIMAL:110,NUMPAD_DIVIDE:111,NUMPAD_ENTER:108,NUMPAD_MULTIPLY:106,NUMPAD_SUBTRACT:109,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SPACE:32,TAB:9,UP:38}}),e.fn.extend({_focus:e.fn.focus,focus:function(t,n){return typeof t=="number"?this.each(function(){var r=this;setTimeout(function(){e(r).focus(),n&&n.call(r)},t)}):this._focus.apply(this,arguments)},scrollParent:function(){var t;return e.ui.ie&&/(static|relative)/.test(this.css("position"))||/absolute/.test(this.css("position"))?t=this.parents().filter(function(){return/(relative|absolute|fixed)/.test(e.css(this,"position"))&&/(auto|scroll)/.test(e.css(this,"overflow")+e.css(this,"overflow-y")+e.css(this,"overflow-x"))}).eq(0):t=this.parents().filter(function(){return/(auto|scroll)/.test(e.css(this,"overflow")+e.css(this,"overflow-y")+e.css(this,"overflow-x"))}).eq(0),/fixed/.test(this.css("position"))||!t.length?e(document):t},zIndex:function(n){if(n!==t)return this.css("zIndex",n);if(this.length){var r=e(this[0]),i,s;while(r.length&&r[0]!==document){i=r.css("position");if(i==="absolute"||i==="relative"||i==="fixed"){s=parseInt(r.css("zIndex"),10);if(!isNaN(s)&&s!==0)return s}r=r.parent()}}return 0},uniqueId:function(){return this.each(function(){this.id||(this.id="ui-id-"+ ++n)})},removeUniqueId:function(){return this.each(function(){r.test(this.id)&&e(this).removeAttr("id")})}}),e.extend(e.expr[":"],{data:e.expr.createPseudo?e.expr.createPseudo(function(t){return function(n){return!!e.data(n,t)}}):function(t,n,r){return!!e.data(t,r[3])},focusable:function(t){return i(t,!isNaN(e.attr(t,"tabindex")))},tabbable:function(t){var n=e.attr(t,"tabindex"),r=isNaN(n);return(r||n>=0)&&i(t,!r)}}),e(function(){var t=document.body,n=t.appendChild(n=document.createElement("div"));n.offsetHeight,e.extend(n.style,{minHeight:"100px",height:"auto",padding:0,borderWidth:0}),e.support.minHeight=n.offsetHeight===100,e.support.selectstart="onselectstart"in n,t.removeChild(n).style.display="none"}),e("<a>").outerWidth(1).jquery||e.each(["Width","Height"],function(n,r){function u(t,n,r,s){return e.each(i,function(){n-=parseFloat(e.css(t,"padding"+this))||0,r&&(n-=parseFloat(e.css(t,"border"+this+"Width"))||0),s&&(n-=parseFloat(e.css(t,"margin"+this))||0)}),n}var i=r==="Width"?["Left","Right"]:["Top","Bottom"],s=r.toLowerCase(),o={innerWidth:e.fn.innerWidth,innerHeight:e.fn.innerHeight,outerWidth:e.fn.outerWidth,outerHeight:e.fn.outerHeight};e.fn["inner"+r]=function(n){return n===t?o["inner"+r].call(this):this.each(function(){e(this).css(s,u(this,n)+"px")})},e.fn["outer"+r]=function(t,n){return typeof t!="number"?o["outer"+r].call(this,t):this.each(function(){e(this).css(s,u(this,t,!0,n)+"px")})}}),e("<a>").data("a-b","a").removeData("a-b").data("a-b")&&(e.fn.removeData=function(t){return function(n){return arguments.length?t.call(this,e.camelCase(n)):t.call(this)}}(e.fn.removeData)),function(){var t=/msie ([\w.]+)/.exec(navigator.userAgent.toLowerCase())||[];e.ui.ie=t.length?!0:!1,e.ui.ie6=parseFloat(t[1],10)===6}(),e.fn.extend({disableSelection:function(){return this.bind((e.support.selectstart?"selectstart":"mousedown")+".ui-disableSelection",function(e){e.preventDefault()})},enableSelection:function(){return this.unbind(".ui-disableSelection")}}),e.extend(e.ui,{plugin:{add:function(t,n,r){var i,s=e.ui[t].prototype;for(i in r)s.plugins[i]=s.plugins[i]||[],s.plugins[i].push([n,r[i]])},call:function(e,t,n){var r,i=e.plugins[t];if(!i||!e.element[0].parentNode||e.element[0].parentNode.nodeType===11)return;for(r=0;r<i.length;r++)e.options[i[r][0]]&&i[r][1].apply(e.element,n)}},contains:e.contains,hasScroll:function(t,n){if(e(t).css("overflow")==="hidden")return!1;var r=n&&n==="left"?"scrollLeft":"scrollTop",i=!1;return t[r]>0?!0:(t[r]=1,i=t[r]>0,t[r]=0,i)},isOverAxis:function(e,t,n){return e>t&&e<t+n},isOver:function(t,n,r,i,s,o){return e.ui.isOverAxis(t,r,s)&&e.ui.isOverAxis(n,i,o)}})})(jQuery);(function(e,t){var n=0,r=Array.prototype.slice,i=e.cleanData;e.cleanData=function(t){for(var n=0,r;(r=t[n])!=null;n++)try{e(r).triggerHandler("remove")}catch(s){}i(t)},e.widget=function(t,n,r){var i,s,o,u,a=t.split(".")[0];t=t.split(".")[1],i=a+"-"+t,r||(r=n,n=e.Widget),e.expr[":"][i.toLowerCase()]=function(t){return!!e.data(t,i)},e[a]=e[a]||{},s=e[a][t],o=e[a][t]=function(e,t){if(!this._createWidget)return new o(e,t);arguments.length&&this._createWidget(e,t)},e.extend(o,s,{version:r.version,_proto:e.extend({},r),_childConstructors:[]}),u=new n,u.options=e.widget.extend({},u.options),e.each(r,function(t,i){e.isFunction(i)&&(r[t]=function(){var e=function(){return n.prototype[t].apply(this,arguments)},r=function(e){return n.prototype[t].apply(this,e)};return function(){var t=this._super,n=this._superApply,s;return this._super=e,this._superApply=r,s=i.apply(this,arguments),this._super=t,this._superApply=n,s}}())}),o.prototype=e.widget.extend(u,{widgetEventPrefix:s?u.widgetEventPrefix:t},r,{constructor:o,namespace:a,widgetName:t,widgetBaseClass:i,widgetFullName:i}),s?(e.each(s._childConstructors,function(t,n){var r=n.prototype;e.widget(r.namespace+"."+r.widgetName,o,n._proto)}),delete s._childConstructors):n._childConstructors.push(o),e.widget.bridge(t,o)},e.widget.extend=function(n){var i=r.call(arguments,1),s=0,o=i.length,u,a;for(;s<o;s++)for(u in i[s])a=i[s][u],i[s].hasOwnProperty(u)&&a!==t&&(e.isPlainObject(a)?n[u]=e.isPlainObject(n[u])?e.widget.extend({},n[u],a):e.widget.extend({},a):n[u]=a);return n},e.widget.bridge=function(n,i){var s=i.prototype.widgetFullName||n;e.fn[n]=function(o){var u=typeof o=="string",a=r.call(arguments,1),f=this;return o=!u&&a.length?e.widget.extend.apply(null,[o].concat(a)):o,u?this.each(function(){var r,i=e.data(this,s);if(!i)return e.error("cannot call methods on "+n+" prior to initialization; "+"attempted to call method '"+o+"'");if(!e.isFunction(i[o])||o.charAt(0)==="_")return e.error("no such method '"+o+"' for "+n+" widget instance");r=i[o].apply(i,a);if(r!==i&&r!==t)return f=r&&r.jquery?f.pushStack(r.get()):r,!1}):this.each(function(){var t=e.data(this,s);t?t.option(o||{})._init():e.data(this,s,new i(o,this))}),f}},e.Widget=function(){},e.Widget._childConstructors=[],e.Widget.prototype={widgetName:"widget",widgetEventPrefix:"",defaultElement:"<div>",options:{disabled:!1,create:null},_createWidget:function(t,r){r=e(r||this.defaultElement||this)[0],this.element=e(r),this.uuid=n++,this.eventNamespace="."+this.widgetName+this.uuid,this.options=e.widget.extend({},this.options,this._getCreateOptions(),t),this.bindings=e(),this.hoverable=e(),this.focusable=e(),r!==this&&(e.data(r,this.widgetName,this),e.data(r,this.widgetFullName,this),this._on(!0,this.element,{remove:function(e){e.target===r&&this.destroy()}}),this.document=e(r.style?r.ownerDocument:r.document||r),this.window=e(this.document[0].defaultView||this.document[0].parentWindow)),this._create(),this._trigger("create",null,this._getCreateEventData()),this._init()},_getCreateOptions:e.noop,_getCreateEventData:e.noop,_create:e.noop,_init:e.noop,destroy:function(){this._destroy(),this.element.unbind(this.eventNamespace).removeData(this.widgetName).removeData(this.widgetFullName).removeData(e.camelCase(this.widgetFullName)),this.widget().unbind(this.eventNamespace).removeAttr("aria-disabled").removeClass(this.widgetFullName+"-disabled "+"ui-state-disabled"),this.bindings.unbind(this.eventNamespace),this.hoverable.removeClass("ui-state-hover"),this.focusable.removeClass("ui-state-focus")},_destroy:e.noop,widget:function(){return this.element},option:function(n,r){var i=n,s,o,u;if(arguments.length===0)return e.widget.extend({},this.options);if(typeof n=="string"){i={},s=n.split("."),n=s.shift();if(s.length){o=i[n]=e.widget.extend({},this.options[n]);for(u=0;u<s.length-1;u++)o[s[u]]=o[s[u]]||{},o=o[s[u]];n=s.pop();if(r===t)return o[n]===t?null:o[n];o[n]=r}else{if(r===t)return this.options[n]===t?null:this.options[n];i[n]=r}}return this._setOptions(i),this},_setOptions:function(e){var t;for(t in e)this._setOption(t,e[t]);return this},_setOption:function(e,t){return this.options[e]=t,e==="disabled"&&(this.widget().toggleClass(this.widgetFullName+"-disabled ui-state-disabled",!!t).attr("aria-disabled",t),this.hoverable.removeClass("ui-state-hover"),this.focusable.removeClass("ui-state-focus")),this},enable:function(){return this._setOption("disabled",!1)},disable:function(){return this._setOption("disabled",!0)},_on:function(t,n,r){var i,s=this;typeof t!="boolean"&&(r=n,n=t,t=!1),r?(n=i=e(n),this.bindings=this.bindings.add(n)):(r=n,n=this.element,i=this.widget()),e.each(r,function(r,o){function u(){if(!t&&(s.options.disabled===!0||e(this).hasClass("ui-state-disabled")))return;return(typeof o=="string"?s[o]:o).apply(s,arguments)}typeof o!="string"&&(u.guid=o.guid=o.guid||u.guid||e.guid++);var a=r.match(/^(\w+)\s*(.*)$/),f=a[1]+s.eventNamespace,l=a[2];l?i.delegate(l,f,u):n.bind(f,u)})},_off:function(e,t){t=(t||"").split(" ").join(this.eventNamespace+" ")+this.eventNamespace,e.unbind(t).undelegate(t)},_delay:function(e,t){function n(){return(typeof e=="string"?r[e]:e).apply(r,arguments)}var r=this;return setTimeout(n,t||0)},_hoverable:function(t){this.hoverable=this.hoverable.add(t),this._on(t,{mouseenter:function(t){e(t.currentTarget).addClass("ui-state-hover")},mouseleave:function(t){e(t.currentTarget).removeClass("ui-state-hover")}})},_focusable:function(t){this.focusable=this.focusable.add(t),this._on(t,{focusin:function(t){e(t.currentTarget).addClass("ui-state-focus")},focusout:function(t){e(t.currentTarget).removeClass("ui-state-focus")}})},_trigger:function(t,n,r){var i,s,o=this.options[t];r=r||{},n=e.Event(n),n.type=(t===this.widgetEventPrefix?t:this.widgetEventPrefix+t).toLowerCase(),n.target=this.element[0],s=n.originalEvent;if(s)for(i in s)i in n||(n[i]=s[i]);return this.element.trigger(n,r),!(e.isFunction(o)&&o.apply(this.element[0],[n].concat(r))===!1||n.isDefaultPrevented())}},e.each({show:"fadeIn",hide:"fadeOut"},function(t,n){e.Widget.prototype["_"+t]=function(r,i,s){typeof i=="string"&&(i={effect:i});var o,u=i?i===!0||typeof i=="number"?n:i.effect||n:t;i=i||{},typeof i=="number"&&(i={duration:i}),o=!e.isEmptyObject(i),i.complete=s,i.delay&&r.delay(i.delay),o&&e.effects&&(e.effects.effect[u]||e.uiBackCompat!==!1&&e.effects[u])?r[t](i):u!==t&&r[u]?r[u](i.duration,i.easing,s):r.queue(function(n){e(this)[t](),s&&s.call(r[0]),n()})}}),e.uiBackCompat!==!1&&(e.Widget.prototype._getCreateOptions=function(){return e.metadata&&e.metadata.get(this.element[0])[this.widgetName]})})(jQuery);(function(e,t){var n=!1;e(document).mouseup(function(e){n=!1}),e.widget("ui.mouse",{version:"1.9.2",options:{cancel:"input,textarea,button,select,option",distance:1,delay:0},_mouseInit:function(){var t=this;this.element.bind("mousedown."+this.widgetName,function(e){return t._mouseDown(e)}).bind("click."+this.widgetName,function(n){if(!0===e.data(n.target,t.widgetName+".preventClickEvent"))return e.removeData(n.target,t.widgetName+".preventClickEvent"),n.stopImmediatePropagation(),!1}),this.started=!1},_mouseDestroy:function(){this.element.unbind("."+this.widgetName),this._mouseMoveDelegate&&e(document).unbind("mousemove."+this.widgetName,this._mouseMoveDelegate).unbind("mouseup."+this.widgetName,this._mouseUpDelegate)},_mouseDown:function(t){if(n)return;this._mouseStarted&&this._mouseUp(t),this._mouseDownEvent=t;var r=this,i=t.which===1,s=typeof this.options.cancel=="string"&&t.target.nodeName?e(t.target).closest(this.options.cancel).length:!1;if(!i||s||!this._mouseCapture(t))return!0;this.mouseDelayMet=!this.options.delay,this.mouseDelayMet||(this._mouseDelayTimer=setTimeout(function(){r.mouseDelayMet=!0},this.options.delay));if(this._mouseDistanceMet(t)&&this._mouseDelayMet(t)){this._mouseStarted=this._mouseStart(t)!==!1;if(!this._mouseStarted)return t.preventDefault(),!0}return!0===e.data(t.target,this.widgetName+".preventClickEvent")&&e.removeData(t.target,this.widgetName+".preventClickEvent"),this._mouseMoveDelegate=function(e){return r._mouseMove(e)},this._mouseUpDelegate=function(e){return r._mouseUp(e)},e(document).bind("mousemove."+this.widgetName,this._mouseMoveDelegate).bind("mouseup."+this.widgetName,this._mouseUpDelegate),t.preventDefault(),n=!0,!0},_mouseMove:function(t){return!e.ui.ie||document.documentMode>=9||!!t.button?this._mouseStarted?(this._mouseDrag(t),t.preventDefault()):(this._mouseDistanceMet(t)&&this._mouseDelayMet(t)&&(this._mouseStarted=this._mouseStart(this._mouseDownEvent,t)!==!1,this._mouseStarted?this._mouseDrag(t):this._mouseUp(t)),!this._mouseStarted):this._mouseUp(t)},_mouseUp:function(t){return e(document).unbind("mousemove."+this.widgetName,this._mouseMoveDelegate).unbind("mouseup."+this.widgetName,this._mouseUpDelegate),this._mouseStarted&&(this._mouseStarted=!1,t.target===this._mouseDownEvent.target&&e.data(t.target,this.widgetName+".preventClickEvent",!0),this._mouseStop(t)),!1},_mouseDistanceMet:function(e){return Math.max(Math.abs(this._mouseDownEvent.pageX-e.pageX),Math.abs(this._mouseDownEvent.pageY-e.pageY))>=this.options.distance},_mouseDelayMet:function(e){return this.mouseDelayMet},_mouseStart:function(e){},_mouseDrag:function(e){},_mouseStop:function(e){},_mouseCapture:function(e){return!0}})})(jQuery);(function(e,t){function h(e,t,n){return[parseInt(e[0],10)*(l.test(e[0])?t/100:1),parseInt(e[1],10)*(l.test(e[1])?n/100:1)]}function p(t,n){return parseInt(e.css(t,n),10)||0}e.ui=e.ui||{};var n,r=Math.max,i=Math.abs,s=Math.round,o=/left|center|right/,u=/top|center|bottom/,a=/[\+\-]\d+%?/,f=/^\w+/,l=/%$/,c=e.fn.position;e.position={scrollbarWidth:function(){if(n!==t)return n;var r,i,s=e("<div style='display:block;width:50px;height:50px;overflow:hidden;'><div style='height:100px;width:auto;'></div></div>"),o=s.children()[0];return e("body").append(s),r=o.offsetWidth,s.css("overflow","scroll"),i=o.offsetWidth,r===i&&(i=s[0].clientWidth),s.remove(),n=r-i},getScrollInfo:function(t){var n=t.isWindow?"":t.element.css("overflow-x"),r=t.isWindow?"":t.element.css("overflow-y"),i=n==="scroll"||n==="auto"&&t.width<t.element[0].scrollWidth,s=r==="scroll"||r==="auto"&&t.height<t.element[0].scrollHeight;return{width:i?e.position.scrollbarWidth():0,height:s?e.position.scrollbarWidth():0}},getWithinInfo:function(t){var n=e(t||window),r=e.isWindow(n[0]);return{element:n,isWindow:r,offset:n.offset()||{left:0,top:0},scrollLeft:n.scrollLeft(),scrollTop:n.scrollTop(),width:r?n.width():n.outerWidth(),height:r?n.height():n.outerHeight()}}},e.fn.position=function(t){if(!t||!t.of)return c.apply(this,arguments);t=e.extend({},t);var n,l,d,v,m,g=e(t.of),y=e.position.getWithinInfo(t.within),b=e.position.getScrollInfo(y),w=g[0],E=(t.collision||"flip").split(" "),S={};return w.nodeType===9?(l=g.width(),d=g.height(),v={top:0,left:0}):e.isWindow(w)?(l=g.width(),d=g.height(),v={top:g.scrollTop(),left:g.scrollLeft()}):w.preventDefault?(t.at="left top",l=d=0,v={top:w.pageY,left:w.pageX}):(l=g.outerWidth(),d=g.outerHeight(),v=g.offset()),m=e.extend({},v),e.each(["my","at"],function(){var e=(t[this]||"").split(" "),n,r;e.length===1&&(e=o.test(e[0])?e.concat(["center"]):u.test(e[0])?["center"].concat(e):["center","center"]),e[0]=o.test(e[0])?e[0]:"center",e[1]=u.test(e[1])?e[1]:"center",n=a.exec(e[0]),r=a.exec(e[1]),S[this]=[n?n[0]:0,r?r[0]:0],t[this]=[f.exec(e[0])[0],f.exec(e[1])[0]]}),E.length===1&&(E[1]=E[0]),t.at[0]==="right"?m.left+=l:t.at[0]==="center"&&(m.left+=l/2),t.at[1]==="bottom"?m.top+=d:t.at[1]==="center"&&(m.top+=d/2),n=h(S.at,l,d),m.left+=n[0],m.top+=n[1],this.each(function(){var o,u,a=e(this),f=a.outerWidth(),c=a.outerHeight(),w=p(this,"marginLeft"),x=p(this,"marginTop"),T=f+w+p(this,"marginRight")+b.width,N=c+x+p(this,"marginBottom")+b.height,C=e.extend({},m),k=h(S.my,a.outerWidth(),a.outerHeight());t.my[0]==="right"?C.left-=f:t.my[0]==="center"&&(C.left-=f/2),t.my[1]==="bottom"?C.top-=c:t.my[1]==="center"&&(C.top-=c/2),C.left+=k[0],C.top+=k[1],e.support.offsetFractions||(C.left=s(C.left),C.top=s(C.top)),o={marginLeft:w,marginTop:x},e.each(["left","top"],function(r,i){e.ui.position[E[r]]&&e.ui.position[E[r]][i](C,{targetWidth:l,targetHeight:d,elemWidth:f,elemHeight:c,collisionPosition:o,collisionWidth:T,collisionHeight:N,offset:[n[0]+k[0],n[1]+k[1]],my:t.my,at:t.at,within:y,elem:a})}),e.fn.bgiframe&&a.bgiframe(),t.using&&(u=function(e){var n=v.left-C.left,s=n+l-f,o=v.top-C.top,u=o+d-c,h={target:{element:g,left:v.left,top:v.top,width:l,height:d},element:{element:a,left:C.left,top:C.top,width:f,height:c},horizontal:s<0?"left":n>0?"right":"center",vertical:u<0?"top":o>0?"bottom":"middle"};l<f&&i(n+s)<l&&(h.horizontal="center"),d<c&&i(o+u)<d&&(h.vertical="middle"),r(i(n),i(s))>r(i(o),i(u))?h.important="horizontal":h.important="vertical",t.using.call(this,e,h)}),a.offset(e.extend(C,{using:u}))})},e.ui.position={fit:{left:function(e,t){var n=t.within,i=n.isWindow?n.scrollLeft:n.offset.left,s=n.width,o=e.left-t.collisionPosition.marginLeft,u=i-o,a=o+t.collisionWidth-s-i,f;t.collisionWidth>s?u>0&&a<=0?(f=e.left+u+t.collisionWidth-s-i,e.left+=u-f):a>0&&u<=0?e.left=i:u>a?e.left=i+s-t.collisionWidth:e.left=i:u>0?e.left+=u:a>0?e.left-=a:e.left=r(e.left-o,e.left)},top:function(e,t){var n=t.within,i=n.isWindow?n.scrollTop:n.offset.top,s=t.within.height,o=e.top-t.collisionPosition.marginTop,u=i-o,a=o+t.collisionHeight-s-i,f;t.collisionHeight>s?u>0&&a<=0?(f=e.top+u+t.collisionHeight-s-i,e.top+=u-f):a>0&&u<=0?e.top=i:u>a?e.top=i+s-t.collisionHeight:e.top=i:u>0?e.top+=u:a>0?e.top-=a:e.top=r(e.top-o,e.top)}},flip:{left:function(e,t){var n=t.within,r=n.offset.left+n.scrollLeft,s=n.width,o=n.isWindow?n.scrollLeft:n.offset.left,u=e.left-t.collisionPosition.marginLeft,a=u-o,f=u+t.collisionWidth-s-o,l=t.my[0]==="left"?-t.elemWidth:t.my[0]==="right"?t.elemWidth:0,c=t.at[0]==="left"?t.targetWidth:t.at[0]==="right"?-t.targetWidth:0,h=-2*t.offset[0],p,d;if(a<0){p=e.left+l+c+h+t.collisionWidth-s-r;if(p<0||p<i(a))e.left+=l+c+h}else if(f>0){d=e.left-t.collisionPosition.marginLeft+l+c+h-o;if(d>0||i(d)<f)e.left+=l+c+h}},top:function(e,t){var n=t.within,r=n.offset.top+n.scrollTop,s=n.height,o=n.isWindow?n.scrollTop:n.offset.top,u=e.top-t.collisionPosition.marginTop,a=u-o,f=u+t.collisionHeight-s-o,l=t.my[1]==="top",c=l?-t.elemHeight:t.my[1]==="bottom"?t.elemHeight:0,h=t.at[1]==="top"?t.targetHeight:t.at[1]==="bottom"?-t.targetHeight:0,p=-2*t.offset[1],d,v;a<0?(v=e.top+c+h+p+t.collisionHeight-s-r,e.top+c+h+p>a&&(v<0||v<i(a))&&(e.top+=c+h+p)):f>0&&(d=e.top-t.collisionPosition.marginTop+c+h+p-o,e.top+c+h+p>f&&(d>0||i(d)<f)&&(e.top+=c+h+p))}},flipfit:{left:function(){e.ui.position.flip.left.apply(this,arguments),e.ui.position.fit.left.apply(this,arguments)},top:function(){e.ui.position.flip.top.apply(this,arguments),e.ui.position.fit.top.apply(this,arguments)}}},function(){var t,n,r,i,s,o=document.getElementsByTagName("body")[0],u=document.createElement("div");t=document.createElement(o?"div":"body"),r={visibility:"hidden",width:0,height:0,border:0,margin:0,background:"none"},o&&e.extend(r,{position:"absolute",left:"-1000px",top:"-1000px"});for(s in r)t.style[s]=r[s];t.appendChild(u),n=o||document.documentElement,n.insertBefore(t,n.firstChild),u.style.cssText="position: absolute; left: 10.7432222px;",i=e(u).offset().left,e.support.offsetFractions=i>10&&i<11,t.innerHTML="",n.removeChild(t)}(),e.uiBackCompat!==!1&&function(e){var n=e.fn.position;e.fn.position=function(r){if(!r||!r.offset)return n.call(this,r);var i=r.offset.split(" "),s=r.at.split(" ");return i.length===1&&(i[1]=i[0]),/^\d/.test(i[0])&&(i[0]="+"+i[0]),/^\d/.test(i[1])&&(i[1]="+"+i[1]),s.length===1&&(/left|center|right/.test(s[0])?s[1]="center":(s[1]=s[0],s[0]="center")),n.call(this,e.extend(r,{at:s[0]+i[0]+" "+s[1]+i[1],offset:t}))}}(jQuery)})(jQuery);(function(e,t){e.widget("ui.draggable",e.ui.mouse,{version:"1.9.2",widgetEventPrefix:"drag",options:{addClasses:!0,appendTo:"parent",axis:!1,connectToSortable:!1,containment:!1,cursor:"auto",cursorAt:!1,grid:!1,handle:!1,helper:"original",iframeFix:!1,opacity:!1,refreshPositions:!1,revert:!1,revertDuration:500,scope:"default",scroll:!0,scrollSensitivity:20,scrollSpeed:20,snap:!1,snapMode:"both",snapTolerance:20,stack:!1,zIndex:!1},_create:function(){this.options.helper=="original"&&!/^(?:r|a|f)/.test(this.element.css("position"))&&(this.element[0].style.position="relative"),this.options.addClasses&&this.element.addClass("ui-draggable"),this.options.disabled&&this.element.addClass("ui-draggable-disabled"),this._mouseInit()},_destroy:function(){this.element.removeClass("ui-draggable ui-draggable-dragging ui-draggable-disabled"),this._mouseDestroy()},_mouseCapture:function(t){var n=this.options;return this.helper||n.disabled||e(t.target).is(".ui-resizable-handle")?!1:(this.handle=this._getHandle(t),this.handle?(e(n.iframeFix===!0?"iframe":n.iframeFix).each(function(){e('<div class="ui-draggable-iframeFix" style="background: #fff;"></div>').css({width:this.offsetWidth+"px",height:this.offsetHeight+"px",position:"absolute",opacity:"0.001",zIndex:1e3}).css(e(this).offset()).appendTo("body")}),!0):!1)},_mouseStart:function(t){var n=this.options;return this.helper=this._createHelper(t),this.helper.addClass("ui-draggable-dragging"),this._cacheHelperProportions(),e.ui.ddmanager&&(e.ui.ddmanager.current=this),this._cacheMargins(),this.cssPosition=this.helper.css("position"),this.scrollParent=this.helper.scrollParent(),this.offset=this.positionAbs=this.element.offset(),this.offset={top:this.offset.top-this.margins.top,left:this.offset.left-this.margins.left},e.extend(this.offset,{click:{left:t.pageX-this.offset.left,top:t.pageY-this.offset.top},parent:this._getParentOffset(),relative:this._getRelativeOffset()}),this.originalPosition=this.position=this._generatePosition(t),this.originalPageX=t.pageX,this.originalPageY=t.pageY,n.cursorAt&&this._adjustOffsetFromHelper(n.cursorAt),n.containment&&this._setContainment(),this._trigger("start",t)===!1?(this._clear(),!1):(this._cacheHelperProportions(),e.ui.ddmanager&&!n.dropBehaviour&&e.ui.ddmanager.prepareOffsets(this,t),this._mouseDrag(t,!0),e.ui.ddmanager&&e.ui.ddmanager.dragStart(this,t),!0)},_mouseDrag:function(t,n){this.position=this._generatePosition(t),this.positionAbs=this._convertPositionTo("absolute");if(!n){var r=this._uiHash();if(this._trigger("drag",t,r)===!1)return this._mouseUp({}),!1;this.position=r.position}if(!this.options.axis||this.options.axis!="y")this.helper[0].style.left=this.position.left+"px";if(!this.options.axis||this.options.axis!="x")this.helper[0].style.top=this.position.top+"px";return e.ui.ddmanager&&e.ui.ddmanager.drag(this,t),!1},_mouseStop:function(t){var n=!1;e.ui.ddmanager&&!this.options.dropBehaviour&&(n=e.ui.ddmanager.drop(this,t)),this.dropped&&(n=this.dropped,this.dropped=!1);var r=this.element[0],i=!1;while(r&&(r=r.parentNode))r==document&&(i=!0);if(!i&&this.options.helper==="original")return!1;if(this.options.revert=="invalid"&&!n||this.options.revert=="valid"&&n||this.options.revert===!0||e.isFunction(this.options.revert)&&this.options.revert.call(this.element,n)){var s=this;e(this.helper).animate(this.originalPosition,parseInt(this.options.revertDuration,10),function(){s._trigger("stop",t)!==!1&&s._clear()})}else this._trigger("stop",t)!==!1&&this._clear();return!1},_mouseUp:function(t){return e("div.ui-draggable-iframeFix").each(function(){this.parentNode.removeChild(this)}),e.ui.ddmanager&&e.ui.ddmanager.dragStop(this,t),e.ui.mouse.prototype._mouseUp.call(this,t)},cancel:function(){return this.helper.is(".ui-draggable-dragging")?this._mouseUp({}):this._clear(),this},_getHandle:function(t){var n=!this.options.handle||!e(this.options.handle,this.element).length?!0:!1;return e(this.options.handle,this.element).find("*").andSelf().each(function(){this==t.target&&(n=!0)}),n},_createHelper:function(t){var n=this.options,r=e.isFunction(n.helper)?e(n.helper.apply(this.element[0],[t])):n.helper=="clone"?this.element.clone().removeAttr("id"):this.element;return r.parents("body").length||r.appendTo(n.appendTo=="parent"?this.element[0].parentNode:n.appendTo),r[0]!=this.element[0]&&!/(fixed|absolute)/.test(r.css("position"))&&r.css("position","absolute"),r},_adjustOffsetFromHelper:function(t){typeof t=="string"&&(t=t.split(" ")),e.isArray(t)&&(t={left:+t[0],top:+t[1]||0}),"left"in t&&(this.offset.click.left=t.left+this.margins.left),"right"in t&&(this.offset.click.left=this.helperProportions.width-t.right+this.margins.left),"top"in t&&(this.offset.click.top=t.top+this.margins.top),"bottom"in t&&(this.offset.click.top=this.helperProportions.height-t.bottom+this.margins.top)},_getParentOffset:function(){this.offsetParent=this.helper.offsetParent();var t=this.offsetParent.offset();this.cssPosition=="absolute"&&this.scrollParent[0]!=document&&e.contains(this.scrollParent[0],this.offsetParent[0])&&(t.left+=this.scrollParent.scrollLeft(),t.top+=this.scrollParent.scrollTop());if(this.offsetParent[0]==document.body||this.offsetParent[0].tagName&&this.offsetParent[0].tagName.toLowerCase()=="html"&&e.ui.ie)t={top:0,left:0};return{top:t.top+(parseInt(this.offsetParent.css("borderTopWidth"),10)||0),left:t.left+(parseInt(this.offsetParent.css("borderLeftWidth"),10)||0)}},_getRelativeOffset:function(){if(this.cssPosition=="relative"){var e=this.element.position();return{top:e.top-(parseInt(this.helper.css("top"),10)||0)+this.scrollParent.scrollTop(),left:e.left-(parseInt(this.helper.css("left"),10)||0)+this.scrollParent.scrollLeft()}}return{top:0,left:0}},_cacheMargins:function(){this.margins={left:parseInt(this.element.css("marginLeft"),10)||0,top:parseInt(this.element.css("marginTop"),10)||0,right:parseInt(this.element.css("marginRight"),10)||0,bottom:parseInt(this.element.css("marginBottom"),10)||0}},_cacheHelperProportions:function(){this.helperProportions={width:this.helper.outerWidth(),height:this.helper.outerHeight()}},_setContainment:function(){var t=this.options;t.containment=="parent"&&(t.containment=this.helper[0].parentNode);if(t.containment=="document"||t.containment=="window")this.containment=[t.containment=="document"?0:e(window).scrollLeft()-this.offset.relative.left-this.offset.parent.left,t.containment=="document"?0:e(window).scrollTop()-this.offset.relative.top-this.offset.parent.top,(t.containment=="document"?0:e(window).scrollLeft())+e(t.containment=="document"?document:window).width()-this.helperProportions.width-this.margins.left,(t.containment=="document"?0:e(window).scrollTop())+(e(t.containment=="document"?document:window).height()||document.body.parentNode.scrollHeight)-this.helperProportions.height-this.margins.top];if(!/^(document|window|parent)$/.test(t.containment)&&t.containment.constructor!=Array){var n=e(t.containment),r=n[0];if(!r)return;var i=n.offset(),s=e(r).css("overflow")!="hidden";this.containment=[(parseInt(e(r).css("borderLeftWidth"),10)||0)+(parseInt(e(r).css("paddingLeft"),10)||0),(parseInt(e(r).css("borderTopWidth"),10)||0)+(parseInt(e(r).css("paddingTop"),10)||0),(s?Math.max(r.scrollWidth,r.offsetWidth):r.offsetWidth)-(parseInt(e(r).css("borderLeftWidth"),10)||0)-(parseInt(e(r).css("paddingRight"),10)||0)-this.helperProportions.width-this.margins.left-this.margins.right,(s?Math.max(r.scrollHeight,r.offsetHeight):r.offsetHeight)-(parseInt(e(r).css("borderTopWidth"),10)||0)-(parseInt(e(r).css("paddingBottom"),10)||0)-this.helperProportions.height-this.margins.top-this.margins.bottom],this.relative_container=n}else t.containment.constructor==Array&&(this.containment=t.containment)},_convertPositionTo:function(t,n){n||(n=this.position);var r=t=="absolute"?1:-1,i=this.options,s=this.cssPosition!="absolute"||this.scrollParent[0]!=document&&!!e.contains(this.scrollParent[0],this.offsetParent[0])?this.scrollParent:this.offsetParent,o=/(html|body)/i.test(s[0].tagName);return{top:n.top+this.offset.relative.top*r+this.offset.parent.top*r-(this.cssPosition=="fixed"?-this.scrollParent.scrollTop():o?0:s.scrollTop())*r,left:n.left+this.offset.relative.left*r+this.offset.parent.left*r-(this.cssPosition=="fixed"?-this.scrollParent.scrollLeft():o?0:s.scrollLeft())*r}},_generatePosition:function(t){var n=this.options,r=this.cssPosition!="absolute"||this.scrollParent[0]!=document&&!!e.contains(this.scrollParent[0],this.offsetParent[0])?this.scrollParent:this.offsetParent,i=/(html|body)/i.test(r[0].tagName),s=t.pageX,o=t.pageY;if(this.originalPosition){var u;if(this.containment){if(this.relative_container){var a=this.relative_container.offset();u=[this.containment[0]+a.left,this.containment[1]+a.top,this.containment[2]+a.left,this.containment[3]+a.top]}else u=this.containment;t.pageX-this.offset.click.left<u[0]&&(s=u[0]+this.offset.click.left),t.pageY-this.offset.click.top<u[1]&&(o=u[1]+this.offset.click.top),t.pageX-this.offset.click.left>u[2]&&(s=u[2]+this.offset.click.left),t.pageY-this.offset.click.top>u[3]&&(o=u[3]+this.offset.click.top)}if(n.grid){var f=n.grid[1]?this.originalPageY+Math.round((o-this.originalPageY)/n.grid[1])*n.grid[1]:this.originalPageY;o=u?f-this.offset.click.top<u[1]||f-this.offset.click.top>u[3]?f-this.offset.click.top<u[1]?f+n.grid[1]:f-n.grid[1]:f:f;var l=n.grid[0]?this.originalPageX+Math.round((s-this.originalPageX)/n.grid[0])*n.grid[0]:this.originalPageX;s=u?l-this.offset.click.left<u[0]||l-this.offset.click.left>u[2]?l-this.offset.click.left<u[0]?l+n.grid[0]:l-n.grid[0]:l:l}}return{top:o-this.offset.click.top-this.offset.relative.top-this.offset.parent.top+(this.cssPosition=="fixed"?-this.scrollParent.scrollTop():i?0:r.scrollTop()),left:s-this.offset.click.left-this.offset.relative.left-this.offset.parent.left+(this.cssPosition=="fixed"?-this.scrollParent.scrollLeft():i?0:r.scrollLeft())}},_clear:function(){this.helper.removeClass("ui-draggable-dragging"),this.helper[0]!=this.element[0]&&!this.cancelHelperRemoval&&this.helper.remove(),this.helper=null,this.cancelHelperRemoval=!1},_trigger:function(t,n,r){return r=r||this._uiHash(),e.ui.plugin.call(this,t,[n,r]),t=="drag"&&(this.positionAbs=this._convertPositionTo("absolute")),e.Widget.prototype._trigger.call(this,t,n,r)},plugins:{},_uiHash:function(e){return{helper:this.helper,position:this.position,originalPosition:this.originalPosition,offset:this.positionAbs}}}),e.ui.plugin.add("draggable","connectToSortable",{start:function(t,n){var r=e(this).data("draggable"),i=r.options,s=e.extend({},n,{item:r.element});r.sortables=[],e(i.connectToSortable).each(function(){var n=e.data(this,"sortable");n&&!n.options.disabled&&(r.sortables.push({instance:n,shouldRevert:n.options.revert}),n.refreshPositions(),n._trigger("activate",t,s))})},stop:function(t,n){var r=e(this).data("draggable"),i=e.extend({},n,{item:r.element});e.each(r.sortables,function(){this.instance.isOver?(this.instance.isOver=0,r.cancelHelperRemoval=!0,this.instance.cancelHelperRemoval=!1,this.shouldRevert&&(this.instance.options.revert=!0),this.instance._mouseStop(t),this.instance.options.helper=this.instance.options._helper,r.options.helper=="original"&&this.instance.currentItem.css({top:"auto",left:"auto"})):(this.instance.cancelHelperRemoval=!1,this.instance._trigger("deactivate",t,i))})},drag:function(t,n){var r=e(this).data("draggable"),i=this,s=function(t){var n=this.offset.click.top,r=this.offset.click.left,i=this.positionAbs.top,s=this.positionAbs.left,o=t.height,u=t.width,a=t.top,f=t.left;return e.ui.isOver(i+n,s+r,a,f,o,u)};e.each(r.sortables,function(s){var o=!1,u=this;this.instance.positionAbs=r.positionAbs,this.instance.helperProportions=r.helperProportions,this.instance.offset.click=r.offset.click,this.instance._intersectsWith(this.instance.containerCache)&&(o=!0,e.each(r.sortables,function(){return this.instance.positionAbs=r.positionAbs,this.instance.helperProportions=r.helperProportions,this.instance.offset.click=r.offset.click,this!=u&&this.instance._intersectsWith(this.instance.containerCache)&&e.ui.contains(u.instance.element[0],this.instance.element[0])&&(o=!1),o})),o?(this.instance.isOver||(this.instance.isOver=1,this.instance.currentItem=e(i).clone().removeAttr("id").appendTo(this.instance.element).data("sortable-item",!0),this.instance.options._helper=this.instance.options.helper,this.instance.options.helper=function(){return n.helper[0]},t.target=this.instance.currentItem[0],this.instance._mouseCapture(t,!0),this.instance._mouseStart(t,!0,!0),this.instance.offset.click.top=r.offset.click.top,this.instance.offset.click.left=r.offset.click.left,this.instance.offset.parent.left-=r.offset.parent.left-this.instance.offset.parent.left,this.instance.offset.parent.top-=r.offset.parent.top-this.instance.offset.parent.top,r._trigger("toSortable",t),r.dropped=this.instance.element,r.currentItem=r.element,this.instance.fromOutside=r),this.instance.currentItem&&this.instance._mouseDrag(t)):this.instance.isOver&&(this.instance.isOver=0,this.instance.cancelHelperRemoval=!0,this.instance.options.revert=!1,this.instance._trigger("out",t,this.instance._uiHash(this.instance)),this.instance._mouseStop(t,!0),this.instance.options.helper=this.instance.options._helper,this.instance.currentItem.remove(),this.instance.placeholder&&this.instance.placeholder.remove(),r._trigger("fromSortable",t),r.dropped=!1)})}}),e.ui.plugin.add("draggable","cursor",{start:function(t,n){var r=e("body"),i=e(this).data("draggable").options;r.css("cursor")&&(i._cursor=r.css("cursor")),r.css("cursor",i.cursor)},stop:function(t,n){var r=e(this).data("draggable").options;r._cursor&&e("body").css("cursor",r._cursor)}}),e.ui.plugin.add("draggable","opacity",{start:function(t,n){var r=e(n.helper),i=e(this).data("draggable").options;r.css("opacity")&&(i._opacity=r.css("opacity")),r.css("opacity",i.opacity)},stop:function(t,n){var r=e(this).data("draggable").options;r._opacity&&e(n.helper).css("opacity",r._opacity)}}),e.ui.plugin.add("draggable","scroll",{start:function(t,n){var r=e(this).data("draggable");r.scrollParent[0]!=document&&r.scrollParent[0].tagName!="HTML"&&(r.overflowOffset=r.scrollParent.offset())},drag:function(t,n){var r=e(this).data("draggable"),i=r.options,s=!1;if(r.scrollParent[0]!=document&&r.scrollParent[0].tagName!="HTML"){if(!i.axis||i.axis!="x")r.overflowOffset.top+r.scrollParent[0].offsetHeight-t.pageY<i.scrollSensitivity?r.scrollParent[0].scrollTop=s=r.scrollParent[0].scrollTop+i.scrollSpeed:t.pageY-r.overflowOffset.top<i.scrollSensitivity&&(r.scrollParent[0].scrollTop=s=r.scrollParent[0].scrollTop-i.scrollSpeed);if(!i.axis||i.axis!="y")r.overflowOffset.left+r.scrollParent[0].offsetWidth-t.pageX<i.scrollSensitivity?r.scrollParent[0].scrollLeft=s=r.scrollParent[0].scrollLeft+i.scrollSpeed:t.pageX-r.overflowOffset.left<i.scrollSensitivity&&(r.scrollParent[0].scrollLeft=s=r.scrollParent[0].scrollLeft-i.scrollSpeed)}else{if(!i.axis||i.axis!="x")t.pageY-e(document).scrollTop()<i.scrollSensitivity?s=e(document).scrollTop(e(document).scrollTop()-i.scrollSpeed):e(window).height()-(t.pageY-e(document).scrollTop())<i.scrollSensitivity&&(s=e(document).scrollTop(e(document).scrollTop()+i.scrollSpeed));if(!i.axis||i.axis!="y")t.pageX-e(document).scrollLeft()<i.scrollSensitivity?s=e(document).scrollLeft(e(document).scrollLeft()-i.scrollSpeed):e(window).width()-(t.pageX-e(document).scrollLeft())<i.scrollSensitivity&&(s=e(document).scrollLeft(e(document).scrollLeft()+i.scrollSpeed))}s!==!1&&e.ui.ddmanager&&!i.dropBehaviour&&e.ui.ddmanager.prepareOffsets(r,t)}}),e.ui.plugin.add("draggable","snap",{start:function(t,n){var r=e(this).data("draggable"),i=r.options;r.snapElements=[],e(i.snap.constructor!=String?i.snap.items||":data(draggable)":i.snap).each(function(){var t=e(this),n=t.offset();this!=r.element[0]&&r.snapElements.push({item:this,width:t.outerWidth(),height:t.outerHeight(),top:n.top,left:n.left})})},drag:function(t,n){var r=e(this).data("draggable"),i=r.options,s=i.snapTolerance,o=n.offset.left,u=o+r.helperProportions.width,a=n.offset.top,f=a+r.helperProportions.height;for(var l=r.snapElements.length-1;l>=0;l--){var c=r.snapElements[l].left,h=c+r.snapElements[l].width,p=r.snapElements[l].top,d=p+r.snapElements[l].height;if(!(c-s<o&&o<h+s&&p-s<a&&a<d+s||c-s<o&&o<h+s&&p-s<f&&f<d+s||c-s<u&&u<h+s&&p-s<a&&a<d+s||c-s<u&&u<h+s&&p-s<f&&f<d+s)){r.snapElements[l].snapping&&r.options.snap.release&&r.options.snap.release.call(r.element,t,e.extend(r._uiHash(),{snapItem:r.snapElements[l].item})),r.snapElements[l].snapping=!1;continue}if(i.snapMode!="inner"){var v=Math.abs(p-f)<=s,m=Math.abs(d-a)<=s,g=Math.abs(c-u)<=s,y=Math.abs(h-o)<=s;v&&(n.position.top=r._convertPositionTo("relative",{top:p-r.helperProportions.height,left:0}).top-r.margins.top),m&&(n.position.top=r._convertPositionTo("relative",{top:d,left:0}).top-r.margins.top),g&&(n.position.left=r._convertPositionTo("relative",{top:0,left:c-r.helperProportions.width}).left-r.margins.left),y&&(n.position.left=r._convertPositionTo("relative",{top:0,left:h}).left-r.margins.left)}var b=v||m||g||y;if(i.snapMode!="outer"){var v=Math.abs(p-a)<=s,m=Math.abs(d-f)<=s,g=Math.abs(c-o)<=s,y=Math.abs(h-u)<=s;v&&(n.position.top=r._convertPositionTo("relative",{top:p,left:0}).top-r.margins.top),m&&(n.position.top=r._convertPositionTo("relative",{top:d-r.helperProportions.height,left:0}).top-r.margins.top),g&&(n.position.left=r._convertPositionTo("relative",{top:0,left:c}).left-r.margins.left),y&&(n.position.left=r._convertPositionTo("relative",{top:0,left:h-r.helperProportions.width}).left-r.margins.left)}!r.snapElements[l].snapping&&(v||m||g||y||b)&&r.options.snap.snap&&r.options.snap.snap.call(r.element,t,e.extend(r._uiHash(),{snapItem:r.snapElements[l].item})),r.snapElements[l].snapping=v||m||g||y||b}}}),e.ui.plugin.add("draggable","stack",{start:function(t,n){var r=e(this).data("draggable").options,i=e.makeArray(e(r.stack)).sort(function(t,n){return(parseInt(e(t).css("zIndex"),10)||0)-(parseInt(e(n).css("zIndex"),10)||0)});if(!i.length)return;var s=parseInt(i[0].style.zIndex)||0;e(i).each(function(e){this.style.zIndex=s+e}),this[0].style.zIndex=s+i.length}}),e.ui.plugin.add("draggable","zIndex",{start:function(t,n){var r=e(n.helper),i=e(this).data("draggable").options;r.css("zIndex")&&(i._zIndex=r.css("zIndex")),r.css("zIndex",i.zIndex)},stop:function(t,n){var r=e(this).data("draggable").options;r._zIndex&&e(n.helper).css("zIndex",r._zIndex)}})})(jQuery);(function(e,t){e.widget("ui.droppable",{version:"1.9.2",widgetEventPrefix:"drop",options:{accept:"*",activeClass:!1,addClasses:!0,greedy:!1,hoverClass:!1,scope:"default",tolerance:"intersect"},_create:function(){var t=this.options,n=t.accept;this.isover=0,this.isout=1,this.accept=e.isFunction(n)?n:function(e){return e.is(n)},this.proportions={width:this.element[0].offsetWidth,height:this.element[0].offsetHeight},e.ui.ddmanager.droppables[t.scope]=e.ui.ddmanager.droppables[t.scope]||[],e.ui.ddmanager.droppables[t.scope].push(this),t.addClasses&&this.element.addClass("ui-droppable")},_destroy:function(){var t=e.ui.ddmanager.droppables[this.options.scope];for(var n=0;n<t.length;n++)t[n]==this&&t.splice(n,1);this.element.removeClass("ui-droppable ui-droppable-disabled")},_setOption:function(t,n){t=="accept"&&(this.accept=e.isFunction(n)?n:function(e){return e.is(n)}),e.Widget.prototype._setOption.apply(this,arguments)},_activate:function(t){var n=e.ui.ddmanager.current;this.options.activeClass&&this.element.addClass(this.options.activeClass),n&&this._trigger("activate",t,this.ui(n))},_deactivate:function(t){var n=e.ui.ddmanager.current;this.options.activeClass&&this.element.removeClass(this.options.activeClass),n&&this._trigger("deactivate",t,this.ui(n))},_over:function(t){var n=e.ui.ddmanager.current;if(!n||(n.currentItem||n.element)[0]==this.element[0])return;this.accept.call(this.element[0],n.currentItem||n.element)&&(this.options.hoverClass&&this.element.addClass(this.options.hoverClass),this._trigger("over",t,this.ui(n)))},_out:function(t){var n=e.ui.ddmanager.current;if(!n||(n.currentItem||n.element)[0]==this.element[0])return;this.accept.call(this.element[0],n.currentItem||n.element)&&(this.options.hoverClass&&this.element.removeClass(this.options.hoverClass),this._trigger("out",t,this.ui(n)))},_drop:function(t,n){var r=n||e.ui.ddmanager.current;if(!r||(r.currentItem||r.element)[0]==this.element[0])return!1;var i=!1;return this.element.find(":data(droppable)").not(".ui-draggable-dragging").each(function(){var t=e.data(this,"droppable");if(t.options.greedy&&!t.options.disabled&&t.options.scope==r.options.scope&&t.accept.call(t.element[0],r.currentItem||r.element)&&e.ui.intersect(r,e.extend(t,{offset:t.element.offset()}),t.options.tolerance))return i=!0,!1}),i?!1:this.accept.call(this.element[0],r.currentItem||r.element)?(this.options.activeClass&&this.element.removeClass(this.options.activeClass),this.options.hoverClass&&this.element.removeClass(this.options.hoverClass),this._trigger("drop",t,this.ui(r)),this.element):!1},ui:function(e){return{draggable:e.currentItem||e.element,helper:e.helper,position:e.position,offset:e.positionAbs}}}),e.ui.intersect=function(t,n,r){if(!n.offset)return!1;var i=(t.positionAbs||t.position.absolute).left,s=i+t.helperProportions.width,o=(t.positionAbs||t.position.absolute).top,u=o+t.helperProportions.height,a=n.offset.left,f=a+n.proportions.width,l=n.offset.top,c=l+n.proportions.height;switch(r){case"fit":return a<=i&&s<=f&&l<=o&&u<=c;case"intersect":return a<i+t.helperProportions.width/2&&s-t.helperProportions.width/2<f&&l<o+t.helperProportions.height/2&&u-t.helperProportions.height/2<c;case"pointer":var h=(t.positionAbs||t.position.absolute).left+(t.clickOffset||t.offset.click).left,p=(t.positionAbs||t.position.absolute).top+(t.clickOffset||t.offset.click).top,d=e.ui.isOver(p,h,l,a,n.proportions.height,n.proportions.width);return d;case"touch":return(o>=l&&o<=c||u>=l&&u<=c||o<l&&u>c)&&(i>=a&&i<=f||s>=a&&s<=f||i<a&&s>f);default:return!1}},e.ui.ddmanager={current:null,droppables:{"default":[]},prepareOffsets:function(t,n){var r=e.ui.ddmanager.droppables[t.options.scope]||[],i=n?n.type:null,s=(t.currentItem||t.element).find(":data(droppable)").andSelf();e:for(var o=0;o<r.length;o++){if(r[o].options.disabled||t&&!r[o].accept.call(r[o].element[0],t.currentItem||t.element))continue;for(var u=0;u<s.length;u++)if(s[u]==r[o].element[0]){r[o].proportions.height=0;continue e}r[o].visible=r[o].element.css("display")!="none";if(!r[o].visible)continue;i=="mousedown"&&r[o]._activate.call(r[o],n),r[o].offset=r[o].element.offset(),r[o].proportions={width:r[o].element[0].offsetWidth,height:r[o].element[0].offsetHeight}}},drop:function(t,n){var r=!1;return e.each(e.ui.ddmanager.droppables[t.options.scope]||[],function(){if(!this.options)return;!this.options.disabled&&this.visible&&e.ui.intersect(t,this,this.options.tolerance)&&(r=this._drop.call(this,n)||r),!this.options.disabled&&this.visible&&this.accept.call(this.element[0],t.currentItem||t.element)&&(this.isout=1,this.isover=0,this._deactivate.call(this,n))}),r},dragStart:function(t,n){t.element.parentsUntil("body").bind("scroll.droppable",function(){t.options.refreshPositions||e.ui.ddmanager.prepareOffsets(t,n)})},drag:function(t,n){t.options.refreshPositions&&e.ui.ddmanager.prepareOffsets(t,n),e.each(e.ui.ddmanager.droppables[t.options.scope]||[],function(){if(this.options.disabled||this.greedyChild||!this.visible)return;var r=e.ui.intersect(t,this,this.options.tolerance),i=!r&&this.isover==1?"isout":r&&this.isover==0?"isover":null;if(!i)return;var s;if(this.options.greedy){var o=this.options.scope,u=this.element.parents(":data(droppable)").filter(function(){return e.data(this,"droppable").options.scope===o});u.length&&(s=e.data(u[0],"droppable"),s.greedyChild=i=="isover"?1:0)}s&&i=="isover"&&(s.isover=0,s.isout=1,s._out.call(s,n)),this[i]=1,this[i=="isout"?"isover":"isout"]=0,this[i=="isover"?"_over":"_out"].call(this,n),s&&i=="isout"&&(s.isout=0,s.isover=1,s._over.call(s,n))})},dragStop:function(t,n){t.element.parentsUntil("body").unbind("scroll.droppable"),t.options.refreshPositions||e.ui.ddmanager.prepareOffsets(t,n)}}})(jQuery);(function(e,t){e.widget("ui.resizable",e.ui.mouse,{version:"1.9.2",widgetEventPrefix:"resize",options:{alsoResize:!1,animate:!1,animateDuration:"slow",animateEasing:"swing",aspectRatio:!1,autoHide:!1,containment:!1,ghost:!1,grid:!1,handles:"e,s,se",helper:!1,maxHeight:null,maxWidth:null,minHeight:10,minWidth:10,zIndex:1e3},_create:function(){var t=this,n=this.options;this.element.addClass("ui-resizable"),e.extend(this,{_aspectRatio:!!n.aspectRatio,aspectRatio:n.aspectRatio,originalElement:this.element,_proportionallyResizeElements:[],_helper:n.helper||n.ghost||n.animate?n.helper||"ui-resizable-helper":null}),this.element[0].nodeName.match(/canvas|textarea|input|select|button|img/i)&&(this.element.wrap(e('<div class="ui-wrapper" style="overflow: hidden;"></div>').css({position:this.element.css("position"),width:this.element.outerWidth(),height:this.element.outerHeight(),top:this.element.css("top"),left:this.element.css("left")})),this.element=this.element.parent().data("resizable",this.element.data("resizable")),this.elementIsWrapper=!0,this.element.css({marginLeft:this.originalElement.css("marginLeft"),marginTop:this.originalElement.css("marginTop"),marginRight:this.originalElement.css("marginRight"),marginBottom:this.originalElement.css("marginBottom")}),this.originalElement.css({marginLeft:0,marginTop:0,marginRight:0,marginBottom:0}),this.originalResizeStyle=this.originalElement.css("resize"),this.originalElement.css("resize","none"),this._proportionallyResizeElements.push(this.originalElement.css({position:"static",zoom:1,display:"block"})),this.originalElement.css({margin:this.originalElement.css("margin")}),this._proportionallyResize()),this.handles=n.handles||(e(".ui-resizable-handle",this.element).length?{n:".ui-resizable-n",e:".ui-resizable-e",s:".ui-resizable-s",w:".ui-resizable-w",se:".ui-resizable-se",sw:".ui-resizable-sw",ne:".ui-resizable-ne",nw:".ui-resizable-nw"}:"e,s,se");if(this.handles.constructor==String){this.handles=="all"&&(this.handles="n,e,s,w,se,sw,ne,nw");var r=this.handles.split(",");this.handles={};for(var i=0;i<r.length;i++){var s=e.trim(r[i]),o="ui-resizable-"+s,u=e('<div class="ui-resizable-handle '+o+'"></div>');u.css({zIndex:n.zIndex}),"se"==s&&u.addClass("ui-icon ui-icon-gripsmall-diagonal-se"),this.handles[s]=".ui-resizable-"+s,this.element.append(u)}}this._renderAxis=function(t){t=t||this.element;for(var n in this.handles){this.handles[n].constructor==String&&(this.handles[n]=e(this.handles[n],this.element).show());if(this.elementIsWrapper&&this.originalElement[0].nodeName.match(/textarea|input|select|button/i)){var r=e(this.handles[n],this.element),i=0;i=/sw|ne|nw|se|n|s/.test(n)?r.outerHeight():r.outerWidth();var s=["padding",/ne|nw|n/.test(n)?"Top":/se|sw|s/.test(n)?"Bottom":/^e$/.test(n)?"Right":"Left"].join("");t.css(s,i),this._proportionallyResize()}if(!e(this.handles[n]).length)continue}},this._renderAxis(this.element),this._handles=e(".ui-resizable-handle",this.element).disableSelection(),this._handles.mouseover(function(){if(!t.resizing){if(this.className)var e=this.className.match(/ui-resizable-(se|sw|ne|nw|n|e|s|w)/i);t.axis=e&&e[1]?e[1]:"se"}}),n.autoHide&&(this._handles.hide(),e(this.element).addClass("ui-resizable-autohide").mouseenter(function(){if(n.disabled)return;e(this).removeClass("ui-resizable-autohide"),t._handles.show()}).mouseleave(function(){if(n.disabled)return;t.resizing||(e(this).addClass("ui-resizable-autohide"),t._handles.hide())})),this._mouseInit()},_destroy:function(){this._mouseDestroy();var t=function(t){e(t).removeClass("ui-resizable ui-resizable-disabled ui-resizable-resizing").removeData("resizable").removeData("ui-resizable").unbind(".resizable").find(".ui-resizable-handle").remove()};if(this.elementIsWrapper){t(this.element);var n=this.element;this.originalElement.css({position:n.css("position"),width:n.outerWidth(),height:n.outerHeight(),top:n.css("top"),left:n.css("left")}).insertAfter(n),n.remove()}return this.originalElement.css("resize",this.originalResizeStyle),t(this.originalElement),this},_mouseCapture:function(t){var n=!1;for(var r in this.handles)e(this.handles[r])[0]==t.target&&(n=!0);return!this.options.disabled&&n},_mouseStart:function(t){var r=this.options,i=this.element.position(),s=this.element;this.resizing=!0,this.documentScroll={top:e(document).scrollTop(),left:e(document).scrollLeft()},(s.is(".ui-draggable")||/absolute/.test(s.css("position")))&&s.css({position:"absolute",top:i.top,left:i.left}),this._renderProxy();var o=n(this.helper.css("left")),u=n(this.helper.css("top"));r.containment&&(o+=e(r.containment).scrollLeft()||0,u+=e(r.containment).scrollTop()||0),this.offset=this.helper.offset(),this.position={left:o,top:u},this.size=this._helper?{width:s.outerWidth(),height:s.outerHeight()}:{width:s.width(),height:s.height()},this.originalSize=this._helper?{width:s.outerWidth(),height:s.outerHeight()}:{width:s.width(),height:s.height()},this.originalPosition={left:o,top:u},this.sizeDiff={width:s.outerWidth()-s.width(),height:s.outerHeight()-s.height()},this.originalMousePosition={left:t.pageX,top:t.pageY},this.aspectRatio=typeof r.aspectRatio=="number"?r.aspectRatio:this.originalSize.width/this.originalSize.height||1;var a=e(".ui-resizable-"+this.axis).css("cursor");return e("body").css("cursor",a=="auto"?this.axis+"-resize":a),s.addClass("ui-resizable-resizing"),this._propagate("start",t),!0},_mouseDrag:function(e){var t=this.helper,n=this.options,r={},i=this,s=this.originalMousePosition,o=this.axis,u=e.pageX-s.left||0,a=e.pageY-s.top||0,f=this._change[o];if(!f)return!1;var l=f.apply(this,[e,u,a]);this._updateVirtualBoundaries(e.shiftKey);if(this._aspectRatio||e.shiftKey)l=this._updateRatio(l,e);return l=this._respectSize(l,e),this._propagate("resize",e),t.css({top:this.position.top+"px",left:this.position.left+"px",width:this.size.width+"px",height:this.size.height+"px"}),!this._helper&&this._proportionallyResizeElements.length&&this._proportionallyResize(),this._updateCache(l),this._trigger("resize",e,this.ui()),!1},_mouseStop:function(t){this.resizing=!1;var n=this.options,r=this;if(this._helper){var i=this._proportionallyResizeElements,s=i.length&&/textarea/i.test(i[0].nodeName),o=s&&e.ui.hasScroll(i[0],"left")?0:r.sizeDiff.height,u=s?0:r.sizeDiff.width,a={width:r.helper.width()-u,height:r.helper.height()-o},f=parseInt(r.element.css("left"),10)+(r.position.left-r.originalPosition.left)||null,l=parseInt(r.element.css("top"),10)+(r.position.top-r.originalPosition.top)||null;n.animate||this.element.css(e.extend(a,{top:l,left:f})),r.helper.height(r.size.height),r.helper.width(r.size.width),this._helper&&!n.animate&&this._proportionallyResize()}return e("body").css("cursor","auto"),this.element.removeClass("ui-resizable-resizing"),this._propagate("stop",t),this._helper&&this.helper.remove(),!1},_updateVirtualBoundaries:function(e){var t=this.options,n,i,s,o,u;u={minWidth:r(t.minWidth)?t.minWidth:0,maxWidth:r(t.maxWidth)?t.maxWidth:Infinity,minHeight:r(t.minHeight)?t.minHeight:0,maxHeight:r(t.maxHeight)?t.maxHeight:Infinity};if(this._aspectRatio||e)n=u.minHeight*this.aspectRatio,s=u.minWidth/this.aspectRatio,i=u.maxHeight*this.aspectRatio,o=u.maxWidth/this.aspectRatio,n>u.minWidth&&(u.minWidth=n),s>u.minHeight&&(u.minHeight=s),i<u.maxWidth&&(u.maxWidth=i),o<u.maxHeight&&(u.maxHeight=o);this._vBoundaries=u},_updateCache:function(e){var t=this.options;this.offset=this.helper.offset(),r(e.left)&&(this.position.left=e.left),r(e.top)&&(this.position.top=e.top),r(e.height)&&(this.size.height=e.height),r(e.width)&&(this.size.width=e.width)},_updateRatio:function(e,t){var n=this.options,i=this.position,s=this.size,o=this.axis;return r(e.height)?e.width=e.height*this.aspectRatio:r(e.width)&&(e.height=e.width/this.aspectRatio),o=="sw"&&(e.left=i.left+(s.width-e.width),e.top=null),o=="nw"&&(e.top=i.top+(s.height-e.height),e.left=i.left+(s.width-e.width)),e},_respectSize:function(e,t){var n=this.helper,i=this._vBoundaries,s=this._aspectRatio||t.shiftKey,o=this.axis,u=r(e.width)&&i.maxWidth&&i.maxWidth<e.width,a=r(e.height)&&i.maxHeight&&i.maxHeight<e.height,f=r(e.width)&&i.minWidth&&i.minWidth>e.width,l=r(e.height)&&i.minHeight&&i.minHeight>e.height;f&&(e.width=i.minWidth),l&&(e.height=i.minHeight),u&&(e.width=i.maxWidth),a&&(e.height=i.maxHeight);var c=this.originalPosition.left+this.originalSize.width,h=this.position.top+this.size.height,p=/sw|nw|w/.test(o),d=/nw|ne|n/.test(o);f&&p&&(e.left=c-i.minWidth),u&&p&&(e.left=c-i.maxWidth),l&&d&&(e.top=h-i.minHeight),a&&d&&(e.top=h-i.maxHeight);var v=!e.width&&!e.height;return v&&!e.left&&e.top?e.top=null:v&&!e.top&&e.left&&(e.left=null),e},_proportionallyResize:function(){var t=this.options;if(!this._proportionallyResizeElements.length)return;var n=this.helper||this.element;for(var r=0;r<this._proportionallyResizeElements.length;r++){var i=this._proportionallyResizeElements[r];if(!this.borderDif){var s=[i.css("borderTopWidth"),i.css("borderRightWidth"),i.css("borderBottomWidth"),i.css("borderLeftWidth")],o=[i.css("paddingTop"),i.css("paddingRight"),i.css("paddingBottom"),i.css("paddingLeft")];this.borderDif=e.map(s,function(e,t){var n=parseInt(e,10)||0,r=parseInt(o[t],10)||0;return n+r})}i.css({height:n.height()-this.borderDif[0]-this.borderDif[2]||0,width:n.width()-this.borderDif[1]-this.borderDif[3]||0})}},_renderProxy:function(){var t=this.element,n=this.options;this.elementOffset=t.offset();if(this._helper){this.helper=this.helper||e('<div style="overflow:hidden;"></div>');var r=e.ui.ie6?1:0,i=e.ui.ie6?2:-1;this.helper.addClass(this._helper).css({width:this.element.outerWidth()+i,height:this.element.outerHeight()+i,position:"absolute",left:this.elementOffset.left-r+"px",top:this.elementOffset.top-r+"px",zIndex:++n.zIndex}),this.helper.appendTo("body").disableSelection()}else this.helper=this.element},_change:{e:function(e,t,n){return{width:this.originalSize.width+t}},w:function(e,t,n){var r=this.options,i=this.originalSize,s=this.originalPosition;return{left:s.left+t,width:i.width-t}},n:function(e,t,n){var r=this.options,i=this.originalSize,s=this.originalPosition;return{top:s.top+n,height:i.height-n}},s:function(e,t,n){return{height:this.originalSize.height+n}},se:function(t,n,r){return e.extend(this._change.s.apply(this,arguments),this._change.e.apply(this,[t,n,r]))},sw:function(t,n,r){return e.extend(this._change.s.apply(this,arguments),this._change.w.apply(this,[t,n,r]))},ne:function(t,n,r){return e.extend(this._change.n.apply(this,arguments),this._change.e.apply(this,[t,n,r]))},nw:function(t,n,r){return e.extend(this._change.n.apply(this,arguments),this._change.w.apply(this,[t,n,r]))}},_propagate:function(t,n){e.ui.plugin.call(this,t,[n,this.ui()]),t!="resize"&&this._trigger(t,n,this.ui())},plugins:{},ui:function(){return{originalElement:this.originalElement,element:this.element,helper:this.helper,position:this.position,size:this.size,originalSize:this.originalSize,originalPosition:this.originalPosition}}}),e.ui.plugin.add("resizable","alsoResize",{start:function(t,n){var r=e(this).data("resizable"),i=r.options,s=function(t){e(t).each(function(){var t=e(this);t.data("resizable-alsoresize",{width:parseInt(t.width(),10),height:parseInt(t.height(),10),left:parseInt(t.css("left"),10),top:parseInt(t.css("top"),10)})})};typeof i.alsoResize=="object"&&!i.alsoResize.parentNode?i.alsoResize.length?(i.alsoResize=i.alsoResize[0],s(i.alsoResize)):e.each(i.alsoResize,function(e){s(e)}):s(i.alsoResize)},resize:function(t,n){var r=e(this).data("resizable"),i=r.options,s=r.originalSize,o=r.originalPosition,u={height:r.size.height-s.height||0,width:r.size.width-s.width||0,top:r.position.top-o.top||0,left:r.position.left-o.left||0},a=function(t,r){e(t).each(function(){var t=e(this),i=e(this).data("resizable-alsoresize"),s={},o=r&&r.length?r:t.parents(n.originalElement[0]).length?["width","height"]:["width","height","top","left"];e.each(o,function(e,t){var n=(i[t]||0)+(u[t]||0);n&&n>=0&&(s[t]=n||null)}),t.css(s)})};typeof i.alsoResize=="object"&&!i.alsoResize.nodeType?e.each(i.alsoResize,function(e,t){a(e,t)}):a(i.alsoResize)},stop:function(t,n){e(this).removeData("resizable-alsoresize")}}),e.ui.plugin.add("resizable","animate",{stop:function(t,n){var r=e(this).data("resizable"),i=r.options,s=r._proportionallyResizeElements,o=s.length&&/textarea/i.test(s[0].nodeName),u=o&&e.ui.hasScroll(s[0],"left")?0:r.sizeDiff.height,a=o?0:r.sizeDiff.width,f={width:r.size.width-a,height:r.size.height-u},l=parseInt(r.element.css("left"),10)+(r.position.left-r.originalPosition.left)||null,c=parseInt(r.element.css("top"),10)+(r.position.top-r.originalPosition.top)||null;r.element.animate(e.extend(f,c&&l?{top:c,left:l}:{}),{duration:i.animateDuration,easing:i.animateEasing,step:function(){var n={width:parseInt(r.element.css("width"),10),height:parseInt(r.element.css("height"),10),top:parseInt(r.element.css("top"),10),left:parseInt(r.element.css("left"),10)};s&&s.length&&e(s[0]).css({width:n.width,height:n.height}),r._updateCache(n),r._propagate("resize",t)}})}}),e.ui.plugin.add("resizable","containment",{start:function(t,r){var i=e(this).data("resizable"),s=i.options,o=i.element,u=s.containment,a=u instanceof e?u.get(0):/parent/.test(u)?o.parent().get(0):u;if(!a)return;i.containerElement=e(a);if(/document/.test(u)||u==document)i.containerOffset={left:0,top:0},i.containerPosition={left:0,top:0},i.parentData={element:e(document),left:0,top:0,width:e(document).width(),height:e(document).height()||document.body.parentNode.scrollHeight};else{var f=e(a),l=[];e(["Top","Right","Left","Bottom"]).each(function(e,t){l[e]=n(f.css("padding"+t))}),i.containerOffset=f.offset(),i.containerPosition=f.position(),i.containerSize={height:f.innerHeight()-l[3],width:f.innerWidth()-l[1]};var c=i.containerOffset,h=i.containerSize.height,p=i.containerSize.width,d=e.ui.hasScroll(a,"left")?a.scrollWidth:p,v=e.ui.hasScroll(a)?a.scrollHeight:h;i.parentData={element:a,left:c.left,top:c.top,width:d,height:v}}},resize:function(t,n){var r=e(this).data("resizable"),i=r.options,s=r.containerSize,o=r.containerOffset,u=r.size,a=r.position,f=r._aspectRatio||t.shiftKey,l={top:0,left:0},c=r.containerElement;c[0]!=document&&/static/.test(c.css("position"))&&(l=o),a.left<(r._helper?o.left:0)&&(r.size.width=r.size.width+(r._helper?r.position.left-o.left:r.position.left-l.left),f&&(r.size.height=r.size.width/r.aspectRatio),r.position.left=i.helper?o.left:0),a.top<(r._helper?o.top:0)&&(r.size.height=r.size.height+(r._helper?r.position.top-o.top:r.position.top),f&&(r.size.width=r.size.height*r.aspectRatio),r.position.top=r._helper?o.top:0),r.offset.left=r.parentData.left+r.position.left,r.offset.top=r.parentData.top+r.position.top;var h=Math.abs((r._helper?r.offset.left-l.left:r.offset.left-l.left)+r.sizeDiff.width),p=Math.abs((r._helper?r.offset.top-l.top:r.offset.top-o.top)+r.sizeDiff.height),d=r.containerElement.get(0)==r.element.parent().get(0),v=/relative|absolute/.test(r.containerElement.css("position"));d&&v&&(h-=r.parentData.left),h+r.size.width>=r.parentData.width&&(r.size.width=r.parentData.width-h,f&&(r.size.height=r.size.width/r.aspectRatio)),p+r.size.height>=r.parentData.height&&(r.size.height=r.parentData.height-p,f&&(r.size.width=r.size.height*r.aspectRatio))},stop:function(t,n){var r=e(this).data("resizable"),i=r.options,s=r.position,o=r.containerOffset,u=r.containerPosition,a=r.containerElement,f=e(r.helper),l=f.offset(),c=f.outerWidth()-r.sizeDiff.width,h=f.outerHeight()-r.sizeDiff.height;r._helper&&!i.animate&&/relative/.test(a.css("position"))&&e(this).css({left:l.left-u.left-o.left,width:c,height:h}),r._helper&&!i.animate&&/static/.test(a.css("position"))&&e(this).css({left:l.left-u.left-o.left,width:c,height:h})}}),e.ui.plugin.add("resizable","ghost",{start:function(t,n){var r=e(this).data("resizable"),i=r.options,s=r.size;r.ghost=r.originalElement.clone(),r.ghost.css({opacity:.25,display:"block",position:"relative",height:s.height,width:s.width,margin:0,left:0,top:0}).addClass("ui-resizable-ghost").addClass(typeof i.ghost=="string"?i.ghost:""),r.ghost.appendTo(r.helper)},resize:function(t,n){var r=e(this).data("resizable"),i=r.options;r.ghost&&r.ghost.css({position:"relative",height:r.size.height,width:r.size.width})},stop:function(t,n){var r=e(this).data("resizable"),i=r.options;r.ghost&&r.helper&&r.helper.get(0).removeChild(r.ghost.get(0))}}),e.ui.plugin.add("resizable","grid",{resize:function(t,n){var r=e(this).data("resizable"),i=r.options,s=r.size,o=r.originalSize,u=r.originalPosition,a=r.axis,f=i._aspectRatio||t.shiftKey;i.grid=typeof i.grid=="number"?[i.grid,i.grid]:i.grid;var l=Math.round((s.width-o.width)/(i.grid[0]||1))*(i.grid[0]||1),c=Math.round((s.height-o.height)/(i.grid[1]||1))*(i.grid[1]||1);/^(se|s|e)$/.test(a)?(r.size.width=o.width+l,r.size.height=o.height+c):/^(ne)$/.test(a)?(r.size.width=o.width+l,r.size.height=o.height+c,r.position.top=u.top-c):/^(sw)$/.test(a)?(r.size.width=o.width+l,r.size.height=o.height+c,r.position.left=u.left-l):(r.size.width=o.width+l,r.size.height=o.height+c,r.position.top=u.top-c,r.position.left=u.left-l)}});var n=function(e){return parseInt(e,10)||0},r=function(e){return!isNaN(parseInt(e,10))}})(jQuery);(function(e,t){e.widget("ui.sortable",e.ui.mouse,{version:"1.9.2",widgetEventPrefix:"sort",ready:!1,options:{appendTo:"parent",axis:!1,connectWith:!1,containment:!1,cursor:"auto",cursorAt:!1,dropOnEmpty:!0,forcePlaceholderSize:!1,forceHelperSize:!1,grid:!1,handle:!1,helper:"original",items:"> *",opacity:!1,placeholder:!1,revert:!1,scroll:!0,scrollSensitivity:20,scrollSpeed:20,scope:"default",tolerance:"intersect",zIndex:1e3},_create:function(){var e=this.options;this.containerCache={},this.element.addClass("ui-sortable"),this.refresh(),this.floating=this.items.length?e.axis==="x"||/left|right/.test(this.items[0].item.css("float"))||/inline|table-cell/.test(this.items[0].item.css("display")):!1,this.offset=this.element.offset(),this._mouseInit(),this.ready=!0},_destroy:function(){this.element.removeClass("ui-sortable ui-sortable-disabled"),this._mouseDestroy();for(var e=this.items.length-1;e>=0;e--)this.items[e].item.removeData(this.widgetName+"-item");return this},_setOption:function(t,n){t==="disabled"?(this.options[t]=n,this.widget().toggleClass("ui-sortable-disabled",!!n)):e.Widget.prototype._setOption.apply(this,arguments)},_mouseCapture:function(t,n){var r=this;if(this.reverting)return!1;if(this.options.disabled||this.options.type=="static")return!1;this._refreshItems(t);var i=null,s=e(t.target).parents().each(function(){if(e.data(this,r.widgetName+"-item")==r)return i=e(this),!1});e.data(t.target,r.widgetName+"-item")==r&&(i=e(t.target));if(!i)return!1;if(this.options.handle&&!n){var o=!1;e(this.options.handle,i).find("*").andSelf().each(function(){this==t.target&&(o=!0)});if(!o)return!1}return this.currentItem=i,this._removeCurrentsFromItems(),!0},_mouseStart:function(t,n,r){var i=this.options;this.currentContainer=this,this.refreshPositions(),this.helper=this._createHelper(t),this._cacheHelperProportions(),this._cacheMargins(),this.scrollParent=this.helper.scrollParent(),this.offset=this.currentItem.offset(),this.offset={top:this.offset.top-this.margins.top,left:this.offset.left-this.margins.left},e.extend(this.offset,{click:{left:t.pageX-this.offset.left,top:t.pageY-this.offset.top},parent:this._getParentOffset(),relative:this._getRelativeOffset()}),this.helper.css("position","absolute"),this.cssPosition=this.helper.css("position"),this.originalPosition=this._generatePosition(t),this.originalPageX=t.pageX,this.originalPageY=t.pageY,i.cursorAt&&this._adjustOffsetFromHelper(i.cursorAt),this.domPosition={prev:this.currentItem.prev()[0],parent:this.currentItem.parent()[0]},this.helper[0]!=this.currentItem[0]&&this.currentItem.hide(),this._createPlaceholder(),i.containment&&this._setContainment(),i.cursor&&(e("body").css("cursor")&&(this._storedCursor=e("body").css("cursor")),e("body").css("cursor",i.cursor)),i.opacity&&(this.helper.css("opacity")&&(this._storedOpacity=this.helper.css("opacity")),this.helper.css("opacity",i.opacity)),i.zIndex&&(this.helper.css("zIndex")&&(this._storedZIndex=this.helper.css("zIndex")),this.helper.css("zIndex",i.zIndex)),this.scrollParent[0]!=document&&this.scrollParent[0].tagName!="HTML"&&(this.overflowOffset=this.scrollParent.offset()),this._trigger("start",t,this._uiHash()),this._preserveHelperProportions||this._cacheHelperProportions();if(!r)for(var s=this.containers.length-1;s>=0;s--)this.containers[s]._trigger("activate",t,this._uiHash(this));return e.ui.ddmanager&&(e.ui.ddmanager.current=this),e.ui.ddmanager&&!i.dropBehaviour&&e.ui.ddmanager.prepareOffsets(this,t),this.dragging=!0,this.helper.addClass("ui-sortable-helper"),this._mouseDrag(t),!0},_mouseDrag:function(t){this.position=this._generatePosition(t),this.positionAbs=this._convertPositionTo("absolute"),this.lastPositionAbs||(this.lastPositionAbs=this.positionAbs);if(this.options.scroll){var n=this.options,r=!1;this.scrollParent[0]!=document&&this.scrollParent[0].tagName!="HTML"?(this.overflowOffset.top+this.scrollParent[0].offsetHeight-t.pageY<n.scrollSensitivity?this.scrollParent[0].scrollTop=r=this.scrollParent[0].scrollTop+n.scrollSpeed:t.pageY-this.overflowOffset.top<n.scrollSensitivity&&(this.scrollParent[0].scrollTop=r=this.scrollParent[0].scrollTop-n.scrollSpeed),this.overflowOffset.left+this.scrollParent[0].offsetWidth-t.pageX<n.scrollSensitivity?this.scrollParent[0].scrollLeft=r=this.scrollParent[0].scrollLeft+n.scrollSpeed:t.pageX-this.overflowOffset.left<n.scrollSensitivity&&(this.scrollParent[0].scrollLeft=r=this.scrollParent[0].scrollLeft-n.scrollSpeed)):(t.pageY-e(document).scrollTop()<n.scrollSensitivity?r=e(document).scrollTop(e(document).scrollTop()-n.scrollSpeed):e(window).height()-(t.pageY-e(document).scrollTop())<n.scrollSensitivity&&(r=e(document).scrollTop(e(document).scrollTop()+n.scrollSpeed)),t.pageX-e(document).scrollLeft()<n.scrollSensitivity?r=e(document).scrollLeft(e(document).scrollLeft()-n.scrollSpeed):e(window).width()-(t.pageX-e(document).scrollLeft())<n.scrollSensitivity&&(r=e(document).scrollLeft(e(document).scrollLeft()+n.scrollSpeed))),r!==!1&&e.ui.ddmanager&&!n.dropBehaviour&&e.ui.ddmanager.prepareOffsets(this,t)}this.positionAbs=this._convertPositionTo("absolute");if(!this.options.axis||this.options.axis!="y")this.helper[0].style.left=this.position.left+"px";if(!this.options.axis||this.options.axis!="x")this.helper[0].style.top=this.position.top+"px";for(var i=this.items.length-1;i>=0;i--){var s=this.items[i],o=s.item[0],u=this._intersectsWithPointer(s);if(!u)continue;if(s.instance!==this.currentContainer)continue;if(o!=this.currentItem[0]&&this.placeholder[u==1?"next":"prev"]()[0]!=o&&!e.contains(this.placeholder[0],o)&&(this.options.type=="semi-dynamic"?!e.contains(this.element[0],o):!0)){this.direction=u==1?"down":"up";if(this.options.tolerance!="pointer"&&!this._intersectsWithSides(s))break;this._rearrange(t,s),this._trigger("change",t,this._uiHash());break}}return this._contactContainers(t),e.ui.ddmanager&&e.ui.ddmanager.drag(this,t),this._trigger("sort",t,this._uiHash()),this.lastPositionAbs=this.positionAbs,!1},_mouseStop:function(t,n){if(!t)return;e.ui.ddmanager&&!this.options.dropBehaviour&&e.ui.ddmanager.drop(this,t);if(this.options.revert){var r=this,i=this.placeholder.offset();this.reverting=!0,e(this.helper).animate({left:i.left-this.offset.parent.left-this.margins.left+(this.offsetParent[0]==document.body?0:this.offsetParent[0].scrollLeft),top:i.top-this.offset.parent.top-this.margins.top+(this.offsetParent[0]==document.body?0:this.offsetParent[0].scrollTop)},parseInt(this.options.revert,10)||500,function(){r._clear(t)})}else this._clear(t,n);return!1},cancel:function(){if(this.dragging){this._mouseUp({target:null}),this.options.helper=="original"?this.currentItem.css(this._storedCSS).removeClass("ui-sortable-helper"):this.currentItem.show();for(var t=this.containers.length-1;t>=0;t--)this.containers[t]._trigger("deactivate",null,this._uiHash(this)),this.containers[t].containerCache.over&&(this.containers[t]._trigger("out",null,this._uiHash(this)),this.containers[t].containerCache.over=0)}return this.placeholder&&(this.placeholder[0].parentNode&&this.placeholder[0].parentNode.removeChild(this.placeholder[0]),this.options.helper!="original"&&this.helper&&this.helper[0].parentNode&&this.helper.remove(),e.extend(this,{helper:null,dragging:!1,reverting:!1,_noFinalSort:null}),this.domPosition.prev?e(this.domPosition.prev).after(this.currentItem):e(this.domPosition.parent).prepend(this.currentItem)),this},serialize:function(t){var n=this._getItemsAsjQuery(t&&t.connected),r=[];return t=t||{},e(n).each(function(){var n=(e(t.item||this).attr(t.attribute||"id")||"").match(t.expression||/(.+)[-=_](.+)/);n&&r.push((t.key||n[1]+"[]")+"="+(t.key&&t.expression?n[1]:n[2]))}),!r.length&&t.key&&r.push(t.key+"="),r.join("&")},toArray:function(t){var n=this._getItemsAsjQuery(t&&t.connected),r=[];return t=t||{},n.each(function(){r.push(e(t.item||this).attr(t.attribute||"id")||"")}),r},_intersectsWith:function(e){var t=this.positionAbs.left,n=t+this.helperProportions.width,r=this.positionAbs.top,i=r+this.helperProportions.height,s=e.left,o=s+e.width,u=e.top,a=u+e.height,f=this.offset.click.top,l=this.offset.click.left,c=r+f>u&&r+f<a&&t+l>s&&t+l<o;return this.options.tolerance=="pointer"||this.options.forcePointerForContainers||this.options.tolerance!="pointer"&&this.helperProportions[this.floating?"width":"height"]>e[this.floating?"width":"height"]?c:s<t+this.helperProportions.width/2&&n-this.helperProportions.width/2<o&&u<r+this.helperProportions.height/2&&i-this.helperProportions.height/2<a},_intersectsWithPointer:function(t){var n=this.options.axis==="x"||e.ui.isOverAxis(this.positionAbs.top+this.offset.click.top,t.top,t.height),r=this.options.axis==="y"||e.ui.isOverAxis(this.positionAbs.left+this.offset.click.left,t.left,t.width),i=n&&r,s=this._getDragVerticalDirection(),o=this._getDragHorizontalDirection();return i?this.floating?o&&o=="right"||s=="down"?2:1:s&&(s=="down"?2:1):!1},_intersectsWithSides:function(t){var n=e.ui.isOverAxis(this.positionAbs.top+this.offset.click.top,t.top+t.height/2,t.height),r=e.ui.isOverAxis(this.positionAbs.left+this.offset.click.left,t.left+t.width/2,t.width),i=this._getDragVerticalDirection(),s=this._getDragHorizontalDirection();return this.floating&&s?s=="right"&&r||s=="left"&&!r:i&&(i=="down"&&n||i=="up"&&!n)},_getDragVerticalDirection:function(){var e=this.positionAbs.top-this.lastPositionAbs.top;return e!=0&&(e>0?"down":"up")},_getDragHorizontalDirection:function(){var e=this.positionAbs.left-this.lastPositionAbs.left;return e!=0&&(e>0?"right":"left")},refresh:function(e){return this._refreshItems(e),this.refreshPositions(),this},_connectWith:function(){var e=this.options;return e.connectWith.constructor==String?[e.connectWith]:e.connectWith},_getItemsAsjQuery:function(t){var n=[],r=[],i=this._connectWith();if(i&&t)for(var s=i.length-1;s>=0;s--){var o=e(i[s]);for(var u=o.length-1;u>=0;u--){var a=e.data(o[u],this.widgetName);a&&a!=this&&!a.options.disabled&&r.push([e.isFunction(a.options.items)?a.options.items.call(a.element):e(a.options.items,a.element).not(".ui-sortable-helper").not(".ui-sortable-placeholder"),a])}}r.push([e.isFunction(this.options.items)?this.options.items.call(this.element,null,{options:this.options,item:this.currentItem}):e(this.options.items,this.element).not(".ui-sortable-helper").not(".ui-sortable-placeholder"),this]);for(var s=r.length-1;s>=0;s--)r[s][0].each(function(){n.push(this)});return e(n)},_removeCurrentsFromItems:function(){var t=this.currentItem.find(":data("+this.widgetName+"-item)");this.items=e.grep(this.items,function(e){for(var n=0;n<t.length;n++)if(t[n]==e.item[0])return!1;return!0})},_refreshItems:function(t){this.items=[],this.containers=[this];var n=this.items,r=[[e.isFunction(this.options.items)?this.options.items.call(this.element[0],t,{item:this.currentItem}):e(this.options.items,this.element),this]],i=this._connectWith();if(i&&this.ready)for(var s=i.length-1;s>=0;s--){var o=e(i[s]);for(var u=o.length-1;u>=0;u--){var a=e.data(o[u],this.widgetName);a&&a!=this&&!a.options.disabled&&(r.push([e.isFunction(a.options.items)?a.options.items.call(a.element[0],t,{item:this.currentItem}):e(a.options.items,a.element),a]),this.containers.push(a))}}for(var s=r.length-1;s>=0;s--){var f=r[s][1],l=r[s][0];for(var u=0,c=l.length;u<c;u++){var h=e(l[u]);h.data(this.widgetName+"-item",f),n.push({item:h,instance:f,width:0,height:0,left:0,top:0})}}},refreshPositions:function(t){this.offsetParent&&this.helper&&(this.offset.parent=this._getParentOffset());for(var n=this.items.length-1;n>=0;n--){var r=this.items[n];if(r.instance!=this.currentContainer&&this.currentContainer&&r.item[0]!=this.currentItem[0])continue;var i=this.options.toleranceElement?e(this.options.toleranceElement,r.item):r.item;t||(r.width=i.outerWidth(),r.height=i.outerHeight());var s=i.offset();r.left=s.left,r.top=s.top}if(this.options.custom&&this.options.custom.refreshContainers)this.options.custom.refreshContainers.call(this);else for(var n=this.containers.length-1;n>=0;n--){var s=this.containers[n].element.offset();this.containers[n].containerCache.left=s.left,this.containers[n].containerCache.top=s.top,this.containers[n].containerCache.width=this.containers[n].element.outerWidth(),this.containers[n].containerCache.height=this.containers[n].element.outerHeight()}return this},_createPlaceholder:function(t){t=t||this;var n=t.options;if(!n.placeholder||n.placeholder.constructor==String){var r=n.placeholder;n.placeholder={element:function(){var n=e(document.createElement(t.currentItem[0].nodeName)).addClass(r||t.currentItem[0].className+" ui-sortable-placeholder").removeClass("ui-sortable-helper")[0];return r||(n.style.visibility="hidden"),n},update:function(e,i){if(r&&!n.forcePlaceholderSize)return;i.height()||i.height(t.currentItem.innerHeight()-parseInt(t.currentItem.css("paddingTop")||0,10)-parseInt(t.currentItem.css("paddingBottom")||0,10)),i.width()||i.width(t.currentItem.innerWidth()-parseInt(t.currentItem.css("paddingLeft")||0,10)-parseInt(t.currentItem.css("paddingRight")||0,10))}}}t.placeholder=e(n.placeholder.element.call(t.element,t.currentItem)),t.currentItem.after(t.placeholder),n.placeholder.update(t,t.placeholder)},_contactContainers:function(t){var n=null,r=null;for(var i=this.containers.length-1;i>=0;i--){if(e.contains(this.currentItem[0],this.containers[i].element[0]))continue;if(this._intersectsWith(this.containers[i].containerCache)){if(n&&e.contains(this.containers[i].element[0],n.element[0]))continue;n=this.containers[i],r=i}else this.containers[i].containerCache.over&&(this.containers[i]._trigger("out",t,this._uiHash(this)),this.containers[i].containerCache.over=0)}if(!n)return;if(this.containers.length===1)this.containers[r]._trigger("over",t,this._uiHash(this)),this.containers[r].containerCache.over=1;else{var s=1e4,o=null,u=this.containers[r].floating?"left":"top",a=this.containers[r].floating?"width":"height",f=this.positionAbs[u]+this.offset.click[u];for(var l=this.items.length-1;l>=0;l--){if(!e.contains(this.containers[r].element[0],this.items[l].item[0]))continue;if(this.items[l].item[0]==this.currentItem[0])continue;var c=this.items[l].item.offset()[u],h=!1;Math.abs(c-f)>Math.abs(c+this.items[l][a]-f)&&(h=!0,c+=this.items[l][a]),Math.abs(c-f)<s&&(s=Math.abs(c-f),o=this.items[l],this.direction=h?"up":"down")}if(!o&&!this.options.dropOnEmpty)return;this.currentContainer=this.containers[r],o?this._rearrange(t,o,null,!0):this._rearrange(t,null,this.containers[r].element,!0),this._trigger("change",t,this._uiHash()),this.containers[r]._trigger("change",t,this._uiHash(this)),this.options.placeholder.update(this.currentContainer,this.placeholder),this.containers[r]._trigger("over",t,this._uiHash(this)),this.containers[r].containerCache.over=1}},_createHelper:function(t){var n=this.options,r=e.isFunction(n.helper)?e(n.helper.apply(this.element[0],[t,this.currentItem])):n.helper=="clone"?this.currentItem.clone():this.currentItem;return r.parents("body").length||e(n.appendTo!="parent"?n.appendTo:this.currentItem[0].parentNode)[0].appendChild(r[0]),r[0]==this.currentItem[0]&&(this._storedCSS={width:this.currentItem[0].style.width,height:this.currentItem[0].style.height,position:this.currentItem.css("position"),top:this.currentItem.css("top"),left:this.currentItem.css("left")}),(r[0].style.width==""||n.forceHelperSize)&&r.width(this.currentItem.width()),(r[0].style.height==""||n.forceHelperSize)&&r.height(this.currentItem.height()),r},_adjustOffsetFromHelper:function(t){typeof t=="string"&&(t=t.split(" ")),e.isArray(t)&&(t={left:+t[0],top:+t[1]||0}),"left"in t&&(this.offset.click.left=t.left+this.margins.left),"right"in t&&(this.offset.click.left=this.helperProportions.width-t.right+this.margins.left),"top"in t&&(this.offset.click.top=t.top+this.margins.top),"bottom"in t&&(this.offset.click.top=this.helperProportions.height-t.bottom+this.margins.top)},_getParentOffset:function(){this.offsetParent=this.helper.offsetParent();var t=this.offsetParent.offset();this.cssPosition=="absolute"&&this.scrollParent[0]!=document&&e.contains(this.scrollParent[0],this.offsetParent[0])&&(t.left+=this.scrollParent.scrollLeft(),t.top+=this.scrollParent.scrollTop());if(this.offsetParent[0]==document.body||this.offsetParent[0].tagName&&this.offsetParent[0].tagName.toLowerCase()=="html"&&e.ui.ie)t={top:0,left:0};return{top:t.top+(parseInt(this.offsetParent.css("borderTopWidth"),10)||0),left:t.left+(parseInt(this.offsetParent.css("borderLeftWidth"),10)||0)}},_getRelativeOffset:function(){if(this.cssPosition=="relative"){var e=this.currentItem.position();return{top:e.top-(parseInt(this.helper.css("top"),10)||0)+this.scrollParent.scrollTop(),left:e.left-(parseInt(this.helper.css("left"),10)||0)+this.scrollParent.scrollLeft()}}return{top:0,left:0}},_cacheMargins:function(){this.margins={left:parseInt(this.currentItem.css("marginLeft"),10)||0,top:parseInt(this.currentItem.css("marginTop"),10)||0}},_cacheHelperProportions:function(){this.helperProportions={width:this.helper.outerWidth(),height:this.helper.outerHeight()}},_setContainment:function(){var t=this.options;t.containment=="parent"&&(t.containment=this.helper[0].parentNode);if(t.containment=="document"||t.containment=="window")this.containment=[0-this.offset.relative.left-this.offset.parent.left,0-this.offset.relative.top-this.offset.parent.top,e(t.containment=="document"?document:window).width()-this.helperProportions.width-this.margins.left,(e(t.containment=="document"?document:window).height()||document.body.parentNode.scrollHeight)-this.helperProportions.height-this.margins.top];if(!/^(document|window|parent)$/.test(t.containment)){var n=e(t.containment)[0],r=e(t.containment).offset(),i=e(n).css("overflow")!="hidden";this.containment=[r.left+(parseInt(e(n).css("borderLeftWidth"),10)||0)+(parseInt(e(n).css("paddingLeft"),10)||0)-this.margins.left,r.top+(parseInt(e(n).css("borderTopWidth"),10)||0)+(parseInt(e(n).css("paddingTop"),10)||0)-this.margins.top,r.left+(i?Math.max(n.scrollWidth,n.offsetWidth):n.offsetWidth)-(parseInt(e(n).css("borderLeftWidth"),10)||0)-(parseInt(e(n).css("paddingRight"),10)||0)-this.helperProportions.width-this.margins.left,r.top+(i?Math.max(n.scrollHeight,n.offsetHeight):n.offsetHeight)-(parseInt(e(n).css("borderTopWidth"),10)||0)-(parseInt(e(n).css("paddingBottom"),10)||0)-this.helperProportions.height-this.margins.top]}},_convertPositionTo:function(t,n){n||(n=this.position);var r=t=="absolute"?1:-1,i=this.options,s=this.cssPosition!="absolute"||this.scrollParent[0]!=document&&!!e.contains(this.scrollParent[0],this.offsetParent[0])?this.scrollParent:this.offsetParent,o=/(html|body)/i.test(s[0].tagName);return{top:n.top+this.offset.relative.top*r+this.offset.parent.top*r-(this.cssPosition=="fixed"?-this.scrollParent.scrollTop():o?0:s.scrollTop())*r,left:n.left+this.offset.relative.left*r+this.offset.parent.left*r-(this.cssPosition=="fixed"?-this.scrollParent.scrollLeft():o?0:s.scrollLeft())*r}},_generatePosition:function(t){var n=this.options,r=this.cssPosition!="absolute"||this.scrollParent[0]!=document&&!!e.contains(this.scrollParent[0],this.offsetParent[0])?this.scrollParent:this.offsetParent,i=/(html|body)/i.test(r[0].tagName);this.cssPosition=="relative"&&(this.scrollParent[0]==document||this.scrollParent[0]==this.offsetParent[0])&&(this.offset.relative=this._getRelativeOffset());var s=t.pageX,o=t.pageY;if(this.originalPosition){this.containment&&(t.pageX-this.offset.click.left<this.containment[0]&&(s=this.containment[0]+this.offset.click.left),t.pageY-this.offset.click.top<this.containment[1]&&(o=this.containment[1]+this.offset.click.top),t.pageX-this.offset.click.left>this.containment[2]&&(s=this.containment[2]+this.offset.click.left),t.pageY-this.offset.click.top>this.containment[3]&&(o=this.containment[3]+this.offset.click.top));if(n.grid){var u=this.originalPageY+Math.round((o-this.originalPageY)/n.grid[1])*n.grid[1];o=this.containment?u-this.offset.click.top<this.containment[1]||u-this.offset.click.top>this.containment[3]?u-this.offset.click.top<this.containment[1]?u+n.grid[1]:u-n.grid[1]:u:u;var a=this.originalPageX+Math.round((s-this.originalPageX)/n.grid[0])*n.grid[0];s=this.containment?a-this.offset.click.left<this.containment[0]||a-this.offset.click.left>this.containment[2]?a-this.offset.click.left<this.containment[0]?a+n.grid[0]:a-n.grid[0]:a:a}}return{top:o-this.offset.click.top-this.offset.relative.top-this.offset.parent.top+(this.cssPosition=="fixed"?-this.scrollParent.scrollTop():i?0:r.scrollTop()),left:s-this.offset.click.left-this.offset.relative.left-this.offset.parent.left+(this.cssPosition=="fixed"?-this.scrollParent.scrollLeft():i?0:r.scrollLeft())}},_rearrange:function(e,t,n,r){n?n[0].appendChild(this.placeholder[0]):t.item[0].parentNode.insertBefore(this.placeholder[0],this.direction=="down"?t.item[0]:t.item[0].nextSibling),this.counter=this.counter?++this.counter:1;var i=this.counter;this._delay(function(){i==this.counter&&this.refreshPositions(!r)})},_clear:function(t,n){this.reverting=!1;var r=[];!this._noFinalSort&&this.currentItem.parent().length&&this.placeholder.before(this.currentItem),this._noFinalSort=null;if(this.helper[0]==this.currentItem[0]){for(var i in this._storedCSS)if(this._storedCSS[i]=="auto"||this._storedCSS[i]=="static")this._storedCSS[i]="";this.currentItem.css(this._storedCSS).removeClass("ui-sortable-helper")}else this.currentItem.show();this.fromOutside&&!n&&r.push(function(e){this._trigger("receive",e,this._uiHash(this.fromOutside))}),(this.fromOutside||this.domPosition.prev!=this.currentItem.prev().not(".ui-sortable-helper")[0]||this.domPosition.parent!=this.currentItem.parent()[0])&&!n&&r.push(function(e){this._trigger("update",e,this._uiHash())}),this!==this.currentContainer&&(n||(r.push(function(e){this._trigger("remove",e,this._uiHash())}),r.push(function(e){return function(t){e._trigger("receive",t,this._uiHash(this))}}.call(this,this.currentContainer)),r.push(function(e){return function(t){e._trigger("update",t,this._uiHash(this))}}.call(this,this.currentContainer))));for(var i=this.containers.length-1;i>=0;i--)n||r.push(function(e){return function(t){e._trigger("deactivate",t,this._uiHash(this))}}.call(this,this.containers[i])),this.containers[i].containerCache.over&&(r.push(function(e){return function(t){e._trigger("out",t,this._uiHash(this))}}.call(this,this.containers[i])),this.containers[i].containerCache.over=0);this._storedCursor&&e("body").css("cursor",this._storedCursor),this._storedOpacity&&this.helper.css("opacity",this._storedOpacity),this._storedZIndex&&this.helper.css("zIndex",this._storedZIndex=="auto"?"":this._storedZIndex),this.dragging=!1;if(this.cancelHelperRemoval){if(!n){this._trigger("beforeStop",t,this._uiHash());for(var i=0;i<r.length;i++)r[i].call(this,t);this._trigger("stop",t,this._uiHash())}return this.fromOutside=!1,!1}n||this._trigger("beforeStop",t,this._uiHash()),this.placeholder[0].parentNode.removeChild(this.placeholder[0]),this.helper[0]!=this.currentItem[0]&&this.helper.remove(),this.helper=null;if(!n){for(var i=0;i<r.length;i++)r[i].call(this,t);this._trigger("stop",t,this._uiHash())}return this.fromOutside=!1,!0},_trigger:function(){e.Widget.prototype._trigger.apply(this,arguments)===!1&&this.cancel()},_uiHash:function(t){var n=t||this;return{helper:n.helper,placeholder:n.placeholder||e([]),position:n.position,originalPosition:n.originalPosition,offset:n.positionAbs,item:n.currentItem,sender:t?t.element:null}}})})(jQuery);(function(e,t){var n=0,r={},i={};r.height=r.paddingTop=r.paddingBottom=r.borderTopWidth=r.borderBottomWidth="hide",i.height=i.paddingTop=i.paddingBottom=i.borderTopWidth=i.borderBottomWidth="show",e.widget("ui.accordion",{version:"1.9.2",options:{active:0,animate:{},collapsible:!1,event:"click",header:"> li > :first-child,> :not(li):even",heightStyle:"auto",icons:{activeHeader:"ui-icon-triangle-1-s",header:"ui-icon-triangle-1-e"},activate:null,beforeActivate:null},_create:function(){var t=this.accordionId="ui-accordion-"+(this.element.attr("id")||++n),r=this.options;this.prevShow=this.prevHide=e(),this.element.addClass("ui-accordion ui-widget ui-helper-reset"),this.headers=this.element.find(r.header).addClass("ui-accordion-header ui-helper-reset ui-state-default ui-corner-all"),this._hoverable(this.headers),this._focusable(this.headers),this.headers.next().addClass("ui-accordion-content ui-helper-reset ui-widget-content ui-corner-bottom").hide(),!r.collapsible&&(r.active===!1||r.active==null)&&(r.active=0),r.active<0&&(r.active+=this.headers.length),this.active=this._findActive(r.active).addClass("ui-accordion-header-active ui-state-active").toggleClass("ui-corner-all ui-corner-top"),this.active.next().addClass("ui-accordion-content-active").show(),this._createIcons(),this.refresh(),this.element.attr("role","tablist"),this.headers.attr("role","tab").each(function(n){var r=e(this),i=r.attr("id"),s=r.next(),o=s.attr("id");i||(i=t+"-header-"+n,r.attr("id",i)),o||(o=t+"-panel-"+n,s.attr("id",o)),r.attr("aria-controls",o),s.attr("aria-labelledby",i)}).next().attr("role","tabpanel"),this.headers.not(this.active).attr({"aria-selected":"false",tabIndex:-1}).next().attr({"aria-expanded":"false","aria-hidden":"true"}).hide(),this.active.length?this.active.attr({"aria-selected":"true",tabIndex:0}).next().attr({"aria-expanded":"true","aria-hidden":"false"}):this.headers.eq(0).attr("tabIndex",0),this._on(this.headers,{keydown:"_keydown"}),this._on(this.headers.next(),{keydown:"_panelKeyDown"}),this._setupEvents(r.event)},_getCreateEventData:function(){return{header:this.active,content:this.active.length?this.active.next():e()}},_createIcons:function(){var t=this.options.icons;t&&(e("<span>").addClass("ui-accordion-header-icon ui-icon "+t.header).prependTo(this.headers),this.active.children(".ui-accordion-header-icon").removeClass(t.header).addClass(t.activeHeader),this.headers.addClass("ui-accordion-icons"))},_destroyIcons:function(){this.headers.removeClass("ui-accordion-icons").children(".ui-accordion-header-icon").remove()},_destroy:function(){var e;this.element.removeClass("ui-accordion ui-widget ui-helper-reset").removeAttr("role"),this.headers.removeClass("ui-accordion-header ui-accordion-header-active ui-helper-reset ui-state-default ui-corner-all ui-state-active ui-state-disabled ui-corner-top").removeAttr("role").removeAttr("aria-selected").removeAttr("aria-controls").removeAttr("tabIndex").each(function(){/^ui-accordion/.test(this.id)&&this.removeAttribute("id")}),this._destroyIcons(),e=this.headers.next().css("display","").removeAttr("role").removeAttr("aria-expanded").removeAttr("aria-hidden").removeAttr("aria-labelledby").removeClass("ui-helper-reset ui-widget-content ui-corner-bottom ui-accordion-content ui-accordion-content-active ui-state-disabled").each(function(){/^ui-accordion/.test(this.id)&&this.removeAttribute("id")}),this.options.heightStyle!=="content"&&e.css("height","")},_setOption:function(e,t){if(e==="active"){this._activate(t);return}e==="event"&&(this.options.event&&this._off(this.headers,this.options.event),this._setupEvents(t)),this._super(e,t),e==="collapsible"&&!t&&this.options.active===!1&&this._activate(0),e==="icons"&&(this._destroyIcons(),t&&this._createIcons()),e==="disabled"&&this.headers.add(this.headers.next()).toggleClass("ui-state-disabled",!!t)},_keydown:function(t){if(t.altKey||t.ctrlKey)return;var n=e.ui.keyCode,r=this.headers.length,i=this.headers.index(t.target),s=!1;switch(t.keyCode){case n.RIGHT:case n.DOWN:s=this.headers[(i+1)%r];break;case n.LEFT:case n.UP:s=this.headers[(i-1+r)%r];break;case n.SPACE:case n.ENTER:this._eventHandler(t);break;case n.HOME:s=this.headers[0];break;case n.END:s=this.headers[r-1]}s&&(e(t.target).attr("tabIndex",-1),e(s).attr("tabIndex",0),s.focus(),t.preventDefault())},_panelKeyDown:function(t){t.keyCode===e.ui.keyCode.UP&&t.ctrlKey&&e(t.currentTarget).prev().focus()},refresh:function(){var t,n,r=this.options.heightStyle,i=this.element.parent();r==="fill"?(e.support.minHeight||(n=i.css("overflow"),i.css("overflow","hidden")),t=i.height(),this.element.siblings(":visible").each(function(){var n=e(this),r=n.css("position");if(r==="absolute"||r==="fixed")return;t-=n.outerHeight(!0)}),n&&i.css("overflow",n),this.headers.each(function(){t-=e(this).outerHeight(!0)}),this.headers.next().each(function(){e(this).height(Math.max(0,t-e(this).innerHeight()+e(this).height()))}).css("overflow","auto")):r==="auto"&&(t=0,this.headers.next().each(function(){t=Math.max(t,e(this).css("height","").height())}).height(t))},_activate:function(t){var n=this._findActive(t)[0];if(n===this.active[0])return;n=n||this.active[0],this._eventHandler({target:n,currentTarget:n,preventDefault:e.noop})},_findActive:function(t){return typeof t=="number"?this.headers.eq(t):e()},_setupEvents:function(t){var n={};if(!t)return;e.each(t.split(" "),function(e,t){n[t]="_eventHandler"}),this._on(this.headers,n)},_eventHandler:function(t){var n=this.options,r=this.active,i=e(t.currentTarget),s=i[0]===r[0],o=s&&n.collapsible,u=o?e():i.next(),a=r.next(),f={oldHeader:r,oldPanel:a,newHeader:o?e():i,newPanel:u};t.preventDefault();if(s&&!n.collapsible||this._trigger("beforeActivate",t,f)===!1)return;n.active=o?!1:this.headers.index(i),this.active=s?e():i,this._toggle(f),r.removeClass("ui-accordion-header-active ui-state-active"),n.icons&&r.children(".ui-accordion-header-icon").removeClass(n.icons.activeHeader).addClass(n.icons.header),s||(i.removeClass("ui-corner-all").addClass("ui-accordion-header-active ui-state-active ui-corner-top"),n.icons&&i.children(".ui-accordion-header-icon").removeClass(n.icons.header).addClass(n.icons.activeHeader),i.next().addClass("ui-accordion-content-active"))},_toggle:function(t){var n=t.newPanel,r=this.prevShow.length?this.prevShow:t.oldPanel;this.prevShow.add(this.prevHide).stop(!0,!0),this.prevShow=n,this.prevHide=r,this.options.animate?this._animate(n,r,t):(r.hide(),n.show(),this._toggleComplete(t)),r.attr({"aria-expanded":"false","aria-hidden":"true"}),r.prev().attr("aria-selected","false"),n.length&&r.length?r.prev().attr("tabIndex",-1):n.length&&this.headers.filter(function(){return e(this).attr("tabIndex")===0}).attr("tabIndex",-1),n.attr({"aria-expanded":"true","aria-hidden":"false"}).prev().attr({"aria-selected":"true",tabIndex:0})},_animate:function(e,t,n){var s,o,u,a=this,f=0,l=e.length&&(!t.length||e.index()<t.index()),c=this.options.animate||{},h=l&&c.down||c,p=function(){a._toggleComplete(n)};typeof h=="number"&&(u=h),typeof h=="string"&&(o=h),o=o||h.easing||c.easing,u=u||h.duration||c.duration;if(!t.length)return e.animate(i,u,o,p);if(!e.length)return t.animate(r,u,o,p);s=e.show().outerHeight(),t.animate(r,{duration:u,easing:o,step:function(e,t){t.now=Math.round(e)}}),e.hide().animate(i,{duration:u,easing:o,complete:p,step:function(e,n){n.now=Math.round(e),n.prop!=="height"?f+=n.now:a.options.heightStyle!=="content"&&(n.now=Math.round(s-t.outerHeight()-f),f=0)}})},_toggleComplete:function(e){var t=e.oldPanel;t.removeClass("ui-accordion-content-active").prev().removeClass("ui-corner-top").addClass("ui-corner-all"),t.length&&(t.parent()[0].className=t.parent()[0].className),this._trigger("activate",null,e)}}),e.uiBackCompat!==!1&&(function(e,t){e.extend(t.options,{navigation:!1,navigationFilter:function(){return this.href.toLowerCase()===location.href.toLowerCase()}});var n=t._create;t._create=function(){if(this.options.navigation){var t=this,r=this.element.find(this.options.header),i=r.next(),s=r.add(i).find("a").filter(this.options.navigationFilter)[0];s&&r.add(i).each(function(n){if(e.contains(this,s))return t.options.active=Math.floor(n/2),!1})}n.call(this)}}(jQuery,jQuery.ui.accordion.prototype),function(e,t){e.extend(t.options,{heightStyle:null,autoHeight:!0,clearStyle:!1,fillSpace:!1});var n=t._create,r=t._setOption;e.extend(t,{_create:function(){this.options.heightStyle=this.options.heightStyle||this._mergeHeightStyle(),n.call(this)},_setOption:function(e){if(e==="autoHeight"||e==="clearStyle"||e==="fillSpace")this.options.heightStyle=this._mergeHeightStyle();r.apply(this,arguments)},_mergeHeightStyle:function(){var e=this.options;if(e.fillSpace)return"fill";if(e.clearStyle)return"content";if(e.autoHeight)return"auto"}})}(jQuery,jQuery.ui.accordion.prototype),function(e,t){e.extend(t.options.icons,{activeHeader:null,headerSelected:"ui-icon-triangle-1-s"});var n=t._createIcons;t._createIcons=function(){this.options.icons&&(this.options.icons.activeHeader=this.options.icons.activeHeader||this.options.icons.headerSelected),n.call(this)}}(jQuery,jQuery.ui.accordion.prototype),function(e,t){t.activate=t._activate;var n=t._findActive;t._findActive=function(e){return e===-1&&(e=!1),e&&typeof e!="number"&&(e=this.headers.index(this.headers.filter(e)),e===-1&&(e=!1)),n.call(this,e)}}(jQuery,jQuery.ui.accordion.prototype),jQuery.ui.accordion.prototype.resize=jQuery.ui.accordion.prototype.refresh,function(e,t){e.extend(t.options,{change:null,changestart:null});var n=t._trigger;t._trigger=function(e,t,r){var i=n.apply(this,arguments);return i?(e==="beforeActivate"?i=n.call(this,"changestart",t,{oldHeader:r.oldHeader,oldContent:r.oldPanel,newHeader:r.newHeader,newContent:r.newPanel}):e==="activate"&&(i=n.call(this,"change",t,{oldHeader:r.oldHeader,oldContent:r.oldPanel,newHeader:r.newHeader,newContent:r.newPanel})),i):!1}}(jQuery,jQuery.ui.accordion.prototype),function(e,t){e.extend(t.options,{animate:null,animated:"slide"});var n=t._create;t._create=function(){var e=this.options;e.animate===null&&(e.animated?e.animated==="slide"?e.animate=300:e.animated==="bounceslide"?e.animate={duration:200,down:{easing:"easeOutBounce",duration:1e3}}:e.animate=e.animated:e.animate=!1),n.call(this)}}(jQuery,jQuery.ui.accordion.prototype))})(jQuery);(function(e,t){var n=0;e.widget("ui.autocomplete",{version:"1.9.2",defaultElement:"<input>",options:{appendTo:"body",autoFocus:!1,delay:300,minLength:1,position:{my:"left top",at:"left bottom",collision:"none"},source:null,change:null,close:null,focus:null,open:null,response:null,search:null,select:null},pending:0,_create:function(){var t,n,r;this.isMultiLine=this._isMultiLine(),this.valueMethod=this.element[this.element.is("input,textarea")?"val":"text"],this.isNewMenu=!0,this.element.addClass("ui-autocomplete-input").attr("autocomplete","off"),this._on(this.element,{keydown:function(i){if(this.element.prop("readOnly")){t=!0,r=!0,n=!0;return}t=!1,r=!1,n=!1;var s=e.ui.keyCode;switch(i.keyCode){case s.PAGE_UP:t=!0,this._move("previousPage",i);break;case s.PAGE_DOWN:t=!0,this._move("nextPage",i);break;case s.UP:t=!0,this._keyEvent("previous",i);break;case s.DOWN:t=!0,this._keyEvent("next",i);break;case s.ENTER:case s.NUMPAD_ENTER:this.menu.active&&(t=!0,i.preventDefault(),this.menu.select(i));break;case s.TAB:this.menu.active&&this.menu.select(i);break;case s.ESCAPE:this.menu.element.is(":visible")&&(this._value(this.term),this.close(i),i.preventDefault());break;default:n=!0,this._searchTimeout(i)}},keypress:function(r){if(t){t=!1,r.preventDefault();return}if(n)return;var i=e.ui.keyCode;switch(r.keyCode){case i.PAGE_UP:this._move("previousPage",r);break;case i.PAGE_DOWN:this._move("nextPage",r);break;case i.UP:this._keyEvent("previous",r);break;case i.DOWN:this._keyEvent("next",r)}},input:function(e){if(r){r=!1,e.preventDefault();return}this._searchTimeout(e)},focus:function(){this.selectedItem=null,this.previous=this._value()},blur:function(e){if(this.cancelBlur){delete this.cancelBlur;return}clearTimeout(this.searching),this.close(e),this._change(e)}}),this._initSource(),this.menu=e("<ul>").addClass("ui-autocomplete").appendTo(this.document.find(this.options.appendTo||"body")[0]).menu({input:e(),role:null}).zIndex(this.element.zIndex()+1).hide().data("menu"),this._on(this.menu.element,{mousedown:function(t){t.preventDefault(),this.cancelBlur=!0,this._delay(function(){delete this.cancelBlur});var n=this.menu.element[0];e(t.target).closest(".ui-menu-item").length||this._delay(function(){var t=this;this.document.one("mousedown",function(r){r.target!==t.element[0]&&r.target!==n&&!e.contains(n,r.target)&&t.close()})})},menufocus:function(t,n){if(this.isNewMenu){this.isNewMenu=!1;if(t.originalEvent&&/^mouse/.test(t.originalEvent.type)){this.menu.blur(),this.document.one("mousemove",function(){e(t.target).trigger(t.originalEvent)});return}}var r=n.item.data("ui-autocomplete-item")||n.item.data("item.autocomplete");!1!==this._trigger("focus",t,{item:r})?t.originalEvent&&/^key/.test(t.originalEvent.type)&&this._value(r.value):this.liveRegion.text(r.value)},menuselect:function(e,t){var n=t.item.data("ui-autocomplete-item")||t.item.data("item.autocomplete"),r=this.previous;this.element[0]!==this.document[0].activeElement&&(this.element.focus(),this.previous=r,this._delay(function(){this.previous=r,this.selectedItem=n})),!1!==this._trigger("select",e,{item:n})&&this._value(n.value),this.term=this._value(),this.close(e),this.selectedItem=n}}),this.liveRegion=e("<span>",{role:"status","aria-live":"polite"}).addClass("ui-helper-hidden-accessible").insertAfter(this.element),e.fn.bgiframe&&this.menu.element.bgiframe(),this._on(this.window,{beforeunload:function(){this.element.removeAttr("autocomplete")}})},_destroy:function(){clearTimeout(this.searching),this.element.removeClass("ui-autocomplete-input").removeAttr("autocomplete"),this.menu.element.remove(),this.liveRegion.remove()},_setOption:function(e,t){this._super(e,t),e==="source"&&this._initSource(),e==="appendTo"&&this.menu.element.appendTo(this.document.find(t||"body")[0]),e==="disabled"&&t&&this.xhr&&this.xhr.abort()},_isMultiLine:function(){return this.element.is("textarea")?!0:this.element.is("input")?!1:this.element.prop("isContentEditable")},_initSource:function(){var t,n,r=this;e.isArray(this.options.source)?(t=this.options.source,this.source=function(n,r){r(e.ui.autocomplete.filter(t,n.term))}):typeof this.options.source=="string"?(n=this.options.source,this.source=function(t,i){r.xhr&&r.xhr.abort(),r.xhr=e.ajax({url:n,data:t,dataType:"json",success:function(e){i(e)},error:function(){i([])}})}):this.source=this.options.source},_searchTimeout:function(e){clearTimeout(this.searching),this.searching=this._delay(function(){this.term!==this._value()&&(this.selectedItem=null,this.search(null,e))},this.options.delay)},search:function(e,t){e=e!=null?e:this._value(),this.term=this._value();if(e.length<this.options.minLength)return this.close(t);if(this._trigger("search",t)===!1)return;return this._search(e)},_search:function(e){this.pending++,this.element.addClass("ui-autocomplete-loading"),this.cancelSearch=!1,this.source({term:e},this._response())},_response:function(){var e=this,t=++n;return function(r){t===n&&e.__response(r),e.pending--,e.pending||e.element.removeClass("ui-autocomplete-loading")}},__response:function(e){e&&(e=this._normalize(e)),this._trigger("response",null,{content:e}),!this.options.disabled&&e&&e.length&&!this.cancelSearch?(this._suggest(e),this._trigger("open")):this._close()},close:function(e){this.cancelSearch=!0,this._close(e)},_close:function(e){this.menu.element.is(":visible")&&(this.menu.element.hide(),this.menu.blur(),this.isNewMenu=!0,this._trigger("close",e))},_change:function(e){this.previous!==this._value()&&this._trigger("change",e,{item:this.selectedItem})},_normalize:function(t){return t.length&&t[0].label&&t[0].value?t:e.map(t,function(t){return typeof t=="string"?{label:t,value:t}:e.extend({label:t.label||t.value,value:t.value||t.label},t)})},_suggest:function(t){var n=this.menu.element.empty().zIndex(this.element.zIndex()+1);this._renderMenu(n,t),this.menu.refresh(),n.show(),this._resizeMenu(),n.position(e.extend({of:this.element},this.options.position)),this.options.autoFocus&&this.menu.next()},_resizeMenu:function(){var e=this.menu.element;e.outerWidth(Math.max(e.width("").outerWidth()+1,this.element.outerWidth()))},_renderMenu:function(t,n){var r=this;e.each(n,function(e,n){r._renderItemData(t,n)})},_renderItemData:function(e,t){return this._renderItem(e,t).data("ui-autocomplete-item",t)},_renderItem:function(t,n){return e("<li>").append(e("<a>").text(n.label)).appendTo(t)},_move:function(e,t){if(!this.menu.element.is(":visible")){this.search(null,t);return}if(this.menu.isFirstItem()&&/^previous/.test(e)||this.menu.isLastItem()&&/^next/.test(e)){this._value(this.term),this.menu.blur();return}this.menu[e](t)},widget:function(){return this.menu.element},_value:function(){return this.valueMethod.apply(this.element,arguments)},_keyEvent:function(e,t){if(!this.isMultiLine||this.menu.element.is(":visible"))this._move(e,t),t.preventDefault()}}),e.extend(e.ui.autocomplete,{escapeRegex:function(e){return e.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g,"\\$&")},filter:function(t,n){var r=new RegExp(e.ui.autocomplete.escapeRegex(n),"i");return e.grep(t,function(e){return r.test(e.label||e.value||e)})}}),e.widget("ui.autocomplete",e.ui.autocomplete,{options:{messages:{noResults:"No search results.",results:function(e){return e+(e>1?" results are":" result is")+" available, use up and down arrow keys to navigate."}}},__response:function(e){var t;this._superApply(arguments);if(this.options.disabled||this.cancelSearch)return;e&&e.length?t=this.options.messages.results(e.length):t=this.options.messages.noResults,this.liveRegion.text(t)}})})(jQuery);(function(e,t){var n,r,i,s,o="ui-button ui-widget ui-state-default ui-corner-all",u="ui-state-hover ui-state-active ",a="ui-button-icons-only ui-button-icon-only ui-button-text-icons ui-button-text-icon-primary ui-button-text-icon-secondary ui-button-text-only",f=function(){var t=e(this).find(":ui-button");setTimeout(function(){t.button("refresh")},1)},l=function(t){var n=t.name,r=t.form,i=e([]);return n&&(r?i=e(r).find("[name='"+n+"']"):i=e("[name='"+n+"']",t.ownerDocument).filter(function(){return!this.form})),i};e.widget("ui.button",{version:"1.9.2",defaultElement:"<button>",options:{disabled:null,text:!0,label:null,icons:{primary:null,secondary:null}},_create:function(){this.element.closest("form").unbind("reset"+this.eventNamespace).bind("reset"+this.eventNamespace,f),typeof this.options.disabled!="boolean"?this.options.disabled=!!this.element.prop("disabled"):this.element.prop("disabled",this.options.disabled),this._determineButtonType(),this.hasTitle=!!this.buttonElement.attr("title");var t=this,u=this.options,a=this.type==="checkbox"||this.type==="radio",c=a?"":"ui-state-active",h="ui-state-focus";u.label===null&&(u.label=this.type==="input"?this.buttonElement.val():this.buttonElement.html()),this._hoverable(this.buttonElement),this.buttonElement.addClass(o).attr("role","button").bind("mouseenter"+this.eventNamespace,function(){if(u.disabled)return;this===n&&e(this).addClass("ui-state-active")}).bind("mouseleave"+this.eventNamespace,function(){if(u.disabled)return;e(this).removeClass(c)}).bind("click"+this.eventNamespace,function(e){u.disabled&&(e.preventDefault(),e.stopImmediatePropagation())}),this.element.bind("focus"+this.eventNamespace,function(){t.buttonElement.addClass(h)}).bind("blur"+this.eventNamespace,function(){t.buttonElement.removeClass(h)}),a&&(this.element.bind("change"+this.eventNamespace,function(){if(s)return;t.refresh()}),this.buttonElement.bind("mousedown"+this.eventNamespace,function(e){if(u.disabled)return;s=!1,r=e.pageX,i=e.pageY}).bind("mouseup"+this.eventNamespace,function(e){if(u.disabled)return;if(r!==e.pageX||i!==e.pageY)s=!0})),this.type==="checkbox"?this.buttonElement.bind("click"+this.eventNamespace,function(){if(u.disabled||s)return!1;e(this).toggleClass("ui-state-active"),t.buttonElement.attr("aria-pressed",t.element[0].checked)}):this.type==="radio"?this.buttonElement.bind("click"+this.eventNamespace,function(){if(u.disabled||s)return!1;e(this).addClass("ui-state-active"),t.buttonElement.attr("aria-pressed","true");var n=t.element[0];l(n).not(n).map(function(){return e(this).button("widget")[0]}).removeClass("ui-state-active").attr("aria-pressed","false")}):(this.buttonElement.bind("mousedown"+this.eventNamespace,function(){if(u.disabled)return!1;e(this).addClass("ui-state-active"),n=this,t.document.one("mouseup",function(){n=null})}).bind("mouseup"+this.eventNamespace,function(){if(u.disabled)return!1;e(this).removeClass("ui-state-active")}).bind("keydown"+this.eventNamespace,function(t){if(u.disabled)return!1;(t.keyCode===e.ui.keyCode.SPACE||t.keyCode===e.ui.keyCode.ENTER)&&e(this).addClass("ui-state-active")}).bind("keyup"+this.eventNamespace,function(){e(this).removeClass("ui-state-active")}),this.buttonElement.is("a")&&this.buttonElement.keyup(function(t){t.keyCode===e.ui.keyCode.SPACE&&e(this).click()})),this._setOption("disabled",u.disabled),this._resetButton()},_determineButtonType:function(){var e,t,n;this.element.is("[type=checkbox]")?this.type="checkbox":this.element.is("[type=radio]")?this.type="radio":this.element.is("input")?this.type="input":this.type="button",this.type==="checkbox"||this.type==="radio"?(e=this.element.parents().last(),t="label[for='"+this.element.attr("id")+"']",this.buttonElement=e.find(t),this.buttonElement.length||(e=e.length?e.siblings():this.element.siblings(),this.buttonElement=e.filter(t),this.buttonElement.length||(this.buttonElement=e.find(t))),this.element.addClass("ui-helper-hidden-accessible"),n=this.element.is(":checked"),n&&this.buttonElement.addClass("ui-state-active"),this.buttonElement.prop("aria-pressed",n)):this.buttonElement=this.element},widget:function(){return this.buttonElement},_destroy:function(){this.element.removeClass("ui-helper-hidden-accessible"),this.buttonElement.removeClass(o+" "+u+" "+a).removeAttr("role").removeAttr("aria-pressed").html(this.buttonElement.find(".ui-button-text").html()),this.hasTitle||this.buttonElement.removeAttr("title")},_setOption:function(e,t){this._super(e,t);if(e==="disabled"){t?this.element.prop("disabled",!0):this.element.prop("disabled",!1);return}this._resetButton()},refresh:function(){var t=this.element.is("input, button")?this.element.is(":disabled"):this.element.hasClass("ui-button-disabled");t!==this.options.disabled&&this._setOption("disabled",t),this.type==="radio"?l(this.element[0]).each(function(){e(this).is(":checked")?e(this).button("widget").addClass("ui-state-active").attr("aria-pressed","true"):e(this).button("widget").removeClass("ui-state-active").attr("aria-pressed","false")}):this.type==="checkbox"&&(this.element.is(":checked")?this.buttonElement.addClass("ui-state-active").attr("aria-pressed","true"):this.buttonElement.removeClass("ui-state-active").attr("aria-pressed","false"))},_resetButton:function(){if(this.type==="input"){this.options.label&&this.element.val(this.options.label);return}var t=this.buttonElement.removeClass(a),n=e("<span></span>",this.document[0]).addClass("ui-button-text").html(this.options.label).appendTo(t.empty()).text(),r=this.options.icons,i=r.primary&&r.secondary,s=[];r.primary||r.secondary?(this.options.text&&s.push("ui-button-text-icon"+(i?"s":r.primary?"-primary":"-secondary")),r.primary&&t.prepend("<span class='ui-button-icon-primary ui-icon "+r.primary+"'></span>"),r.secondary&&t.append("<span class='ui-button-icon-secondary ui-icon "+r.secondary+"'></span>"),this.options.text||(s.push(i?"ui-button-icons-only":"ui-button-icon-only"),this.hasTitle||t.attr("title",e.trim(n)))):s.push("ui-button-text-only"),t.addClass(s.join(" "))}}),e.widget("ui.buttonset",{version:"1.9.2",options:{items:"button, input[type=button], input[type=submit], input[type=reset], input[type=checkbox], input[type=radio], a, :data(button)"},_create:function(){this.element.addClass("ui-buttonset")},_init:function(){this.refresh()},_setOption:function(e,t){e==="disabled"&&this.buttons.button("option",e,t),this._super(e,t)},refresh:function(){var t=this.element.css("direction")==="rtl";this.buttons=this.element.find(this.options.items).filter(":ui-button").button("refresh").end().not(":ui-button").button().end().map(function(){return e(this).button("widget")[0]}).removeClass("ui-corner-all ui-corner-left ui-corner-right").filter(":first").addClass(t?"ui-corner-right":"ui-corner-left").end().filter(":last").addClass(t?"ui-corner-left":"ui-corner-right").end().end()},_destroy:function(){this.element.removeClass("ui-buttonset"),this.buttons.map(function(){return e(this).button("widget")[0]}).removeClass("ui-corner-left ui-corner-right").end().button("destroy")}})})(jQuery);(function($,undefined){function Datepicker(){this.debug=!1,this._curInst=null,this._keyEvent=!1,this._disabledInputs=[],this._datepickerShowing=!1,this._inDialog=!1,this._mainDivId="ui-datepicker-div",this._inlineClass="ui-datepicker-inline",this._appendClass="ui-datepicker-append",this._triggerClass="ui-datepicker-trigger",this._dialogClass="ui-datepicker-dialog",this._disableClass="ui-datepicker-disabled",this._unselectableClass="ui-datepicker-unselectable",this._currentClass="ui-datepicker-current-day",this._dayOverClass="ui-datepicker-days-cell-over",this.regional=[],this.regional[""]={closeText:"Done",prevText:"Prev",nextText:"Next",currentText:"Today",monthNames:["January","February","March","April","May","June","July","August","September","October","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],dayNames:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],dayNamesShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],dayNamesMin:["Su","Mo","Tu","We","Th","Fr","Sa"],weekHeader:"Wk",dateFormat:"mm/dd/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},this._defaults={showOn:"focus",showAnim:"fadeIn",showOptions:{},defaultDate:null,appendText:"",buttonText:"...",buttonImage:"",buttonImageOnly:!1,hideIfNoPrevNext:!1,navigationAsDateFormat:!1,gotoCurrent:!1,changeMonth:!1,changeYear:!1,yearRange:"c-10:c+10",showOtherMonths:!1,selectOtherMonths:!1,showWeek:!1,calculateWeek:this.iso8601Week,shortYearCutoff:"+10",minDate:null,maxDate:null,duration:"fast",beforeShowDay:null,beforeShow:null,onSelect:null,onChangeMonthYear:null,onClose:null,numberOfMonths:1,showCurrentAtPos:0,stepMonths:1,stepBigMonths:12,altField:"",altFormat:"",constrainInput:!0,showButtonPanel:!1,autoSize:!1,disabled:!1},$.extend(this._defaults,this.regional[""]),this.dpDiv=bindHover($('<div id="'+this._mainDivId+'" class="ui-datepicker ui-widget ui-widget-content ui-helper-clearfix ui-corner-all"></div>'))}function bindHover(e){var t="button, .ui-datepicker-prev, .ui-datepicker-next, .ui-datepicker-calendar td a";return e.delegate(t,"mouseout",function(){$(this).removeClass("ui-state-hover"),this.className.indexOf("ui-datepicker-prev")!=-1&&$(this).removeClass("ui-datepicker-prev-hover"),this.className.indexOf("ui-datepicker-next")!=-1&&$(this).removeClass("ui-datepicker-next-hover")}).delegate(t,"mouseover",function(){$.datepicker._isDisabledDatepicker(instActive.inline?e.parent()[0]:instActive.input[0])||($(this).parents(".ui-datepicker-calendar").find("a").removeClass("ui-state-hover"),$(this).addClass("ui-state-hover"),this.className.indexOf("ui-datepicker-prev")!=-1&&$(this).addClass("ui-datepicker-prev-hover"),this.className.indexOf("ui-datepicker-next")!=-1&&$(this).addClass("ui-datepicker-next-hover"))})}function extendRemove(e,t){$.extend(e,t);for(var n in t)if(t[n]==null||t[n]==undefined)e[n]=t[n];return e}$.extend($.ui,{datepicker:{version:"1.9.2"}});var PROP_NAME="datepicker",dpuuid=(new Date).getTime(),instActive;$.extend(Datepicker.prototype,{markerClassName:"hasDatepicker",maxRows:4,log:function(){this.debug&&console.log.apply("",arguments)},_widgetDatepicker:function(){return this.dpDiv},setDefaults:function(e){return extendRemove(this._defaults,e||{}),this},_attachDatepicker:function(target,settings){var inlineSettings=null;for(var attrName in this._defaults){var attrValue=target.getAttribute("date:"+attrName);if(attrValue){inlineSettings=inlineSettings||{};try{inlineSettings[attrName]=eval(attrValue)}catch(err){inlineSettings[attrName]=attrValue}}}var nodeName=target.nodeName.toLowerCase(),inline=nodeName=="div"||nodeName=="span";target.id||(this.uuid+=1,target.id="dp"+this.uuid);var inst=this._newInst($(target),inline);inst.settings=$.extend({},settings||{},inlineSettings||{}),nodeName=="input"?this._connectDatepicker(target,inst):inline&&this._inlineDatepicker(target,inst)},_newInst:function(e,t){var n=e[0].id.replace(/([^A-Za-z0-9_-])/g,"\\\\$1");return{id:n,input:e,selectedDay:0,selectedMonth:0,selectedYear:0,drawMonth:0,drawYear:0,inline:t,dpDiv:t?bindHover($('<div class="'+this._inlineClass+' ui-datepicker ui-widget ui-widget-content ui-helper-clearfix ui-corner-all"></div>')):this.dpDiv}},_connectDatepicker:function(e,t){var n=$(e);t.append=$([]),t.trigger=$([]);if(n.hasClass(this.markerClassName))return;this._attachments(n,t),n.addClass(this.markerClassName).keydown(this._doKeyDown).keypress(this._doKeyPress).keyup(this._doKeyUp).bind("setData.datepicker",function(e,n,r){t.settings[n]=r}).bind("getData.datepicker",function(e,n){return this._get(t,n)}),this._autoSize(t),$.data(e,PROP_NAME,t),t.settings.disabled&&this._disableDatepicker(e)},_attachments:function(e,t){var n=this._get(t,"appendText"),r=this._get(t,"isRTL");t.append&&t.append.remove(),n&&(t.append=$('<span class="'+this._appendClass+'">'+n+"</span>"),e[r?"before":"after"](t.append)),e.unbind("focus",this._showDatepicker),t.trigger&&t.trigger.remove();var i=this._get(t,"showOn");(i=="focus"||i=="both")&&e.focus(this._showDatepicker);if(i=="button"||i=="both"){var s=this._get(t,"buttonText"),o=this._get(t,"buttonImage");t.trigger=$(this._get(t,"buttonImageOnly")?$("<img/>").addClass(this._triggerClass).attr({src:o,alt:s,title:s}):$('<button type="button"></button>').addClass(this._triggerClass).html(o==""?s:$("<img/>").attr({src:o,alt:s,title:s}))),e[r?"before":"after"](t.trigger),t.trigger.click(function(){return $.datepicker._datepickerShowing&&$.datepicker._lastInput==e[0]?$.datepicker._hideDatepicker():$.datepicker._datepickerShowing&&$.datepicker._lastInput!=e[0]?($.datepicker._hideDatepicker(),$.datepicker._showDatepicker(e[0])):$.datepicker._showDatepicker(e[0]),!1})}},_autoSize:function(e){if(this._get(e,"autoSize")&&!e.inline){var t=new Date(2009,11,20),n=this._get(e,"dateFormat");if(n.match(/[DM]/)){var r=function(e){var t=0,n=0;for(var r=0;r<e.length;r++)e[r].length>t&&(t=e[r].length,n=r);return n};t.setMonth(r(this._get(e,n.match(/MM/)?"monthNames":"monthNamesShort"))),t.setDate(r(this._get(e,n.match(/DD/)?"dayNames":"dayNamesShort"))+20-t.getDay())}e.input.attr("size",this._formatDate(e,t).length)}},_inlineDatepicker:function(e,t){var n=$(e);if(n.hasClass(this.markerClassName))return;n.addClass(this.markerClassName).append(t.dpDiv).bind("setData.datepicker",function(e,n,r){t.settings[n]=r}).bind("getData.datepicker",function(e,n){return this._get(t,n)}),$.data(e,PROP_NAME,t),this._setDate(t,this._getDefaultDate(t),!0),this._updateDatepicker(t),this._updateAlternate(t),t.settings.disabled&&this._disableDatepicker(e),t.dpDiv.css("display","block")},_dialogDatepicker:function(e,t,n,r,i){var s=this._dialogInst;if(!s){this.uuid+=1;var o="dp"+this.uuid;this._dialogInput=$('<input type="text" id="'+o+'" style="position: absolute; top: -100px; width: 0px;"/>'),this._dialogInput.keydown(this._doKeyDown),$("body").append(this._dialogInput),s=this._dialogInst=this._newInst(this._dialogInput,!1),s.settings={},$.data(this._dialogInput[0],PROP_NAME,s)}extendRemove(s.settings,r||{}),t=t&&t.constructor==Date?this._formatDate(s,t):t,this._dialogInput.val(t),this._pos=i?i.length?i:[i.pageX,i.pageY]:null;if(!this._pos){var u=document.documentElement.clientWidth,a=document.documentElement.clientHeight,f=document.documentElement.scrollLeft||document.body.scrollLeft,l=document.documentElement.scrollTop||document.body.scrollTop;this._pos=[u/2-100+f,a/2-150+l]}return this._dialogInput.css("left",this._pos[0]+20+"px").css("top",this._pos[1]+"px"),s.settings.onSelect=n,this._inDialog=!0,this.dpDiv.addClass(this._dialogClass),this._showDatepicker(this._dialogInput[0]),$.blockUI&&$.blockUI(this.dpDiv),$.data(this._dialogInput[0],PROP_NAME,s),this},_destroyDatepicker:function(e){var t=$(e),n=$.data(e,PROP_NAME);if(!t.hasClass(this.markerClassName))return;var r=e.nodeName.toLowerCase();$.removeData(e,PROP_NAME),r=="input"?(n.append.remove(),n.trigger.remove(),t.removeClass(this.markerClassName).unbind("focus",this._showDatepicker).unbind("keydown",this._doKeyDown).unbind("keypress",this._doKeyPress).unbind("keyup",this._doKeyUp)):(r=="div"||r=="span")&&t.removeClass(this.markerClassName).empty()},_enableDatepicker:function(e){var t=$(e),n=$.data(e,PROP_NAME);if(!t.hasClass(this.markerClassName))return;var r=e.nodeName.toLowerCase();if(r=="input")e.disabled=!1,n.trigger.filter("button").each(function(){this.disabled=!1}).end().filter("img").css({opacity:"1.0",cursor:""});else if(r=="div"||r=="span"){var i=t.children("."+this._inlineClass);i.children().removeClass("ui-state-disabled"),i.find("select.ui-datepicker-month, select.ui-datepicker-year").prop("disabled",!1)}this._disabledInputs=$.map(this._disabledInputs,function(t){return t==e?null:t})},_disableDatepicker:function(e){var t=$(e),n=$.data(e,PROP_NAME);if(!t.hasClass(this.markerClassName))return;var r=e.nodeName.toLowerCase();if(r=="input")e.disabled=!0,n.trigger.filter("button").each(function(){this.disabled=!0}).end().filter("img").css({opacity:"0.5",cursor:"default"});else if(r=="div"||r=="span"){var i=t.children("."+this._inlineClass);i.children().addClass("ui-state-disabled"),i.find("select.ui-datepicker-month, select.ui-datepicker-year").prop("disabled",!0)}this._disabledInputs=$.map(this._disabledInputs,function(t){return t==e?null:t}),this._disabledInputs[this._disabledInputs.length]=e},_isDisabledDatepicker:function(e){if(!e)return!1;for(var t=0;t<this._disabledInputs.length;t++)if(this._disabledInputs[t]==e)return!0;return!1},_getInst:function(e){try{return $.data(e,PROP_NAME)}catch(t){throw"Missing instance data for this datepicker"}},_optionDatepicker:function(e,t,n){var r=this._getInst(e);if(arguments.length==2&&typeof t=="string")return t=="defaults"?$.extend({},$.datepicker._defaults):r?t=="all"?$.extend({},r.settings):this._get(r,t):null;var i=t||{};typeof t=="string"&&(i={},i[t]=n);if(r){this._curInst==r&&this._hideDatepicker();var s=this._getDateDatepicker(e,!0),o=this._getMinMaxDate(r,"min"),u=this._getMinMaxDate(r,"max");extendRemove(r.settings,i),o!==null&&i.dateFormat!==undefined&&i.minDate===undefined&&(r.settings.minDate=this._formatDate(r,o)),u!==null&&i.dateFormat!==undefined&&i.maxDate===undefined&&(r.settings.maxDate=this._formatDate(r,u)),this._attachments($(e),r),this._autoSize(r),this._setDate(r,s),this._updateAlternate(r),this._updateDatepicker(r)}},_changeDatepicker:function(e,t,n){this._optionDatepicker(e,t,n)},_refreshDatepicker:function(e){var t=this._getInst(e);t&&this._updateDatepicker(t)},_setDateDatepicker:function(e,t){var n=this._getInst(e);n&&(this._setDate(n,t),this._updateDatepicker(n),this._updateAlternate(n))},_getDateDatepicker:function(e,t){var n=this._getInst(e);return n&&!n.inline&&this._setDateFromField(n,t),n?this._getDate(n):null},_doKeyDown:function(e){var t=$.datepicker._getInst(e.target),n=!0,r=t.dpDiv.is(".ui-datepicker-rtl");t._keyEvent=!0;if($.datepicker._datepickerShowing)switch(e.keyCode){case 9:$.datepicker._hideDatepicker(),n=!1;break;case 13:var i=$("td."+$.datepicker._dayOverClass+":not(."+$.datepicker._currentClass+")",t.dpDiv);i[0]&&$.datepicker._selectDay(e.target,t.selectedMonth,t.selectedYear,i[0]);var s=$.datepicker._get(t,"onSelect");if(s){var o=$.datepicker._formatDate(t);s.apply(t.input?t.input[0]:null,[o,t])}else $.datepicker._hideDatepicker();return!1;case 27:$.datepicker._hideDatepicker();break;case 33:$.datepicker._adjustDate(e.target,e.ctrlKey?-$.datepicker._get(t,"stepBigMonths"):-$.datepicker._get(t,"stepMonths"),"M");break;case 34:$.datepicker._adjustDate(e.target,e.ctrlKey?+$.datepicker._get(t,"stepBigMonths"):+$.datepicker._get(t,"stepMonths"),"M");break;case 35:(e.ctrlKey||e.metaKey)&&$.datepicker._clearDate(e.target),n=e.ctrlKey||e.metaKey;break;case 36:(e.ctrlKey||e.metaKey)&&$.datepicker._gotoToday(e.target),n=e.ctrlKey||e.metaKey;break;case 37:(e.ctrlKey||e.metaKey)&&$.datepicker._adjustDate(e.target,r?1:-1,"D"),n=e.ctrlKey||e.metaKey,e.originalEvent.altKey&&$.datepicker._adjustDate(e.target,e.ctrlKey?-$.datepicker._get(t,"stepBigMonths"):-$.datepicker._get(t,"stepMonths"),"M");break;case 38:(e.ctrlKey||e.metaKey)&&$.datepicker._adjustDate(e.target,-7,"D"),n=e.ctrlKey||e.metaKey;break;case 39:(e.ctrlKey||e.metaKey)&&$.datepicker._adjustDate(e.target,r?-1:1,"D"),n=e.ctrlKey||e.metaKey,e.originalEvent.altKey&&$.datepicker._adjustDate(e.target,e.ctrlKey?+$.datepicker._get(t,"stepBigMonths"):+$.datepicker._get(t,"stepMonths"),"M");break;case 40:(e.ctrlKey||e.metaKey)&&$.datepicker._adjustDate(e.target,7,"D"),n=e.ctrlKey||e.metaKey;break;default:n=!1}else e.keyCode==36&&e.ctrlKey?$.datepicker._showDatepicker(this):n=!1;n&&(e.preventDefault(),e.stopPropagation())},_doKeyPress:function(e){var t=$.datepicker._getInst(e.target);if($.datepicker._get(t,"constrainInput")){var n=$.datepicker._possibleChars($.datepicker._get(t,"dateFormat")),r=String.fromCharCode(e.charCode==undefined?e.keyCode:e.charCode);return e.ctrlKey||e.metaKey||r<" "||!n||n.indexOf(r)>-1}},_doKeyUp:function(e){var t=$.datepicker._getInst(e.target);if(t.input.val()!=t.lastVal)try{var n=$.datepicker.parseDate($.datepicker._get(t,"dateFormat"),t.input?t.input.val():null,$.datepicker._getFormatConfig(t));n&&($.datepicker._setDateFromField(t),$.datepicker._updateAlternate(t),$.datepicker._updateDatepicker(t))}catch(r){$.datepicker.log(r)}return!0},_showDatepicker:function(e){e=e.target||e,e.nodeName.toLowerCase()!="input"&&(e=$("input",e.parentNode)[0]);if($.datepicker._isDisabledDatepicker(e)||$.datepicker._lastInput==e)return;var t=$.datepicker._getInst(e);$.datepicker._curInst&&$.datepicker._curInst!=t&&($.datepicker._curInst.dpDiv.stop(!0,!0),t&&$.datepicker._datepickerShowing&&$.datepicker._hideDatepicker($.datepicker._curInst.input[0]));var n=$.datepicker._get(t,"beforeShow"),r=n?n.apply(e,[e,t]):{};if(r===!1)return;extendRemove(t.settings,r),t.lastVal=null,$.datepicker._lastInput=e,$.datepicker._setDateFromField(t),$.datepicker._inDialog&&(e.value=""),$.datepicker._pos||($.datepicker._pos=$.datepicker._findPos(e),$.datepicker._pos[1]+=e.offsetHeight);var i=!1;$(e).parents().each(function(){return i|=$(this).css("position")=="fixed",!i});var s={left:$.datepicker._pos[0],top:$.datepicker._pos[1]};$.datepicker._pos=null,t.dpDiv.empty(),t.dpDiv.css({position:"absolute",display:"block",top:"-1000px"}),$.datepicker._updateDatepicker(t),s=$.datepicker._checkOffset(t,s,i),t.dpDiv.css({position:$.datepicker._inDialog&&$.blockUI?"static":i?"fixed":"absolute",display:"none",left:s.left+"px",top:s.top+"px"});if(!t.inline){var o=$.datepicker._get(t,"showAnim"),u=$.datepicker._get(t,"duration"),a=function(){var e=t.dpDiv.find("iframe.ui-datepicker-cover");if(!!e.length){var n=$.datepicker._getBorders(t.dpDiv);e.css({left:-n[0],top:-n[1],width:t.dpDiv.outerWidth(),height:t.dpDiv.outerHeight()})}};t.dpDiv.zIndex($(e).zIndex()+1),$.datepicker._datepickerShowing=!0,$.effects&&($.effects.effect[o]||$.effects[o])?t.dpDiv.show(o,$.datepicker._get(t,"showOptions"),u,a):t.dpDiv[o||"show"](o?u:null,a),(!o||!u)&&a(),t.input.is(":visible")&&!t.input.is(":disabled")&&t.input.focus(),$.datepicker._curInst=t}},_updateDatepicker:function(e){this.maxRows=4;var t=$.datepicker._getBorders(e.dpDiv);instActive=e,e.dpDiv.empty().append(this._generateHTML(e)),this._attachHandlers(e);var n=e.dpDiv.find("iframe.ui-datepicker-cover");!n.length||n.css({left:-t[0],top:-t[1],width:e.dpDiv.outerWidth(),height:e.dpDiv.outerHeight()}),e.dpDiv.find("."+this._dayOverClass+" a").mouseover();var r=this._getNumberOfMonths(e),i=r[1],s=17;e.dpDiv.removeClass("ui-datepicker-multi-2 ui-datepicker-multi-3 ui-datepicker-multi-4").width(""),i>1&&e.dpDiv.addClass("ui-datepicker-multi-"+i).css("width",s*i+"em"),e.dpDiv[(r[0]!=1||r[1]!=1?"add":"remove")+"Class"]("ui-datepicker-multi"),e.dpDiv[(this._get(e,"isRTL")?"add":"remove")+"Class"]("ui-datepicker-rtl"),e==$.datepicker._curInst&&$.datepicker._datepickerShowing&&e.input&&e.input.is(":visible")&&!e.input.is(":disabled")&&e.input[0]!=document.activeElement&&e.input.focus();if(e.yearshtml){var o=e.yearshtml;setTimeout(function(){o===e.yearshtml&&e.yearshtml&&e.dpDiv.find("select.ui-datepicker-year:first").replaceWith(e.yearshtml),o=e.yearshtml=null},0)}},_getBorders:function(e){var t=function(e){return{thin:1,medium:2,thick:3}[e]||e};return[parseFloat(t(e.css("border-left-width"))),parseFloat(t(e.css("border-top-width")))]},_checkOffset:function(e,t,n){var r=e.dpDiv.outerWidth(),i=e.dpDiv.outerHeight(),s=e.input?e.input.outerWidth():0,o=e.input?e.input.outerHeight():0,u=document.documentElement.clientWidth+(n?0:$(document).scrollLeft()),a=document.documentElement.clientHeight+(n?0:$(document).scrollTop());return t.left-=this._get(e,"isRTL")?r-s:0,t.left-=n&&t.left==e.input.offset().left?$(document).scrollLeft():0,t.top-=n&&t.top==e.input.offset().top+o?$(document).scrollTop():0,t.left-=Math.min(t.left,t.left+r>u&&u>r?Math.abs(t.left+r-u):0),t.top-=Math.min(t.top,t.top+i>a&&a>i?Math.abs(i+o):0),t},_findPos:function(e){var t=this._getInst(e),n=this._get(t,"isRTL");while(e&&(e.type=="hidden"||e.nodeType!=1||$.expr.filters.hidden(e)))e=e[n?"previousSibling":"nextSibling"];var r=$(e).offset();return[r.left,r.top]},_hideDatepicker:function(e){var t=this._curInst;if(!t||e&&t!=$.data(e,PROP_NAME))return;if(this._datepickerShowing){var n=this._get(t,"showAnim"),r=this._get(t,"duration"),i=function(){$.datepicker._tidyDialog(t)};$.effects&&($.effects.effect[n]||$.effects[n])?t.dpDiv.hide(n,$.datepicker._get(t,"showOptions"),r,i):t.dpDiv[n=="slideDown"?"slideUp":n=="fadeIn"?"fadeOut":"hide"](n?r:null,i),n||i(),this._datepickerShowing=!1;var s=this._get(t,"onClose");s&&s.apply(t.input?t.input[0]:null,[t.input?t.input.val():"",t]),this._lastInput=null,this._inDialog&&(this._dialogInput.css({position:"absolute",left:"0",top:"-100px"}),$.blockUI&&($.unblockUI(),$("body").append(this.dpDiv))),this._inDialog=!1}},_tidyDialog:function(e){e.dpDiv.removeClass(this._dialogClass).unbind(".ui-datepicker-calendar")},_checkExternalClick:function(e){if(!$.datepicker._curInst)return;var t=$(e.target),n=$.datepicker._getInst(t[0]);(t[0].id!=$.datepicker._mainDivId&&t.parents("#"+$.datepicker._mainDivId).length==0&&!t.hasClass($.datepicker.markerClassName)&&!t.closest("."+$.datepicker._triggerClass).length&&$.datepicker._datepickerShowing&&(!$.datepicker._inDialog||!$.blockUI)||t.hasClass($.datepicker.markerClassName)&&$.datepicker._curInst!=n)&&$.datepicker._hideDatepicker()},_adjustDate:function(e,t,n){var r=$(e),i=this._getInst(r[0]);if(this._isDisabledDatepicker(r[0]))return;this._adjustInstDate(i,t+(n=="M"?this._get(i,"showCurrentAtPos"):0),n),this._updateDatepicker(i)},_gotoToday:function(e){var t=$(e),n=this._getInst(t[0]);if(this._get(n,"gotoCurrent")&&n.currentDay)n.selectedDay=n.currentDay,n.drawMonth=n.selectedMonth=n.currentMonth,n.drawYear=n.selectedYear=n.currentYear;else{var r=new Date;n.selectedDay=r.getDate(),n.drawMonth=n.selectedMonth=r.getMonth(),n.drawYear=n.selectedYear=r.getFullYear()}this._notifyChange(n),this._adjustDate(t)},_selectMonthYear:function(e,t,n){var r=$(e),i=this._getInst(r[0]);i["selected"+(n=="M"?"Month":"Year")]=i["draw"+(n=="M"?"Month":"Year")]=parseInt(t.options[t.selectedIndex].value,10),this._notifyChange(i),this._adjustDate(r)},_selectDay:function(e,t,n,r){var i=$(e);if($(r).hasClass(this._unselectableClass)||this._isDisabledDatepicker(i[0]))return;var s=this._getInst(i[0]);s.selectedDay=s.currentDay=$("a",r).html(),s.selectedMonth=s.currentMonth=t,s.selectedYear=s.currentYear=n,this._selectDate(e,this._formatDate(s,s.currentDay,s.currentMonth,s.currentYear))},_clearDate:function(e){var t=$(e),n=this._getInst(t[0]);this._selectDate(t,"")},_selectDate:function(e,t){var n=$(e),r=this._getInst(n[0]);t=t!=null?t:this._formatDate(r),r.input&&r.input.val(t),this._updateAlternate(r);var i=this._get(r,"onSelect");i?i.apply(r.input?r.input[0]:null,[t,r]):r.input&&r.input.trigger("change"),r.inline?this._updateDatepicker(r):(this._hideDatepicker(),this._lastInput=r.input[0],typeof r.input[0]!="object"&&r.input.focus(),this._lastInput=null)},_updateAlternate:function(e){var t=this._get(e,"altField");if(t){var n=this._get(e,"altFormat")||this._get(e,"dateFormat"),r=this._getDate(e),i=this.formatDate(n,r,this._getFormatConfig(e));$(t).each(function(){$(this).val(i)})}},noWeekends:function(e){var t=e.getDay();return[t>0&&t<6,""]},iso8601Week:function(e){var t=new Date(e.getTime());t.setDate(t.getDate()+4-(t.getDay()||7));var n=t.getTime();return t.setMonth(0),t.setDate(1),Math.floor(Math.round((n-t)/864e5)/7)+1},parseDate:function(e,t,n){if(e==null||t==null)throw"Invalid arguments";t=typeof t=="object"?t.toString():t+"";if(t=="")return null;var r=(n?n.shortYearCutoff:null)||this._defaults.shortYearCutoff;r=typeof r!="string"?r:(new Date).getFullYear()%100+parseInt(r,10);var i=(n?n.dayNamesShort:null)||this._defaults.dayNamesShort,s=(n?n.dayNames:null)||this._defaults.dayNames,o=(n?n.monthNamesShort:null)||this._defaults.monthNamesShort,u=(n?n.monthNames:null)||this._defaults.monthNames,a=-1,f=-1,l=-1,c=-1,h=!1,p=function(t){var n=y+1<e.length&&e.charAt(y+1)==t;return n&&y++,n},d=function(e){var n=p(e),r=e=="@"?14:e=="!"?20:e=="y"&&n?4:e=="o"?3:2,i=new RegExp("^\\d{1,"+r+"}"),s=t.substring(g).match(i);if(!s)throw"Missing number at position "+g;return g+=s[0].length,parseInt(s[0],10)},v=function(e,n,r){var i=$.map(p(e)?r:n,function(e,t){return[[t,e]]}).sort(function(e,t){return-(e[1].length-t[1].length)}),s=-1;$.each(i,function(e,n){var r=n[1];if(t.substr(g,r.length).toLowerCase()==r.toLowerCase())return s=n[0],g+=r.length,!1});if(s!=-1)return s+1;throw"Unknown name at position "+g},m=function(){if(t.charAt(g)!=e.charAt(y))throw"Unexpected literal at position "+g;g++},g=0;for(var y=0;y<e.length;y++)if(h)e.charAt(y)=="'"&&!p("'")?h=!1:m();else switch(e.charAt(y)){case"d":l=d("d");break;case"D":v("D",i,s);break;case"o":c=d("o");break;case"m":f=d("m");break;case"M":f=v("M",o,u);break;case"y":a=d("y");break;case"@":var b=new Date(d("@"));a=b.getFullYear(),f=b.getMonth()+1,l=b.getDate();break;case"!":var b=new Date((d("!")-this._ticksTo1970)/1e4);a=b.getFullYear(),f=b.getMonth()+1,l=b.getDate();break;case"'":p("'")?m():h=!0;break;default:m()}if(g<t.length){var w=t.substr(g);if(!/^\s+/.test(w))throw"Extra/unparsed characters found in date: "+w}a==-1?a=(new Date).getFullYear():a<100&&(a+=(new Date).getFullYear()-(new Date).getFullYear()%100+(a<=r?0:-100));if(c>-1){f=1,l=c;do{var E=this._getDaysInMonth(a,f-1);if(l<=E)break;f++,l-=E}while(!0)}var b=this._daylightSavingAdjust(new Date(a,f-1,l));if(b.getFullYear()!=a||b.getMonth()+1!=f||b.getDate()!=l)throw"Invalid date";return b},ATOM:"yy-mm-dd",COOKIE:"D, dd M yy",ISO_8601:"yy-mm-dd",RFC_822:"D, d M y",RFC_850:"DD, dd-M-y",RFC_1036:"D, d M y",RFC_1123:"D, d M yy",RFC_2822:"D, d M yy",RSS:"D, d M y",TICKS:"!",TIMESTAMP:"@",W3C:"yy-mm-dd",_ticksTo1970:(718685+Math.floor(492.5)-Math.floor(19.7)+Math.floor(4.925))*24*60*60*1e7,formatDate:function(e,t,n){if(!t)return"";var r=(n?n.dayNamesShort:null)||this._defaults.dayNamesShort,i=(n?n.dayNames:null)||this._defaults.dayNames,s=(n?n.monthNamesShort:null)||this._defaults.monthNamesShort,o=(n?n.monthNames:null)||this._defaults.monthNames,u=function(t){var n=h+1<e.length&&e.charAt(h+1)==t;return n&&h++,n},a=function(e,t,n){var r=""+t;if(u(e))while(r.length<n)r="0"+r;return r},f=function(e,t,n,r){return u(e)?r[t]:n[t]},l="",c=!1;if(t)for(var h=0;h<e.length;h++)if(c)e.charAt(h)=="'"&&!u("'")?c=!1:l+=e.charAt(h);else switch(e.charAt(h)){case"d":l+=a("d",t.getDate(),2);break;case"D":l+=f("D",t.getDay(),r,i);break;case"o":l+=a("o",Math.round(((new Date(t.getFullYear(),t.getMonth(),t.getDate())).getTime()-(new Date(t.getFullYear(),0,0)).getTime())/864e5),3);break;case"m":l+=a("m",t.getMonth()+1,2);break;case"M":l+=f("M",t.getMonth(),s,o);break;case"y":l+=u("y")?t.getFullYear():(t.getYear()%100<10?"0":"")+t.getYear()%100;break;case"@":l+=t.getTime();break;case"!":l+=t.getTime()*1e4+this._ticksTo1970;break;case"'":u("'")?l+="'":c=!0;break;default:l+=e.charAt(h)}return l},_possibleChars:function(e){var t="",n=!1,r=function(t){var n=i+1<e.length&&e.charAt(i+1)==t;return n&&i++,n};for(var i=0;i<e.length;i++)if(n)e.charAt(i)=="'"&&!r("'")?n=!1:t+=e.charAt(i);else switch(e.charAt(i)){case"d":case"m":case"y":case"@":t+="0123456789";break;case"D":case"M":return null;case"'":r("'")?t+="'":n=!0;break;default:t+=e.charAt(i)}return t},_get:function(e,t){return e.settings[t]!==undefined?e.settings[t]:this._defaults[t]},_setDateFromField:function(e,t){if(e.input.val()==e.lastVal)return;var n=this._get(e,"dateFormat"),r=e.lastVal=e.input?e.input.val():null,i,s;i=s=this._getDefaultDate(e);var o=this._getFormatConfig(e);try{i=this.parseDate(n,r,o)||s}catch(u){this.log(u),r=t?"":r}e.selectedDay=i.getDate(),e.drawMonth=e.selectedMonth=i.getMonth(),e.drawYear=e.selectedYear=i.getFullYear(),e.currentDay=r?i.getDate():0,e.currentMonth=r?i.getMonth():0,e.currentYear=r?i.getFullYear():0,this._adjustInstDate(e)},_getDefaultDate:function(e){return this._restrictMinMax(e,this._determineDate(e,this._get(e,"defaultDate"),new Date))},_determineDate:function(e,t,n){var r=function(e){var t=new Date;return t.setDate(t.getDate()+e),t},i=function(t){try{return $.datepicker.parseDate($.datepicker._get(e,"dateFormat"),t,$.datepicker._getFormatConfig(e))}catch(n){}var r=(t.toLowerCase().match(/^c/)?$.datepicker._getDate(e):null)||new Date,i=r.getFullYear(),s=r.getMonth(),o=r.getDate(),u=/([+-]?[0-9]+)\s*(d|D|w|W|m|M|y|Y)?/g,a=u.exec(t);while(a){switch(a[2]||"d"){case"d":case"D":o+=parseInt(a[1],10);break;case"w":case"W":o+=parseInt(a[1],10)*7;break;case"m":case"M":s+=parseInt(a[1],10),o=Math.min(o,$.datepicker._getDaysInMonth(i,s));break;case"y":case"Y":i+=parseInt(a[1],10),o=Math.min(o,$.datepicker._getDaysInMonth(i,s))}a=u.exec(t)}return new Date(i,s,o)},s=t==null||t===""?n:typeof t=="string"?i(t):typeof t=="number"?isNaN(t)?n:r(t):new Date(t.getTime());return s=s&&s.toString()=="Invalid Date"?n:s,s&&(s.setHours(0),s.setMinutes(0),s.setSeconds(0),s.setMilliseconds(0)),this._daylightSavingAdjust(s)},_daylightSavingAdjust:function(e){return e?(e.setHours(e.getHours()>12?e.getHours()+2:0),e):null},_setDate:function(e,t,n){var r=!t,i=e.selectedMonth,s=e.selectedYear,o=this._restrictMinMax(e,this._determineDate(e,t,new Date));e.selectedDay=e.currentDay=o.getDate(),e.drawMonth=e.selectedMonth=e.currentMonth=o.getMonth(),e.drawYear=e.selectedYear=e.currentYear=o.getFullYear(),(i!=e.selectedMonth||s!=e.selectedYear)&&!n&&this._notifyChange(e),this._adjustInstDate(e),e.input&&e.input.val(r?"":this._formatDate(e))},_getDate:function(e){var t=!e.currentYear||e.input&&e.input.val()==""?null:this._daylightSavingAdjust(new Date(e.currentYear,e.currentMonth,e.currentDay));return t},_attachHandlers:function(e){var t=this._get(e,"stepMonths"),n="#"+e.id.replace(/\\\\/g,"\\");e.dpDiv.find("[data-handler]").map(function(){var e={prev:function(){window["DP_jQuery_"+dpuuid].datepicker._adjustDate(n,-t,"M")},next:function(){window["DP_jQuery_"+dpuuid].datepicker._adjustDate(n,+t,"M")},hide:function(){window["DP_jQuery_"+dpuuid].datepicker._hideDatepicker()},today:function(){window["DP_jQuery_"+dpuuid].datepicker._gotoToday(n)},selectDay:function(){return window["DP_jQuery_"+dpuuid].datepicker._selectDay(n,+this.getAttribute("data-month"),+this.getAttribute("data-year"),this),!1},selectMonth:function(){return window["DP_jQuery_"+dpuuid].datepicker._selectMonthYear(n,this,"M"),!1},selectYear:function(){return window["DP_jQuery_"+dpuuid].datepicker._selectMonthYear(n,this,"Y"),!1}};$(this).bind(this.getAttribute("data-event"),e[this.getAttribute("data-handler")])})},_generateHTML:function(e){var t=new Date;t=this._daylightSavingAdjust(new Date(t.getFullYear(),t.getMonth(),t.getDate()));var n=this._get(e,"isRTL"),r=this._get(e,"showButtonPanel"),i=this._get(e,"hideIfNoPrevNext"),s=this._get(e,"navigationAsDateFormat"),o=this._getNumberOfMonths(e),u=this._get(e,"showCurrentAtPos"),a=this._get(e,"stepMonths"),f=o[0]!=1||o[1]!=1,l=this._daylightSavingAdjust(e.currentDay?new Date(e.currentYear,e.currentMonth,e.currentDay):new Date(9999,9,9)),c=this._getMinMaxDate(e,"min"),h=this._getMinMaxDate(e,"max"),p=e.drawMonth-u,d=e.drawYear;p<0&&(p+=12,d--);if(h){var v=this._daylightSavingAdjust(new Date(h.getFullYear(),h.getMonth()-o[0]*o[1]+1,h.getDate()));v=c&&v<c?c:v;while(this._daylightSavingAdjust(new Date(d,p,1))>v)p--,p<0&&(p=11,d--)}e.drawMonth=p,e.drawYear=d;var m=this._get(e,"prevText");m=s?this.formatDate(m,this._daylightSavingAdjust(new Date(d,p-a,1)),this._getFormatConfig(e)):m;var g=this._canAdjustMonth(e,-1,d,p)?'<a class="ui-datepicker-prev ui-corner-all" data-handler="prev" data-event="click" title="'+m+'"><span class="ui-icon ui-icon-circle-triangle-'+(n?"e":"w")+'">'+m+"</span></a>":i?"":'<a class="ui-datepicker-prev ui-corner-all ui-state-disabled" title="'+m+'"><span class="ui-icon ui-icon-circle-triangle-'+(n?"e":"w")+'">'+m+"</span></a>",y=this._get(e,"nextText");y=s?this.formatDate(y,this._daylightSavingAdjust(new Date(d,p+a,1)),this._getFormatConfig(e)):y;var b=this._canAdjustMonth(e,1,d,p)?'<a class="ui-datepicker-next ui-corner-all" data-handler="next" data-event="click" title="'+y+'"><span class="ui-icon ui-icon-circle-triangle-'+(n?"w":"e")+'">'+y+"</span></a>":i?"":'<a class="ui-datepicker-next ui-corner-all ui-state-disabled" title="'+y+'"><span class="ui-icon ui-icon-circle-triangle-'+(n?"w":"e")+'">'+y+"</span></a>",w=this._get(e,"currentText"),E=this._get(e,"gotoCurrent")&&e.currentDay?l:t;w=s?this.formatDate(w,E,this._getFormatConfig(e)):w;var S=e.inline?"":'<button type="button" class="ui-datepicker-close ui-state-default ui-priority-primary ui-corner-all" data-handler="hide" data-event="click">'+this._get(e,"closeText")+"</button>",x=r?'<div class="ui-datepicker-buttonpane ui-widget-content">'+(n?S:"")+(this._isInRange(e,E)?'<button type="button" class="ui-datepicker-current ui-state-default ui-priority-secondary ui-corner-all" data-handler="today" data-event="click">'+w+"</button>":"")+(n?"":S)+"</div>":"",T=parseInt(this._get(e,"firstDay"),10);T=isNaN(T)?0:T;var N=this._get(e,"showWeek"),C=this._get(e,"dayNames"),k=this._get(e,"dayNamesShort"),L=this._get(e,"dayNamesMin"),A=this._get(e,"monthNames"),O=this._get(e,"monthNamesShort"),M=this._get(e,"beforeShowDay"),_=this._get(e,"showOtherMonths"),D=this._get(e,"selectOtherMonths"),P=this._get(e,"calculateWeek")||this.iso8601Week,H=this._getDefaultDate(e),B="";for(var j=0;j<o[0];j++){var F="";this.maxRows=4;for(var I=0;I<o[1];I++){var q=this._daylightSavingAdjust(new Date(d,p,e.selectedDay)),R=" ui-corner-all",U="";if(f){U+='<div class="ui-datepicker-group';if(o[1]>1)switch(I){case 0:U+=" ui-datepicker-group-first",R=" ui-corner-"+(n?"right":"left");break;case o[1]-1:U+=" ui-datepicker-group-last",R=" ui-corner-"+(n?"left":"right");break;default:U+=" ui-datepicker-group-middle",R=""}U+='">'}U+='<div class="ui-datepicker-header ui-widget-header ui-helper-clearfix'+R+'">'+(/all|left/.test(R)&&j==0?n?b:g:"")+(/all|right/.test(R)&&j==0?n?g:b:"")+this._generateMonthYearHeader(e,p,d,c,h,j>0||I>0,A,O)+'</div><table class="ui-datepicker-calendar"><thead>'+"<tr>";var z=N?'<th class="ui-datepicker-week-col">'+this._get(e,"weekHeader")+"</th>":"";for(var W=0;W<7;W++){var X=(W+T)%7;z+="<th"+((W+T+6)%7>=5?' class="ui-datepicker-week-end"':"")+">"+'<span title="'+C[X]+'">'+L[X]+"</span></th>"}U+=z+"</tr></thead><tbody>";var V=this._getDaysInMonth(d,p);d==e.selectedYear&&p==e.selectedMonth&&(e.selectedDay=Math.min(e.selectedDay,V));var J=(this._getFirstDayOfMonth(d,p)-T+7)%7,K=Math.ceil((J+V)/7),Q=f?this.maxRows>K?this.maxRows:K:K;this.maxRows=Q;var G=this._daylightSavingAdjust(new Date(d,p,1-J));for(var Y=0;Y<Q;Y++){U+="<tr>";var Z=N?'<td class="ui-datepicker-week-col">'+this._get(e,"calculateWeek")(G)+"</td>":"";for(var W=0;W<7;W++){var et=M?M.apply(e.input?e.input[0]:null,[G]):[!0,""],tt=G.getMonth()!=p,nt=tt&&!D||!et[0]||c&&G<c||h&&G>h;Z+='<td class="'+((W+T+6)%7>=5?" ui-datepicker-week-end":"")+(tt?" ui-datepicker-other-month":"")+(G.getTime()==q.getTime()&&p==e.selectedMonth&&e._keyEvent||H.getTime()==G.getTime()&&H.getTime()==q.getTime()?" "+this._dayOverClass:"")+(nt?" "+this._unselectableClass+" ui-state-disabled":"")+(tt&&!_?"":" "+et[1]+(G.getTime()==l.getTime()?" "+this._currentClass:"")+(G.getTime()==t.getTime()?" ui-datepicker-today":""))+'"'+((!tt||_)&&et[2]?' title="'+et[2]+'"':"")+(nt?"":' data-handler="selectDay" data-event="click" data-month="'+G.getMonth()+'" data-year="'+G.getFullYear()+'"')+">"+(tt&&!_?" ":nt?'<span class="ui-state-default">'+G.getDate()+"</span>":'<a class="ui-state-default'+(G.getTime()==t.getTime()?" ui-state-highlight":"")+(G.getTime()==l.getTime()?" ui-state-active":"")+(tt?" ui-priority-secondary":"")+'" href="#">'+G.getDate()+"</a>")+"</td>",G.setDate(G.getDate()+1),G=this._daylightSavingAdjust(G)}U+=Z+"</tr>"}p++,p>11&&(p=0,d++),U+="</tbody></table>"+(f?"</div>"+(o[0]>0&&I==o[1]-1?'<div class="ui-datepicker-row-break"></div>':""):""),F+=U}B+=F}return B+=x+($.ui.ie6&&!e.inline?'<iframe src="javascript:false;" class="ui-datepicker-cover" frameborder="0"></iframe>':""),e._keyEvent=!1,B},_generateMonthYearHeader:function(e,t,n,r,i,s,o,u){var a=this._get(e,"changeMonth"),f=this._get(e,"changeYear"),l=this._get(e,"showMonthAfterYear"),c='<div class="ui-datepicker-title">',h="";if(s||!a)h+='<span class="ui-datepicker-month">'+o[t]+"</span>";else{var p=r&&r.getFullYear()==n,d=i&&i.getFullYear()==n;h+='<select class="ui-datepicker-month" data-handler="selectMonth" data-event="change">';for(var v=0;v<12;v++)(!p||v>=r.getMonth())&&(!d||v<=i.getMonth())&&(h+='<option value="'+v+'"'+(v==t?' selected="selected"':"")+">"+u[v]+"</option>");h+="</select>"}l||(c+=h+(s||!a||!f?" ":""));if(!e.yearshtml){e.yearshtml="";if(s||!f)c+='<span class="ui-datepicker-year">'+n+"</span>";else{var m=this._get(e,"yearRange").split(":"),g=(new Date).getFullYear(),y=function(e){var t=e.match(/c[+-].*/)?n+parseInt(e.substring(1),10):e.match(/[+-].*/)?g+parseInt(e,10):parseInt(e,10);return isNaN(t)?g:t},b=y(m[0]),w=Math.max(b,y(m[1]||""));b=r?Math.max(b,r.getFullYear()):b,w=i?Math.min(w,i.getFullYear()):w,e.yearshtml+='<select class="ui-datepicker-year" data-handler="selectYear" data-event="change">';for(;b<=w;b++)e.yearshtml+='<option value="'+b+'"'+(b==n?' selected="selected"':"")+">"+b+"</option>";e.yearshtml+="</select>",c+=e.yearshtml,e.yearshtml=null}}return c+=this._get(e,"yearSuffix"),l&&(c+=(s||!a||!f?" ":"")+h),c+="</div>",c},_adjustInstDate:function(e,t,n){var r=e.drawYear+(n=="Y"?t:0),i=e.drawMonth+(n=="M"?t:0),s=Math.min(e.selectedDay,this._getDaysInMonth(r,i))+(n=="D"?t:0),o=this._restrictMinMax(e,this._daylightSavingAdjust(new Date(r,i,s)));e.selectedDay=o.getDate(),e.drawMonth=e.selectedMonth=o.getMonth(),e.drawYear=e.selectedYear=o.getFullYear(),(n=="M"||n=="Y")&&this._notifyChange(e)},_restrictMinMax:function(e,t){var n=this._getMinMaxDate(e,"min"),r=this._getMinMaxDate(e,"max"),i=n&&t<n?n:t;return i=r&&i>r?r:i,i},_notifyChange:function(e){var t=this._get(e,"onChangeMonthYear");t&&t.apply(e.input?e.input[0]:null,[e.selectedYear,e.selectedMonth+1,e])},_getNumberOfMonths:function(e){var t=this._get(e,"numberOfMonths");return t==null?[1,1]:typeof t=="number"?[1,t]:t},_getMinMaxDate:function(e,t){return this._determineDate(e,this._get(e,t+"Date"),null)},_getDaysInMonth:function(e,t){return 32-this._daylightSavingAdjust(new Date(e,t,32)).getDate()},_getFirstDayOfMonth:function(e,t){return(new Date(e,t,1)).getDay()},_canAdjustMonth:function(e,t,n,r){var i=this._getNumberOfMonths(e),s=this._daylightSavingAdjust(new Date(n,r+(t<0?t:i[0]*i[1]),1));return t<0&&s.setDate(this._getDaysInMonth(s.getFullYear(),s.getMonth())),this._isInRange(e,s)},_isInRange:function(e,t){var n=this._getMinMaxDate(e,"min"),r=this._getMinMaxDate(e,"max");return(!n||t.getTime()>=n.getTime())&&(!r||t.getTime()<=r.getTime())},_getFormatConfig:function(e){var t=this._get(e,"shortYearCutoff");return t=typeof t!="string"?t:(new Date).getFullYear()%100+parseInt(t,10),{shortYearCutoff:t,dayNamesShort:this._get(e,"dayNamesShort"),dayNames:this._get(e,"dayNames"),monthNamesShort:this._get(e,"monthNamesShort"),monthNames:this._get(e,"monthNames")}},_formatDate:function(e,t,n,r){t||(e.currentDay=e.selectedDay,e.currentMonth=e.selectedMonth,e.currentYear=e.selectedYear);var i=t?typeof t=="object"?t:this._daylightSavingAdjust(new Date(r,n,t)):this._daylightSavingAdjust(new Date(e.currentYear,e.currentMonth,e.currentDay));return this.formatDate(this._get(e,"dateFormat"),i,this._getFormatConfig(e))}}),$.fn.datepicker=function(e){if(!this.length)return this;$.datepicker.initialized||($(document).mousedown($.datepicker._checkExternalClick).find(document.body).append($.datepicker.dpDiv),$.datepicker.initialized=!0);var t=Array.prototype.slice.call(arguments,1);return typeof e!="string"||e!="isDisabled"&&e!="getDate"&&e!="widget"?e=="option"&&arguments.length==2&&typeof arguments[1]=="string"?$.datepicker["_"+e+"Datepicker"].apply($.datepicker,[this[0]].concat(t)):this.each(function(){typeof e=="string"?$.datepicker["_"+e+"Datepicker"].apply($.datepicker,[this].concat(t)):$.datepicker._attachDatepicker(this,e)}):$.datepicker["_"+e+"Datepicker"].apply($.datepicker,[this[0]].concat(t))},$.datepicker=new Datepicker,$.datepicker.initialized=!1,$.datepicker.uuid=(new Date).getTime(),$.datepicker.version="1.9.2",window["DP_jQuery_"+dpuuid]=$})(jQuery);(function(e,t){var n="ui-dialog ui-widget ui-widget-content ui-corner-all ",r={buttons:!0,height:!0,maxHeight:!0,maxWidth:!0,minHeight:!0,minWidth:!0,width:!0},i={maxHeight:!0,maxWidth:!0,minHeight:!0,minWidth:!0};e.widget("ui.dialog",{version:"1.9.2",options:{autoOpen:!0,buttons:{},closeOnEscape:!0,closeText:"close",dialogClass:"",draggable:!0,hide:null,height:"auto",maxHeight:!1,maxWidth:!1,minHeight:150,minWidth:150,modal:!1,position:{my:"center",at:"center",of:window,collision:"fit",using:function(t){var n=e(this).css(t).offset().top;n<0&&e(this).css("top",t.top-n)}},resizable:!0,show:null,stack:!0,title:"",width:300,zIndex:1e3},_create:function(){this.originalTitle=this.element.attr("title"),typeof this.originalTitle!="string"&&(this.originalTitle=""),this.oldPosition={parent:this.element.parent(),index:this.element.parent().children().index(this.element)},this.options.title=this.options.title||this.originalTitle;var t=this,r=this.options,i=r.title||" ",s,o,u,a,f;s=(this.uiDialog=e("<div>")).addClass(n+r.dialogClass).css({display:"none",outline:0,zIndex:r.zIndex}).attr("tabIndex",-1).keydown(function(n){r.closeOnEscape&&!n.isDefaultPrevented()&&n.keyCode&&n.keyCode===e.ui.keyCode.ESCAPE&&(t.close(n),n.preventDefault())}).mousedown(function(e){t.moveToTop(!1,e)}).appendTo("body"),this.element.show().removeAttr("title").addClass("ui-dialog-content ui-widget-content").appendTo(s),o=(this.uiDialogTitlebar=e("<div>")).addClass("ui-dialog-titlebar ui-widget-header ui-corner-all ui-helper-clearfix").bind("mousedown",function(){s.focus()}).prependTo(s),u=e("<a href='#'></a>").addClass("ui-dialog-titlebar-close ui-corner-all").attr("role","button").click(function(e){e.preventDefault(),t.close(e)}).appendTo(o),(this.uiDialogTitlebarCloseText=e("<span>")).addClass("ui-icon ui-icon-closethick").text(r.closeText).appendTo(u),a=e("<span>").uniqueId().addClass("ui-dialog-title").html(i).prependTo(o),f=(this.uiDialogButtonPane=e("<div>")).addClass("ui-dialog-buttonpane ui-widget-content ui-helper-clearfix"),(this.uiButtonSet=e("<div>")).addClass("ui-dialog-buttonset").appendTo(f),s.attr({role:"dialog","aria-labelledby":a.attr("id")}),o.find("*").add(o).disableSelection(),this._hoverable(u),this._focusable(u),r.draggable&&e.fn.draggable&&this._makeDraggable(),r.resizable&&e.fn.resizable&&this._makeResizable(),this._createButtons(r.buttons),this._isOpen=!1,e.fn.bgiframe&&s.bgiframe(),this._on(s,{keydown:function(t){if(!r.modal||t.keyCode!==e.ui.keyCode.TAB)return;var n=e(":tabbable",s),i=n.filter(":first"),o=n.filter(":last");if(t.target===o[0]&&!t.shiftKey)return i.focus(1),!1;if(t.target===i[0]&&t.shiftKey)return o.focus(1),!1}})},_init:function(){this.options.autoOpen&&this.open()},_destroy:function(){var e,t=this.oldPosition;this.overlay&&this.overlay.destroy(),this.uiDialog.hide(),this.element.removeClass("ui-dialog-content ui-widget-content").hide().appendTo("body"),this.uiDialog.remove(),this.originalTitle&&this.element.attr("title",this.originalTitle),e=t.parent.children().eq(t.index),e.length&&e[0]!==this.element[0]?e.before(this.element):t.parent.append(this.element)},widget:function(){return this.uiDialog},close:function(t){var n=this,r,i;if(!this._isOpen)return;if(!1===this._trigger("beforeClose",t))return;return this._isOpen=!1,this.overlay&&this.overlay.destroy(),this.options.hide?this._hide(this.uiDialog,this.options.hide,function(){n._trigger("close",t)}):(this.uiDialog.hide(),this._trigger("close",t)),e.ui.dialog.overlay.resize(),this.options.modal&&(r=0,e(".ui-dialog").each(function(){this!==n.uiDialog[0]&&(i=e(this).css("z-index"),isNaN(i)||(r=Math.max(r,i)))}),e.ui.dialog.maxZ=r),this},isOpen:function(){return this._isOpen},moveToTop:function(t,n){var r=this.options,i;return r.modal&&!t||!r.stack&&!r.modal?this._trigger("focus",n):(r.zIndex>e.ui.dialog.maxZ&&(e.ui.dialog.maxZ=r.zIndex),this.overlay&&(e.ui.dialog.maxZ+=1,e.ui.dialog.overlay.maxZ=e.ui.dialog.maxZ,this.overlay.$el.css("z-index",e.ui.dialog.overlay.maxZ)),i={scrollTop:this.element.scrollTop(),scrollLeft:this.element.scrollLeft()},e.ui.dialog.maxZ+=1,this.uiDialog.css("z-index",e.ui.dialog.maxZ),this.element.attr(i),this._trigger("focus",n),this)},open:function(){if(this._isOpen)return;var t,n=this.options,r=this.uiDialog;return this._size(),this._position(n.position),r.show(n.show),this.overlay=n.modal?new e.ui.dialog.overlay(this):null,this.moveToTop(!0),t=this.element.find(":tabbable"),t.length||(t=this.uiDialogButtonPane.find(":tabbable"),t.length||(t=r)),t.eq(0).focus(),this._isOpen=!0,this._trigger("open"),this},_createButtons:function(t){var n=this,r=!1;this.uiDialogButtonPane.remove(),this.uiButtonSet.empty(),typeof t=="object"&&t!==null&&e.each(t,function(){return!(r=!0)}),r?(e.each(t,function(t,r){var i,s;r=e.isFunction(r)?{click:r,text:t}:r,r=e.extend({type:"button"},r),s=r.click,r.click=function(){s.apply(n.element[0],arguments)},i=e("<button></button>",r).appendTo(n.uiButtonSet),e.fn.button&&i.button()}),this.uiDialog.addClass("ui-dialog-buttons"),this.uiDialogButtonPane.appendTo(this.uiDialog)):this.uiDialog.removeClass("ui-dialog-buttons")},_makeDraggable:function(){function r(e){return{position:e.position,offset:e.offset}}var t=this,n=this.options;this.uiDialog.draggable({cancel:".ui-dialog-content, .ui-dialog-titlebar-close",handle:".ui-dialog-titlebar",containment:"document",start:function(n,i){e(this).addClass("ui-dialog-dragging"),t._trigger("dragStart",n,r(i))},drag:function(e,n){t._trigger("drag",e,r(n))},stop:function(i,s){n.position=[s.position.left-t.document.scrollLeft(),s.position.top-t.document.scrollTop()],e(this).removeClass("ui-dialog-dragging"),t._trigger("dragStop",i,r(s)),e.ui.dialog.overlay.resize()}})},_makeResizable:function(n){function u(e){return{originalPosition:e.originalPosition,originalSize:e.originalSize,position:e.position,size:e.size}}n=n===t?this.options.resizable:n;var r=this,i=this.options,s=this.uiDialog.css("position"),o=typeof n=="string"?n:"n,e,s,w,se,sw,ne,nw";this.uiDialog.resizable({cancel:".ui-dialog-content",containment:"document",alsoResize:this.element,maxWidth:i.maxWidth,maxHeight:i.maxHeight,minWidth:i.minWidth,minHeight:this._minHeight(),handles:o,start:function(t,n){e(this).addClass("ui-dialog-resizing"),r._trigger("resizeStart",t,u(n))},resize:function(e,t){r._trigger("resize",e,u(t))},stop:function(t,n){e(this).removeClass("ui-dialog-resizing"),i.height=e(this).height(),i.width=e(this).width(),r._trigger("resizeStop",t,u(n)),e.ui.dialog.overlay.resize()}}).css("position",s).find(".ui-resizable-se").addClass("ui-icon ui-icon-grip-diagonal-se")},_minHeight:function(){var e=this.options;return e.height==="auto"?e.minHeight:Math.min(e.minHeight,e.height)},_position:function(t){var n=[],r=[0,0],i;if(t){if(typeof t=="string"||typeof t=="object"&&"0"in t)n=t.split?t.split(" "):[t[0],t[1]],n.length===1&&(n[1]=n[0]),e.each(["left","top"],function(e,t){+n[e]===n[e]&&(r[e]=n[e],n[e]=t)}),t={my:n[0]+(r[0]<0?r[0]:"+"+r[0])+" "+n[1]+(r[1]<0?r[1]:"+"+r[1]),at:n.join(" ")};t=e.extend({},e.ui.dialog.prototype.options.position,t)}else t=e.ui.dialog.prototype.options.position;i=this.uiDialog.is(":visible"),i||this.uiDialog.show(),this.uiDialog.position(t),i||this.uiDialog.hide()},_setOptions:function(t){var n=this,s={},o=!1;e.each(t,function(e,t){n._setOption(e,t),e in r&&(o=!0),e in i&&(s[e]=t)}),o&&this._size(),this.uiDialog.is(":data(resizable)")&&this.uiDialog.resizable("option",s)},_setOption:function(t,r){var i,s,o=this.uiDialog;switch(t){case"buttons":this._createButtons(r);break;case"closeText":this.uiDialogTitlebarCloseText.text(""+r);break;case"dialogClass":o.removeClass(this.options.dialogClass).addClass(n+r);break;case"disabled":r?o.addClass("ui-dialog-disabled"):o.removeClass("ui-dialog-disabled");break;case"draggable":i=o.is(":data(draggable)"),i&&!r&&o.draggable("destroy"),!i&&r&&this._makeDraggable();break;case"position":this._position(r);break;case"resizable":s=o.is(":data(resizable)"),s&&!r&&o.resizable("destroy"),s&&typeof r=="string"&&o.resizable("option","handles",r),!s&&r!==!1&&this._makeResizable(r);break;case"title":e(".ui-dialog-title",this.uiDialogTitlebar).html(""+(r||" "))}this._super(t,r)},_size:function(){var t,n,r,i=this.options,s=this.uiDialog.is(":visible");this.element.show().css({width:"auto",minHeight:0,height:0}),i.minWidth>i.width&&(i.width=i.minWidth),t=this.uiDialog.css({height:"auto",width:i.width}).outerHeight(),n=Math.max(0,i.minHeight-t),i.height==="auto"?e.support.minHeight?this.element.css({minHeight:n,height:"auto"}):(this.uiDialog.show(),r=this.element.css("height","auto").height(),s||this.uiDialog.hide(),this.element.height(Math.max(r,n))):this.element.height(Math.max(i.height-t,0)),this.uiDialog.is(":data(resizable)")&&this.uiDialog.resizable("option","minHeight",this._minHeight())}}),e.extend(e.ui.dialog,{uuid:0,maxZ:0,getTitleId:function(e){var t=e.attr("id");return t||(this.uuid+=1,t=this.uuid),"ui-dialog-title-"+t},overlay:function(t){this.$el=e.ui.dialog.overlay.create(t)}}),e.extend(e.ui.dialog.overlay,{instances:[],oldInstances:[],maxZ:0,events:e.map("focus,mousedown,mouseup,keydown,keypress,click".split(","),function(e){return e+".dialog-overlay"}).join(" "),create:function(t){this.instances.length===0&&(setTimeout(function(){e.ui.dialog.overlay.instances.length&&e(document).bind(e.ui.dialog.overlay.events,function(t){if(e(t.target).zIndex()<e.ui.dialog.overlay.maxZ)return!1})},1),e(window).bind("resize.dialog-overlay",e.ui.dialog.overlay.resize));var n=this.oldInstances.pop()||e("<div>").addClass("ui-widget-overlay");return e(document).bind("keydown.dialog-overlay",function(r){var i=e.ui.dialog.overlay.instances;i.length!==0&&i[i.length-1]===n&&t.options.closeOnEscape&&!r.isDefaultPrevented()&&r.keyCode&&r.keyCode===e.ui.keyCode.ESCAPE&&(t.close(r),r.preventDefault())}),n.appendTo(document.body).css({width:this.width(),height:this.height()}),e.fn.bgiframe&&n.bgiframe(),this.instances.push(n),n},destroy:function(t){var n=e.inArray(t,this.instances),r=0;n!==-1&&this.oldInstances.push(this.instances.splice(n,1)[0]),this.instances.length===0&&e([document,window]).unbind(".dialog-overlay"),t.height(0).width(0).remove(),e.each(this.instances,function(){r=Math.max(r,this.css("z-index"))}),this.maxZ=r},height:function(){var t,n;return e.ui.ie?(t=Math.max(document.documentElement.scrollHeight,document.body.scrollHeight),n=Math.max(document.documentElement.offsetHeight,document.body.offsetHeight),t<n?e(window).height()+"px":t+"px"):e(document).height()+"px"},width:function(){var t,n;return e.ui.ie?(t=Math.max(document.documentElement.scrollWidth,document.body.scrollWidth),n=Math.max(document.documentElement.offsetWidth,document.body.offsetWidth),t<n?e(window).width()+"px":t+"px"):e(document).width()+"px"},resize:function(){var t=e([]);e.each(e.ui.dialog.overlay.instances,function(){t=t.add(this)}),t.css({width:0,height:0}).css({width:e.ui.dialog.overlay.width(),height:e.ui.dialog.overlay.height()})}}),e.extend(e.ui.dialog.overlay.prototype,{destroy:function(){e.ui.dialog.overlay.destroy(this.$el)}})})(jQuery);(function(e,t){var n=!1;e.widget("ui.menu",{version:"1.9.2",defaultElement:"<ul>",delay:300,options:{icons:{submenu:"ui-icon-carat-1-e"},menus:"ul",position:{my:"left top",at:"right top"},role:"menu",blur:null,focus:null,select:null},_create:function(){this.activeMenu=this.element,this.element.uniqueId().addClass("ui-menu ui-widget ui-widget-content ui-corner-all").toggleClass("ui-menu-icons",!!this.element.find(".ui-icon").length).attr({role:this.options.role,tabIndex:0}).bind("click"+this.eventNamespace,e.proxy(function(e){this.options.disabled&&e.preventDefault()},this)),this.options.disabled&&this.element.addClass("ui-state-disabled").attr("aria-disabled","true"),this._on({"mousedown .ui-menu-item > a":function(e){e.preventDefault()},"click .ui-state-disabled > a":function(e){e.preventDefault()},"click .ui-menu-item:has(a)":function(t){var r=e(t.target).closest(".ui-menu-item");!n&&r.not(".ui-state-disabled").length&&(n=!0,this.select(t),r.has(".ui-menu").length?this.expand(t):this.element.is(":focus")||(this.element.trigger("focus",[!0]),this.active&&this.active.parents(".ui-menu").length===1&&clearTimeout(this.timer)))},"mouseenter .ui-menu-item":function(t){var n=e(t.currentTarget);n.siblings().children(".ui-state-active").removeClass("ui-state-active"),this.focus(t,n)},mouseleave:"collapseAll","mouseleave .ui-menu":"collapseAll",focus:function(e,t){var n=this.active||this.element.children(".ui-menu-item").eq(0);t||this.focus(e,n)},blur:function(t){this._delay(function(){e.contains(this.element[0],this.document[0].activeElement)||this.collapseAll(t)})},keydown:"_keydown"}),this.refresh(),this._on(this.document,{click:function(t){e(t.target).closest(".ui-menu").length||this.collapseAll(t),n=!1}})},_destroy:function(){this.element.removeAttr("aria-activedescendant").find(".ui-menu").andSelf().removeClass("ui-menu ui-widget ui-widget-content ui-corner-all ui-menu-icons").removeAttr("role").removeAttr("tabIndex").removeAttr("aria-labelledby").removeAttr("aria-expanded").removeAttr("aria-hidden").removeAttr("aria-disabled").removeUniqueId().show(),this.element.find(".ui-menu-item").removeClass("ui-menu-item").removeAttr("role").removeAttr("aria-disabled").children("a").removeUniqueId().removeClass("ui-corner-all ui-state-hover").removeAttr("tabIndex").removeAttr("role").removeAttr("aria-haspopup").children().each(function(){var t=e(this);t.data("ui-menu-submenu-carat")&&t.remove()}),this.element.find(".ui-menu-divider").removeClass("ui-menu-divider ui-widget-content")},_keydown:function(t){function a(e){return e.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g,"\\$&")}var n,r,i,s,o,u=!0;switch(t.keyCode){case e.ui.keyCode.PAGE_UP:this.previousPage(t);break;case e.ui.keyCode.PAGE_DOWN:this.nextPage(t);break;case e.ui.keyCode.HOME:this._move("first","first",t);break;case e.ui.keyCode.END:this._move("last","last",t);break;case e.ui.keyCode.UP:this.previous(t);break;case e.ui.keyCode.DOWN:this.next(t);break;case e.ui.keyCode.LEFT:this.collapse(t);break;case e.ui.keyCode.RIGHT:this.active&&!this.active.is(".ui-state-disabled")&&this.expand(t);break;case e.ui.keyCode.ENTER:case e.ui.keyCode.SPACE:this._activate(t);break;case e.ui.keyCode.ESCAPE:this.collapse(t);break;default:u=!1,r=this.previousFilter||"",i=String.fromCharCode(t.keyCode),s=!1,clearTimeout(this.filterTimer),i===r?s=!0:i=r+i,o=new RegExp("^"+a(i),"i"),n=this.activeMenu.children(".ui-menu-item").filter(function(){return o.test(e(this).children("a").text())}),n=s&&n.index(this.active.next())!==-1?this.active.nextAll(".ui-menu-item"):n,n.length||(i=String.fromCharCode(t.keyCode),o=new RegExp("^"+a(i),"i"),n=this.activeMenu.children(".ui-menu-item").filter(function(){return o.test(e(this).children("a").text())})),n.length?(this.focus(t,n),n.length>1?(this.previousFilter=i,this.filterTimer=this._delay(function(){delete this.previousFilter},1e3)):delete this.previousFilter):delete this.previousFilter}u&&t.preventDefault()},_activate:function(e){this.active.is(".ui-state-disabled")||(this.active.children("a[aria-haspopup='true']").length?this.expand(e):this.select(e))},refresh:function(){var t,n=this.options.icons.submenu,r=this.element.find(this.options.menus);r.filter(":not(.ui-menu)").addClass("ui-menu ui-widget ui-widget-content ui-corner-all").hide().attr({role:this.options.role,"aria-hidden":"true","aria-expanded":"false"}).each(function(){var t=e(this),r=t.prev("a"),i=e("<span>").addClass("ui-menu-icon ui-icon "+n).data("ui-menu-submenu-carat",!0);r.attr("aria-haspopup","true").prepend(i),t.attr("aria-labelledby",r.attr("id"))}),t=r.add(this.element),t.children(":not(.ui-menu-item):has(a)").addClass("ui-menu-item").attr("role","presentation").children("a").uniqueId().addClass("ui-corner-all").attr({tabIndex:-1,role:this._itemRole()}),t.children(":not(.ui-menu-item)").each(function(){var t=e(this);/[^\-—–\s]/.test(t.text())||t.addClass("ui-widget-content ui-menu-divider")}),t.children(".ui-state-disabled").attr("aria-disabled","true"),this.active&&!e.contains(this.element[0],this.active[0])&&this.blur()},_itemRole:function(){return{menu:"menuitem",listbox:"option"}[this.options.role]},focus:function(e,t){var n,r;this.blur(e,e&&e.type==="focus"),this._scrollIntoView(t),this.active=t.first(),r=this.active.children("a").addClass("ui-state-focus"),this.options.role&&this.element.attr("aria-activedescendant",r.attr("id")),this.active.parent().closest(".ui-menu-item").children("a:first").addClass("ui-state-active"),e&&e.type==="keydown"?this._close():this.timer=this._delay(function(){this._close()},this.delay),n=t.children(".ui-menu"),n.length&&/^mouse/.test(e.type)&&this._startOpening(n),this.activeMenu=t.parent(),this._trigger("focus",e,{item:t})},_scrollIntoView:function(t){var n,r,i,s,o,u;this._hasScroll()&&(n=parseFloat(e.css(this.activeMenu[0],"borderTopWidth"))||0,r=parseFloat(e.css(this.activeMenu[0],"paddingTop"))||0,i=t.offset().top-this.activeMenu.offset().top-n-r,s=this.activeMenu.scrollTop(),o=this.activeMenu.height(),u=t.height(),i<0?this.activeMenu.scrollTop(s+i):i+u>o&&this.activeMenu.scrollTop(s+i-o+u))},blur:function(e,t){t||clearTimeout(this.timer);if(!this.active)return;this.active.children("a").removeClass("ui-state-focus"),this.active=null,this._trigger("blur",e,{item:this.active})},_startOpening:function(e){clearTimeout(this.timer);if(e.attr("aria-hidden")!=="true")return;this.timer=this._delay(function(){this._close(),this._open(e)},this.delay)},_open:function(t){var n=e.extend({of:this.active},this.options.position);clearTimeout(this.timer),this.element.find(".ui-menu").not(t.parents(".ui-menu")).hide().attr("aria-hidden","true"),t.show().removeAttr("aria-hidden").attr("aria-expanded","true").position(n)},collapseAll:function(t,n){clearTimeout(this.timer),this.timer=this._delay(function(){var r=n?this.element:e(t&&t.target).closest(this.element.find(".ui-menu"));r.length||(r=this.element),this._close(r),this.blur(t),this.activeMenu=r},this.delay)},_close:function(e){e||(e=this.active?this.active.parent():this.element),e.find(".ui-menu").hide().attr("aria-hidden","true").attr("aria-expanded","false").end().find("a.ui-state-active").removeClass("ui-state-active")},collapse:function(e){var t=this.active&&this.active.parent().closest(".ui-menu-item",this.element);t&&t.length&&(this._close(),this.focus(e,t))},expand:function(e){var t=this.active&&this.active.children(".ui-menu ").children(".ui-menu-item").first();t&&t.length&&(this._open(t.parent()),this._delay(function(){this.focus(e,t)}))},next:function(e){this._move("next","first",e)},previous:function(e){this._move("prev","last",e)},isFirstItem:function(){return this.active&&!this.active.prevAll(".ui-menu-item").length},isLastItem:function(){return this.active&&!this.active.nextAll(".ui-menu-item").length},_move:function(e,t,n){var r;this.active&&(e==="first"||e==="last"?r=this.active[e==="first"?"prevAll":"nextAll"](".ui-menu-item").eq(-1):r=this.active[e+"All"](".ui-menu-item").eq(0));if(!r||!r.length||!this.active)r=this.activeMenu.children(".ui-menu-item")[t]();this.focus(n,r)},nextPage:function(t){var n,r,i;if(!this.active){this.next(t);return}if(this.isLastItem())return;this._hasScroll()?(r=this.active.offset().top,i=this.element.height(),this.active.nextAll(".ui-menu-item").each(function(){return n=e(this),n.offset().top-r-i<0}),this.focus(t,n)):this.focus(t,this.activeMenu.children(".ui-menu-item")[this.active?"last":"first"]())},previousPage:function(t){var n,r,i;if(!this.active){this.next(t);return}if(this.isFirstItem())return;this._hasScroll()?(r=this.active.offset().top,i=this.element.height(),this.active.prevAll(".ui-menu-item").each(function(){return n=e(this),n.offset().top-r+i>0}),this.focus(t,n)):this.focus(t,this.activeMenu.children(".ui-menu-item").first())},_hasScroll:function(){return this.element.outerHeight()<this.element.prop("scrollHeight")},select:function(t){this.active=this.active||e(t.target).closest(".ui-menu-item");var n={item:this.active};this.active.has(".ui-menu").length||this.collapseAll(t,!0),this._trigger("select",t,n)}})})(jQuery);(function(e,t){var n=5;e.widget("ui.slider",e.ui.mouse,{version:"1.9.2",widgetEventPrefix:"slide",options:{animate:!1,distance:0,max:100,min:0,orientation:"horizontal",range:!1,step:1,value:0,values:null},_create:function(){var t,r,i=this.options,s=this.element.find(".ui-slider-handle").addClass("ui-state-default ui-corner-all"),o="<a class='ui-slider-handle ui-state-default ui-corner-all' href='#'></a>",u=[];this._keySliding=!1,this._mouseSliding=!1,this._animateOff=!0,this._handleIndex=null,this._detectOrientation(),this._mouseInit(),this.element.addClass("ui-slider ui-slider-"+this.orientation+" ui-widget"+" ui-widget-content"+" ui-corner-all"+(i.disabled?" ui-slider-disabled ui-disabled":"")),this.range=e([]),i.range&&(i.range===!0&&(i.values||(i.values=[this._valueMin(),this._valueMin()]),i.values.length&&i.values.length!==2&&(i.values=[i.values[0],i.values[0]])),this.range=e("<div></div>").appendTo(this.element).addClass("ui-slider-range ui-widget-header"+(i.range==="min"||i.range==="max"?" ui-slider-range-"+i.range:""))),r=i.values&&i.values.length||1;for(t=s.length;t<r;t++)u.push(o);this.handles=s.add(e(u.join("")).appendTo(this.element)),this.handle=this.handles.eq(0),this.handles.add(this.range).filter("a").click(function(e){e.preventDefault()}).mouseenter(function(){i.disabled||e(this).addClass("ui-state-hover")}).mouseleave(function(){e(this).removeClass("ui-state-hover")}).focus(function(){i.disabled?e(this).blur():(e(".ui-slider .ui-state-focus").removeClass("ui-state-focus"),e(this).addClass("ui-state-focus"))}).blur(function(){e(this).removeClass("ui-state-focus")}),this.handles.each(function(t){e(this).data("ui-slider-handle-index",t)}),this._on(this.handles,{keydown:function(t){var r,i,s,o,u=e(t.target).data("ui-slider-handle-index");switch(t.keyCode){case e.ui.keyCode.HOME:case e.ui.keyCode.END:case e.ui.keyCode.PAGE_UP:case e.ui.keyCode.PAGE_DOWN:case e.ui.keyCode.UP:case e.ui.keyCode.RIGHT:case e.ui.keyCode.DOWN:case e.ui.keyCode.LEFT:t.preventDefault();if(!this._keySliding){this._keySliding=!0,e(t.target).addClass("ui-state-active"),r=this._start(t,u);if(r===!1)return}}o=this.options.step,this.options.values&&this.options.values.length?i=s=this.values(u):i=s=this.value();switch(t.keyCode){case e.ui.keyCode.HOME:s=this._valueMin();break;case e.ui.keyCode.END:s=this._valueMax();break;case e.ui.keyCode.PAGE_UP:s=this._trimAlignValue(i+(this._valueMax()-this._valueMin())/n);break;case e.ui.keyCode.PAGE_DOWN:s=this._trimAlignValue(i-(this._valueMax()-this._valueMin())/n);break;case e.ui.keyCode.UP:case e.ui.keyCode.RIGHT:if(i===this._valueMax())return;s=this._trimAlignValue(i+o);break;case e.ui.keyCode.DOWN:case e.ui.keyCode.LEFT:if(i===this._valueMin())return;s=this._trimAlignValue(i-o)}this._slide(t,u,s)},keyup:function(t){var n=e(t.target).data("ui-slider-handle-index");this._keySliding&&(this._keySliding=!1,this._stop(t,n),this._change(t,n),e(t.target).removeClass("ui-state-active"))}}),this._refreshValue(),this._animateOff=!1},_destroy:function(){this.handles.remove(),this.range.remove(),this.element.removeClass("ui-slider ui-slider-horizontal ui-slider-vertical ui-slider-disabled ui-widget ui-widget-content ui-corner-all"),this._mouseDestroy()},_mouseCapture:function(t){var n,r,i,s,o,u,a,f,l=this,c=this.options;return c.disabled?!1:(this.elementSize={width:this.element.outerWidth(),height:this.element.outerHeight()},this.elementOffset=this.element.offset(),n={x:t.pageX,y:t.pageY},r=this._normValueFromMouse(n),i=this._valueMax()-this._valueMin()+1,this.handles.each(function(t){var n=Math.abs(r-l.values(t));i>n&&(i=n,s=e(this),o=t)}),c.range===!0&&this.values(1)===c.min&&(o+=1,s=e(this.handles[o])),u=this._start(t,o),u===!1?!1:(this._mouseSliding=!0,this._handleIndex=o,s.addClass("ui-state-active").focus(),a=s.offset(),f=!e(t.target).parents().andSelf().is(".ui-slider-handle"),this._clickOffset=f?{left:0,top:0}:{left:t.pageX-a.left-s.width()/2,top:t.pageY-a.top-s.height()/2-(parseInt(s.css("borderTopWidth"),10)||0)-(parseInt(s.css("borderBottomWidth"),10)||0)+(parseInt(s.css("marginTop"),10)||0)},this.handles.hasClass("ui-state-hover")||this._slide(t,o,r),this._animateOff=!0,!0))},_mouseStart:function(){return!0},_mouseDrag:function(e){var t={x:e.pageX,y:e.pageY},n=this._normValueFromMouse(t);return this._slide(e,this._handleIndex,n),!1},_mouseStop:function(e){return this.handles.removeClass("ui-state-active"),this._mouseSliding=!1,this._stop(e,this._handleIndex),this._change(e,this._handleIndex),this._handleIndex=null,this._clickOffset=null,this._animateOff=!1,!1},_detectOrientation:function(){this.orientation=this.options.orientation==="vertical"?"vertical":"horizontal"},_normValueFromMouse:function(e){var t,n,r,i,s;return this.orientation==="horizontal"?(t=this.elementSize.width,n=e.x-this.elementOffset.left-(this._clickOffset?this._clickOffset.left:0)):(t=this.elementSize.height,n=e.y-this.elementOffset.top-(this._clickOffset?this._clickOffset.top:0)),r=n/t,r>1&&(r=1),r<0&&(r=0),this.orientation==="vertical"&&(r=1-r),i=this._valueMax()-this._valueMin(),s=this._valueMin()+r*i,this._trimAlignValue(s)},_start:function(e,t){var n={handle:this.handles[t],value:this.value()};return this.options.values&&this.options.values.length&&(n.value=this.values(t),n.values=this.values()),this._trigger("start",e,n)},_slide:function(e,t,n){var r,i,s;this.options.values&&this.options.values.length?(r=this.values(t?0:1),this.options.values.length===2&&this.options.range===!0&&(t===0&&n>r||t===1&&n<r)&&(n=r),n!==this.values(t)&&(i=this.values(),i[t]=n,s=this._trigger("slide",e,{handle:this.handles[t],value:n,values:i}),r=this.values(t?0:1),s!==!1&&this.values(t,n,!0))):n!==this.value()&&(s=this._trigger("slide",e,{handle:this.handles[t],value:n}),s!==!1&&this.value(n))},_stop:function(e,t){var n={handle:this.handles[t],value:this.value()};this.options.values&&this.options.values.length&&(n.value=this.values(t),n.values=this.values()),this._trigger("stop",e,n)},_change:function(e,t){if(!this._keySliding&&!this._mouseSliding){var n={handle:this.handles[t],value:this.value()};this.options.values&&this.options.values.length&&(n.value=this.values(t),n.values=this.values()),this._trigger("change",e,n)}},value:function(e){if(arguments.length){this.options.value=this._trimAlignValue(e),this._refreshValue(),this._change(null,0);return}return this._value()},values:function(t,n){var r,i,s;if(arguments.length>1){this.options.values[t]=this._trimAlignValue(n),this._refreshValue(),this._change(null,t);return}if(!arguments.length)return this._values();if(!e.isArray(arguments[0]))return this.options.values&&this.options.values.length?this._values(t):this.value();r=this.options.values,i=arguments[0];for(s=0;s<r.length;s+=1)r[s]=this._trimAlignValue(i[s]),this._change(null,s);this._refreshValue()},_setOption:function(t,n){var r,i=0;e.isArray(this.options.values)&&(i=this.options.values.length),e.Widget.prototype._setOption.apply(this,arguments);switch(t){case"disabled":n?(this.handles.filter(".ui-state-focus").blur(),this.handles.removeClass("ui-state-hover"),this.handles.prop("disabled",!0),this.element.addClass("ui-disabled")):(this.handles.prop("disabled",!1),this.element.removeClass("ui-disabled"));break;case"orientation":this._detectOrientation(),this.element.removeClass("ui-slider-horizontal ui-slider-vertical").addClass("ui-slider-"+this.orientation),this._refreshValue();break;case"value":this._animateOff=!0,this._refreshValue(),this._change(null,0),this._animateOff=!1;break;case"values":this._animateOff=!0,this._refreshValue();for(r=0;r<i;r+=1)this._change(null,r);this._animateOff=!1;break;case"min":case"max":this._animateOff=!0,this._refreshValue(),this._animateOff=!1}},_value:function(){var e=this.options.value;return e=this._trimAlignValue(e),e},_values:function(e){var t,n,r;if(arguments.length)return t=this.options.values[e],t=this._trimAlignValue(t),t;n=this.options.values.slice();for(r=0;r<n.length;r+=1)n[r]=this._trimAlignValue(n[r]);return n},_trimAlignValue:function(e){if(e<=this._valueMin())return this._valueMin();if(e>=this._valueMax())return this._valueMax();var t=this.options.step>0?this.options.step:1,n=(e-this._valueMin())%t,r=e-n;return Math.abs(n)*2>=t&&(r+=n>0?t:-t),parseFloat(r.toFixed(5))},_valueMin:function(){return this.options.min},_valueMax:function(){return this.options.max},_refreshValue:function(){var t,n,r,i,s,o=this.options.range,u=this.options,a=this,f=this._animateOff?!1:u.animate,l={};this.options.values&&this.options.values.length?this.handles.each(function(r){n=(a.values(r)-a._valueMin())/(a._valueMax()-a._valueMin())*100,l[a.orientation==="horizontal"?"left":"bottom"]=n+"%",e(this).stop(1,1)[f?"animate":"css"](l,u.animate),a.options.range===!0&&(a.orientation==="horizontal"?(r===0&&a.range.stop(1,1)[f?"animate":"css"]({left:n+"%"},u.animate),r===1&&a.range[f?"animate":"css"]({width:n-t+"%"},{queue:!1,duration:u.animate})):(r===0&&a.range.stop(1,1)[f?"animate":"css"]({bottom:n+"%"},u.animate),r===1&&a.range[f?"animate":"css"]({height:n-t+"%"},{queue:!1,duration:u.animate}))),t=n}):(r=this.value(),i=this._valueMin(),s=this._valueMax(),n=s!==i?(r-i)/(s-i)*100:0,l[this.orientation==="horizontal"?"left":"bottom"]=n+"%",this.handle.stop(1,1)[f?"animate":"css"](l,u.animate),o==="min"&&this.orientation==="horizontal"&&this.range.stop(1,1)[f?"animate":"css"]({width:n+"%"},u.animate),o==="max"&&this.orientation==="horizontal"&&this.range[f?"animate":"css"]({width:100-n+"%"},{queue:!1,duration:u.animate}),o==="min"&&this.orientation==="vertical"&&this.range.stop(1,1)[f?"animate":"css"]({height:n+"%"},u.animate),o==="max"&&this.orientation==="vertical"&&this.range[f?"animate":"css"]({height:100-n+"%"},{queue:!1,duration:u.animate}))}})})(jQuery);(function(e,t){function i(){return++n}function s(e){return e.hash.length>1&&e.href.replace(r,"")===location.href.replace(r,"").replace(/\s/g,"%20")}var n=0,r=/#.*$/;e.widget("ui.tabs",{version:"1.9.2",delay:300,options:{active:null,collapsible:!1,event:"click",heightStyle:"content",hide:null,show:null,activate:null,beforeActivate:null,beforeLoad:null,load:null},_create:function(){var t=this,n=this.options,r=n.active,i=location.hash.substring(1);this.running=!1,this.element.addClass("ui-tabs ui-widget ui-widget-content ui-corner-all").toggleClass("ui-tabs-collapsible",n.collapsible).delegate(".ui-tabs-nav > li","mousedown"+this.eventNamespace,function(t){e(this).is(".ui-state-disabled")&&t.preventDefault()}).delegate(".ui-tabs-anchor","focus"+this.eventNamespace,function(){e(this).closest("li").is(".ui-state-disabled")&&this.blur()}),this._processTabs();if(r===null){i&&this.tabs.each(function(t,n){if(e(n).attr("aria-controls")===i)return r=t,!1}),r===null&&(r=this.tabs.index(this.tabs.filter(".ui-tabs-active")));if(r===null||r===-1)r=this.tabs.length?0:!1}r!==!1&&(r=this.tabs.index(this.tabs.eq(r)),r===-1&&(r=n.collapsible?!1:0)),n.active=r,!n.collapsible&&n.active===!1&&this.anchors.length&&(n.active=0),e.isArray(n.disabled)&&(n.disabled=e.unique(n.disabled.concat(e.map(this.tabs.filter(".ui-state-disabled"),function(e){return t.tabs.index(e)}))).sort()),this.options.active!==!1&&this.anchors.length?this.active=this._findActive(this.options.active):this.active=e(),this._refresh(),this.active.length&&this.load(n.active)},_getCreateEventData:function(){return{tab:this.active,panel:this.active.length?this._getPanelForTab(this.active):e()}},_tabKeydown:function(t){var n=e(this.document[0].activeElement).closest("li"),r=this.tabs.index(n),i=!0;if(this._handlePageNav(t))return;switch(t.keyCode){case e.ui.keyCode.RIGHT:case e.ui.keyCode.DOWN:r++;break;case e.ui.keyCode.UP:case e.ui.keyCode.LEFT:i=!1,r--;break;case e.ui.keyCode.END:r=this.anchors.length-1;break;case e.ui.keyCode.HOME:r=0;break;case e.ui.keyCode.SPACE:t.preventDefault(),clearTimeout(this.activating),this._activate(r);return;case e.ui.keyCode.ENTER:t.preventDefault(),clearTimeout(this.activating),this._activate(r===this.options.active?!1:r);return;default:return}t.preventDefault(),clearTimeout(this.activating),r=this._focusNextTab(r,i),t.ctrlKey||(n.attr("aria-selected","false"),this.tabs.eq(r).attr("aria-selected","true"),this.activating=this._delay(function(){this.option("active",r)},this.delay))},_panelKeydown:function(t){if(this._handlePageNav(t))return;t.ctrlKey&&t.keyCode===e.ui.keyCode.UP&&(t.preventDefault(),this.active.focus())},_handlePageNav:function(t){if(t.altKey&&t.keyCode===e.ui.keyCode.PAGE_UP)return this._activate(this._focusNextTab(this.options.active-1,!1)),!0;if(t.altKey&&t.keyCode===e.ui.keyCode.PAGE_DOWN)return this._activate(this._focusNextTab(this.options.active+1,!0)),!0},_findNextTab:function(t,n){function i(){return t>r&&(t=0),t<0&&(t=r),t}var r=this.tabs.length-1;while(e.inArray(i(),this.options.disabled)!==-1)t=n?t+1:t-1;return t},_focusNextTab:function(e,t){return e=this._findNextTab(e,t),this.tabs.eq(e).focus(),e},_setOption:function(e,t){if(e==="active"){this._activate(t);return}if(e==="disabled"){this._setupDisabled(t);return}this._super(e,t),e==="collapsible"&&(this.element.toggleClass("ui-tabs-collapsible",t),!t&&this.options.active===!1&&this._activate(0)),e==="event"&&this._setupEvents(t),e==="heightStyle"&&this._setupHeightStyle(t)},_tabId:function(e){return e.attr("aria-controls")||"ui-tabs-"+i()},_sanitizeSelector:function(e){return e?e.replace(/[!"$%&'()*+,.\/:;<=>?@\[\]\^`{|}~]/g,"\\$&"):""},refresh:function(){var t=this.options,n=this.tablist.children(":has(a[href])");t.disabled=e.map(n.filter(".ui-state-disabled"),function(e){return n.index(e)}),this._processTabs(),t.active===!1||!this.anchors.length?(t.active=!1,this.active=e()):this.active.length&&!e.contains(this.tablist[0],this.active[0])?this.tabs.length===t.disabled.length?(t.active=!1,this.active=e()):this._activate(this._findNextTab(Math.max(0,t.active-1),!1)):t.active=this.tabs.index(this.active),this._refresh()},_refresh:function(){this._setupDisabled(this.options.disabled),this._setupEvents(this.options.event),this._setupHeightStyle(this.options.heightStyle),this.tabs.not(this.active).attr({"aria-selected":"false",tabIndex:-1}),this.panels.not(this._getPanelForTab(this.active)).hide().attr({"aria-expanded":"false","aria-hidden":"true"}),this.active.length?(this.active.addClass("ui-tabs-active ui-state-active").attr({"aria-selected":"true",tabIndex:0}),this._getPanelForTab(this.active).show().attr({"aria-expanded":"true","aria-hidden":"false"})):this.tabs.eq(0).attr("tabIndex",0)},_processTabs:function(){var t=this;this.tablist=this._getList().addClass("ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all").attr("role","tablist"),this.tabs=this.tablist.find("> li:has(a[href])").addClass("ui-state-default ui-corner-top").attr({role:"tab",tabIndex:-1}),this.anchors=this.tabs.map(function(){return e("a",this)[0]}).addClass("ui-tabs-anchor").attr({role:"presentation",tabIndex:-1}),this.panels=e(),this.anchors.each(function(n,r){var i,o,u,a=e(r).uniqueId().attr("id"),f=e(r).closest("li"),l=f.attr("aria-controls");s(r)?(i=r.hash,o=t.element.find(t._sanitizeSelector(i))):(u=t._tabId(f),i="#"+u,o=t.element.find(i),o.length||(o=t._createPanel(u),o.insertAfter(t.panels[n-1]||t.tablist)),o.attr("aria-live","polite")),o.length&&(t.panels=t.panels.add(o)),l&&f.data("ui-tabs-aria-controls",l),f.attr({"aria-controls":i.substring(1),"aria-labelledby":a}),o.attr("aria-labelledby",a)}),this.panels.addClass("ui-tabs-panel ui-widget-content ui-corner-bottom").attr("role","tabpanel")},_getList:function(){return this.element.find("ol,ul").eq(0)},_createPanel:function(t){return e("<div>").attr("id",t).addClass("ui-tabs-panel ui-widget-content ui-corner-bottom").data("ui-tabs-destroy",!0)},_setupDisabled:function(t){e.isArray(t)&&(t.length?t.length===this.anchors.length&&(t=!0):t=!1);for(var n=0,r;r=this.tabs[n];n++)t===!0||e.inArray(n,t)!==-1?e(r).addClass("ui-state-disabled").attr("aria-disabled","true"):e(r).removeClass("ui-state-disabled").removeAttr("aria-disabled");this.options.disabled=t},_setupEvents:function(t){var n={click:function(e){e.preventDefault()}};t&&e.each(t.split(" "),function(e,t){n[t]="_eventHandler"}),this._off(this.anchors.add(this.tabs).add(this.panels)),this._on(this.anchors,n),this._on(this.tabs,{keydown:"_tabKeydown"}),this._on(this.panels,{keydown:"_panelKeydown"}),this._focusable(this.tabs),this._hoverable(this.tabs)},_setupHeightStyle:function(t){var n,r,i=this.element.parent();t==="fill"?(e.support.minHeight||(r=i.css("overflow"),i.css("overflow","hidden")),n=i.height(),this.element.siblings(":visible").each(function(){var t=e(this),r=t.css("position");if(r==="absolute"||r==="fixed")return;n-=t.outerHeight(!0)}),r&&i.css("overflow",r),this.element.children().not(this.panels).each(function(){n-=e(this).outerHeight(!0)}),this.panels.each(function(){e(this).height(Math.max(0,n-e(this).innerHeight()+e(this).height()))}).css("overflow","auto")):t==="auto"&&(n=0,this.panels.each(function(){n=Math.max(n,e(this).height("").height())}).height(n))},_eventHandler:function(t){var n=this.options,r=this.active,i=e(t.currentTarget),s=i.closest("li"),o=s[0]===r[0],u=o&&n.collapsible,a=u?e():this._getPanelForTab(s),f=r.length?this._getPanelForTab(r):e(),l={oldTab:r,oldPanel:f,newTab:u?e():s,newPanel:a};t.preventDefault();if(s.hasClass("ui-state-disabled")||s.hasClass("ui-tabs-loading")||this.running||o&&!n.collapsible||this._trigger("beforeActivate",t,l)===!1)return;n.active=u?!1:this.tabs.index(s),this.active=o?e():s,this.xhr&&this.xhr.abort(),!f.length&&!a.length&&e.error("jQuery UI Tabs: Mismatching fragment identifier."),a.length&&this.load(this.tabs.index(s),t),this._toggle(t,l)},_toggle:function(t,n){function o(){r.running=!1,r._trigger("activate",t,n)}function u(){n.newTab.closest("li").addClass("ui-tabs-active ui-state-active"),i.length&&r.options.show?r._show(i,r.options.show,o):(i.show(),o())}var r=this,i=n.newPanel,s=n.oldPanel;this.running=!0,s.length&&this.options.hide?this._hide(s,this.options.hide,function(){n.oldTab.closest("li").removeClass("ui-tabs-active ui-state-active"),u()}):(n.oldTab.closest("li").removeClass("ui-tabs-active ui-state-active"),s.hide(),u()),s.attr({"aria-expanded":"false","aria-hidden":"true"}),n.oldTab.attr("aria-selected","false"),i.length&&s.length?n.oldTab.attr("tabIndex",-1):i.length&&this.tabs.filter(function(){return e(this).attr("tabIndex")===0}).attr("tabIndex",-1),i.attr({"aria-expanded":"true","aria-hidden":"false"}),n.newTab.attr({"aria-selected":"true",tabIndex:0})},_activate:function(t){var n,r=this._findActive(t);if(r[0]===this.active[0])return;r.length||(r=this.active),n=r.find(".ui-tabs-anchor")[0],this._eventHandler({target:n,currentTarget:n,preventDefault:e.noop})},_findActive:function(t){return t===!1?e():this.tabs.eq(t)},_getIndex:function(e){return typeof e=="string"&&(e=this.anchors.index(this.anchors.filter("[href$='"+e+"']"))),e},_destroy:function(){this.xhr&&this.xhr.abort(),this.element.removeClass("ui-tabs ui-widget ui-widget-content ui-corner-all ui-tabs-collapsible"),this.tablist.removeClass("ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all").removeAttr("role"),this.anchors.removeClass("ui-tabs-anchor").removeAttr("role").removeAttr("tabIndex").removeData("href.tabs").removeData("load.tabs").removeUniqueId(),this.tabs.add(this.panels).each(function(){e.data(this,"ui-tabs-destroy")?e(this).remove():e(this).removeClass("ui-state-default ui-state-active ui-state-disabled ui-corner-top ui-corner-bottom ui-widget-content ui-tabs-active ui-tabs-panel").removeAttr("tabIndex").removeAttr("aria-live").removeAttr("aria-busy").removeAttr("aria-selected").removeAttr("aria-labelledby").removeAttr("aria-hidden").removeAttr("aria-expanded").removeAttr("role")}),this.tabs.each(function(){var t=e(this),n=t.data("ui-tabs-aria-controls");n?t.attr("aria-controls",n):t.removeAttr("aria-controls")}),this.panels.show(),this.options.heightStyle!=="content"&&this.panels.css("height","")},enable:function(n){var r=this.options.disabled;if(r===!1)return;n===t?r=!1:(n=this._getIndex(n),e.isArray(r)?r=e.map(r,function(e){return e!==n?e:null}):r=e.map(this.tabs,function(e,t){return t!==n?t:null})),this._setupDisabled(r)},disable:function(n){var r=this.options.disabled;if(r===!0)return;if(n===t)r=!0;else{n=this._getIndex(n);if(e.inArray(n,r)!==-1)return;e.isArray(r)?r=e.merge([n],r).sort():r=[n]}this._setupDisabled(r)},load:function(t,n){t=this._getIndex(t);var r=this,i=this.tabs.eq(t),o=i.find(".ui-tabs-anchor"),u=this._getPanelForTab(i),a={tab:i,panel:u};if(s(o[0]))return;this.xhr=e.ajax(this._ajaxSettings(o,n,a)),this.xhr&&this.xhr.statusText!=="canceled"&&(i.addClass("ui-tabs-loading"),u.attr("aria-busy","true"),this.xhr.success(function(e){setTimeout(function(){u.html(e),r._trigger("load",n,a)},1)}).complete(function(e,t){setTimeout(function(){t==="abort"&&r.panels.stop(!1,!0),i.removeClass("ui-tabs-loading"),u.removeAttr("aria-busy"),e===r.xhr&&delete r.xhr},1)}))},_ajaxSettings:function(t,n,r){var i=this;return{url:t.attr("href"),beforeSend:function(t,s){return i._trigger("beforeLoad",n,e.extend({jqXHR:t,ajaxSettings:s},r))}}},_getPanelForTab:function(t){var n=e(t).attr("aria-controls");return this.element.find(this._sanitizeSelector("#"+n))}}),e.uiBackCompat!==!1&&(e.ui.tabs.prototype._ui=function(e,t){return{tab:e,panel:t,index:this.anchors.index(e)}},e.widget("ui.tabs",e.ui.tabs,{url:function(e,t){this.anchors.eq(e).attr("href",t)}}),e.widget("ui.tabs",e.ui.tabs,{options:{ajaxOptions:null,cache:!1},_create:function(){this._super();var t=this;this._on({tabsbeforeload:function(n,r){if(e.data(r.tab[0],"cache.tabs")){n.preventDefault();return}r.jqXHR.success(function(){t.options.cache&&e.data(r.tab[0],"cache.tabs",!0)})}})},_ajaxSettings:function(t,n,r){var i=this.options.ajaxOptions;return e.extend({},i,{error:function(e,t){try{i.error(e,t,r.tab.closest("li").index(),r.tab[0])}catch(n){}}},this._superApply(arguments))},_setOption:function(e,t){e==="cache"&&t===!1&&this.anchors.removeData("cache.tabs"),this._super(e,t)},_destroy:function(){this.anchors.removeData("cache.tabs"),this._super()},url:function(e){this.anchors.eq(e).removeData("cache.tabs"),this._superApply(arguments)}}),e.widget("ui.tabs",e.ui.tabs,{abort:function(){this.xhr&&this.xhr.abort()}}),e.widget("ui.tabs",e.ui.tabs,{options:{spinner:"<em>Loading…</em>"},_create:function(){this._super(),this._on({tabsbeforeload:function(e,t){if(e.target!==this.element[0]||!this.options.spinner)return;var n=t.tab.find("span"),r=n.html();n.html(this.options.spinner),t.jqXHR.complete(function(){n.html(r)})}})}}),e.widget("ui.tabs",e.ui.tabs,{options:{enable:null,disable:null},enable:function(t){var n=this.options,r;if(t&&n.disabled===!0||e.isArray(n.disabled)&&e.inArray(t,n.disabled)!==-1)r=!0;this._superApply(arguments),r&&this._trigger("enable",null,this._ui(this.anchors[t],this.panels[t]))},disable:function(t){var n=this.options,r;if(t&&n.disabled===!1||e.isArray(n.disabled)&&e.inArray(t,n.disabled)===-1)r=!0;this._superApply(arguments),r&&this._trigger("disable",null,this._ui(this.anchors[t],this.panels[t]))}}),e.widget("ui.tabs",e.ui.tabs,{options:{add:null,remove:null,tabTemplate:"<li><a href='#{href}'><span>#{label}</span></a></li>"},add:function(n,r,i){i===t&&(i=this.anchors.length);var s,o,u=this.options,a=e(u.tabTemplate.replace(/#\{href\}/g,n).replace(/#\{label\}/g,r)),f=n.indexOf("#")?this._tabId(a):n.replace("#","");return a.addClass("ui-state-default ui-corner-top").data("ui-tabs-destroy",!0),a.attr("aria-controls",f),s=i>=this.tabs.length,o=this.element.find("#"+f),o.length||(o=this._createPanel(f),s?i>0?o.insertAfter(this.panels.eq(-1)):o.appendTo(this.element):o.insertBefore(this.panels[i])),o.addClass("ui-tabs-panel ui-widget-content ui-corner-bottom").hide(),s?a.appendTo(this.tablist):a.insertBefore(this.tabs[i]),u.disabled=e.map(u.disabled,function(e){return e>=i?++e:e}),this.refresh(),this.tabs.length===1&&u.active===!1&&this.option("active",0),this._trigger("add",null,this._ui(this.anchors[i],this.panels[i])),this},remove:function(t){t=this._getIndex(t);var n=this.options,r=this.tabs.eq(t).remove(),i=this._getPanelForTab(r).remove();return r.hasClass("ui-tabs-active")&&this.anchors.length>2&&this._activate(t+(t+1<this.anchors.length?1:-1)),n.disabled=e.map(e.grep(n.disabled,function(e){return e!==t}),function(e){return e>=t?--e:e}),this.refresh(),this._trigger("remove",null,this._ui(r.find("a")[0],i[0])),this}}),e.widget("ui.tabs",e.ui.tabs,{length:function(){return this.anchors.length}}),e.widget("ui.tabs",e.ui.tabs,{options:{idPrefix:"ui-tabs-"},_tabId:function(t){var n=t.is("li")?t.find("a[href]"):t;return n=n[0],e(n).closest("li").attr("aria-controls")||n.title&&n.title.replace(/\s/g,"_").replace(/[^\w\u00c0-\uFFFF\-]/g,"")||this.options.idPrefix+i()}}),e.widget("ui.tabs",e.ui.tabs,{options:{panelTemplate:"<div></div>"},_createPanel:function(t){return e(this.options.panelTemplate).attr("id",t).addClass("ui-tabs-panel ui-widget-content ui-corner-bottom").data("ui-tabs-destroy",!0)}}),e.widget("ui.tabs",e.ui.tabs,{_create:function(){var e=this.options;e.active===null&&e.selected!==t&&(e.active=e.selected===-1?!1:e.selected),this._super(),e.selected=e.active,e.selected===!1&&(e.selected=-1)},_setOption:function(e,t){if(e!=="selected")return this._super(e,t);var n=this.options;this._super("active",t===-1?!1:t),n.selected=n.active,n.selected===!1&&(n.selected=-1)},_eventHandler:function(){this._superApply(arguments),this.options.selected=this.options.active,this.options.selected===!1&&(this.options.selected=-1)}}),e.widget("ui.tabs",e.ui.tabs,{options:{show:null,select:null},_create:function(){this._super(),this.options.active!==!1&&this._trigger("show",null,this._ui(this.active.find(".ui-tabs-anchor")[0],this._getPanelForTab(this.active)[0]))},_trigger:function(e,t,n){var r,i,s=this._superApply(arguments);return s?(e==="beforeActivate"?(r=n.newTab.length?n.newTab:n.oldTab,i=n.newPanel.length?n.newPanel:n.oldPanel,s=this._super("select",t,{tab:r.find(".ui-tabs-anchor")[0],panel:i[0],index:r.closest("li").index()})):e==="activate"&&n.newTab.length&&(s=this._super("show",t,{tab:n.newTab.find(".ui-tabs-anchor")[0],panel:n.newPanel[0],index:n.newTab.closest("li").index()})),s):!1}}),e.widget("ui.tabs",e.ui.tabs,{select:function(e){e=this._getIndex(e);if(e===-1){if(!this.options.collapsible||this.options.selected===-1)return;e=this.options.selected}this.anchors.eq(e).trigger(this.options.event+this.eventNamespace)}}),function(){var t=0;e.widget("ui.tabs",e.ui.tabs,{options:{cookie:null},_create:function(){var e=this.options,t;e.active==null&&e.cookie&&(t=parseInt(this._cookie(),10),t===-1&&(t=!1),e.active=t),this._super()},_cookie:function(n){var r=[this.cookie||(this.cookie=this.options.cookie.name||"ui-tabs-"+ ++t)];return arguments.length&&(r.push(n===!1?-1:n),r.push(this.options.cookie)),e.cookie.apply(null,r)},_refresh:function(){this._super(),this.options.cookie&&this._cookie(this.options.active,this.options.cookie)},_eventHandler:function(){this._superApply(arguments),this.options.cookie&&this._cookie(this.options.active,this.options.cookie)},_destroy:function(){this._super(),this.options.cookie&&this._cookie(null,this.options.cookie)}})}(),e.widget("ui.tabs",e.ui.tabs,{_trigger:function(t,n,r){var i=e.extend({},r);return t==="load"&&(i.panel=i.panel[0],i.tab=i.tab.find(".ui-tabs-anchor")[0]),this._super(t,n,i)}}),e.widget("ui.tabs",e.ui.tabs,{options:{fx:null},_getFx:function(){var t,n,r=this.options.fx;return r&&(e.isArray(r)?(t=r[0],n=r[1]):t=n=r),r?{show:n,hide:t}:null},_toggle:function(e,t){function o(){n.running=!1,n._trigger("activate",e,t)}function u(){t.newTab.closest("li").addClass("ui-tabs-active ui-state-active"),r.length&&s.show?r.animate(s.show,s.show.duration,function(){o()}):(r.show(),o())}var n=this,r=t.newPanel,i=t.oldPanel,s=this._getFx();if(!s)return this._super(e,t);n.running=!0,i.length&&s.hide?i.animate(s.hide,s.hide.duration,function(){t.oldTab.closest("li").removeClass("ui-tabs-active ui-state-active"),u()}):(t.oldTab.closest("li").removeClass("ui-tabs-active ui-state-active"),i.hide(),u())}}))})(jQuery);jQuery.effects||function(e,t){var n=e.uiBackCompat!==!1,r="ui-effects-";e.effects={effect:{}},function(t,n){function p(e,t,n){var r=a[t.type]||{};return e==null?n||!t.def?null:t.def:(e=r.floor?~~e:parseFloat(e),isNaN(e)?t.def:r.mod?(e+r.mod)%r.mod:0>e?0:r.max<e?r.max:e)}function d(e){var n=o(),r=n._rgba=[];return e=e.toLowerCase(),h(s,function(t,i){var s,o=i.re.exec(e),a=o&&i.parse(o),f=i.space||"rgba";if(a)return s=n[f](a),n[u[f].cache]=s[u[f].cache],r=n._rgba=s._rgba,!1}),r.length?(r.join()==="0,0,0,0"&&t.extend(r,c.transparent),n):c[e]}function v(e,t,n){return n=(n+1)%1,n*6<1?e+(t-e)*n*6:n*2<1?t:n*3<2?e+(t-e)*(2/3-n)*6:e}var r="backgroundColor borderBottomColor borderLeftColor borderRightColor borderTopColor color columnRuleColor outlineColor textDecorationColor textEmphasisColor".split(" "),i=/^([\-+])=\s*(\d+\.?\d*)/,s=[{re:/rgba?\(\s*(\d{1,3})\s*,\s*(\d{1,3})\s*,\s*(\d{1,3})\s*(?:,\s*(\d+(?:\.\d+)?)\s*)?\)/,parse:function(e){return[e[1],e[2],e[3],e[4]]}},{re:/rgba?\(\s*(\d+(?:\.\d+)?)\%\s*,\s*(\d+(?:\.\d+)?)\%\s*,\s*(\d+(?:\.\d+)?)\%\s*(?:,\s*(\d+(?:\.\d+)?)\s*)?\)/,parse:function(e){return[e[1]*2.55,e[2]*2.55,e[3]*2.55,e[4]]}},{re:/#([a-f0-9]{2})([a-f0-9]{2})([a-f0-9]{2})/,parse:function(e){return[parseInt(e[1],16),parseInt(e[2],16),parseInt(e[3],16)]}},{re:/#([a-f0-9])([a-f0-9])([a-f0-9])/,parse:function(e){return[parseInt(e[1]+e[1],16),parseInt(e[2]+e[2],16),parseInt(e[3]+e[3],16)]}},{re:/hsla?\(\s*(\d+(?:\.\d+)?)\s*,\s*(\d+(?:\.\d+)?)\%\s*,\s*(\d+(?:\.\d+)?)\%\s*(?:,\s*(\d+(?:\.\d+)?)\s*)?\)/,space:"hsla",parse:function(e){return[e[1],e[2]/100,e[3]/100,e[4]]}}],o=t.Color=function(e,n,r,i){return new t.Color.fn.parse(e,n,r,i)},u={rgba:{props:{red:{idx:0,type:"byte"},green:{idx:1,type:"byte"},blue:{idx:2,type:"byte"}}},hsla:{props:{hue:{idx:0,type:"degrees"},saturation:{idx:1,type:"percent"},lightness:{idx:2,type:"percent"}}}},a={"byte":{floor:!0,max:255},percent:{max:1},degrees:{mod:360,floor:!0}},f=o.support={},l=t("<p>")[0],c,h=t.each;l.style.cssText="background-color:rgba(1,1,1,.5)",f.rgba=l.style.backgroundColor.indexOf("rgba")>-1,h(u,function(e,t){t.cache="_"+e,t.props.alpha={idx:3,type:"percent",def:1}}),o.fn=t.extend(o.prototype,{parse:function(r,i,s,a){if(r===n)return this._rgba=[null,null,null,null],this;if(r.jquery||r.nodeType)r=t(r).css(i),i=n;var f=this,l=t.type(r),v=this._rgba=[];i!==n&&(r=[r,i,s,a],l="array");if(l==="string")return this.parse(d(r)||c._default);if(l==="array")return h(u.rgba.props,function(e,t){v[t.idx]=p(r[t.idx],t)}),this;if(l==="object")return r instanceof o?h(u,function(e,t){r[t.cache]&&(f[t.cache]=r[t.cache].slice())}):h(u,function(t,n){var i=n.cache;h(n.props,function(e,t){if(!f[i]&&n.to){if(e==="alpha"||r[e]==null)return;f[i]=n.to(f._rgba)}f[i][t.idx]=p(r[e],t,!0)}),f[i]&&e.inArray(null,f[i].slice(0,3))<0&&(f[i][3]=1,n.from&&(f._rgba=n.from(f[i])))}),this},is:function(e){var t=o(e),n=!0,r=this;return h(u,function(e,i){var s,o=t[i.cache];return o&&(s=r[i.cache]||i.to&&i.to(r._rgba)||[],h(i.props,function(e,t){if(o[t.idx]!=null)return n=o[t.idx]===s[t.idx],n})),n}),n},_space:function(){var e=[],t=this;return h(u,function(n,r){t[r.cache]&&e.push(n)}),e.pop()},transition:function(e,t){var n=o(e),r=n._space(),i=u[r],s=this.alpha()===0?o("transparent"):this,f=s[i.cache]||i.to(s._rgba),l=f.slice();return n=n[i.cache],h(i.props,function(e,r){var i=r.idx,s=f[i],o=n[i],u=a[r.type]||{};if(o===null)return;s===null?l[i]=o:(u.mod&&(o-s>u.mod/2?s+=u.mod:s-o>u.mod/2&&(s-=u.mod)),l[i]=p((o-s)*t+s,r))}),this[r](l)},blend:function(e){if(this._rgba[3]===1)return this;var n=this._rgba.slice(),r=n.pop(),i=o(e)._rgba;return o(t.map(n,function(e,t){return(1-r)*i[t]+r*e}))},toRgbaString:function(){var e="rgba(",n=t.map(this._rgba,function(e,t){return e==null?t>2?1:0:e});return n[3]===1&&(n.pop(),e="rgb("),e+n.join()+")"},toHslaString:function(){var e="hsla(",n=t.map(this.hsla(),function(e,t){return e==null&&(e=t>2?1:0),t&&t<3&&(e=Math.round(e*100)+"%"),e});return n[3]===1&&(n.pop(),e="hsl("),e+n.join()+")"},toHexString:function(e){var n=this._rgba.slice(),r=n.pop();return e&&n.push(~~(r*255)),"#"+t.map(n,function(e){return e=(e||0).toString(16),e.length===1?"0"+e:e}).join("")},toString:function(){return this._rgba[3]===0?"transparent":this.toRgbaString()}}),o.fn.parse.prototype=o.fn,u.hsla.to=function(e){if(e[0]==null||e[1]==null||e[2]==null)return[null,null,null,e[3]];var t=e[0]/255,n=e[1]/255,r=e[2]/255,i=e[3],s=Math.max(t,n,r),o=Math.min(t,n,r),u=s-o,a=s+o,f=a*.5,l,c;return o===s?l=0:t===s?l=60*(n-r)/u+360:n===s?l=60*(r-t)/u+120:l=60*(t-n)/u+240,f===0||f===1?c=f:f<=.5?c=u/a:c=u/(2-a),[Math.round(l)%360,c,f,i==null?1:i]},u.hsla.from=function(e){if(e[0]==null||e[1]==null||e[2]==null)return[null,null,null,e[3]];var t=e[0]/360,n=e[1],r=e[2],i=e[3],s=r<=.5?r*(1+n):r+n-r*n,o=2*r-s;return[Math.round(v(o,s,t+1/3)*255),Math.round(v(o,s,t)*255),Math.round(v(o,s,t-1/3)*255),i]},h(u,function(e,r){var s=r.props,u=r.cache,a=r.to,f=r.from;o.fn[e]=function(e){a&&!this[u]&&(this[u]=a(this._rgba));if(e===n)return this[u].slice();var r,i=t.type(e),l=i==="array"||i==="object"?e:arguments,c=this[u].slice();return h(s,function(e,t){var n=l[i==="object"?e:t.idx];n==null&&(n=c[t.idx]),c[t.idx]=p(n,t)}),f?(r=o(f(c)),r[u]=c,r):o(c)},h(s,function(n,r){if(o.fn[n])return;o.fn[n]=function(s){var o=t.type(s),u=n==="alpha"?this._hsla?"hsla":"rgba":e,a=this[u](),f=a[r.idx],l;return o==="undefined"?f:(o==="function"&&(s=s.call(this,f),o=t.type(s)),s==null&&r.empty?this:(o==="string"&&(l=i.exec(s),l&&(s=f+parseFloat(l[2])*(l[1]==="+"?1:-1))),a[r.idx]=s,this[u](a)))}})}),h(r,function(e,n){t.cssHooks[n]={set:function(e,r){var i,s,u="";if(t.type(r)!=="string"||(i=d(r))){r=o(i||r);if(!f.rgba&&r._rgba[3]!==1){s=n==="backgroundColor"?e.parentNode:e;while((u===""||u==="transparent")&&s&&s.style)try{u=t.css(s,"backgroundColor"),s=s.parentNode}catch(a){}r=r.blend(u&&u!=="transparent"?u:"_default")}r=r.toRgbaString()}try{e.style[n]=r}catch(l){}}},t.fx.step[n]=function(e){e.colorInit||(e.start=o(e.elem,n),e.end=o(e.end),e.colorInit=!0),t.cssHooks[n].set(e.elem,e.start.transition(e.end,e.pos))}}),t.cssHooks.borderColor={expand:function(e){var t={};return h(["Top","Right","Bottom","Left"],function(n,r){t["border"+r+"Color"]=e}),t}},c=t.Color.names={aqua:"#00ffff",black:"#000000",blue:"#0000ff",fuchsia:"#ff00ff",gray:"#808080",green:"#008000",lime:"#00ff00",maroon:"#800000",navy:"#000080",olive:"#808000",purple:"#800080",red:"#ff0000",silver:"#c0c0c0",teal:"#008080",white:"#ffffff",yellow:"#ffff00",transparent:[null,null,null,0],_default:"#ffffff"}}(jQuery),function(){function i(){var t=this.ownerDocument.defaultView?this.ownerDocument.defaultView.getComputedStyle(this,null):this.currentStyle,n={},r,i;if(t&&t.length&&t[0]&&t[t[0]]){i=t.length;while(i--)r=t[i],typeof t[r]=="string"&&(n[e.camelCase(r)]=t[r])}else for(r in t)typeof t[r]=="string"&&(n[r]=t[r]);return n}function s(t,n){var i={},s,o;for(s in n)o=n[s],t[s]!==o&&!r[s]&&(e.fx.step[s]||!isNaN(parseFloat(o)))&&(i[s]=o);return i}var n=["add","remove","toggle"],r={border:1,borderBottom:1,borderColor:1,borderLeft:1,borderRight:1,borderTop:1,borderWidth:1,margin:1,padding:1};e.each(["borderLeftStyle","borderRightStyle","borderBottomStyle","borderTopStyle"],function(t,n){e.fx.step[n]=function(e){if(e.end!=="none"&&!e.setAttr||e.pos===1&&!e.setAttr)jQuery.style(e.elem,n,e.end),e.setAttr=!0}}),e.effects.animateClass=function(t,r,o,u){var a=e.speed(r,o,u);return this.queue(function(){var r=e(this),o=r.attr("class")||"",u,f=a.children?r.find("*").andSelf():r;f=f.map(function(){var t=e(this);return{el:t,start:i.call(this)}}),u=function(){e.each(n,function(e,n){t[n]&&r[n+"Class"](t[n])})},u(),f=f.map(function(){return this.end=i.call(this.el[0]),this.diff=s(this.start,this.end),this}),r.attr("class",o),f=f.map(function(){var t=this,n=e.Deferred(),r=jQuery.extend({},a,{queue:!1,complete:function(){n.resolve(t)}});return this.el.animate(this.diff,r),n.promise()}),e.when.apply(e,f.get()).done(function(){u(),e.each(arguments,function(){var t=this.el;e.each(this.diff,function(e){t.css(e,"")})}),a.complete.call(r[0])})})},e.fn.extend({_addClass:e.fn.addClass,addClass:function(t,n,r,i){return n?e.effects.animateClass.call(this,{add:t},n,r,i):this._addClass(t)},_removeClass:e.fn.removeClass,removeClass:function(t,n,r,i){return n?e.effects.animateClass.call(this,{remove:t},n,r,i):this._removeClass(t)},_toggleClass:e.fn.toggleClass,toggleClass:function(n,r,i,s,o){return typeof r=="boolean"||r===t?i?e.effects.animateClass.call(this,r?{add:n}:{remove:n},i,s,o):this._toggleClass(n,r):e.effects.animateClass.call(this,{toggle:n},r,i,s)},switchClass:function(t,n,r,i,s){return e.effects.animateClass.call(this,{add:n,remove:t},r,i,s)}})}(),function(){function i(t,n,r,i){e.isPlainObject(t)&&(n=t,t=t.effect),t={effect:t},n==null&&(n={}),e.isFunction(n)&&(i=n,r=null,n={});if(typeof n=="number"||e.fx.speeds[n])i=r,r=n,n={};return e.isFunction(r)&&(i=r,r=null),n&&e.extend(t,n),r=r||n.duration,t.duration=e.fx.off?0:typeof r=="number"?r:r in e.fx.speeds?e.fx.speeds[r]:e.fx.speeds._default,t.complete=i||n.complete,t}function s(t){return!t||typeof t=="number"||e.fx.speeds[t]?!0:typeof t=="string"&&!e.effects.effect[t]?n&&e.effects[t]?!1:!0:!1}e.extend(e.effects,{version:"1.9.2",save:function(e,t){for(var n=0;n<t.length;n++)t[n]!==null&&e.data(r+t[n],e[0].style[t[n]])},restore:function(e,n){var i,s;for(s=0;s<n.length;s++)n[s]!==null&&(i=e.data(r+n[s]),i===t&&(i=""),e.css(n[s],i))},setMode:function(e,t){return t==="toggle"&&(t=e.is(":hidden")?"show":"hide"),t},getBaseline:function(e,t){var n,r;switch(e[0]){case"top":n=0;break;case"middle":n=.5;break;case"bottom":n=1;break;default:n=e[0]/t.height}switch(e[1]){case"left":r=0;break;case"center":r=.5;break;case"right":r=1;break;default:r=e[1]/t.width}return{x:r,y:n}},createWrapper:function(t){if(t.parent().is(".ui-effects-wrapper"))return t.parent();var n={width:t.outerWidth(!0),height:t.outerHeight(!0),"float":t.css("float")},r=e("<div></div>").addClass("ui-effects-wrapper").css({fontSize:"100%",background:"transparent",border:"none",margin:0,padding:0}),i={width:t.width(),height:t.height()},s=document.activeElement;try{s.id}catch(o){s=document.body}return t.wrap(r),(t[0]===s||e.contains(t[0],s))&&e(s).focus(),r=t.parent(),t.css("position")==="static"?(r.css({position:"relative"}),t.css({position:"relative"})):(e.extend(n,{position:t.css("position"),zIndex:t.css("z-index")}),e.each(["top","left","bottom","right"],function(e,r){n[r]=t.css(r),isNaN(parseInt(n[r],10))&&(n[r]="auto")}),t.css({position:"relative",top:0,left:0,right:"auto",bottom:"auto"})),t.css(i),r.css(n).show()},removeWrapper:function(t){var n=document.activeElement;return t.parent().is(".ui-effects-wrapper")&&(t.parent().replaceWith(t),(t[0]===n||e.contains(t[0],n))&&e(n).focus()),t},setTransition:function(t,n,r,i){return i=i||{},e.each(n,function(e,n){var s=t.cssUnit(n);s[0]>0&&(i[n]=s[0]*r+s[1])}),i}}),e.fn.extend({effect:function(){function a(n){function u(){e.isFunction(i)&&i.call(r[0]),e.isFunction(n)&&n()}var r=e(this),i=t.complete,s=t.mode;(r.is(":hidden")?s==="hide":s==="show")?u():o.call(r[0],t,u)}var t=i.apply(this,arguments),r=t.mode,s=t.queue,o=e.effects.effect[t.effect],u=!o&&n&&e.effects[t.effect];return e.fx.off||!o&&!u?r?this[r](t.duration,t.complete):this.each(function(){t.complete&&t.complete.call(this)}):o?s===!1?this.each(a):this.queue(s||"fx",a):u.call(this,{options:t,duration:t.duration,callback:t.complete,mode:t.mode})},_show:e.fn.show,show:function(e){if(s(e))return this._show.apply(this,arguments);var t=i.apply(this,arguments);return t.mode="show",this.effect.call(this,t)},_hide:e.fn.hide,hide:function(e){if(s(e))return this._hide.apply(this,arguments);var t=i.apply(this,arguments);return t.mode="hide",this.effect.call(this,t)},__toggle:e.fn.toggle,toggle:function(t){if(s(t)||typeof t=="boolean"||e.isFunction(t))return this.__toggle.apply(this,arguments);var n=i.apply(this,arguments);return n.mode="toggle",this.effect.call(this,n)},cssUnit:function(t){var n=this.css(t),r=[];return e.each(["em","px","%","pt"],function(e,t){n.indexOf(t)>0&&(r=[parseFloat(n),t])}),r}})}(),function(){var t={};e.each(["Quad","Cubic","Quart","Quint","Expo"],function(e,n){t[n]=function(t){return Math.pow(t,e+2)}}),e.extend(t,{Sine:function(e){return 1-Math.cos(e*Math.PI/2)},Circ:function(e){return 1-Math.sqrt(1-e*e)},Elastic:function(e){return e===0||e===1?e:-Math.pow(2,8*(e-1))*Math.sin(((e-1)*80-7.5)*Math.PI/15)},Back:function(e){return e*e*(3*e-2)},Bounce:function(e){var t,n=4;while(e<((t=Math.pow(2,--n))-1)/11);return 1/Math.pow(4,3-n)-7.5625*Math.pow((t*3-2)/22-e,2)}}),e.each(t,function(t,n){e.easing["easeIn"+t]=n,e.easing["easeOut"+t]=function(e){return 1-n(1-e)},e.easing["easeInOut"+t]=function(e){return e<.5?n(e*2)/2:1-n(e*-2+2)/2}})}()}(jQuery); \ No newline at end of file diff --git a/pub/lib/jquery/jquery-ui-1.9.2.custom.min.js b/pub/lib/jquery/jquery-ui.min.js similarity index 100% rename from pub/lib/jquery/jquery-ui-1.9.2.custom.min.js rename to pub/lib/jquery/jquery-ui.min.js diff --git a/pub/lib/jquery/jquery-1.8.2.min.js b/pub/lib/jquery/jquery.min.js similarity index 99% rename from pub/lib/jquery/jquery-1.8.2.min.js rename to pub/lib/jquery/jquery.min.js index bc3fbc81b261b9dd759fd83917b93664138faa4a..c943d65d91a8cd21493ab98eda442e3723860b09 100644 --- a/pub/lib/jquery/jquery-1.8.2.min.js +++ b/pub/lib/jquery/jquery.min.js @@ -1,2 +1,2 @@ /*! jQuery v1.8.2 jquery.com | jquery.org/license */ -(function(a,b){function G(a){var b=F[a]={};return p.each(a.split(s),function(a,c){b[c]=!0}),b}function J(a,c,d){if(d===b&&a.nodeType===1){var e="data-"+c.replace(I,"-$1").toLowerCase();d=a.getAttribute(e);if(typeof d=="string"){try{d=d==="true"?!0:d==="false"?!1:d==="null"?null:+d+""===d?+d:H.test(d)?p.parseJSON(d):d}catch(f){}p.data(a,c,d)}else d=b}return d}function K(a){var b;for(b in a){if(b==="data"&&p.isEmptyObject(a[b]))continue;if(b!=="toJSON")return!1}return!0}function ba(){return!1}function bb(){return!0}function bh(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function bi(a,b){do a=a[b];while(a&&a.nodeType!==1);return a}function bj(a,b,c){b=b||0;if(p.isFunction(b))return p.grep(a,function(a,d){var e=!!b.call(a,d,a);return e===c});if(b.nodeType)return p.grep(a,function(a,d){return a===b===c});if(typeof b=="string"){var d=p.grep(a,function(a){return a.nodeType===1});if(be.test(b))return p.filter(b,d,!c);b=p.filter(b,d)}return p.grep(a,function(a,d){return p.inArray(a,b)>=0===c})}function bk(a){var b=bl.split("|"),c=a.createDocumentFragment();if(c.createElement)while(b.length)c.createElement(b.pop());return c}function bC(a,b){return a.getElementsByTagName(b)[0]||a.appendChild(a.ownerDocument.createElement(b))}function bD(a,b){if(b.nodeType!==1||!p.hasData(a))return;var c,d,e,f=p._data(a),g=p._data(b,f),h=f.events;if(h){delete g.handle,g.events={};for(c in h)for(d=0,e=h[c].length;d<e;d++)p.event.add(b,c,h[c][d])}g.data&&(g.data=p.extend({},g.data))}function bE(a,b){var c;if(b.nodeType!==1)return;b.clearAttributes&&b.clearAttributes(),b.mergeAttributes&&b.mergeAttributes(a),c=b.nodeName.toLowerCase(),c==="object"?(b.parentNode&&(b.outerHTML=a.outerHTML),p.support.html5Clone&&a.innerHTML&&!p.trim(b.innerHTML)&&(b.innerHTML=a.innerHTML)):c==="input"&&bv.test(a.type)?(b.defaultChecked=b.checked=a.checked,b.value!==a.value&&(b.value=a.value)):c==="option"?b.selected=a.defaultSelected:c==="input"||c==="textarea"?b.defaultValue=a.defaultValue:c==="script"&&b.text!==a.text&&(b.text=a.text),b.removeAttribute(p.expando)}function bF(a){return typeof a.getElementsByTagName!="undefined"?a.getElementsByTagName("*"):typeof a.querySelectorAll!="undefined"?a.querySelectorAll("*"):[]}function bG(a){bv.test(a.type)&&(a.defaultChecked=a.checked)}function bY(a,b){if(b in a)return b;var c=b.charAt(0).toUpperCase()+b.slice(1),d=b,e=bW.length;while(e--){b=bW[e]+c;if(b in a)return b}return d}function bZ(a,b){return a=b||a,p.css(a,"display")==="none"||!p.contains(a.ownerDocument,a)}function b$(a,b){var c,d,e=[],f=0,g=a.length;for(;f<g;f++){c=a[f];if(!c.style)continue;e[f]=p._data(c,"olddisplay"),b?(!e[f]&&c.style.display==="none"&&(c.style.display=""),c.style.display===""&&bZ(c)&&(e[f]=p._data(c,"olddisplay",cc(c.nodeName)))):(d=bH(c,"display"),!e[f]&&d!=="none"&&p._data(c,"olddisplay",d))}for(f=0;f<g;f++){c=a[f];if(!c.style)continue;if(!b||c.style.display==="none"||c.style.display==="")c.style.display=b?e[f]||"":"none"}return a}function b_(a,b,c){var d=bP.exec(b);return d?Math.max(0,d[1]-(c||0))+(d[2]||"px"):b}function ca(a,b,c,d){var e=c===(d?"border":"content")?4:b==="width"?1:0,f=0;for(;e<4;e+=2)c==="margin"&&(f+=p.css(a,c+bV[e],!0)),d?(c==="content"&&(f-=parseFloat(bH(a,"padding"+bV[e]))||0),c!=="margin"&&(f-=parseFloat(bH(a,"border"+bV[e]+"Width"))||0)):(f+=parseFloat(bH(a,"padding"+bV[e]))||0,c!=="padding"&&(f+=parseFloat(bH(a,"border"+bV[e]+"Width"))||0));return f}function cb(a,b,c){var d=b==="width"?a.offsetWidth:a.offsetHeight,e=!0,f=p.support.boxSizing&&p.css(a,"boxSizing")==="border-box";if(d<=0||d==null){d=bH(a,b);if(d<0||d==null)d=a.style[b];if(bQ.test(d))return d;e=f&&(p.support.boxSizingReliable||d===a.style[b]),d=parseFloat(d)||0}return d+ca(a,b,c||(f?"border":"content"),e)+"px"}function cc(a){if(bS[a])return bS[a];var b=p("<"+a+">").appendTo(e.body),c=b.css("display");b.remove();if(c==="none"||c===""){bI=e.body.appendChild(bI||p.extend(e.createElement("iframe"),{frameBorder:0,width:0,height:0}));if(!bJ||!bI.createElement)bJ=(bI.contentWindow||bI.contentDocument).document,bJ.write("<!doctype html><html><body>"),bJ.close();b=bJ.body.appendChild(bJ.createElement(a)),c=bH(b,"display"),e.body.removeChild(bI)}return bS[a]=c,c}function ci(a,b,c,d){var e;if(p.isArray(b))p.each(b,function(b,e){c||ce.test(a)?d(a,e):ci(a+"["+(typeof e=="object"?b:"")+"]",e,c,d)});else if(!c&&p.type(b)==="object")for(e in b)ci(a+"["+e+"]",b[e],c,d);else d(a,b)}function cz(a){return function(b,c){typeof b!="string"&&(c=b,b="*");var d,e,f,g=b.toLowerCase().split(s),h=0,i=g.length;if(p.isFunction(c))for(;h<i;h++)d=g[h],f=/^\+/.test(d),f&&(d=d.substr(1)||"*"),e=a[d]=a[d]||[],e[f?"unshift":"push"](c)}}function cA(a,c,d,e,f,g){f=f||c.dataTypes[0],g=g||{},g[f]=!0;var h,i=a[f],j=0,k=i?i.length:0,l=a===cv;for(;j<k&&(l||!h);j++)h=i[j](c,d,e),typeof h=="string"&&(!l||g[h]?h=b:(c.dataTypes.unshift(h),h=cA(a,c,d,e,h,g)));return(l||!h)&&!g["*"]&&(h=cA(a,c,d,e,"*",g)),h}function cB(a,c){var d,e,f=p.ajaxSettings.flatOptions||{};for(d in c)c[d]!==b&&((f[d]?a:e||(e={}))[d]=c[d]);e&&p.extend(!0,a,e)}function cC(a,c,d){var e,f,g,h,i=a.contents,j=a.dataTypes,k=a.responseFields;for(f in k)f in d&&(c[k[f]]=d[f]);while(j[0]==="*")j.shift(),e===b&&(e=a.mimeType||c.getResponseHeader("content-type"));if(e)for(f in i)if(i[f]&&i[f].test(e)){j.unshift(f);break}if(j[0]in d)g=j[0];else{for(f in d){if(!j[0]||a.converters[f+" "+j[0]]){g=f;break}h||(h=f)}g=g||h}if(g)return g!==j[0]&&j.unshift(g),d[g]}function cD(a,b){var c,d,e,f,g=a.dataTypes.slice(),h=g[0],i={},j=0;a.dataFilter&&(b=a.dataFilter(b,a.dataType));if(g[1])for(c in a.converters)i[c.toLowerCase()]=a.converters[c];for(;e=g[++j];)if(e!=="*"){if(h!=="*"&&h!==e){c=i[h+" "+e]||i["* "+e];if(!c)for(d in i){f=d.split(" ");if(f[1]===e){c=i[h+" "+f[0]]||i["* "+f[0]];if(c){c===!0?c=i[d]:i[d]!==!0&&(e=f[0],g.splice(j--,0,e));break}}}if(c!==!0)if(c&&a["throws"])b=c(b);else try{b=c(b)}catch(k){return{state:"parsererror",error:c?k:"No conversion from "+h+" to "+e}}}h=e}return{state:"success",data:b}}function cL(){try{return new a.XMLHttpRequest}catch(b){}}function cM(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function cU(){return setTimeout(function(){cN=b},0),cN=p.now()}function cV(a,b){p.each(b,function(b,c){var d=(cT[b]||[]).concat(cT["*"]),e=0,f=d.length;for(;e<f;e++)if(d[e].call(a,b,c))return})}function cW(a,b,c){var d,e=0,f=0,g=cS.length,h=p.Deferred().always(function(){delete i.elem}),i=function(){var b=cN||cU(),c=Math.max(0,j.startTime+j.duration-b),d=1-(c/j.duration||0),e=0,f=j.tweens.length;for(;e<f;e++)j.tweens[e].run(d);return h.notifyWith(a,[j,d,c]),d<1&&f?c:(h.resolveWith(a,[j]),!1)},j=h.promise({elem:a,props:p.extend({},b),opts:p.extend(!0,{specialEasing:{}},c),originalProperties:b,originalOptions:c,startTime:cN||cU(),duration:c.duration,tweens:[],createTween:function(b,c,d){var e=p.Tween(a,j.opts,b,c,j.opts.specialEasing[b]||j.opts.easing);return j.tweens.push(e),e},stop:function(b){var c=0,d=b?j.tweens.length:0;for(;c<d;c++)j.tweens[c].run(1);return b?h.resolveWith(a,[j,b]):h.rejectWith(a,[j,b]),this}}),k=j.props;cX(k,j.opts.specialEasing);for(;e<g;e++){d=cS[e].call(j,a,k,j.opts);if(d)return d}return cV(j,k),p.isFunction(j.opts.start)&&j.opts.start.call(a,j),p.fx.timer(p.extend(i,{anim:j,queue:j.opts.queue,elem:a})),j.progress(j.opts.progress).done(j.opts.done,j.opts.complete).fail(j.opts.fail).always(j.opts.always)}function cX(a,b){var c,d,e,f,g;for(c in a){d=p.camelCase(c),e=b[d],f=a[c],p.isArray(f)&&(e=f[1],f=a[c]=f[0]),c!==d&&(a[d]=f,delete a[c]),g=p.cssHooks[d];if(g&&"expand"in g){f=g.expand(f),delete a[d];for(c in f)c in a||(a[c]=f[c],b[c]=e)}else b[d]=e}}function cY(a,b,c){var d,e,f,g,h,i,j,k,l=this,m=a.style,n={},o=[],q=a.nodeType&&bZ(a);c.queue||(j=p._queueHooks(a,"fx"),j.unqueued==null&&(j.unqueued=0,k=j.empty.fire,j.empty.fire=function(){j.unqueued||k()}),j.unqueued++,l.always(function(){l.always(function(){j.unqueued--,p.queue(a,"fx").length||j.empty.fire()})})),a.nodeType===1&&("height"in b||"width"in b)&&(c.overflow=[m.overflow,m.overflowX,m.overflowY],p.css(a,"display")==="inline"&&p.css(a,"float")==="none"&&(!p.support.inlineBlockNeedsLayout||cc(a.nodeName)==="inline"?m.display="inline-block":m.zoom=1)),c.overflow&&(m.overflow="hidden",p.support.shrinkWrapBlocks||l.done(function(){m.overflow=c.overflow[0],m.overflowX=c.overflow[1],m.overflowY=c.overflow[2]}));for(d in b){f=b[d];if(cP.exec(f)){delete b[d];if(f===(q?"hide":"show"))continue;o.push(d)}}g=o.length;if(g){h=p._data(a,"fxshow")||p._data(a,"fxshow",{}),q?p(a).show():l.done(function(){p(a).hide()}),l.done(function(){var b;p.removeData(a,"fxshow",!0);for(b in n)p.style(a,b,n[b])});for(d=0;d<g;d++)e=o[d],i=l.createTween(e,q?h[e]:0),n[e]=h[e]||p.style(a,e),e in h||(h[e]=i.start,q&&(i.end=i.start,i.start=e==="width"||e==="height"?1:0))}}function cZ(a,b,c,d,e){return new cZ.prototype.init(a,b,c,d,e)}function c$(a,b){var c,d={height:a},e=0;b=b?1:0;for(;e<4;e+=2-b)c=bV[e],d["margin"+c]=d["padding"+c]=a;return b&&(d.opacity=d.width=a),d}function da(a){return p.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}var c,d,e=a.document,f=a.location,g=a.navigator,h=a.jQuery,i=a.$,j=Array.prototype.push,k=Array.prototype.slice,l=Array.prototype.indexOf,m=Object.prototype.toString,n=Object.prototype.hasOwnProperty,o=String.prototype.trim,p=function(a,b){return new p.fn.init(a,b,c)},q=/[\-+]?(?:\d*\.|)\d+(?:[eE][\-+]?\d+|)/.source,r=/\S/,s=/\s+/,t=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,u=/^(?:[^#<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/,v=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,w=/^[\],:{}\s]*$/,x=/(?:^|:|,)(?:\s*\[)+/g,y=/\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g,z=/"[^"\\\r\n]*"|true|false|null|-?(?:\d\d*\.|)\d+(?:[eE][\-+]?\d+|)/g,A=/^-ms-/,B=/-([\da-z])/gi,C=function(a,b){return(b+"").toUpperCase()},D=function(){e.addEventListener?(e.removeEventListener("DOMContentLoaded",D,!1),p.ready()):e.readyState==="complete"&&(e.detachEvent("onreadystatechange",D),p.ready())},E={};p.fn=p.prototype={constructor:p,init:function(a,c,d){var f,g,h,i;if(!a)return this;if(a.nodeType)return this.context=this[0]=a,this.length=1,this;if(typeof a=="string"){a.charAt(0)==="<"&&a.charAt(a.length-1)===">"&&a.length>=3?f=[null,a,null]:f=u.exec(a);if(f&&(f[1]||!c)){if(f[1])return c=c instanceof p?c[0]:c,i=c&&c.nodeType?c.ownerDocument||c:e,a=p.parseHTML(f[1],i,!0),v.test(f[1])&&p.isPlainObject(c)&&this.attr.call(a,c,!0),p.merge(this,a);g=e.getElementById(f[2]);if(g&&g.parentNode){if(g.id!==f[2])return d.find(a);this.length=1,this[0]=g}return this.context=e,this.selector=a,this}return!c||c.jquery?(c||d).find(a):this.constructor(c).find(a)}return p.isFunction(a)?d.ready(a):(a.selector!==b&&(this.selector=a.selector,this.context=a.context),p.makeArray(a,this))},selector:"",jquery:"1.8.2",length:0,size:function(){return this.length},toArray:function(){return k.call(this)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var d=p.merge(this.constructor(),a);return d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?" ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")"),d},each:function(a,b){return p.each(this,a,b)},ready:function(a){return p.ready.promise().done(a),this},eq:function(a){return a=+a,a===-1?this.slice(a):this.slice(a,a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(k.apply(this,arguments),"slice",k.call(arguments).join(","))},map:function(a){return this.pushStack(p.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:j,sort:[].sort,splice:[].splice},p.fn.init.prototype=p.fn,p.extend=p.fn.extend=function(){var a,c,d,e,f,g,h=arguments[0]||{},i=1,j=arguments.length,k=!1;typeof h=="boolean"&&(k=h,h=arguments[1]||{},i=2),typeof h!="object"&&!p.isFunction(h)&&(h={}),j===i&&(h=this,--i);for(;i<j;i++)if((a=arguments[i])!=null)for(c in a){d=h[c],e=a[c];if(h===e)continue;k&&e&&(p.isPlainObject(e)||(f=p.isArray(e)))?(f?(f=!1,g=d&&p.isArray(d)?d:[]):g=d&&p.isPlainObject(d)?d:{},h[c]=p.extend(k,g,e)):e!==b&&(h[c]=e)}return h},p.extend({noConflict:function(b){return a.$===p&&(a.$=i),b&&a.jQuery===p&&(a.jQuery=h),p},isReady:!1,readyWait:1,holdReady:function(a){a?p.readyWait++:p.ready(!0)},ready:function(a){if(a===!0?--p.readyWait:p.isReady)return;if(!e.body)return setTimeout(p.ready,1);p.isReady=!0;if(a!==!0&&--p.readyWait>0)return;d.resolveWith(e,[p]),p.fn.trigger&&p(e).trigger("ready").off("ready")},isFunction:function(a){return p.type(a)==="function"},isArray:Array.isArray||function(a){return p.type(a)==="array"},isWindow:function(a){return a!=null&&a==a.window},isNumeric:function(a){return!isNaN(parseFloat(a))&&isFinite(a)},type:function(a){return a==null?String(a):E[m.call(a)]||"object"},isPlainObject:function(a){if(!a||p.type(a)!=="object"||a.nodeType||p.isWindow(a))return!1;try{if(a.constructor&&!n.call(a,"constructor")&&!n.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}var d;for(d in a);return d===b||n.call(a,d)},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},error:function(a){throw new Error(a)},parseHTML:function(a,b,c){var d;return!a||typeof a!="string"?null:(typeof b=="boolean"&&(c=b,b=0),b=b||e,(d=v.exec(a))?[b.createElement(d[1])]:(d=p.buildFragment([a],b,c?null:[]),p.merge([],(d.cacheable?p.clone(d.fragment):d.fragment).childNodes)))},parseJSON:function(b){if(!b||typeof b!="string")return null;b=p.trim(b);if(a.JSON&&a.JSON.parse)return a.JSON.parse(b);if(w.test(b.replace(y,"@").replace(z,"]").replace(x,"")))return(new Function("return "+b))();p.error("Invalid JSON: "+b)},parseXML:function(c){var d,e;if(!c||typeof c!="string")return null;try{a.DOMParser?(e=new DOMParser,d=e.parseFromString(c,"text/xml")):(d=new ActiveXObject("Microsoft.XMLDOM"),d.async="false",d.loadXML(c))}catch(f){d=b}return(!d||!d.documentElement||d.getElementsByTagName("parsererror").length)&&p.error("Invalid XML: "+c),d},noop:function(){},globalEval:function(b){b&&r.test(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(A,"ms-").replace(B,C)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,c,d){var e,f=0,g=a.length,h=g===b||p.isFunction(a);if(d){if(h){for(e in a)if(c.apply(a[e],d)===!1)break}else for(;f<g;)if(c.apply(a[f++],d)===!1)break}else if(h){for(e in a)if(c.call(a[e],e,a[e])===!1)break}else for(;f<g;)if(c.call(a[f],f,a[f++])===!1)break;return a},trim:o&&!o.call(" ")?function(a){return a==null?"":o.call(a)}:function(a){return a==null?"":(a+"").replace(t,"")},makeArray:function(a,b){var c,d=b||[];return a!=null&&(c=p.type(a),a.length==null||c==="string"||c==="function"||c==="regexp"||p.isWindow(a)?j.call(d,a):p.merge(d,a)),d},inArray:function(a,b,c){var d;if(b){if(l)return l.call(b,a,c);d=b.length,c=c?c<0?Math.max(0,d+c):c:0;for(;c<d;c++)if(c in b&&b[c]===a)return c}return-1},merge:function(a,c){var d=c.length,e=a.length,f=0;if(typeof d=="number")for(;f<d;f++)a[e++]=c[f];else while(c[f]!==b)a[e++]=c[f++];return a.length=e,a},grep:function(a,b,c){var d,e=[],f=0,g=a.length;c=!!c;for(;f<g;f++)d=!!b(a[f],f),c!==d&&e.push(a[f]);return e},map:function(a,c,d){var e,f,g=[],h=0,i=a.length,j=a instanceof p||i!==b&&typeof i=="number"&&(i>0&&a[0]&&a[i-1]||i===0||p.isArray(a));if(j)for(;h<i;h++)e=c(a[h],h,d),e!=null&&(g[g.length]=e);else for(f in a)e=c(a[f],f,d),e!=null&&(g[g.length]=e);return g.concat.apply([],g)},guid:1,proxy:function(a,c){var d,e,f;return typeof c=="string"&&(d=a[c],c=a,a=d),p.isFunction(a)?(e=k.call(arguments,2),f=function(){return a.apply(c,e.concat(k.call(arguments)))},f.guid=a.guid=a.guid||p.guid++,f):b},access:function(a,c,d,e,f,g,h){var i,j=d==null,k=0,l=a.length;if(d&&typeof d=="object"){for(k in d)p.access(a,c,k,d[k],1,g,e);f=1}else if(e!==b){i=h===b&&p.isFunction(e),j&&(i?(i=c,c=function(a,b,c){return i.call(p(a),c)}):(c.call(a,e),c=null));if(c)for(;k<l;k++)c(a[k],d,i?e.call(a[k],k,c(a[k],d)):e,h);f=1}return f?a:j?c.call(a):l?c(a[0],d):g},now:function(){return(new Date).getTime()}}),p.ready.promise=function(b){if(!d){d=p.Deferred();if(e.readyState==="complete")setTimeout(p.ready,1);else if(e.addEventListener)e.addEventListener("DOMContentLoaded",D,!1),a.addEventListener("load",p.ready,!1);else{e.attachEvent("onreadystatechange",D),a.attachEvent("onload",p.ready);var c=!1;try{c=a.frameElement==null&&e.documentElement}catch(f){}c&&c.doScroll&&function g(){if(!p.isReady){try{c.doScroll("left")}catch(a){return setTimeout(g,50)}p.ready()}}()}}return d.promise(b)},p.each("Boolean Number String Function Array Date RegExp Object".split(" "),function(a,b){E["[object "+b+"]"]=b.toLowerCase()}),c=p(e);var F={};p.Callbacks=function(a){a=typeof a=="string"?F[a]||G(a):p.extend({},a);var c,d,e,f,g,h,i=[],j=!a.once&&[],k=function(b){c=a.memory&&b,d=!0,h=f||0,f=0,g=i.length,e=!0;for(;i&&h<g;h++)if(i[h].apply(b[0],b[1])===!1&&a.stopOnFalse){c=!1;break}e=!1,i&&(j?j.length&&k(j.shift()):c?i=[]:l.disable())},l={add:function(){if(i){var b=i.length;(function d(b){p.each(b,function(b,c){var e=p.type(c);e==="function"&&(!a.unique||!l.has(c))?i.push(c):c&&c.length&&e!=="string"&&d(c)})})(arguments),e?g=i.length:c&&(f=b,k(c))}return this},remove:function(){return i&&p.each(arguments,function(a,b){var c;while((c=p.inArray(b,i,c))>-1)i.splice(c,1),e&&(c<=g&&g--,c<=h&&h--)}),this},has:function(a){return p.inArray(a,i)>-1},empty:function(){return i=[],this},disable:function(){return i=j=c=b,this},disabled:function(){return!i},lock:function(){return j=b,c||l.disable(),this},locked:function(){return!j},fireWith:function(a,b){return b=b||[],b=[a,b.slice?b.slice():b],i&&(!d||j)&&(e?j.push(b):k(b)),this},fire:function(){return l.fireWith(this,arguments),this},fired:function(){return!!d}};return l},p.extend({Deferred:function(a){var b=[["resolve","done",p.Callbacks("once memory"),"resolved"],["reject","fail",p.Callbacks("once memory"),"rejected"],["notify","progress",p.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return p.Deferred(function(c){p.each(b,function(b,d){var f=d[0],g=a[b];e[d[1]](p.isFunction(g)?function(){var a=g.apply(this,arguments);a&&p.isFunction(a.promise)?a.promise().done(c.resolve).fail(c.reject).progress(c.notify):c[f+"With"](this===e?c:this,[a])}:c[f])}),a=null}).promise()},promise:function(a){return a!=null?p.extend(a,d):d}},e={};return d.pipe=d.then,p.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[a^1][2].disable,b[2][2].lock),e[f[0]]=g.fire,e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=k.call(arguments),d=c.length,e=d!==1||a&&p.isFunction(a.promise)?d:0,f=e===1?a:p.Deferred(),g=function(a,b,c){return function(d){b[a]=this,c[a]=arguments.length>1?k.call(arguments):d,c===h?f.notifyWith(b,c):--e||f.resolveWith(b,c)}},h,i,j;if(d>1){h=new Array(d),i=new Array(d),j=new Array(d);for(;b<d;b++)c[b]&&p.isFunction(c[b].promise)?c[b].promise().done(g(b,j,c)).fail(f.reject).progress(g(b,i,h)):--e}return e||f.resolveWith(j,c),f.promise()}}),p.support=function(){var b,c,d,f,g,h,i,j,k,l,m,n=e.createElement("div");n.setAttribute("className","t"),n.innerHTML=" <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",c=n.getElementsByTagName("*"),d=n.getElementsByTagName("a")[0],d.style.cssText="top:1px;float:left;opacity:.5";if(!c||!c.length)return{};f=e.createElement("select"),g=f.appendChild(e.createElement("option")),h=n.getElementsByTagName("input")[0],b={leadingWhitespace:n.firstChild.nodeType===3,tbody:!n.getElementsByTagName("tbody").length,htmlSerialize:!!n.getElementsByTagName("link").length,style:/top/.test(d.getAttribute("style")),hrefNormalized:d.getAttribute("href")==="/a",opacity:/^0.5/.test(d.style.opacity),cssFloat:!!d.style.cssFloat,checkOn:h.value==="on",optSelected:g.selected,getSetAttribute:n.className!=="t",enctype:!!e.createElement("form").enctype,html5Clone:e.createElement("nav").cloneNode(!0).outerHTML!=="<:nav></:nav>",boxModel:e.compatMode==="CSS1Compat",submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0,boxSizingReliable:!0,pixelPosition:!1},h.checked=!0,b.noCloneChecked=h.cloneNode(!0).checked,f.disabled=!0,b.optDisabled=!g.disabled;try{delete n.test}catch(o){b.deleteExpando=!1}!n.addEventListener&&n.attachEvent&&n.fireEvent&&(n.attachEvent("onclick",m=function(){b.noCloneEvent=!1}),n.cloneNode(!0).fireEvent("onclick"),n.detachEvent("onclick",m)),h=e.createElement("input"),h.value="t",h.setAttribute("type","radio"),b.radioValue=h.value==="t",h.setAttribute("checked","checked"),h.setAttribute("name","t"),n.appendChild(h),i=e.createDocumentFragment(),i.appendChild(n.lastChild),b.checkClone=i.cloneNode(!0).cloneNode(!0).lastChild.checked,b.appendChecked=h.checked,i.removeChild(h),i.appendChild(n);if(n.attachEvent)for(k in{submit:!0,change:!0,focusin:!0})j="on"+k,l=j in n,l||(n.setAttribute(j,"return;"),l=typeof n[j]=="function"),b[k+"Bubbles"]=l;return p(function(){var c,d,f,g,h="padding:0;margin:0;border:0;display:block;overflow:hidden;",i=e.getElementsByTagName("body")[0];if(!i)return;c=e.createElement("div"),c.style.cssText="visibility:hidden;border:0;width:0;height:0;position:static;top:0;margin-top:1px",i.insertBefore(c,i.firstChild),d=e.createElement("div"),c.appendChild(d),d.innerHTML="<table><tr><td></td><td>t</td></tr></table>",f=d.getElementsByTagName("td"),f[0].style.cssText="padding:0;margin:0;border:0;display:none",l=f[0].offsetHeight===0,f[0].style.display="",f[1].style.display="none",b.reliableHiddenOffsets=l&&f[0].offsetHeight===0,d.innerHTML="",d.style.cssText="box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%;",b.boxSizing=d.offsetWidth===4,b.doesNotIncludeMarginInBodyOffset=i.offsetTop!==1,a.getComputedStyle&&(b.pixelPosition=(a.getComputedStyle(d,null)||{}).top!=="1%",b.boxSizingReliable=(a.getComputedStyle(d,null)||{width:"4px"}).width==="4px",g=e.createElement("div"),g.style.cssText=d.style.cssText=h,g.style.marginRight=g.style.width="0",d.style.width="1px",d.appendChild(g),b.reliableMarginRight=!parseFloat((a.getComputedStyle(g,null)||{}).marginRight)),typeof d.style.zoom!="undefined"&&(d.innerHTML="",d.style.cssText=h+"width:1px;padding:1px;display:inline;zoom:1",b.inlineBlockNeedsLayout=d.offsetWidth===3,d.style.display="block",d.style.overflow="visible",d.innerHTML="<div></div>",d.firstChild.style.width="5px",b.shrinkWrapBlocks=d.offsetWidth!==3,c.style.zoom=1),i.removeChild(c),c=d=f=g=null}),i.removeChild(n),c=d=f=g=h=i=n=null,b}();var H=/(?:\{[\s\S]*\}|\[[\s\S]*\])$/,I=/([A-Z])/g;p.extend({cache:{},deletedIds:[],uuid:0,expando:"jQuery"+(p.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){return a=a.nodeType?p.cache[a[p.expando]]:a[p.expando],!!a&&!K(a)},data:function(a,c,d,e){if(!p.acceptData(a))return;var f,g,h=p.expando,i=typeof c=="string",j=a.nodeType,k=j?p.cache:a,l=j?a[h]:a[h]&&h;if((!l||!k[l]||!e&&!k[l].data)&&i&&d===b)return;l||(j?a[h]=l=p.deletedIds.pop()||p.guid++:l=h),k[l]||(k[l]={},j||(k[l].toJSON=p.noop));if(typeof c=="object"||typeof c=="function")e?k[l]=p.extend(k[l],c):k[l].data=p.extend(k[l].data,c);return f=k[l],e||(f.data||(f.data={}),f=f.data),d!==b&&(f[p.camelCase(c)]=d),i?(g=f[c],g==null&&(g=f[p.camelCase(c)])):g=f,g},removeData:function(a,b,c){if(!p.acceptData(a))return;var d,e,f,g=a.nodeType,h=g?p.cache:a,i=g?a[p.expando]:p.expando;if(!h[i])return;if(b){d=c?h[i]:h[i].data;if(d){p.isArray(b)||(b in d?b=[b]:(b=p.camelCase(b),b in d?b=[b]:b=b.split(" ")));for(e=0,f=b.length;e<f;e++)delete d[b[e]];if(!(c?K:p.isEmptyObject)(d))return}}if(!c){delete h[i].data;if(!K(h[i]))return}g?p.cleanData([a],!0):p.support.deleteExpando||h!=h.window?delete h[i]:h[i]=null},_data:function(a,b,c){return p.data(a,b,c,!0)},acceptData:function(a){var b=a.nodeName&&p.noData[a.nodeName.toLowerCase()];return!b||b!==!0&&a.getAttribute("classid")===b}}),p.fn.extend({data:function(a,c){var d,e,f,g,h,i=this[0],j=0,k=null;if(a===b){if(this.length){k=p.data(i);if(i.nodeType===1&&!p._data(i,"parsedAttrs")){f=i.attributes;for(h=f.length;j<h;j++)g=f[j].name,g.indexOf("data-")||(g=p.camelCase(g.substring(5)),J(i,g,k[g]));p._data(i,"parsedAttrs",!0)}}return k}return typeof a=="object"?this.each(function(){p.data(this,a)}):(d=a.split(".",2),d[1]=d[1]?"."+d[1]:"",e=d[1]+"!",p.access(this,function(c){if(c===b)return k=this.triggerHandler("getData"+e,[d[0]]),k===b&&i&&(k=p.data(i,a),k=J(i,a,k)),k===b&&d[1]?this.data(d[0]):k;d[1]=c,this.each(function(){var b=p(this);b.triggerHandler("setData"+e,d),p.data(this,a,c),b.triggerHandler("changeData"+e,d)})},null,c,arguments.length>1,null,!1))},removeData:function(a){return this.each(function(){p.removeData(this,a)})}}),p.extend({queue:function(a,b,c){var d;if(a)return b=(b||"fx")+"queue",d=p._data(a,b),c&&(!d||p.isArray(c)?d=p._data(a,b,p.makeArray(c)):d.push(c)),d||[]},dequeue:function(a,b){b=b||"fx";var c=p.queue(a,b),d=c.length,e=c.shift(),f=p._queueHooks(a,b),g=function(){p.dequeue(a,b)};e==="inprogress"&&(e=c.shift(),d--),e&&(b==="fx"&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return p._data(a,c)||p._data(a,c,{empty:p.Callbacks("once memory").add(function(){p.removeData(a,b+"queue",!0),p.removeData(a,c,!0)})})}}),p.fn.extend({queue:function(a,c){var d=2;return typeof a!="string"&&(c=a,a="fx",d--),arguments.length<d?p.queue(this[0],a):c===b?this:this.each(function(){var b=p.queue(this,a,c);p._queueHooks(this,a),a==="fx"&&b[0]!=="inprogress"&&p.dequeue(this,a)})},dequeue:function(a){return this.each(function(){p.dequeue(this,a)})},delay:function(a,b){return a=p.fx?p.fx.speeds[a]||a:a,b=b||"fx",this.queue(b,function(b,c){var d=setTimeout(b,a);c.stop=function(){clearTimeout(d)}})},clearQueue:function(a){return this.queue(a||"fx",[])},promise:function(a,c){var d,e=1,f=p.Deferred(),g=this,h=this.length,i=function(){--e||f.resolveWith(g,[g])};typeof a!="string"&&(c=a,a=b),a=a||"fx";while(h--)d=p._data(g[h],a+"queueHooks"),d&&d.empty&&(e++,d.empty.add(i));return i(),f.promise(c)}});var L,M,N,O=/[\t\r\n]/g,P=/\r/g,Q=/^(?:button|input)$/i,R=/^(?:button|input|object|select|textarea)$/i,S=/^a(?:rea|)$/i,T=/^(?:autofocus|autoplay|async|checked|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped|selected)$/i,U=p.support.getSetAttribute;p.fn.extend({attr:function(a,b){return p.access(this,p.attr,a,b,arguments.length>1)},removeAttr:function(a){return this.each(function(){p.removeAttr(this,a)})},prop:function(a,b){return p.access(this,p.prop,a,b,arguments.length>1)},removeProp:function(a){return a=p.propFix[a]||a,this.each(function(){try{this[a]=b,delete this[a]}catch(c){}})},addClass:function(a){var b,c,d,e,f,g,h;if(p.isFunction(a))return this.each(function(b){p(this).addClass(a.call(this,b,this.className))});if(a&&typeof a=="string"){b=a.split(s);for(c=0,d=this.length;c<d;c++){e=this[c];if(e.nodeType===1)if(!e.className&&b.length===1)e.className=a;else{f=" "+e.className+" ";for(g=0,h=b.length;g<h;g++)f.indexOf(" "+b[g]+" ")<0&&(f+=b[g]+" ");e.className=p.trim(f)}}}return this},removeClass:function(a){var c,d,e,f,g,h,i;if(p.isFunction(a))return this.each(function(b){p(this).removeClass(a.call(this,b,this.className))});if(a&&typeof a=="string"||a===b){c=(a||"").split(s);for(h=0,i=this.length;h<i;h++){e=this[h];if(e.nodeType===1&&e.className){d=(" "+e.className+" ").replace(O," ");for(f=0,g=c.length;f<g;f++)while(d.indexOf(" "+c[f]+" ")>=0)d=d.replace(" "+c[f]+" "," ");e.className=a?p.trim(d):""}}}return this},toggleClass:function(a,b){var c=typeof a,d=typeof b=="boolean";return p.isFunction(a)?this.each(function(c){p(this).toggleClass(a.call(this,c,this.className,b),b)}):this.each(function(){if(c==="string"){var e,f=0,g=p(this),h=b,i=a.split(s);while(e=i[f++])h=d?h:!g.hasClass(e),g[h?"addClass":"removeClass"](e)}else if(c==="undefined"||c==="boolean")this.className&&p._data(this,"__className__",this.className),this.className=this.className||a===!1?"":p._data(this,"__className__")||""})},hasClass:function(a){var b=" "+a+" ",c=0,d=this.length;for(;c<d;c++)if(this[c].nodeType===1&&(" "+this[c].className+" ").replace(O," ").indexOf(b)>=0)return!0;return!1},val:function(a){var c,d,e,f=this[0];if(!arguments.length){if(f)return c=p.valHooks[f.type]||p.valHooks[f.nodeName.toLowerCase()],c&&"get"in c&&(d=c.get(f,"value"))!==b?d:(d=f.value,typeof d=="string"?d.replace(P,""):d==null?"":d);return}return e=p.isFunction(a),this.each(function(d){var f,g=p(this);if(this.nodeType!==1)return;e?f=a.call(this,d,g.val()):f=a,f==null?f="":typeof f=="number"?f+="":p.isArray(f)&&(f=p.map(f,function(a){return a==null?"":a+""})),c=p.valHooks[this.type]||p.valHooks[this.nodeName.toLowerCase()];if(!c||!("set"in c)||c.set(this,f,"value")===b)this.value=f})}}),p.extend({valHooks:{option:{get:function(a){var b=a.attributes.value;return!b||b.specified?a.value:a.text}},select:{get:function(a){var b,c,d,e,f=a.selectedIndex,g=[],h=a.options,i=a.type==="select-one";if(f<0)return null;c=i?f:0,d=i?f+1:h.length;for(;c<d;c++){e=h[c];if(e.selected&&(p.support.optDisabled?!e.disabled:e.getAttribute("disabled")===null)&&(!e.parentNode.disabled||!p.nodeName(e.parentNode,"optgroup"))){b=p(e).val();if(i)return b;g.push(b)}}return i&&!g.length&&h.length?p(h[f]).val():g},set:function(a,b){var c=p.makeArray(b);return p(a).find("option").each(function(){this.selected=p.inArray(p(this).val(),c)>=0}),c.length||(a.selectedIndex=-1),c}}},attrFn:{},attr:function(a,c,d,e){var f,g,h,i=a.nodeType;if(!a||i===3||i===8||i===2)return;if(e&&p.isFunction(p.fn[c]))return p(a)[c](d);if(typeof a.getAttribute=="undefined")return p.prop(a,c,d);h=i!==1||!p.isXMLDoc(a),h&&(c=c.toLowerCase(),g=p.attrHooks[c]||(T.test(c)?M:L));if(d!==b){if(d===null){p.removeAttr(a,c);return}return g&&"set"in g&&h&&(f=g.set(a,d,c))!==b?f:(a.setAttribute(c,d+""),d)}return g&&"get"in g&&h&&(f=g.get(a,c))!==null?f:(f=a.getAttribute(c),f===null?b:f)},removeAttr:function(a,b){var c,d,e,f,g=0;if(b&&a.nodeType===1){d=b.split(s);for(;g<d.length;g++)e=d[g],e&&(c=p.propFix[e]||e,f=T.test(e),f||p.attr(a,e,""),a.removeAttribute(U?e:c),f&&c in a&&(a[c]=!1))}},attrHooks:{type:{set:function(a,b){if(Q.test(a.nodeName)&&a.parentNode)p.error("type property can't be changed");else if(!p.support.radioValue&&b==="radio"&&p.nodeName(a,"input")){var c=a.value;return a.setAttribute("type",b),c&&(a.value=c),b}}},value:{get:function(a,b){return L&&p.nodeName(a,"button")?L.get(a,b):b in a?a.value:null},set:function(a,b,c){if(L&&p.nodeName(a,"button"))return L.set(a,b,c);a.value=b}}},propFix:{tabindex:"tabIndex",readonly:"readOnly","for":"htmlFor","class":"className",maxlength:"maxLength",cellspacing:"cellSpacing",cellpadding:"cellPadding",rowspan:"rowSpan",colspan:"colSpan",usemap:"useMap",frameborder:"frameBorder",contenteditable:"contentEditable"},prop:function(a,c,d){var e,f,g,h=a.nodeType;if(!a||h===3||h===8||h===2)return;return g=h!==1||!p.isXMLDoc(a),g&&(c=p.propFix[c]||c,f=p.propHooks[c]),d!==b?f&&"set"in f&&(e=f.set(a,d,c))!==b?e:a[c]=d:f&&"get"in f&&(e=f.get(a,c))!==null?e:a[c]},propHooks:{tabIndex:{get:function(a){var c=a.getAttributeNode("tabindex");return c&&c.specified?parseInt(c.value,10):R.test(a.nodeName)||S.test(a.nodeName)&&a.href?0:b}}}}),M={get:function(a,c){var d,e=p.prop(a,c);return e===!0||typeof e!="boolean"&&(d=a.getAttributeNode(c))&&d.nodeValue!==!1?c.toLowerCase():b},set:function(a,b,c){var d;return b===!1?p.removeAttr(a,c):(d=p.propFix[c]||c,d in a&&(a[d]=!0),a.setAttribute(c,c.toLowerCase())),c}},U||(N={name:!0,id:!0,coords:!0},L=p.valHooks.button={get:function(a,c){var d;return d=a.getAttributeNode(c),d&&(N[c]?d.value!=="":d.specified)?d.value:b},set:function(a,b,c){var d=a.getAttributeNode(c);return d||(d=e.createAttribute(c),a.setAttributeNode(d)),d.value=b+""}},p.each(["width","height"],function(a,b){p.attrHooks[b]=p.extend(p.attrHooks[b],{set:function(a,c){if(c==="")return a.setAttribute(b,"auto"),c}})}),p.attrHooks.contenteditable={get:L.get,set:function(a,b,c){b===""&&(b="false"),L.set(a,b,c)}}),p.support.hrefNormalized||p.each(["href","src","width","height"],function(a,c){p.attrHooks[c]=p.extend(p.attrHooks[c],{get:function(a){var d=a.getAttribute(c,2);return d===null?b:d}})}),p.support.style||(p.attrHooks.style={get:function(a){return a.style.cssText.toLowerCase()||b},set:function(a,b){return a.style.cssText=b+""}}),p.support.optSelected||(p.propHooks.selected=p.extend(p.propHooks.selected,{get:function(a){var b=a.parentNode;return b&&(b.selectedIndex,b.parentNode&&b.parentNode.selectedIndex),null}})),p.support.enctype||(p.propFix.enctype="encoding"),p.support.checkOn||p.each(["radio","checkbox"],function(){p.valHooks[this]={get:function(a){return a.getAttribute("value")===null?"on":a.value}}}),p.each(["radio","checkbox"],function(){p.valHooks[this]=p.extend(p.valHooks[this],{set:function(a,b){if(p.isArray(b))return a.checked=p.inArray(p(a).val(),b)>=0}})});var V=/^(?:textarea|input|select)$/i,W=/^([^\.]*|)(?:\.(.+)|)$/,X=/(?:^|\s)hover(\.\S+|)\b/,Y=/^key/,Z=/^(?:mouse|contextmenu)|click/,$=/^(?:focusinfocus|focusoutblur)$/,_=function(a){return p.event.special.hover?a:a.replace(X,"mouseenter$1 mouseleave$1")};p.event={add:function(a,c,d,e,f){var g,h,i,j,k,l,m,n,o,q,r;if(a.nodeType===3||a.nodeType===8||!c||!d||!(g=p._data(a)))return;d.handler&&(o=d,d=o.handler,f=o.selector),d.guid||(d.guid=p.guid++),i=g.events,i||(g.events=i={}),h=g.handle,h||(g.handle=h=function(a){return typeof p!="undefined"&&(!a||p.event.triggered!==a.type)?p.event.dispatch.apply(h.elem,arguments):b},h.elem=a),c=p.trim(_(c)).split(" ");for(j=0;j<c.length;j++){k=W.exec(c[j])||[],l=k[1],m=(k[2]||"").split(".").sort(),r=p.event.special[l]||{},l=(f?r.delegateType:r.bindType)||l,r=p.event.special[l]||{},n=p.extend({type:l,origType:k[1],data:e,handler:d,guid:d.guid,selector:f,needsContext:f&&p.expr.match.needsContext.test(f),namespace:m.join(".")},o),q=i[l];if(!q){q=i[l]=[],q.delegateCount=0;if(!r.setup||r.setup.call(a,e,m,h)===!1)a.addEventListener?a.addEventListener(l,h,!1):a.attachEvent&&a.attachEvent("on"+l,h)}r.add&&(r.add.call(a,n),n.handler.guid||(n.handler.guid=d.guid)),f?q.splice(q.delegateCount++,0,n):q.push(n),p.event.global[l]=!0}a=null},global:{},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,n,o,q,r=p.hasData(a)&&p._data(a);if(!r||!(m=r.events))return;b=p.trim(_(b||"")).split(" ");for(f=0;f<b.length;f++){g=W.exec(b[f])||[],h=i=g[1],j=g[2];if(!h){for(h in m)p.event.remove(a,h+b[f],c,d,!0);continue}n=p.event.special[h]||{},h=(d?n.delegateType:n.bindType)||h,o=m[h]||[],k=o.length,j=j?new RegExp("(^|\\.)"+j.split(".").sort().join("\\.(?:.*\\.|)")+"(\\.|$)"):null;for(l=0;l<o.length;l++)q=o[l],(e||i===q.origType)&&(!c||c.guid===q.guid)&&(!j||j.test(q.namespace))&&(!d||d===q.selector||d==="**"&&q.selector)&&(o.splice(l--,1),q.selector&&o.delegateCount--,n.remove&&n.remove.call(a,q));o.length===0&&k!==o.length&&((!n.teardown||n.teardown.call(a,j,r.handle)===!1)&&p.removeEvent(a,h,r.handle),delete m[h])}p.isEmptyObject(m)&&(delete r.handle,p.removeData(a,"events",!0))},customEvent:{getData:!0,setData:!0,changeData:!0},trigger:function(c,d,f,g){if(!f||f.nodeType!==3&&f.nodeType!==8){var h,i,j,k,l,m,n,o,q,r,s=c.type||c,t=[];if($.test(s+p.event.triggered))return;s.indexOf("!")>=0&&(s=s.slice(0,-1),i=!0),s.indexOf(".")>=0&&(t=s.split("."),s=t.shift(),t.sort());if((!f||p.event.customEvent[s])&&!p.event.global[s])return;c=typeof c=="object"?c[p.expando]?c:new p.Event(s,c):new p.Event(s),c.type=s,c.isTrigger=!0,c.exclusive=i,c.namespace=t.join("."),c.namespace_re=c.namespace?new RegExp("(^|\\.)"+t.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,m=s.indexOf(":")<0?"on"+s:"";if(!f){h=p.cache;for(j in h)h[j].events&&h[j].events[s]&&p.event.trigger(c,d,h[j].handle.elem,!0);return}c.result=b,c.target||(c.target=f),d=d!=null?p.makeArray(d):[],d.unshift(c),n=p.event.special[s]||{};if(n.trigger&&n.trigger.apply(f,d)===!1)return;q=[[f,n.bindType||s]];if(!g&&!n.noBubble&&!p.isWindow(f)){r=n.delegateType||s,k=$.test(r+s)?f:f.parentNode;for(l=f;k;k=k.parentNode)q.push([k,r]),l=k;l===(f.ownerDocument||e)&&q.push([l.defaultView||l.parentWindow||a,r])}for(j=0;j<q.length&&!c.isPropagationStopped();j++)k=q[j][0],c.type=q[j][1],o=(p._data(k,"events")||{})[c.type]&&p._data(k,"handle"),o&&o.apply(k,d),o=m&&k[m],o&&p.acceptData(k)&&o.apply&&o.apply(k,d)===!1&&c.preventDefault();return c.type=s,!g&&!c.isDefaultPrevented()&&(!n._default||n._default.apply(f.ownerDocument,d)===!1)&&(s!=="click"||!p.nodeName(f,"a"))&&p.acceptData(f)&&m&&f[s]&&(s!=="focus"&&s!=="blur"||c.target.offsetWidth!==0)&&!p.isWindow(f)&&(l=f[m],l&&(f[m]=null),p.event.triggered=s,f[s](),p.event.triggered=b,l&&(f[m]=l)),c.result}return},dispatch:function(c){c=p.event.fix(c||a.event);var d,e,f,g,h,i,j,l,m,n,o=(p._data(this,"events")||{})[c.type]||[],q=o.delegateCount,r=k.call(arguments),s=!c.exclusive&&!c.namespace,t=p.event.special[c.type]||{},u=[];r[0]=c,c.delegateTarget=this;if(t.preDispatch&&t.preDispatch.call(this,c)===!1)return;if(q&&(!c.button||c.type!=="click"))for(f=c.target;f!=this;f=f.parentNode||this)if(f.disabled!==!0||c.type!=="click"){h={},j=[];for(d=0;d<q;d++)l=o[d],m=l.selector,h[m]===b&&(h[m]=l.needsContext?p(m,this).index(f)>=0:p.find(m,this,null,[f]).length),h[m]&&j.push(l);j.length&&u.push({elem:f,matches:j})}o.length>q&&u.push({elem:this,matches:o.slice(q)});for(d=0;d<u.length&&!c.isPropagationStopped();d++){i=u[d],c.currentTarget=i.elem;for(e=0;e<i.matches.length&&!c.isImmediatePropagationStopped();e++){l=i.matches[e];if(s||!c.namespace&&!l.namespace||c.namespace_re&&c.namespace_re.test(l.namespace))c.data=l.data,c.handleObj=l,g=((p.event.special[l.origType]||{}).handle||l.handler).apply(i.elem,r),g!==b&&(c.result=g,g===!1&&(c.preventDefault(),c.stopPropagation()))}}return t.postDispatch&&t.postDispatch.call(this,c),c.result},props:"attrChange attrName relatedNode srcElement altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(a,b){return a.which==null&&(a.which=b.charCode!=null?b.charCode:b.keyCode),a}},mouseHooks:{props:"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(a,c){var d,f,g,h=c.button,i=c.fromElement;return a.pageX==null&&c.clientX!=null&&(d=a.target.ownerDocument||e,f=d.documentElement,g=d.body,a.pageX=c.clientX+(f&&f.scrollLeft||g&&g.scrollLeft||0)-(f&&f.clientLeft||g&&g.clientLeft||0),a.pageY=c.clientY+(f&&f.scrollTop||g&&g.scrollTop||0)-(f&&f.clientTop||g&&g.clientTop||0)),!a.relatedTarget&&i&&(a.relatedTarget=i===a.target?c.toElement:i),!a.which&&h!==b&&(a.which=h&1?1:h&2?3:h&4?2:0),a}},fix:function(a){if(a[p.expando])return a;var b,c,d=a,f=p.event.fixHooks[a.type]||{},g=f.props?this.props.concat(f.props):this.props;a=p.Event(d);for(b=g.length;b;)c=g[--b],a[c]=d[c];return a.target||(a.target=d.srcElement||e),a.target.nodeType===3&&(a.target=a.target.parentNode),a.metaKey=!!a.metaKey,f.filter?f.filter(a,d):a},special:{load:{noBubble:!0},focus:{delegateType:"focusin"},blur:{delegateType:"focusout"},beforeunload:{setup:function(a,b,c){p.isWindow(this)&&(this.onbeforeunload=c)},teardown:function(a,b){this.onbeforeunload===b&&(this.onbeforeunload=null)}}},simulate:function(a,b,c,d){var e=p.extend(new p.Event,c,{type:a,isSimulated:!0,originalEvent:{}});d?p.event.trigger(e,null,b):p.event.dispatch.call(b,e),e.isDefaultPrevented()&&c.preventDefault()}},p.event.handle=p.event.dispatch,p.removeEvent=e.removeEventListener?function(a,b,c){a.removeEventListener&&a.removeEventListener(b,c,!1)}:function(a,b,c){var d="on"+b;a.detachEvent&&(typeof a[d]=="undefined"&&(a[d]=null),a.detachEvent(d,c))},p.Event=function(a,b){if(this instanceof p.Event)a&&a.type?(this.originalEvent=a,this.type=a.type,this.isDefaultPrevented=a.defaultPrevented||a.returnValue===!1||a.getPreventDefault&&a.getPreventDefault()?bb:ba):this.type=a,b&&p.extend(this,b),this.timeStamp=a&&a.timeStamp||p.now(),this[p.expando]=!0;else return new p.Event(a,b)},p.Event.prototype={preventDefault:function(){this.isDefaultPrevented=bb;var a=this.originalEvent;if(!a)return;a.preventDefault?a.preventDefault():a.returnValue=!1},stopPropagation:function(){this.isPropagationStopped=bb;var a=this.originalEvent;if(!a)return;a.stopPropagation&&a.stopPropagation(),a.cancelBubble=!0},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=bb,this.stopPropagation()},isDefaultPrevented:ba,isPropagationStopped:ba,isImmediatePropagationStopped:ba},p.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(a,b){p.event.special[a]={delegateType:b,bindType:b,handle:function(a){var c,d=this,e=a.relatedTarget,f=a.handleObj,g=f.selector;if(!e||e!==d&&!p.contains(d,e))a.type=f.origType,c=f.handler.apply(this,arguments),a.type=b;return c}}}),p.support.submitBubbles||(p.event.special.submit={setup:function(){if(p.nodeName(this,"form"))return!1;p.event.add(this,"click._submit keypress._submit",function(a){var c=a.target,d=p.nodeName(c,"input")||p.nodeName(c,"button")?c.form:b;d&&!p._data(d,"_submit_attached")&&(p.event.add(d,"submit._submit",function(a){a._submit_bubble=!0}),p._data(d,"_submit_attached",!0))})},postDispatch:function(a){a._submit_bubble&&(delete a._submit_bubble,this.parentNode&&!a.isTrigger&&p.event.simulate("submit",this.parentNode,a,!0))},teardown:function(){if(p.nodeName(this,"form"))return!1;p.event.remove(this,"._submit")}}),p.support.changeBubbles||(p.event.special.change={setup:function(){if(V.test(this.nodeName)){if(this.type==="checkbox"||this.type==="radio")p.event.add(this,"propertychange._change",function(a){a.originalEvent.propertyName==="checked"&&(this._just_changed=!0)}),p.event.add(this,"click._change",function(a){this._just_changed&&!a.isTrigger&&(this._just_changed=!1),p.event.simulate("change",this,a,!0)});return!1}p.event.add(this,"beforeactivate._change",function(a){var b=a.target;V.test(b.nodeName)&&!p._data(b,"_change_attached")&&(p.event.add(b,"change._change",function(a){this.parentNode&&!a.isSimulated&&!a.isTrigger&&p.event.simulate("change",this.parentNode,a,!0)}),p._data(b,"_change_attached",!0))})},handle:function(a){var b=a.target;if(this!==b||a.isSimulated||a.isTrigger||b.type!=="radio"&&b.type!=="checkbox")return a.handleObj.handler.apply(this,arguments)},teardown:function(){return p.event.remove(this,"._change"),!V.test(this.nodeName)}}),p.support.focusinBubbles||p.each({focus:"focusin",blur:"focusout"},function(a,b){var c=0,d=function(a){p.event.simulate(b,a.target,p.event.fix(a),!0)};p.event.special[b]={setup:function(){c++===0&&e.addEventListener(a,d,!0)},teardown:function(){--c===0&&e.removeEventListener(a,d,!0)}}}),p.fn.extend({on:function(a,c,d,e,f){var g,h;if(typeof a=="object"){typeof c!="string"&&(d=d||c,c=b);for(h in a)this.on(h,c,d,a[h],f);return this}d==null&&e==null?(e=c,d=c=b):e==null&&(typeof c=="string"?(e=d,d=b):(e=d,d=c,c=b));if(e===!1)e=ba;else if(!e)return this;return f===1&&(g=e,e=function(a){return p().off(a),g.apply(this,arguments)},e.guid=g.guid||(g.guid=p.guid++)),this.each(function(){p.event.add(this,a,e,d,c)})},one:function(a,b,c,d){return this.on(a,b,c,d,1)},off:function(a,c,d){var e,f;if(a&&a.preventDefault&&a.handleObj)return e=a.handleObj,p(a.delegateTarget).off(e.namespace?e.origType+"."+e.namespace:e.origType,e.selector,e.handler),this;if(typeof a=="object"){for(f in a)this.off(f,c,a[f]);return this}if(c===!1||typeof c=="function")d=c,c=b;return d===!1&&(d=ba),this.each(function(){p.event.remove(this,a,d,c)})},bind:function(a,b,c){return this.on(a,null,b,c)},unbind:function(a,b){return this.off(a,null,b)},live:function(a,b,c){return p(this.context).on(a,this.selector,b,c),this},die:function(a,b){return p(this.context).off(a,this.selector||"**",b),this},delegate:function(a,b,c,d){return this.on(b,a,c,d)},undelegate:function(a,b,c){return arguments.length===1?this.off(a,"**"):this.off(b,a||"**",c)},trigger:function(a,b){return this.each(function(){p.event.trigger(a,b,this)})},triggerHandler:function(a,b){if(this[0])return p.event.trigger(a,b,this[0],!0)},toggle:function(a){var b=arguments,c=a.guid||p.guid++,d=0,e=function(c){var e=(p._data(this,"lastToggle"+a.guid)||0)%d;return p._data(this,"lastToggle"+a.guid,e+1),c.preventDefault(),b[e].apply(this,arguments)||!1};e.guid=c;while(d<b.length)b[d++].guid=c;return this.click(e)},hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)}}),p.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(a,b){p.fn[b]=function(a,c){return c==null&&(c=a,a=null),arguments.length>0?this.on(b,null,a,c):this.trigger(b)},Y.test(b)&&(p.event.fixHooks[b]=p.event.keyHooks),Z.test(b)&&(p.event.fixHooks[b]=p.event.mouseHooks)}),function(a,b){function bc(a,b,c,d){c=c||[],b=b||r;var e,f,i,j,k=b.nodeType;if(!a||typeof a!="string")return c;if(k!==1&&k!==9)return[];i=g(b);if(!i&&!d)if(e=P.exec(a))if(j=e[1]){if(k===9){f=b.getElementById(j);if(!f||!f.parentNode)return c;if(f.id===j)return c.push(f),c}else if(b.ownerDocument&&(f=b.ownerDocument.getElementById(j))&&h(b,f)&&f.id===j)return c.push(f),c}else{if(e[2])return w.apply(c,x.call(b.getElementsByTagName(a),0)),c;if((j=e[3])&&_&&b.getElementsByClassName)return w.apply(c,x.call(b.getElementsByClassName(j),0)),c}return bp(a.replace(L,"$1"),b,c,d,i)}function bd(a){return function(b){var c=b.nodeName.toLowerCase();return c==="input"&&b.type===a}}function be(a){return function(b){var c=b.nodeName.toLowerCase();return(c==="input"||c==="button")&&b.type===a}}function bf(a){return z(function(b){return b=+b,z(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function bg(a,b,c){if(a===b)return c;var d=a.nextSibling;while(d){if(d===b)return-1;d=d.nextSibling}return 1}function bh(a,b){var c,d,f,g,h,i,j,k=C[o][a];if(k)return b?0:k.slice(0);h=a,i=[],j=e.preFilter;while(h){if(!c||(d=M.exec(h)))d&&(h=h.slice(d[0].length)),i.push(f=[]);c=!1;if(d=N.exec(h))f.push(c=new q(d.shift())),h=h.slice(c.length),c.type=d[0].replace(L," ");for(g in e.filter)(d=W[g].exec(h))&&(!j[g]||(d=j[g](d,r,!0)))&&(f.push(c=new q(d.shift())),h=h.slice(c.length),c.type=g,c.matches=d);if(!c)break}return b?h.length:h?bc.error(a):C(a,i).slice(0)}function bi(a,b,d){var e=b.dir,f=d&&b.dir==="parentNode",g=u++;return b.first?function(b,c,d){while(b=b[e])if(f||b.nodeType===1)return a(b,c,d)}:function(b,d,h){if(!h){var i,j=t+" "+g+" ",k=j+c;while(b=b[e])if(f||b.nodeType===1){if((i=b[o])===k)return b.sizset;if(typeof i=="string"&&i.indexOf(j)===0){if(b.sizset)return b}else{b[o]=k;if(a(b,d,h))return b.sizset=!0,b;b.sizset=!1}}}else while(b=b[e])if(f||b.nodeType===1)if(a(b,d,h))return b}}function bj(a){return a.length>1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function bk(a,b,c,d,e){var f,g=[],h=0,i=a.length,j=b!=null;for(;h<i;h++)if(f=a[h])if(!c||c(f,d,e))g.push(f),j&&b.push(h);return g}function bl(a,b,c,d,e,f){return d&&!d[o]&&(d=bl(d)),e&&!e[o]&&(e=bl(e,f)),z(function(f,g,h,i){if(f&&e)return;var j,k,l,m=[],n=[],o=g.length,p=f||bo(b||"*",h.nodeType?[h]:h,[],f),q=a&&(f||!b)?bk(p,m,a,h,i):p,r=c?e||(f?a:o||d)?[]:g:q;c&&c(q,r,h,i);if(d){l=bk(r,n),d(l,[],h,i),j=l.length;while(j--)if(k=l[j])r[n[j]]=!(q[n[j]]=k)}if(f){j=a&&r.length;while(j--)if(k=r[j])f[m[j]]=!(g[m[j]]=k)}else r=bk(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):w.apply(g,r)})}function bm(a){var b,c,d,f=a.length,g=e.relative[a[0].type],h=g||e.relative[" "],i=g?1:0,j=bi(function(a){return a===b},h,!0),k=bi(function(a){return y.call(b,a)>-1},h,!0),m=[function(a,c,d){return!g&&(d||c!==l)||((b=c).nodeType?j(a,c,d):k(a,c,d))}];for(;i<f;i++)if(c=e.relative[a[i].type])m=[bi(bj(m),c)];else{c=e.filter[a[i].type].apply(null,a[i].matches);if(c[o]){d=++i;for(;d<f;d++)if(e.relative[a[d].type])break;return bl(i>1&&bj(m),i>1&&a.slice(0,i-1).join("").replace(L,"$1"),c,i<d&&bm(a.slice(i,d)),d<f&&bm(a=a.slice(d)),d<f&&a.join(""))}m.push(c)}return bj(m)}function bn(a,b){var d=b.length>0,f=a.length>0,g=function(h,i,j,k,m){var n,o,p,q=[],s=0,u="0",x=h&&[],y=m!=null,z=l,A=h||f&&e.find.TAG("*",m&&i.parentNode||i),B=t+=z==null?1:Math.E;y&&(l=i!==r&&i,c=g.el);for(;(n=A[u])!=null;u++){if(f&&n){for(o=0;p=a[o];o++)if(p(n,i,j)){k.push(n);break}y&&(t=B,c=++g.el)}d&&((n=!p&&n)&&s--,h&&x.push(n))}s+=u;if(d&&u!==s){for(o=0;p=b[o];o++)p(x,q,i,j);if(h){if(s>0)while(u--)!x[u]&&!q[u]&&(q[u]=v.call(k));q=bk(q)}w.apply(k,q),y&&!h&&q.length>0&&s+b.length>1&&bc.uniqueSort(k)}return y&&(t=B,l=z),x};return g.el=0,d?z(g):g}function bo(a,b,c,d){var e=0,f=b.length;for(;e<f;e++)bc(a,b[e],c,d);return c}function bp(a,b,c,d,f){var g,h,j,k,l,m=bh(a),n=m.length;if(!d&&m.length===1){h=m[0]=m[0].slice(0);if(h.length>2&&(j=h[0]).type==="ID"&&b.nodeType===9&&!f&&e.relative[h[1].type]){b=e.find.ID(j.matches[0].replace(V,""),b,f)[0];if(!b)return c;a=a.slice(h.shift().length)}for(g=W.POS.test(a)?-1:h.length-1;g>=0;g--){j=h[g];if(e.relative[k=j.type])break;if(l=e.find[k])if(d=l(j.matches[0].replace(V,""),R.test(h[0].type)&&b.parentNode||b,f)){h.splice(g,1),a=d.length&&h.join("");if(!a)return w.apply(c,x.call(d,0)),c;break}}}return i(a,m)(d,b,f,c,R.test(a)),c}function bq(){}var c,d,e,f,g,h,i,j,k,l,m=!0,n="undefined",o=("sizcache"+Math.random()).replace(".",""),q=String,r=a.document,s=r.documentElement,t=0,u=0,v=[].pop,w=[].push,x=[].slice,y=[].indexOf||function(a){var b=0,c=this.length;for(;b<c;b++)if(this[b]===a)return b;return-1},z=function(a,b){return a[o]=b==null||b,a},A=function(){var a={},b=[];return z(function(c,d){return b.push(c)>e.cacheLength&&delete a[b.shift()],a[c]=d},a)},B=A(),C=A(),D=A(),E="[\\x20\\t\\r\\n\\f]",F="(?:\\\\.|[-\\w]|[^\\x00-\\xa0])+",G=F.replace("w","w#"),H="([*^$|!~]?=)",I="\\["+E+"*("+F+")"+E+"*(?:"+H+E+"*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|("+G+")|)|)"+E+"*\\]",J=":("+F+")(?:\\((?:(['\"])((?:\\\\.|[^\\\\])*?)\\2|([^()[\\]]*|(?:(?:"+I+")|[^:]|\\\\.)*|.*))\\)|)",K=":(even|odd|eq|gt|lt|nth|first|last)(?:\\("+E+"*((?:-\\d)?\\d*)"+E+"*\\)|)(?=[^-]|$)",L=new RegExp("^"+E+"+|((?:^|[^\\\\])(?:\\\\.)*)"+E+"+$","g"),M=new RegExp("^"+E+"*,"+E+"*"),N=new RegExp("^"+E+"*([\\x20\\t\\r\\n\\f>+~])"+E+"*"),O=new RegExp(J),P=/^(?:#([\w\-]+)|(\w+)|\.([\w\-]+))$/,Q=/^:not/,R=/[\x20\t\r\n\f]*[+~]/,S=/:not\($/,T=/h\d/i,U=/input|select|textarea|button/i,V=/\\(?!\\)/g,W={ID:new RegExp("^#("+F+")"),CLASS:new RegExp("^\\.("+F+")"),NAME:new RegExp("^\\[name=['\"]?("+F+")['\"]?\\]"),TAG:new RegExp("^("+F.replace("w","w*")+")"),ATTR:new RegExp("^"+I),PSEUDO:new RegExp("^"+J),POS:new RegExp(K,"i"),CHILD:new RegExp("^:(only|nth|first|last)-child(?:\\("+E+"*(even|odd|(([+-]|)(\\d*)n|)"+E+"*(?:([+-]|)"+E+"*(\\d+)|))"+E+"*\\)|)","i"),needsContext:new RegExp("^"+E+"*[>+~]|"+K,"i")},X=function(a){var b=r.createElement("div");try{return a(b)}catch(c){return!1}finally{b=null}},Y=X(function(a){return a.appendChild(r.createComment("")),!a.getElementsByTagName("*").length}),Z=X(function(a){return a.innerHTML="<a href='#'></a>",a.firstChild&&typeof a.firstChild.getAttribute!==n&&a.firstChild.getAttribute("href")==="#"}),$=X(function(a){a.innerHTML="<select></select>";var b=typeof a.lastChild.getAttribute("multiple");return b!=="boolean"&&b!=="string"}),_=X(function(a){return a.innerHTML="<div class='hidden e'></div><div class='hidden'></div>",!a.getElementsByClassName||!a.getElementsByClassName("e").length?!1:(a.lastChild.className="e",a.getElementsByClassName("e").length===2)}),ba=X(function(a){a.id=o+0,a.innerHTML="<a name='"+o+"'></a><div name='"+o+"'></div>",s.insertBefore(a,s.firstChild);var b=r.getElementsByName&&r.getElementsByName(o).length===2+r.getElementsByName(o+0).length;return d=!r.getElementById(o),s.removeChild(a),b});try{x.call(s.childNodes,0)[0].nodeType}catch(bb){x=function(a){var b,c=[];for(;b=this[a];a++)c.push(b);return c}}bc.matches=function(a,b){return bc(a,null,null,b)},bc.matchesSelector=function(a,b){return bc(b,null,null,[a]).length>0},f=bc.getText=function(a){var b,c="",d=0,e=a.nodeType;if(e){if(e===1||e===9||e===11){if(typeof a.textContent=="string")return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=f(a)}else if(e===3||e===4)return a.nodeValue}else for(;b=a[d];d++)c+=f(b);return c},g=bc.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?b.nodeName!=="HTML":!1},h=bc.contains=s.contains?function(a,b){var c=a.nodeType===9?a.documentElement:a,d=b&&b.parentNode;return a===d||!!(d&&d.nodeType===1&&c.contains&&c.contains(d))}:s.compareDocumentPosition?function(a,b){return b&&!!(a.compareDocumentPosition(b)&16)}:function(a,b){while(b=b.parentNode)if(b===a)return!0;return!1},bc.attr=function(a,b){var c,d=g(a);return d||(b=b.toLowerCase()),(c=e.attrHandle[b])?c(a):d||$?a.getAttribute(b):(c=a.getAttributeNode(b),c?typeof a[b]=="boolean"?a[b]?b:null:c.specified?c.value:null:null)},e=bc.selectors={cacheLength:50,createPseudo:z,match:W,attrHandle:Z?{}:{href:function(a){return a.getAttribute("href",2)},type:function(a){return a.getAttribute("type")}},find:{ID:d?function(a,b,c){if(typeof b.getElementById!==n&&!c){var d=b.getElementById(a);return d&&d.parentNode?[d]:[]}}:function(a,c,d){if(typeof c.getElementById!==n&&!d){var e=c.getElementById(a);return e?e.id===a||typeof e.getAttributeNode!==n&&e.getAttributeNode("id").value===a?[e]:b:[]}},TAG:Y?function(a,b){if(typeof b.getElementsByTagName!==n)return b.getElementsByTagName(a)}:function(a,b){var c=b.getElementsByTagName(a);if(a==="*"){var d,e=[],f=0;for(;d=c[f];f++)d.nodeType===1&&e.push(d);return e}return c},NAME:ba&&function(a,b){if(typeof b.getElementsByName!==n)return b.getElementsByName(name)},CLASS:_&&function(a,b,c){if(typeof b.getElementsByClassName!==n&&!c)return b.getElementsByClassName(a)}},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(V,""),a[3]=(a[4]||a[5]||"").replace(V,""),a[2]==="~="&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),a[1]==="nth"?(a[2]||bc.error(a[0]),a[3]=+(a[3]?a[4]+(a[5]||1):2*(a[2]==="even"||a[2]==="odd")),a[4]=+(a[6]+a[7]||a[2]==="odd")):a[2]&&bc.error(a[0]),a},PSEUDO:function(a){var b,c;if(W.CHILD.test(a[0]))return null;if(a[3])a[2]=a[3];else if(b=a[4])O.test(b)&&(c=bh(b,!0))&&(c=b.indexOf(")",b.length-c)-b.length)&&(b=b.slice(0,c),a[0]=a[0].slice(0,c)),a[2]=b;return a.slice(0,3)}},filter:{ID:d?function(a){return a=a.replace(V,""),function(b){return b.getAttribute("id")===a}}:function(a){return a=a.replace(V,""),function(b){var c=typeof b.getAttributeNode!==n&&b.getAttributeNode("id");return c&&c.value===a}},TAG:function(a){return a==="*"?function(){return!0}:(a=a.replace(V,"").toLowerCase(),function(b){return b.nodeName&&b.nodeName.toLowerCase()===a})},CLASS:function(a){var b=B[o][a];return b||(b=B(a,new RegExp("(^|"+E+")"+a+"("+E+"|$)"))),function(a){return b.test(a.className||typeof a.getAttribute!==n&&a.getAttribute("class")||"")}},ATTR:function(a,b,c){return function(d,e){var f=bc.attr(d,a);return f==null?b==="!=":b?(f+="",b==="="?f===c:b==="!="?f!==c:b==="^="?c&&f.indexOf(c)===0:b==="*="?c&&f.indexOf(c)>-1:b==="$="?c&&f.substr(f.length-c.length)===c:b==="~="?(" "+f+" ").indexOf(c)>-1:b==="|="?f===c||f.substr(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d){return a==="nth"?function(a){var b,e,f=a.parentNode;if(c===1&&d===0)return!0;if(f){e=0;for(b=f.firstChild;b;b=b.nextSibling)if(b.nodeType===1){e++;if(a===b)break}}return e-=d,e===c||e%c===0&&e/c>=0}:function(b){var c=b;switch(a){case"only":case"first":while(c=c.previousSibling)if(c.nodeType===1)return!1;if(a==="first")return!0;c=b;case"last":while(c=c.nextSibling)if(c.nodeType===1)return!1;return!0}}},PSEUDO:function(a,b){var c,d=e.pseudos[a]||e.setFilters[a.toLowerCase()]||bc.error("unsupported pseudo: "+a);return d[o]?d(b):d.length>1?(c=[a,a,"",b],e.setFilters.hasOwnProperty(a.toLowerCase())?z(function(a,c){var e,f=d(a,b),g=f.length;while(g--)e=y.call(a,f[g]),a[e]=!(c[e]=f[g])}):function(a){return d(a,0,c)}):d}},pseudos:{not:z(function(a){var b=[],c=[],d=i(a.replace(L,"$1"));return d[o]?z(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)if(f=g[h])a[h]=!(b[h]=f)}):function(a,e,f){return b[0]=a,d(b,null,f,c),!c.pop()}}),has:z(function(a){return function(b){return bc(a,b).length>0}}),contains:z(function(a){return function(b){return(b.textContent||b.innerText||f(b)).indexOf(a)>-1}}),enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&!!a.checked||b==="option"&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},parent:function(a){return!e.pseudos.empty(a)},empty:function(a){var b;a=a.firstChild;while(a){if(a.nodeName>"@"||(b=a.nodeType)===3||b===4)return!1;a=a.nextSibling}return!0},header:function(a){return T.test(a.nodeName)},text:function(a){var b,c;return a.nodeName.toLowerCase()==="input"&&(b=a.type)==="text"&&((c=a.getAttribute("type"))==null||c.toLowerCase()===b)},radio:bd("radio"),checkbox:bd("checkbox"),file:bd("file"),password:bd("password"),image:bd("image"),submit:be("submit"),reset:be("reset"),button:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&a.type==="button"||b==="button"},input:function(a){return U.test(a.nodeName)},focus:function(a){var b=a.ownerDocument;return a===b.activeElement&&(!b.hasFocus||b.hasFocus())&&(!!a.type||!!a.href)},active:function(a){return a===a.ownerDocument.activeElement},first:bf(function(a,b,c){return[0]}),last:bf(function(a,b,c){return[b-1]}),eq:bf(function(a,b,c){return[c<0?c+b:c]}),even:bf(function(a,b,c){for(var d=0;d<b;d+=2)a.push(d);return a}),odd:bf(function(a,b,c){for(var d=1;d<b;d+=2)a.push(d);return a}),lt:bf(function(a,b,c){for(var d=c<0?c+b:c;--d>=0;)a.push(d);return a}),gt:bf(function(a,b,c){for(var d=c<0?c+b:c;++d<b;)a.push(d);return a})}},j=s.compareDocumentPosition?function(a,b){return a===b?(k=!0,0):(!a.compareDocumentPosition||!b.compareDocumentPosition?a.compareDocumentPosition:a.compareDocumentPosition(b)&4)?-1:1}:function(a,b){if(a===b)return k=!0,0;if(a.sourceIndex&&b.sourceIndex)return a.sourceIndex-b.sourceIndex;var c,d,e=[],f=[],g=a.parentNode,h=b.parentNode,i=g;if(g===h)return bg(a,b);if(!g)return-1;if(!h)return 1;while(i)e.unshift(i),i=i.parentNode;i=h;while(i)f.unshift(i),i=i.parentNode;c=e.length,d=f.length;for(var j=0;j<c&&j<d;j++)if(e[j]!==f[j])return bg(e[j],f[j]);return j===c?bg(a,f[j],-1):bg(e[j],b,1)},[0,0].sort(j),m=!k,bc.uniqueSort=function(a){var b,c=1;k=m,a.sort(j);if(k)for(;b=a[c];c++)b===a[c-1]&&a.splice(c--,1);return a},bc.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},i=bc.compile=function(a,b){var c,d=[],e=[],f=D[o][a];if(!f){b||(b=bh(a)),c=b.length;while(c--)f=bm(b[c]),f[o]?d.push(f):e.push(f);f=D(a,bn(e,d))}return f},r.querySelectorAll&&function(){var a,b=bp,c=/'|\\/g,d=/\=[\x20\t\r\n\f]*([^'"\]]*)[\x20\t\r\n\f]*\]/g,e=[":focus"],f=[":active",":focus"],h=s.matchesSelector||s.mozMatchesSelector||s.webkitMatchesSelector||s.oMatchesSelector||s.msMatchesSelector;X(function(a){a.innerHTML="<select><option selected=''></option></select>",a.querySelectorAll("[selected]").length||e.push("\\["+E+"*(?:checked|disabled|ismap|multiple|readonly|selected|value)"),a.querySelectorAll(":checked").length||e.push(":checked")}),X(function(a){a.innerHTML="<p test=''></p>",a.querySelectorAll("[test^='']").length&&e.push("[*^$]="+E+"*(?:\"\"|'')"),a.innerHTML="<input type='hidden'/>",a.querySelectorAll(":enabled").length||e.push(":enabled",":disabled")}),e=new RegExp(e.join("|")),bp=function(a,d,f,g,h){if(!g&&!h&&(!e||!e.test(a))){var i,j,k=!0,l=o,m=d,n=d.nodeType===9&&a;if(d.nodeType===1&&d.nodeName.toLowerCase()!=="object"){i=bh(a),(k=d.getAttribute("id"))?l=k.replace(c,"\\$&"):d.setAttribute("id",l),l="[id='"+l+"'] ",j=i.length;while(j--)i[j]=l+i[j].join("");m=R.test(a)&&d.parentNode||d,n=i.join(",")}if(n)try{return w.apply(f,x.call(m.querySelectorAll(n),0)),f}catch(p){}finally{k||d.removeAttribute("id")}}return b(a,d,f,g,h)},h&&(X(function(b){a=h.call(b,"div");try{h.call(b,"[test!='']:sizzle"),f.push("!=",J)}catch(c){}}),f=new RegExp(f.join("|")),bc.matchesSelector=function(b,c){c=c.replace(d,"='$1']");if(!g(b)&&!f.test(c)&&(!e||!e.test(c)))try{var i=h.call(b,c);if(i||a||b.document&&b.document.nodeType!==11)return i}catch(j){}return bc(c,null,null,[b]).length>0})}(),e.pseudos.nth=e.pseudos.eq,e.filters=bq.prototype=e.pseudos,e.setFilters=new bq,bc.attr=p.attr,p.find=bc,p.expr=bc.selectors,p.expr[":"]=p.expr.pseudos,p.unique=bc.uniqueSort,p.text=bc.getText,p.isXMLDoc=bc.isXML,p.contains=bc.contains}(a);var bc=/Until$/,bd=/^(?:parents|prev(?:Until|All))/,be=/^.[^:#\[\.,]*$/,bf=p.expr.match.needsContext,bg={children:!0,contents:!0,next:!0,prev:!0};p.fn.extend({find:function(a){var b,c,d,e,f,g,h=this;if(typeof a!="string")return p(a).filter(function(){for(b=0,c=h.length;b<c;b++)if(p.contains(h[b],this))return!0});g=this.pushStack("","find",a);for(b=0,c=this.length;b<c;b++){d=g.length,p.find(a,this[b],g);if(b>0)for(e=d;e<g.length;e++)for(f=0;f<d;f++)if(g[f]===g[e]){g.splice(e--,1);break}}return g},has:function(a){var b,c=p(a,this),d=c.length;return this.filter(function(){for(b=0;b<d;b++)if(p.contains(this,c[b]))return!0})},not:function(a){return this.pushStack(bj(this,a,!1),"not",a)},filter:function(a){return this.pushStack(bj(this,a,!0),"filter",a)},is:function(a){return!!a&&(typeof a=="string"?bf.test(a)?p(a,this.context).index(this[0])>=0:p.filter(a,this).length>0:this.filter(a).length>0)},closest:function(a,b){var c,d=0,e=this.length,f=[],g=bf.test(a)||typeof a!="string"?p(a,b||this.context):0;for(;d<e;d++){c=this[d];while(c&&c.ownerDocument&&c!==b&&c.nodeType!==11){if(g?g.index(c)>-1:p.find.matchesSelector(c,a)){f.push(c);break}c=c.parentNode}}return f=f.length>1?p.unique(f):f,this.pushStack(f,"closest",a)},index:function(a){return a?typeof a=="string"?p.inArray(this[0],p(a)):p.inArray(a.jquery?a[0]:a,this):this[0]&&this[0].parentNode?this.prevAll().length:-1},add:function(a,b){var c=typeof a=="string"?p(a,b):p.makeArray(a&&a.nodeType?[a]:a),d=p.merge(this.get(),c);return this.pushStack(bh(c[0])||bh(d[0])?d:p.unique(d))},addBack:function(a){return this.add(a==null?this.prevObject:this.prevObject.filter(a))}}),p.fn.andSelf=p.fn.addBack,p.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return p.dir(a,"parentNode")},parentsUntil:function(a,b,c){return p.dir(a,"parentNode",c)},next:function(a){return bi(a,"nextSibling")},prev:function(a){return bi(a,"previousSibling")},nextAll:function(a){return p.dir(a,"nextSibling")},prevAll:function(a){return p.dir(a,"previousSibling")},nextUntil:function(a,b,c){return p.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return p.dir(a,"previousSibling",c)},siblings:function(a){return p.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return p.sibling(a.firstChild)},contents:function(a){return p.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:p.merge([],a.childNodes)}},function(a,b){p.fn[a]=function(c,d){var e=p.map(this,b,c);return bc.test(a)||(d=c),d&&typeof d=="string"&&(e=p.filter(d,e)),e=this.length>1&&!bg[a]?p.unique(e):e,this.length>1&&bd.test(a)&&(e=e.reverse()),this.pushStack(e,a,k.call(arguments).join(","))}}),p.extend({filter:function(a,b,c){return c&&(a=":not("+a+")"),b.length===1?p.find.matchesSelector(b[0],a)?[b[0]]:[]:p.find.matches(a,b)},dir:function(a,c,d){var e=[],f=a[c];while(f&&f.nodeType!==9&&(d===b||f.nodeType!==1||!p(f).is(d)))f.nodeType===1&&e.push(f),f=f[c];return e},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var bl="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",bm=/ jQuery\d+="(?:null|\d+)"/g,bn=/^\s+/,bo=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,bp=/<([\w:]+)/,bq=/<tbody/i,br=/<|&#?\w+;/,bs=/<(?:script|style|link)/i,bt=/<(?:script|object|embed|option|style)/i,bu=new RegExp("<(?:"+bl+")[\\s/>]","i"),bv=/^(?:checkbox|radio)$/,bw=/checked\s*(?:[^=]|=\s*.checked.)/i,bx=/\/(java|ecma)script/i,by=/^\s*<!(?:\[CDATA\[|\-\-)|[\]\-]{2}>\s*$/g,bz={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],area:[1,"<map>","</map>"],_default:[0,"",""]},bA=bk(e),bB=bA.appendChild(e.createElement("div"));bz.optgroup=bz.option,bz.tbody=bz.tfoot=bz.colgroup=bz.caption=bz.thead,bz.th=bz.td,p.support.htmlSerialize||(bz._default=[1,"X<div>","</div>"]),p.fn.extend({text:function(a){return p.access(this,function(a){return a===b?p.text(this):this.empty().append((this[0]&&this[0].ownerDocument||e).createTextNode(a))},null,a,arguments.length)},wrapAll:function(a){if(p.isFunction(a))return this.each(function(b){p(this).wrapAll(a.call(this,b))});if(this[0]){var b=p(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){return p.isFunction(a)?this.each(function(b){p(this).wrapInner(a.call(this,b))}):this.each(function(){var b=p(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=p.isFunction(a);return this.each(function(c){p(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){p.nodeName(this,"body")||p(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){(this.nodeType===1||this.nodeType===11)&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){(this.nodeType===1||this.nodeType===11)&&this.insertBefore(a,this.firstChild)})},before:function(){if(!bh(this[0]))return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=p.clean(arguments);return this.pushStack(p.merge(a,this),"before",this.selector)}},after:function(){if(!bh(this[0]))return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=p.clean(arguments);return this.pushStack(p.merge(this,a),"after",this.selector)}},remove:function(a,b){var c,d=0;for(;(c=this[d])!=null;d++)if(!a||p.filter(a,[c]).length)!b&&c.nodeType===1&&(p.cleanData(c.getElementsByTagName("*")),p.cleanData([c])),c.parentNode&&c.parentNode.removeChild(c);return this},empty:function(){var a,b=0;for(;(a=this[b])!=null;b++){a.nodeType===1&&p.cleanData(a.getElementsByTagName("*"));while(a.firstChild)a.removeChild(a.firstChild)}return this},clone:function(a,b){return a=a==null?!1:a,b=b==null?a:b,this.map(function(){return p.clone(this,a,b)})},html:function(a){return p.access(this,function(a){var c=this[0]||{},d=0,e=this.length;if(a===b)return c.nodeType===1?c.innerHTML.replace(bm,""):b;if(typeof a=="string"&&!bs.test(a)&&(p.support.htmlSerialize||!bu.test(a))&&(p.support.leadingWhitespace||!bn.test(a))&&!bz[(bp.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(bo,"<$1></$2>");try{for(;d<e;d++)c=this[d]||{},c.nodeType===1&&(p.cleanData(c.getElementsByTagName("*")),c.innerHTML=a);c=0}catch(f){}}c&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function(a){return bh(this[0])?this.length?this.pushStack(p(p.isFunction(a)?a():a),"replaceWith",a):this:p.isFunction(a)?this.each(function(b){var c=p(this),d=c.html();c.replaceWith(a.call(this,b,d))}):(typeof a!="string"&&(a=p(a).detach()),this.each(function(){var b=this.nextSibling,c=this.parentNode;p(this).remove(),b?p(b).before(a):p(c).append(a)}))},detach:function(a){return this.remove(a,!0)},domManip:function(a,c,d){a=[].concat.apply([],a);var e,f,g,h,i=0,j=a[0],k=[],l=this.length;if(!p.support.checkClone&&l>1&&typeof j=="string"&&bw.test(j))return this.each(function(){p(this).domManip(a,c,d)});if(p.isFunction(j))return this.each(function(e){var f=p(this);a[0]=j.call(this,e,c?f.html():b),f.domManip(a,c,d)});if(this[0]){e=p.buildFragment(a,this,k),g=e.fragment,f=g.firstChild,g.childNodes.length===1&&(g=f);if(f){c=c&&p.nodeName(f,"tr");for(h=e.cacheable||l-1;i<l;i++)d.call(c&&p.nodeName(this[i],"table")?bC(this[i],"tbody"):this[i],i===h?g:p.clone(g,!0,!0))}g=f=null,k.length&&p.each(k,function(a,b){b.src?p.ajax?p.ajax({url:b.src,type:"GET",dataType:"script",async:!1,global:!1,"throws":!0}):p.error("no ajax"):p.globalEval((b.text||b.textContent||b.innerHTML||"").replace(by,"")),b.parentNode&&b.parentNode.removeChild(b)})}return this}}),p.buildFragment=function(a,c,d){var f,g,h,i=a[0];return c=c||e,c=!c.nodeType&&c[0]||c,c=c.ownerDocument||c,a.length===1&&typeof i=="string"&&i.length<512&&c===e&&i.charAt(0)==="<"&&!bt.test(i)&&(p.support.checkClone||!bw.test(i))&&(p.support.html5Clone||!bu.test(i))&&(g=!0,f=p.fragments[i],h=f!==b),f||(f=c.createDocumentFragment(),p.clean(a,c,f,d),g&&(p.fragments[i]=h&&f)),{fragment:f,cacheable:g}},p.fragments={},p.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){p.fn[a]=function(c){var d,e=0,f=[],g=p(c),h=g.length,i=this.length===1&&this[0].parentNode;if((i==null||i&&i.nodeType===11&&i.childNodes.length===1)&&h===1)return g[b](this[0]),this;for(;e<h;e++)d=(e>0?this.clone(!0):this).get(),p(g[e])[b](d),f=f.concat(d);return this.pushStack(f,a,g.selector)}}),p.extend({clone:function(a,b,c){var d,e,f,g;p.support.html5Clone||p.isXMLDoc(a)||!bu.test("<"+a.nodeName+">")?g=a.cloneNode(!0):(bB.innerHTML=a.outerHTML,bB.removeChild(g=bB.firstChild));if((!p.support.noCloneEvent||!p.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!p.isXMLDoc(a)){bE(a,g),d=bF(a),e=bF(g);for(f=0;d[f];++f)e[f]&&bE(d[f],e[f])}if(b){bD(a,g);if(c){d=bF(a),e=bF(g);for(f=0;d[f];++f)bD(d[f],e[f])}}return d=e=null,g},clean:function(a,b,c,d){var f,g,h,i,j,k,l,m,n,o,q,r,s=b===e&&bA,t=[];if(!b||typeof b.createDocumentFragment=="undefined")b=e;for(f=0;(h=a[f])!=null;f++){typeof h=="number"&&(h+="");if(!h)continue;if(typeof h=="string")if(!br.test(h))h=b.createTextNode(h);else{s=s||bk(b),l=b.createElement("div"),s.appendChild(l),h=h.replace(bo,"<$1></$2>"),i=(bp.exec(h)||["",""])[1].toLowerCase(),j=bz[i]||bz._default,k=j[0],l.innerHTML=j[1]+h+j[2];while(k--)l=l.lastChild;if(!p.support.tbody){m=bq.test(h),n=i==="table"&&!m?l.firstChild&&l.firstChild.childNodes:j[1]==="<table>"&&!m?l.childNodes:[];for(g=n.length-1;g>=0;--g)p.nodeName(n[g],"tbody")&&!n[g].childNodes.length&&n[g].parentNode.removeChild(n[g])}!p.support.leadingWhitespace&&bn.test(h)&&l.insertBefore(b.createTextNode(bn.exec(h)[0]),l.firstChild),h=l.childNodes,l.parentNode.removeChild(l)}h.nodeType?t.push(h):p.merge(t,h)}l&&(h=l=s=null);if(!p.support.appendChecked)for(f=0;(h=t[f])!=null;f++)p.nodeName(h,"input")?bG(h):typeof h.getElementsByTagName!="undefined"&&p.grep(h.getElementsByTagName("input"),bG);if(c){q=function(a){if(!a.type||bx.test(a.type))return d?d.push(a.parentNode?a.parentNode.removeChild(a):a):c.appendChild(a)};for(f=0;(h=t[f])!=null;f++)if(!p.nodeName(h,"script")||!q(h))c.appendChild(h),typeof h.getElementsByTagName!="undefined"&&(r=p.grep(p.merge([],h.getElementsByTagName("script")),q),t.splice.apply(t,[f+1,0].concat(r)),f+=r.length)}return t},cleanData:function(a,b){var c,d,e,f,g=0,h=p.expando,i=p.cache,j=p.support.deleteExpando,k=p.event.special;for(;(e=a[g])!=null;g++)if(b||p.acceptData(e)){d=e[h],c=d&&i[d];if(c){if(c.events)for(f in c.events)k[f]?p.event.remove(e,f):p.removeEvent(e,f,c.handle);i[d]&&(delete i[d],j?delete e[h]:e.removeAttribute?e.removeAttribute(h):e[h]=null,p.deletedIds.push(d))}}}}),function(){var a,b;p.uaMatch=function(a){a=a.toLowerCase();var b=/(chrome)[ \/]([\w.]+)/.exec(a)||/(webkit)[ \/]([\w.]+)/.exec(a)||/(opera)(?:.*version|)[ \/]([\w.]+)/.exec(a)||/(msie) ([\w.]+)/.exec(a)||a.indexOf("compatible")<0&&/(mozilla)(?:.*? rv:([\w.]+)|)/.exec(a)||[];return{browser:b[1]||"",version:b[2]||"0"}},a=p.uaMatch(g.userAgent),b={},a.browser&&(b[a.browser]=!0,b.version=a.version),b.chrome?b.webkit=!0:b.webkit&&(b.safari=!0),p.browser=b,p.sub=function(){function a(b,c){return new a.fn.init(b,c)}p.extend(!0,a,this),a.superclass=this,a.fn=a.prototype=this(),a.fn.constructor=a,a.sub=this.sub,a.fn.init=function c(c,d){return d&&d instanceof p&&!(d instanceof a)&&(d=a(d)),p.fn.init.call(this,c,d,b)},a.fn.init.prototype=a.fn;var b=a(e);return a}}();var bH,bI,bJ,bK=/alpha\([^)]*\)/i,bL=/opacity=([^)]*)/,bM=/^(top|right|bottom|left)$/,bN=/^(none|table(?!-c[ea]).+)/,bO=/^margin/,bP=new RegExp("^("+q+")(.*)$","i"),bQ=new RegExp("^("+q+")(?!px)[a-z%]+$","i"),bR=new RegExp("^([-+])=("+q+")","i"),bS={},bT={position:"absolute",visibility:"hidden",display:"block"},bU={letterSpacing:0,fontWeight:400},bV=["Top","Right","Bottom","Left"],bW=["Webkit","O","Moz","ms"],bX=p.fn.toggle;p.fn.extend({css:function(a,c){return p.access(this,function(a,c,d){return d!==b?p.style(a,c,d):p.css(a,c)},a,c,arguments.length>1)},show:function(){return b$(this,!0)},hide:function(){return b$(this)},toggle:function(a,b){var c=typeof a=="boolean";return p.isFunction(a)&&p.isFunction(b)?bX.apply(this,arguments):this.each(function(){(c?a:bZ(this))?p(this).show():p(this).hide()})}}),p.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=bH(a,"opacity");return c===""?"1":c}}}},cssNumber:{fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":p.support.cssFloat?"cssFloat":"styleFloat"},style:function(a,c,d,e){if(!a||a.nodeType===3||a.nodeType===8||!a.style)return;var f,g,h,i=p.camelCase(c),j=a.style;c=p.cssProps[i]||(p.cssProps[i]=bY(j,i)),h=p.cssHooks[c]||p.cssHooks[i];if(d===b)return h&&"get"in h&&(f=h.get(a,!1,e))!==b?f:j[c];g=typeof d,g==="string"&&(f=bR.exec(d))&&(d=(f[1]+1)*f[2]+parseFloat(p.css(a,c)),g="number");if(d==null||g==="number"&&isNaN(d))return;g==="number"&&!p.cssNumber[i]&&(d+="px");if(!h||!("set"in h)||(d=h.set(a,d,e))!==b)try{j[c]=d}catch(k){}},css:function(a,c,d,e){var f,g,h,i=p.camelCase(c);return c=p.cssProps[i]||(p.cssProps[i]=bY(a.style,i)),h=p.cssHooks[c]||p.cssHooks[i],h&&"get"in h&&(f=h.get(a,!0,e)),f===b&&(f=bH(a,c)),f==="normal"&&c in bU&&(f=bU[c]),d||e!==b?(g=parseFloat(f),d||p.isNumeric(g)?g||0:f):f},swap:function(a,b,c){var d,e,f={};for(e in b)f[e]=a.style[e],a.style[e]=b[e];d=c.call(a);for(e in b)a.style[e]=f[e];return d}}),a.getComputedStyle?bH=function(b,c){var d,e,f,g,h=a.getComputedStyle(b,null),i=b.style;return h&&(d=h[c],d===""&&!p.contains(b.ownerDocument,b)&&(d=p.style(b,c)),bQ.test(d)&&bO.test(c)&&(e=i.width,f=i.minWidth,g=i.maxWidth,i.minWidth=i.maxWidth=i.width=d,d=h.width,i.width=e,i.minWidth=f,i.maxWidth=g)),d}:e.documentElement.currentStyle&&(bH=function(a,b){var c,d,e=a.currentStyle&&a.currentStyle[b],f=a.style;return e==null&&f&&f[b]&&(e=f[b]),bQ.test(e)&&!bM.test(b)&&(c=f.left,d=a.runtimeStyle&&a.runtimeStyle.left,d&&(a.runtimeStyle.left=a.currentStyle.left),f.left=b==="fontSize"?"1em":e,e=f.pixelLeft+"px",f.left=c,d&&(a.runtimeStyle.left=d)),e===""?"auto":e}),p.each(["height","width"],function(a,b){p.cssHooks[b]={get:function(a,c,d){if(c)return a.offsetWidth===0&&bN.test(bH(a,"display"))?p.swap(a,bT,function(){return cb(a,b,d)}):cb(a,b,d)},set:function(a,c,d){return b_(a,c,d?ca(a,b,d,p.support.boxSizing&&p.css(a,"boxSizing")==="border-box"):0)}}}),p.support.opacity||(p.cssHooks.opacity={get:function(a,b){return bL.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?.01*parseFloat(RegExp.$1)+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=p.isNumeric(b)?"alpha(opacity="+b*100+")":"",f=d&&d.filter||c.filter||"";c.zoom=1;if(b>=1&&p.trim(f.replace(bK,""))===""&&c.removeAttribute){c.removeAttribute("filter");if(d&&!d.filter)return}c.filter=bK.test(f)?f.replace(bK,e):f+" "+e}}),p(function(){p.support.reliableMarginRight||(p.cssHooks.marginRight={get:function(a,b){return p.swap(a,{display:"inline-block"},function(){if(b)return bH(a,"marginRight")})}}),!p.support.pixelPosition&&p.fn.position&&p.each(["top","left"],function(a,b){p.cssHooks[b]={get:function(a,c){if(c){var d=bH(a,b);return bQ.test(d)?p(a).position()[b]+"px":d}}}})}),p.expr&&p.expr.filters&&(p.expr.filters.hidden=function(a){return a.offsetWidth===0&&a.offsetHeight===0||!p.support.reliableHiddenOffsets&&(a.style&&a.style.display||bH(a,"display"))==="none"},p.expr.filters.visible=function(a){return!p.expr.filters.hidden(a)}),p.each({margin:"",padding:"",border:"Width"},function(a,b){p.cssHooks[a+b]={expand:function(c){var d,e=typeof c=="string"?c.split(" "):[c],f={};for(d=0;d<4;d++)f[a+bV[d]+b]=e[d]||e[d-2]||e[0];return f}},bO.test(a)||(p.cssHooks[a+b].set=b_)});var cd=/%20/g,ce=/\[\]$/,cf=/\r?\n/g,cg=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,ch=/^(?:select|textarea)/i;p.fn.extend({serialize:function(){return p.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?p.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||ch.test(this.nodeName)||cg.test(this.type))}).map(function(a,b){var c=p(this).val();return c==null?null:p.isArray(c)?p.map(c,function(a,c){return{name:b.name,value:a.replace(cf,"\r\n")}}):{name:b.name,value:c.replace(cf,"\r\n")}}).get()}}),p.param=function(a,c){var d,e=[],f=function(a,b){b=p.isFunction(b)?b():b==null?"":b,e[e.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=p.ajaxSettings&&p.ajaxSettings.traditional);if(p.isArray(a)||a.jquery&&!p.isPlainObject(a))p.each(a,function(){f(this.name,this.value)});else for(d in a)ci(d,a[d],c,f);return e.join("&").replace(cd,"+")};var cj,ck,cl=/#.*$/,cm=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,cn=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,co=/^(?:GET|HEAD)$/,cp=/^\/\//,cq=/\?/,cr=/<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi,cs=/([?&])_=[^&]*/,ct=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+)|)|)/,cu=p.fn.load,cv={},cw={},cx=["*/"]+["*"];try{ck=f.href}catch(cy){ck=e.createElement("a"),ck.href="",ck=ck.href}cj=ct.exec(ck.toLowerCase())||[],p.fn.load=function(a,c,d){if(typeof a!="string"&&cu)return cu.apply(this,arguments);if(!this.length)return this;var e,f,g,h=this,i=a.indexOf(" ");return i>=0&&(e=a.slice(i,a.length),a=a.slice(0,i)),p.isFunction(c)?(d=c,c=b):c&&typeof c=="object"&&(f="POST"),p.ajax({url:a,type:f,dataType:"html",data:c,complete:function(a,b){d&&h.each(d,g||[a.responseText,b,a])}}).done(function(a){g=arguments,h.html(e?p("<div>").append(a.replace(cr,"")).find(e):a)}),this},p.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){p.fn[b]=function(a){return this.on(b,a)}}),p.each(["get","post"],function(a,c){p[c]=function(a,d,e,f){return p.isFunction(d)&&(f=f||e,e=d,d=b),p.ajax({type:c,url:a,data:d,success:e,dataType:f})}}),p.extend({getScript:function(a,c){return p.get(a,b,c,"script")},getJSON:function(a,b,c){return p.get(a,b,c,"json")},ajaxSetup:function(a,b){return b?cB(a,p.ajaxSettings):(b=a,a=p.ajaxSettings),cB(a,b),a},ajaxSettings:{url:ck,isLocal:cn.test(cj[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded; charset=UTF-8",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":cx},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":p.parseJSON,"text xml":p.parseXML},flatOptions:{context:!0,url:!0}},ajaxPrefilter:cz(cv),ajaxTransport:cz(cw),ajax:function(a,c){function y(a,c,f,i){var k,s,t,u,w,y=c;if(v===2)return;v=2,h&&clearTimeout(h),g=b,e=i||"",x.readyState=a>0?4:0,f&&(u=cC(l,x,f));if(a>=200&&a<300||a===304)l.ifModified&&(w=x.getResponseHeader("Last-Modified"),w&&(p.lastModified[d]=w),w=x.getResponseHeader("Etag"),w&&(p.etag[d]=w)),a===304?(y="notmodified",k=!0):(k=cD(l,u),y=k.state,s=k.data,t=k.error,k=!t);else{t=y;if(!y||a)y="error",a<0&&(a=0)}x.status=a,x.statusText=(c||y)+"",k?o.resolveWith(m,[s,y,x]):o.rejectWith(m,[x,y,t]),x.statusCode(r),r=b,j&&n.trigger("ajax"+(k?"Success":"Error"),[x,l,k?s:t]),q.fireWith(m,[x,y]),j&&(n.trigger("ajaxComplete",[x,l]),--p.active||p.event.trigger("ajaxStop"))}typeof a=="object"&&(c=a,a=b),c=c||{};var d,e,f,g,h,i,j,k,l=p.ajaxSetup({},c),m=l.context||l,n=m!==l&&(m.nodeType||m instanceof p)?p(m):p.event,o=p.Deferred(),q=p.Callbacks("once memory"),r=l.statusCode||{},t={},u={},v=0,w="canceled",x={readyState:0,setRequestHeader:function(a,b){if(!v){var c=a.toLowerCase();a=u[c]=u[c]||a,t[a]=b}return this},getAllResponseHeaders:function(){return v===2?e:null},getResponseHeader:function(a){var c;if(v===2){if(!f){f={};while(c=cm.exec(e))f[c[1].toLowerCase()]=c[2]}c=f[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){return v||(l.mimeType=a),this},abort:function(a){return a=a||w,g&&g.abort(a),y(0,a),this}};o.promise(x),x.success=x.done,x.error=x.fail,x.complete=q.add,x.statusCode=function(a){if(a){var b;if(v<2)for(b in a)r[b]=[r[b],a[b]];else b=a[x.status],x.always(b)}return this},l.url=((a||l.url)+"").replace(cl,"").replace(cp,cj[1]+"//"),l.dataTypes=p.trim(l.dataType||"*").toLowerCase().split(s),l.crossDomain==null&&(i=ct.exec(l.url.toLowerCase())||!1,l.crossDomain=i&&i.join(":")+(i[3]?"":i[1]==="http:"?80:443)!==cj.join(":")+(cj[3]?"":cj[1]==="http:"?80:443)),l.data&&l.processData&&typeof l.data!="string"&&(l.data=p.param(l.data,l.traditional)),cA(cv,l,c,x);if(v===2)return x;j=l.global,l.type=l.type.toUpperCase(),l.hasContent=!co.test(l.type),j&&p.active++===0&&p.event.trigger("ajaxStart");if(!l.hasContent){l.data&&(l.url+=(cq.test(l.url)?"&":"?")+l.data,delete l.data),d=l.url;if(l.cache===!1){var z=p.now(),A=l.url.replace(cs,"$1_="+z);l.url=A+(A===l.url?(cq.test(l.url)?"&":"?")+"_="+z:"")}}(l.data&&l.hasContent&&l.contentType!==!1||c.contentType)&&x.setRequestHeader("Content-Type",l.contentType),l.ifModified&&(d=d||l.url,p.lastModified[d]&&x.setRequestHeader("If-Modified-Since",p.lastModified[d]),p.etag[d]&&x.setRequestHeader("If-None-Match",p.etag[d])),x.setRequestHeader("Accept",l.dataTypes[0]&&l.accepts[l.dataTypes[0]]?l.accepts[l.dataTypes[0]]+(l.dataTypes[0]!=="*"?", "+cx+"; q=0.01":""):l.accepts["*"]);for(k in l.headers)x.setRequestHeader(k,l.headers[k]);if(!l.beforeSend||l.beforeSend.call(m,x,l)!==!1&&v!==2){w="abort";for(k in{success:1,error:1,complete:1})x[k](l[k]);g=cA(cw,l,c,x);if(!g)y(-1,"No Transport");else{x.readyState=1,j&&n.trigger("ajaxSend",[x,l]),l.async&&l.timeout>0&&(h=setTimeout(function(){x.abort("timeout")},l.timeout));try{v=1,g.send(t,y)}catch(B){if(v<2)y(-1,B);else throw B}}return x}return x.abort()},active:0,lastModified:{},etag:{}});var cE=[],cF=/\?/,cG=/(=)\?(?=&|$)|\?\?/,cH=p.now();p.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var a=cE.pop()||p.expando+"_"+cH++;return this[a]=!0,a}}),p.ajaxPrefilter("json jsonp",function(c,d,e){var f,g,h,i=c.data,j=c.url,k=c.jsonp!==!1,l=k&&cG.test(j),m=k&&!l&&typeof i=="string"&&!(c.contentType||"").indexOf("application/x-www-form-urlencoded")&&cG.test(i);if(c.dataTypes[0]==="jsonp"||l||m)return f=c.jsonpCallback=p.isFunction(c.jsonpCallback)?c.jsonpCallback():c.jsonpCallback,g=a[f],l?c.url=j.replace(cG,"$1"+f):m?c.data=i.replace(cG,"$1"+f):k&&(c.url+=(cF.test(j)?"&":"?")+c.jsonp+"="+f),c.converters["script json"]=function(){return h||p.error(f+" was not called"),h[0]},c.dataTypes[0]="json",a[f]=function(){h=arguments},e.always(function(){a[f]=g,c[f]&&(c.jsonpCallback=d.jsonpCallback,cE.push(f)),h&&p.isFunction(g)&&g(h[0]),h=g=b}),"script"}),p.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){return p.globalEval(a),a}}}),p.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),p.ajaxTransport("script",function(a){if(a.crossDomain){var c,d=e.head||e.getElementsByTagName("head")[0]||e.documentElement;return{send:function(f,g){c=e.createElement("script"),c.async="async",a.scriptCharset&&(c.charset=a.scriptCharset),c.src=a.url,c.onload=c.onreadystatechange=function(a,e){if(e||!c.readyState||/loaded|complete/.test(c.readyState))c.onload=c.onreadystatechange=null,d&&c.parentNode&&d.removeChild(c),c=b,e||g(200,"success")},d.insertBefore(c,d.firstChild)},abort:function(){c&&c.onload(0,1)}}}});var cI,cJ=a.ActiveXObject?function(){for(var a in cI)cI[a](0,1)}:!1,cK=0;p.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&cL()||cM()}:cL,function(a){p.extend(p.support,{ajax:!!a,cors:!!a&&"withCredentials"in a})}(p.ajaxSettings.xhr()),p.support.ajax&&p.ajaxTransport(function(c){if(!c.crossDomain||p.support.cors){var d;return{send:function(e,f){var g,h,i=c.xhr();c.username?i.open(c.type,c.url,c.async,c.username,c.password):i.open(c.type,c.url,c.async);if(c.xhrFields)for(h in c.xhrFields)i[h]=c.xhrFields[h];c.mimeType&&i.overrideMimeType&&i.overrideMimeType(c.mimeType),!c.crossDomain&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(h in e)i.setRequestHeader(h,e[h])}catch(j){}i.send(c.hasContent&&c.data||null),d=function(a,e){var h,j,k,l,m;try{if(d&&(e||i.readyState===4)){d=b,g&&(i.onreadystatechange=p.noop,cJ&&delete cI[g]);if(e)i.readyState!==4&&i.abort();else{h=i.status,k=i.getAllResponseHeaders(),l={},m=i.responseXML,m&&m.documentElement&&(l.xml=m);try{l.text=i.responseText}catch(a){}try{j=i.statusText}catch(n){j=""}!h&&c.isLocal&&!c.crossDomain?h=l.text?200:404:h===1223&&(h=204)}}}catch(o){e||f(-1,o)}l&&f(h,j,l,k)},c.async?i.readyState===4?setTimeout(d,0):(g=++cK,cJ&&(cI||(cI={},p(a).unload(cJ)),cI[g]=d),i.onreadystatechange=d):d()},abort:function(){d&&d(0,1)}}}});var cN,cO,cP=/^(?:toggle|show|hide)$/,cQ=new RegExp("^(?:([-+])=|)("+q+")([a-z%]*)$","i"),cR=/queueHooks$/,cS=[cY],cT={"*":[function(a,b){var c,d,e=this.createTween(a,b),f=cQ.exec(b),g=e.cur(),h=+g||0,i=1,j=20;if(f){c=+f[2],d=f[3]||(p.cssNumber[a]?"":"px");if(d!=="px"&&h){h=p.css(e.elem,a,!0)||c||1;do i=i||".5",h=h/i,p.style(e.elem,a,h+d);while(i!==(i=e.cur()/g)&&i!==1&&--j)}e.unit=d,e.start=h,e.end=f[1]?h+(f[1]+1)*c:c}return e}]};p.Animation=p.extend(cW,{tweener:function(a,b){p.isFunction(a)?(b=a,a=["*"]):a=a.split(" ");var c,d=0,e=a.length;for(;d<e;d++)c=a[d],cT[c]=cT[c]||[],cT[c].unshift(b)},prefilter:function(a,b){b?cS.unshift(a):cS.push(a)}}),p.Tween=cZ,cZ.prototype={constructor:cZ,init:function(a,b,c,d,e,f){this.elem=a,this.prop=c,this.easing=e||"swing",this.options=b,this.start=this.now=this.cur(),this.end=d,this.unit=f||(p.cssNumber[c]?"":"px")},cur:function(){var a=cZ.propHooks[this.prop];return a&&a.get?a.get(this):cZ.propHooks._default.get(this)},run:function(a){var b,c=cZ.propHooks[this.prop];return this.options.duration?this.pos=b=p.easing[this.easing](a,this.options.duration*a,0,1,this.options.duration):this.pos=b=a,this.now=(this.end-this.start)*b+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),c&&c.set?c.set(this):cZ.propHooks._default.set(this),this}},cZ.prototype.init.prototype=cZ.prototype,cZ.propHooks={_default:{get:function(a){var b;return a.elem[a.prop]==null||!!a.elem.style&&a.elem.style[a.prop]!=null?(b=p.css(a.elem,a.prop,!1,""),!b||b==="auto"?0:b):a.elem[a.prop]},set:function(a){p.fx.step[a.prop]?p.fx.step[a.prop](a):a.elem.style&&(a.elem.style[p.cssProps[a.prop]]!=null||p.cssHooks[a.prop])?p.style(a.elem,a.prop,a.now+a.unit):a.elem[a.prop]=a.now}}},cZ.propHooks.scrollTop=cZ.propHooks.scrollLeft={set:function(a){a.elem.nodeType&&a.elem.parentNode&&(a.elem[a.prop]=a.now)}},p.each(["toggle","show","hide"],function(a,b){var c=p.fn[b];p.fn[b]=function(d,e,f){return d==null||typeof d=="boolean"||!a&&p.isFunction(d)&&p.isFunction(e)?c.apply(this,arguments):this.animate(c$(b,!0),d,e,f)}}),p.fn.extend({fadeTo:function(a,b,c,d){return this.filter(bZ).css("opacity",0).show().end().animate({opacity:b},a,c,d)},animate:function(a,b,c,d){var e=p.isEmptyObject(a),f=p.speed(b,c,d),g=function(){var b=cW(this,p.extend({},a),f);e&&b.stop(!0)};return e||f.queue===!1?this.each(g):this.queue(f.queue,g)},stop:function(a,c,d){var e=function(a){var b=a.stop;delete a.stop,b(d)};return typeof a!="string"&&(d=c,c=a,a=b),c&&a!==!1&&this.queue(a||"fx",[]),this.each(function(){var b=!0,c=a!=null&&a+"queueHooks",f=p.timers,g=p._data(this);if(c)g[c]&&g[c].stop&&e(g[c]);else for(c in g)g[c]&&g[c].stop&&cR.test(c)&&e(g[c]);for(c=f.length;c--;)f[c].elem===this&&(a==null||f[c].queue===a)&&(f[c].anim.stop(d),b=!1,f.splice(c,1));(b||!d)&&p.dequeue(this,a)})}}),p.each({slideDown:c$("show"),slideUp:c$("hide"),slideToggle:c$("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(a,b){p.fn[a]=function(a,c,d){return this.animate(b,a,c,d)}}),p.speed=function(a,b,c){var d=a&&typeof a=="object"?p.extend({},a):{complete:c||!c&&b||p.isFunction(a)&&a,duration:a,easing:c&&b||b&&!p.isFunction(b)&&b};d.duration=p.fx.off?0:typeof d.duration=="number"?d.duration:d.duration in p.fx.speeds?p.fx.speeds[d.duration]:p.fx.speeds._default;if(d.queue==null||d.queue===!0)d.queue="fx";return d.old=d.complete,d.complete=function(){p.isFunction(d.old)&&d.old.call(this),d.queue&&p.dequeue(this,d.queue)},d},p.easing={linear:function(a){return a},swing:function(a){return.5-Math.cos(a*Math.PI)/2}},p.timers=[],p.fx=cZ.prototype.init,p.fx.tick=function(){var a,b=p.timers,c=0;for(;c<b.length;c++)a=b[c],!a()&&b[c]===a&&b.splice(c--,1);b.length||p.fx.stop()},p.fx.timer=function(a){a()&&p.timers.push(a)&&!cO&&(cO=setInterval(p.fx.tick,p.fx.interval))},p.fx.interval=13,p.fx.stop=function(){clearInterval(cO),cO=null},p.fx.speeds={slow:600,fast:200,_default:400},p.fx.step={},p.expr&&p.expr.filters&&(p.expr.filters.animated=function(a){return p.grep(p.timers,function(b){return a===b.elem}).length});var c_=/^(?:body|html)$/i;p.fn.offset=function(a){if(arguments.length)return a===b?this:this.each(function(b){p.offset.setOffset(this,a,b)});var c,d,e,f,g,h,i,j={top:0,left:0},k=this[0],l=k&&k.ownerDocument;if(!l)return;return(d=l.body)===k?p.offset.bodyOffset(k):(c=l.documentElement,p.contains(c,k)?(typeof k.getBoundingClientRect!="undefined"&&(j=k.getBoundingClientRect()),e=da(l),f=c.clientTop||d.clientTop||0,g=c.clientLeft||d.clientLeft||0,h=e.pageYOffset||c.scrollTop,i=e.pageXOffset||c.scrollLeft,{top:j.top+h-f,left:j.left+i-g}):j)},p.offset={bodyOffset:function(a){var b=a.offsetTop,c=a.offsetLeft;return p.support.doesNotIncludeMarginInBodyOffset&&(b+=parseFloat(p.css(a,"marginTop"))||0,c+=parseFloat(p.css(a,"marginLeft"))||0),{top:b,left:c}},setOffset:function(a,b,c){var d=p.css(a,"position");d==="static"&&(a.style.position="relative");var e=p(a),f=e.offset(),g=p.css(a,"top"),h=p.css(a,"left"),i=(d==="absolute"||d==="fixed")&&p.inArray("auto",[g,h])>-1,j={},k={},l,m;i?(k=e.position(),l=k.top,m=k.left):(l=parseFloat(g)||0,m=parseFloat(h)||0),p.isFunction(b)&&(b=b.call(a,c,f)),b.top!=null&&(j.top=b.top-f.top+l),b.left!=null&&(j.left=b.left-f.left+m),"using"in b?b.using.call(a,j):e.css(j)}},p.fn.extend({position:function(){if(!this[0])return;var a=this[0],b=this.offsetParent(),c=this.offset(),d=c_.test(b[0].nodeName)?{top:0,left:0}:b.offset();return c.top-=parseFloat(p.css(a,"marginTop"))||0,c.left-=parseFloat(p.css(a,"marginLeft"))||0,d.top+=parseFloat(p.css(b[0],"borderTopWidth"))||0,d.left+=parseFloat(p.css(b[0],"borderLeftWidth"))||0,{top:c.top-d.top,left:c.left-d.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||e.body;while(a&&!c_.test(a.nodeName)&&p.css(a,"position")==="static")a=a.offsetParent;return a||e.body})}}),p.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(a,c){var d=/Y/.test(c);p.fn[a]=function(e){return p.access(this,function(a,e,f){var g=da(a);if(f===b)return g?c in g?g[c]:g.document.documentElement[e]:a[e];g?g.scrollTo(d?p(g).scrollLeft():f,d?f:p(g).scrollTop()):a[e]=f},a,e,arguments.length,null)}}),p.each({Height:"height",Width:"width"},function(a,c){p.each({padding:"inner"+a,content:c,"":"outer"+a},function(d,e){p.fn[e]=function(e,f){var g=arguments.length&&(d||typeof e!="boolean"),h=d||(e===!0||f===!0?"margin":"border");return p.access(this,function(c,d,e){var f;return p.isWindow(c)?c.document.documentElement["client"+a]:c.nodeType===9?(f=c.documentElement,Math.max(c.body["scroll"+a],f["scroll"+a],c.body["offset"+a],f["offset"+a],f["client"+a])):e===b?p.css(c,d,e,h):p.style(c,d,e,h)},c,g?e:b,g,null)}})}),a.jQuery=a.$=p,typeof define=="function"&&define.amd&&define.amd.jQuery&&define("jquery",[],function(){return p})})(window); \ No newline at end of file +(function(a,b){function G(a){var b=F[a]={};return p.each(a.split(s),function(a,c){b[c]=!0}),b}function J(a,c,d){if(d===b&&a.nodeType===1){var e="data-"+c.replace(I,"-$1").toLowerCase();d=a.getAttribute(e);if(typeof d=="string"){try{d=d==="true"?!0:d==="false"?!1:d==="null"?null:+d+""===d?+d:H.test(d)?p.parseJSON(d):d}catch(f){}p.data(a,c,d)}else d=b}return d}function K(a){var b;for(b in a){if(b==="data"&&p.isEmptyObject(a[b]))continue;if(b!=="toJSON")return!1}return!0}function ba(){return!1}function bb(){return!0}function bh(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function bi(a,b){do a=a[b];while(a&&a.nodeType!==1);return a}function bj(a,b,c){b=b||0;if(p.isFunction(b))return p.grep(a,function(a,d){var e=!!b.call(a,d,a);return e===c});if(b.nodeType)return p.grep(a,function(a,d){return a===b===c});if(typeof b=="string"){var d=p.grep(a,function(a){return a.nodeType===1});if(be.test(b))return p.filter(b,d,!c);b=p.filter(b,d)}return p.grep(a,function(a,d){return p.inArray(a,b)>=0===c})}function bk(a){var b=bl.split("|"),c=a.createDocumentFragment();if(c.createElement)while(b.length)c.createElement(b.pop());return c}function bC(a,b){return a.getElementsByTagName(b)[0]||a.appendChild(a.ownerDocument.createElement(b))}function bD(a,b){if(b.nodeType!==1||!p.hasData(a))return;var c,d,e,f=p._data(a),g=p._data(b,f),h=f.events;if(h){delete g.handle,g.events={};for(c in h)for(d=0,e=h[c].length;d<e;d++)p.event.add(b,c,h[c][d])}g.data&&(g.data=p.extend({},g.data))}function bE(a,b){var c;if(b.nodeType!==1)return;b.clearAttributes&&b.clearAttributes(),b.mergeAttributes&&b.mergeAttributes(a),c=b.nodeName.toLowerCase(),c==="object"?(b.parentNode&&(b.outerHTML=a.outerHTML),p.support.html5Clone&&a.innerHTML&&!p.trim(b.innerHTML)&&(b.innerHTML=a.innerHTML)):c==="input"&&bv.test(a.type)?(b.defaultChecked=b.checked=a.checked,b.value!==a.value&&(b.value=a.value)):c==="option"?b.selected=a.defaultSelected:c==="input"||c==="textarea"?b.defaultValue=a.defaultValue:c==="script"&&b.text!==a.text&&(b.text=a.text),b.removeAttribute(p.expando)}function bF(a){return typeof a.getElementsByTagName!="undefined"?a.getElementsByTagName("*"):typeof a.querySelectorAll!="undefined"?a.querySelectorAll("*"):[]}function bG(a){bv.test(a.type)&&(a.defaultChecked=a.checked)}function bY(a,b){if(b in a)return b;var c=b.charAt(0).toUpperCase()+b.slice(1),d=b,e=bW.length;while(e--){b=bW[e]+c;if(b in a)return b}return d}function bZ(a,b){return a=b||a,p.css(a,"display")==="none"||!p.contains(a.ownerDocument,a)}function b$(a,b){var c,d,e=[],f=0,g=a.length;for(;f<g;f++){c=a[f];if(!c.style)continue;e[f]=p._data(c,"olddisplay"),b?(!e[f]&&c.style.display==="none"&&(c.style.display=""),c.style.display===""&&bZ(c)&&(e[f]=p._data(c,"olddisplay",cc(c.nodeName)))):(d=bH(c,"display"),!e[f]&&d!=="none"&&p._data(c,"olddisplay",d))}for(f=0;f<g;f++){c=a[f];if(!c.style)continue;if(!b||c.style.display==="none"||c.style.display==="")c.style.display=b?e[f]||"":"none"}return a}function b_(a,b,c){var d=bP.exec(b);return d?Math.max(0,d[1]-(c||0))+(d[2]||"px"):b}function ca(a,b,c,d){var e=c===(d?"border":"content")?4:b==="width"?1:0,f=0;for(;e<4;e+=2)c==="margin"&&(f+=p.css(a,c+bV[e],!0)),d?(c==="content"&&(f-=parseFloat(bH(a,"padding"+bV[e]))||0),c!=="margin"&&(f-=parseFloat(bH(a,"border"+bV[e]+"Width"))||0)):(f+=parseFloat(bH(a,"padding"+bV[e]))||0,c!=="padding"&&(f+=parseFloat(bH(a,"border"+bV[e]+"Width"))||0));return f}function cb(a,b,c){var d=b==="width"?a.offsetWidth:a.offsetHeight,e=!0,f=p.support.boxSizing&&p.css(a,"boxSizing")==="border-box";if(d<=0||d==null){d=bH(a,b);if(d<0||d==null)d=a.style[b];if(bQ.test(d))return d;e=f&&(p.support.boxSizingReliable||d===a.style[b]),d=parseFloat(d)||0}return d+ca(a,b,c||(f?"border":"content"),e)+"px"}function cc(a){if(bS[a])return bS[a];var b=p("<"+a+">").appendTo(e.body),c=b.css("display");b.remove();if(c==="none"||c===""){bI=e.body.appendChild(bI||p.extend(e.createElement("iframe"),{frameBorder:0,width:0,height:0}));if(!bJ||!bI.createElement)bJ=(bI.contentWindow||bI.contentDocument).document,bJ.write("<!doctype html><html><body>"),bJ.close();b=bJ.body.appendChild(bJ.createElement(a)),c=bH(b,"display"),e.body.removeChild(bI)}return bS[a]=c,c}function ci(a,b,c,d){var e;if(p.isArray(b))p.each(b,function(b,e){c||ce.test(a)?d(a,e):ci(a+"["+(typeof e=="object"?b:"")+"]",e,c,d)});else if(!c&&p.type(b)==="object")for(e in b)ci(a+"["+e+"]",b[e],c,d);else d(a,b)}function cz(a){return function(b,c){typeof b!="string"&&(c=b,b="*");var d,e,f,g=b.toLowerCase().split(s),h=0,i=g.length;if(p.isFunction(c))for(;h<i;h++)d=g[h],f=/^\+/.test(d),f&&(d=d.substr(1)||"*"),e=a[d]=a[d]||[],e[f?"unshift":"push"](c)}}function cA(a,c,d,e,f,g){f=f||c.dataTypes[0],g=g||{},g[f]=!0;var h,i=a[f],j=0,k=i?i.length:0,l=a===cv;for(;j<k&&(l||!h);j++)h=i[j](c,d,e),typeof h=="string"&&(!l||g[h]?h=b:(c.dataTypes.unshift(h),h=cA(a,c,d,e,h,g)));return(l||!h)&&!g["*"]&&(h=cA(a,c,d,e,"*",g)),h}function cB(a,c){var d,e,f=p.ajaxSettings.flatOptions||{};for(d in c)c[d]!==b&&((f[d]?a:e||(e={}))[d]=c[d]);e&&p.extend(!0,a,e)}function cC(a,c,d){var e,f,g,h,i=a.contents,j=a.dataTypes,k=a.responseFields;for(f in k)f in d&&(c[k[f]]=d[f]);while(j[0]==="*")j.shift(),e===b&&(e=a.mimeType||c.getResponseHeader("content-type"));if(e)for(f in i)if(i[f]&&i[f].test(e)){j.unshift(f);break}if(j[0]in d)g=j[0];else{for(f in d){if(!j[0]||a.converters[f+" "+j[0]]){g=f;break}h||(h=f)}g=g||h}if(g)return g!==j[0]&&j.unshift(g),d[g]}function cD(a,b){var c,d,e,f,g=a.dataTypes.slice(),h=g[0],i={},j=0;a.dataFilter&&(b=a.dataFilter(b,a.dataType));if(g[1])for(c in a.converters)i[c.toLowerCase()]=a.converters[c];for(;e=g[++j];)if(e!=="*"){if(h!=="*"&&h!==e){c=i[h+" "+e]||i["* "+e];if(!c)for(d in i){f=d.split(" ");if(f[1]===e){c=i[h+" "+f[0]]||i["* "+f[0]];if(c){c===!0?c=i[d]:i[d]!==!0&&(e=f[0],g.splice(j--,0,e));break}}}if(c!==!0)if(c&&a["throws"])b=c(b);else try{b=c(b)}catch(k){return{state:"parsererror",error:c?k:"No conversion from "+h+" to "+e}}}h=e}return{state:"success",data:b}}function cL(){try{return new a.XMLHttpRequest}catch(b){}}function cM(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function cU(){return setTimeout(function(){cN=b},0),cN=p.now()}function cV(a,b){p.each(b,function(b,c){var d=(cT[b]||[]).concat(cT["*"]),e=0,f=d.length;for(;e<f;e++)if(d[e].call(a,b,c))return})}function cW(a,b,c){var d,e=0,f=0,g=cS.length,h=p.Deferred().always(function(){delete i.elem}),i=function(){var b=cN||cU(),c=Math.max(0,j.startTime+j.duration-b),d=1-(c/j.duration||0),e=0,f=j.tweens.length;for(;e<f;e++)j.tweens[e].run(d);return h.notifyWith(a,[j,d,c]),d<1&&f?c:(h.resolveWith(a,[j]),!1)},j=h.promise({elem:a,props:p.extend({},b),opts:p.extend(!0,{specialEasing:{}},c),originalProperties:b,originalOptions:c,startTime:cN||cU(),duration:c.duration,tweens:[],createTween:function(b,c,d){var e=p.Tween(a,j.opts,b,c,j.opts.specialEasing[b]||j.opts.easing);return j.tweens.push(e),e},stop:function(b){var c=0,d=b?j.tweens.length:0;for(;c<d;c++)j.tweens[c].run(1);return b?h.resolveWith(a,[j,b]):h.rejectWith(a,[j,b]),this}}),k=j.props;cX(k,j.opts.specialEasing);for(;e<g;e++){d=cS[e].call(j,a,k,j.opts);if(d)return d}return cV(j,k),p.isFunction(j.opts.start)&&j.opts.start.call(a,j),p.fx.timer(p.extend(i,{anim:j,queue:j.opts.queue,elem:a})),j.progress(j.opts.progress).done(j.opts.done,j.opts.complete).fail(j.opts.fail).always(j.opts.always)}function cX(a,b){var c,d,e,f,g;for(c in a){d=p.camelCase(c),e=b[d],f=a[c],p.isArray(f)&&(e=f[1],f=a[c]=f[0]),c!==d&&(a[d]=f,delete a[c]),g=p.cssHooks[d];if(g&&"expand"in g){f=g.expand(f),delete a[d];for(c in f)c in a||(a[c]=f[c],b[c]=e)}else b[d]=e}}function cY(a,b,c){var d,e,f,g,h,i,j,k,l=this,m=a.style,n={},o=[],q=a.nodeType&&bZ(a);c.queue||(j=p._queueHooks(a,"fx"),j.unqueued==null&&(j.unqueued=0,k=j.empty.fire,j.empty.fire=function(){j.unqueued||k()}),j.unqueued++,l.always(function(){l.always(function(){j.unqueued--,p.queue(a,"fx").length||j.empty.fire()})})),a.nodeType===1&&("height"in b||"width"in b)&&(c.overflow=[m.overflow,m.overflowX,m.overflowY],p.css(a,"display")==="inline"&&p.css(a,"float")==="none"&&(!p.support.inlineBlockNeedsLayout||cc(a.nodeName)==="inline"?m.display="inline-block":m.zoom=1)),c.overflow&&(m.overflow="hidden",p.support.shrinkWrapBlocks||l.done(function(){m.overflow=c.overflow[0],m.overflowX=c.overflow[1],m.overflowY=c.overflow[2]}));for(d in b){f=b[d];if(cP.exec(f)){delete b[d];if(f===(q?"hide":"show"))continue;o.push(d)}}g=o.length;if(g){h=p._data(a,"fxshow")||p._data(a,"fxshow",{}),q?p(a).show():l.done(function(){p(a).hide()}),l.done(function(){var b;p.removeData(a,"fxshow",!0);for(b in n)p.style(a,b,n[b])});for(d=0;d<g;d++)e=o[d],i=l.createTween(e,q?h[e]:0),n[e]=h[e]||p.style(a,e),e in h||(h[e]=i.start,q&&(i.end=i.start,i.start=e==="width"||e==="height"?1:0))}}function cZ(a,b,c,d,e){return new cZ.prototype.init(a,b,c,d,e)}function c$(a,b){var c,d={height:a},e=0;b=b?1:0;for(;e<4;e+=2-b)c=bV[e],d["margin"+c]=d["padding"+c]=a;return b&&(d.opacity=d.width=a),d}function da(a){return p.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}var c,d,e=a.document,f=a.location,g=a.navigator,h=a.jQuery,i=a.$,j=Array.prototype.push,k=Array.prototype.slice,l=Array.prototype.indexOf,m=Object.prototype.toString,n=Object.prototype.hasOwnProperty,o=String.prototype.trim,p=function(a,b){return new p.fn.init(a,b,c)},q=/[\-+]?(?:\d*\.|)\d+(?:[eE][\-+]?\d+|)/.source,r=/\S/,s=/\s+/,t=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,u=/^(?:[^#<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/,v=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,w=/^[\],:{}\s]*$/,x=/(?:^|:|,)(?:\s*\[)+/g,y=/\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g,z=/"[^"\\\r\n]*"|true|false|null|-?(?:\d\d*\.|)\d+(?:[eE][\-+]?\d+|)/g,A=/^-ms-/,B=/-([\da-z])/gi,C=function(a,b){return(b+"").toUpperCase()},D=function(){e.addEventListener?(e.removeEventListener("DOMContentLoaded",D,!1),p.ready()):e.readyState==="complete"&&(e.detachEvent("onreadystatechange",D),p.ready())},E={};p.fn=p.prototype={constructor:p,init:function(a,c,d){var f,g,h,i;if(!a)return this;if(a.nodeType)return this.context=this[0]=a,this.length=1,this;if(typeof a=="string"){a.charAt(0)==="<"&&a.charAt(a.length-1)===">"&&a.length>=3?f=[null,a,null]:f=u.exec(a);if(f&&(f[1]||!c)){if(f[1])return c=c instanceof p?c[0]:c,i=c&&c.nodeType?c.ownerDocument||c:e,a=p.parseHTML(f[1],i,!0),v.test(f[1])&&p.isPlainObject(c)&&this.attr.call(a,c,!0),p.merge(this,a);g=e.getElementById(f[2]);if(g&&g.parentNode){if(g.id!==f[2])return d.find(a);this.length=1,this[0]=g}return this.context=e,this.selector=a,this}return!c||c.jquery?(c||d).find(a):this.constructor(c).find(a)}return p.isFunction(a)?d.ready(a):(a.selector!==b&&(this.selector=a.selector,this.context=a.context),p.makeArray(a,this))},selector:"",jquery:"1.8.2",length:0,size:function(){return this.length},toArray:function(){return k.call(this)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var d=p.merge(this.constructor(),a);return d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?" ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")"),d},each:function(a,b){return p.each(this,a,b)},ready:function(a){return p.ready.promise().done(a),this},eq:function(a){return a=+a,a===-1?this.slice(a):this.slice(a,a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(k.apply(this,arguments),"slice",k.call(arguments).join(","))},map:function(a){return this.pushStack(p.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:j,sort:[].sort,splice:[].splice},p.fn.init.prototype=p.fn,p.extend=p.fn.extend=function(){var a,c,d,e,f,g,h=arguments[0]||{},i=1,j=arguments.length,k=!1;typeof h=="boolean"&&(k=h,h=arguments[1]||{},i=2),typeof h!="object"&&!p.isFunction(h)&&(h={}),j===i&&(h=this,--i);for(;i<j;i++)if((a=arguments[i])!=null)for(c in a){d=h[c],e=a[c];if(h===e)continue;k&&e&&(p.isPlainObject(e)||(f=p.isArray(e)))?(f?(f=!1,g=d&&p.isArray(d)?d:[]):g=d&&p.isPlainObject(d)?d:{},h[c]=p.extend(k,g,e)):e!==b&&(h[c]=e)}return h},p.extend({noConflict:function(b){return a.$===p&&(a.$=i),b&&a.jQuery===p&&(a.jQuery=h),p},isReady:!1,readyWait:1,holdReady:function(a){a?p.readyWait++:p.ready(!0)},ready:function(a){if(a===!0?--p.readyWait:p.isReady)return;if(!e.body)return setTimeout(p.ready,1);p.isReady=!0;if(a!==!0&&--p.readyWait>0)return;d.resolveWith(e,[p]),p.fn.trigger&&p(e).trigger("ready").off("ready")},isFunction:function(a){return p.type(a)==="function"},isArray:Array.isArray||function(a){return p.type(a)==="array"},isWindow:function(a){return a!=null&&a==a.window},isNumeric:function(a){return!isNaN(parseFloat(a))&&isFinite(a)},type:function(a){return a==null?String(a):E[m.call(a)]||"object"},isPlainObject:function(a){if(!a||p.type(a)!=="object"||a.nodeType||p.isWindow(a))return!1;try{if(a.constructor&&!n.call(a,"constructor")&&!n.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}var d;for(d in a);return d===b||n.call(a,d)},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},error:function(a){throw new Error(a)},parseHTML:function(a,b,c){var d;return!a||typeof a!="string"?null:(typeof b=="boolean"&&(c=b,b=0),b=b||e,(d=v.exec(a))?[b.createElement(d[1])]:(d=p.buildFragment([a],b,c?null:[]),p.merge([],(d.cacheable?p.clone(d.fragment):d.fragment).childNodes)))},parseJSON:function(b){if(!b||typeof b!="string")return null;b=p.trim(b);if(a.JSON&&a.JSON.parse)return a.JSON.parse(b);if(w.test(b.replace(y,"@").replace(z,"]").replace(x,"")))return(new Function("return "+b))();p.error("Invalid JSON: "+b)},parseXML:function(c){var d,e;if(!c||typeof c!="string")return null;try{a.DOMParser?(e=new DOMParser,d=e.parseFromString(c,"text/xml")):(d=new ActiveXObject("Microsoft.XMLDOM"),d.async="false",d.loadXML(c))}catch(f){d=b}return(!d||!d.documentElement||d.getElementsByTagName("parsererror").length)&&p.error("Invalid XML: "+c),d},noop:function(){},globalEval:function(b){b&&r.test(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(A,"ms-").replace(B,C)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,c,d){var e,f=0,g=a.length,h=g===b||p.isFunction(a);if(d){if(h){for(e in a)if(c.apply(a[e],d)===!1)break}else for(;f<g;)if(c.apply(a[f++],d)===!1)break}else if(h){for(e in a)if(c.call(a[e],e,a[e])===!1)break}else for(;f<g;)if(c.call(a[f],f,a[f++])===!1)break;return a},trim:o&&!o.call(" ")?function(a){return a==null?"":o.call(a)}:function(a){return a==null?"":(a+"").replace(t,"")},makeArray:function(a,b){var c,d=b||[];return a!=null&&(c=p.type(a),a.length==null||c==="string"||c==="function"||c==="regexp"||p.isWindow(a)?j.call(d,a):p.merge(d,a)),d},inArray:function(a,b,c){var d;if(b){if(l)return l.call(b,a,c);d=b.length,c=c?c<0?Math.max(0,d+c):c:0;for(;c<d;c++)if(c in b&&b[c]===a)return c}return-1},merge:function(a,c){var d=c.length,e=a.length,f=0;if(typeof d=="number")for(;f<d;f++)a[e++]=c[f];else while(c[f]!==b)a[e++]=c[f++];return a.length=e,a},grep:function(a,b,c){var d,e=[],f=0,g=a.length;c=!!c;for(;f<g;f++)d=!!b(a[f],f),c!==d&&e.push(a[f]);return e},map:function(a,c,d){var e,f,g=[],h=0,i=a.length,j=a instanceof p||i!==b&&typeof i=="number"&&(i>0&&a[0]&&a[i-1]||i===0||p.isArray(a));if(j)for(;h<i;h++)e=c(a[h],h,d),e!=null&&(g[g.length]=e);else for(f in a)e=c(a[f],f,d),e!=null&&(g[g.length]=e);return g.concat.apply([],g)},guid:1,proxy:function(a,c){var d,e,f;return typeof c=="string"&&(d=a[c],c=a,a=d),p.isFunction(a)?(e=k.call(arguments,2),f=function(){return a.apply(c,e.concat(k.call(arguments)))},f.guid=a.guid=a.guid||p.guid++,f):b},access:function(a,c,d,e,f,g,h){var i,j=d==null,k=0,l=a.length;if(d&&typeof d=="object"){for(k in d)p.access(a,c,k,d[k],1,g,e);f=1}else if(e!==b){i=h===b&&p.isFunction(e),j&&(i?(i=c,c=function(a,b,c){return i.call(p(a),c)}):(c.call(a,e),c=null));if(c)for(;k<l;k++)c(a[k],d,i?e.call(a[k],k,c(a[k],d)):e,h);f=1}return f?a:j?c.call(a):l?c(a[0],d):g},now:function(){return(new Date).getTime()}}),p.ready.promise=function(b){if(!d){d=p.Deferred();if(e.readyState==="complete")setTimeout(p.ready,1);else if(e.addEventListener)e.addEventListener("DOMContentLoaded",D,!1),a.addEventListener("load",p.ready,!1);else{e.attachEvent("onreadystatechange",D),a.attachEvent("onload",p.ready);var c=!1;try{c=a.frameElement==null&&e.documentElement}catch(f){}c&&c.doScroll&&function g(){if(!p.isReady){try{c.doScroll("left")}catch(a){return setTimeout(g,50)}p.ready()}}()}}return d.promise(b)},p.each("Boolean Number String Function Array Date RegExp Object".split(" "),function(a,b){E["[object "+b+"]"]=b.toLowerCase()}),c=p(e);var F={};p.Callbacks=function(a){a=typeof a=="string"?F[a]||G(a):p.extend({},a);var c,d,e,f,g,h,i=[],j=!a.once&&[],k=function(b){c=a.memory&&b,d=!0,h=f||0,f=0,g=i.length,e=!0;for(;i&&h<g;h++)if(i[h].apply(b[0],b[1])===!1&&a.stopOnFalse){c=!1;break}e=!1,i&&(j?j.length&&k(j.shift()):c?i=[]:l.disable())},l={add:function(){if(i){var b=i.length;(function d(b){p.each(b,function(b,c){var e=p.type(c);e==="function"&&(!a.unique||!l.has(c))?i.push(c):c&&c.length&&e!=="string"&&d(c)})})(arguments),e?g=i.length:c&&(f=b,k(c))}return this},remove:function(){return i&&p.each(arguments,function(a,b){var c;while((c=p.inArray(b,i,c))>-1)i.splice(c,1),e&&(c<=g&&g--,c<=h&&h--)}),this},has:function(a){return p.inArray(a,i)>-1},empty:function(){return i=[],this},disable:function(){return i=j=c=b,this},disabled:function(){return!i},lock:function(){return j=b,c||l.disable(),this},locked:function(){return!j},fireWith:function(a,b){return b=b||[],b=[a,b.slice?b.slice():b],i&&(!d||j)&&(e?j.push(b):k(b)),this},fire:function(){return l.fireWith(this,arguments),this},fired:function(){return!!d}};return l},p.extend({Deferred:function(a){var b=[["resolve","done",p.Callbacks("once memory"),"resolved"],["reject","fail",p.Callbacks("once memory"),"rejected"],["notify","progress",p.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return p.Deferred(function(c){p.each(b,function(b,d){var f=d[0],g=a[b];e[d[1]](p.isFunction(g)?function(){var a=g.apply(this,arguments);a&&p.isFunction(a.promise)?a.promise().done(c.resolve).fail(c.reject).progress(c.notify):c[f+"With"](this===e?c:this,[a])}:c[f])}),a=null}).promise()},promise:function(a){return a!=null?p.extend(a,d):d}},e={};return d.pipe=d.then,p.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[a^1][2].disable,b[2][2].lock),e[f[0]]=g.fire,e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=k.call(arguments),d=c.length,e=d!==1||a&&p.isFunction(a.promise)?d:0,f=e===1?a:p.Deferred(),g=function(a,b,c){return function(d){b[a]=this,c[a]=arguments.length>1?k.call(arguments):d,c===h?f.notifyWith(b,c):--e||f.resolveWith(b,c)}},h,i,j;if(d>1){h=new Array(d),i=new Array(d),j=new Array(d);for(;b<d;b++)c[b]&&p.isFunction(c[b].promise)?c[b].promise().done(g(b,j,c)).fail(f.reject).progress(g(b,i,h)):--e}return e||f.resolveWith(j,c),f.promise()}}),p.support=function(){var b,c,d,f,g,h,i,j,k,l,m,n=e.createElement("div");n.setAttribute("className","t"),n.innerHTML=" <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",c=n.getElementsByTagName("*"),d=n.getElementsByTagName("a")[0],d.style.cssText="top:1px;float:left;opacity:.5";if(!c||!c.length)return{};f=e.createElement("select"),g=f.appendChild(e.createElement("option")),h=n.getElementsByTagName("input")[0],b={leadingWhitespace:n.firstChild.nodeType===3,tbody:!n.getElementsByTagName("tbody").length,htmlSerialize:!!n.getElementsByTagName("link").length,style:/top/.test(d.getAttribute("style")),hrefNormalized:d.getAttribute("href")==="/a",opacity:/^0.5/.test(d.style.opacity),cssFloat:!!d.style.cssFloat,checkOn:h.value==="on",optSelected:g.selected,getSetAttribute:n.className!=="t",enctype:!!e.createElement("form").enctype,html5Clone:e.createElement("nav").cloneNode(!0).outerHTML!=="<:nav></:nav>",boxModel:e.compatMode==="CSS1Compat",submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0,boxSizingReliable:!0,pixelPosition:!1},h.checked=!0,b.noCloneChecked=h.cloneNode(!0).checked,f.disabled=!0,b.optDisabled=!g.disabled;try{delete n.test}catch(o){b.deleteExpando=!1}!n.addEventListener&&n.attachEvent&&n.fireEvent&&(n.attachEvent("onclick",m=function(){b.noCloneEvent=!1}),n.cloneNode(!0).fireEvent("onclick"),n.detachEvent("onclick",m)),h=e.createElement("input"),h.value="t",h.setAttribute("type","radio"),b.radioValue=h.value==="t",h.setAttribute("checked","checked"),h.setAttribute("name","t"),n.appendChild(h),i=e.createDocumentFragment(),i.appendChild(n.lastChild),b.checkClone=i.cloneNode(!0).cloneNode(!0).lastChild.checked,b.appendChecked=h.checked,i.removeChild(h),i.appendChild(n);if(n.attachEvent)for(k in{submit:!0,change:!0,focusin:!0})j="on"+k,l=j in n,l||(n.setAttribute(j,"return;"),l=typeof n[j]=="function"),b[k+"Bubbles"]=l;return p(function(){var c,d,f,g,h="padding:0;margin:0;border:0;display:block;overflow:hidden;",i=e.getElementsByTagName("body")[0];if(!i)return;c=e.createElement("div"),c.style.cssText="visibility:hidden;border:0;width:0;height:0;position:static;top:0;margin-top:1px",i.insertBefore(c,i.firstChild),d=e.createElement("div"),c.appendChild(d),d.innerHTML="<table><tr><td></td><td>t</td></tr></table>",f=d.getElementsByTagName("td"),f[0].style.cssText="padding:0;margin:0;border:0;display:none",l=f[0].offsetHeight===0,f[0].style.display="",f[1].style.display="none",b.reliableHiddenOffsets=l&&f[0].offsetHeight===0,d.innerHTML="",d.style.cssText="box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%;",b.boxSizing=d.offsetWidth===4,b.doesNotIncludeMarginInBodyOffset=i.offsetTop!==1,a.getComputedStyle&&(b.pixelPosition=(a.getComputedStyle(d,null)||{}).top!=="1%",b.boxSizingReliable=(a.getComputedStyle(d,null)||{width:"4px"}).width==="4px",g=e.createElement("div"),g.style.cssText=d.style.cssText=h,g.style.marginRight=g.style.width="0",d.style.width="1px",d.appendChild(g),b.reliableMarginRight=!parseFloat((a.getComputedStyle(g,null)||{}).marginRight)),typeof d.style.zoom!="undefined"&&(d.innerHTML="",d.style.cssText=h+"width:1px;padding:1px;display:inline;zoom:1",b.inlineBlockNeedsLayout=d.offsetWidth===3,d.style.display="block",d.style.overflow="visible",d.innerHTML="<div></div>",d.firstChild.style.width="5px",b.shrinkWrapBlocks=d.offsetWidth!==3,c.style.zoom=1),i.removeChild(c),c=d=f=g=null}),i.removeChild(n),c=d=f=g=h=i=n=null,b}();var H=/(?:\{[\s\S]*\}|\[[\s\S]*\])$/,I=/([A-Z])/g;p.extend({cache:{},deletedIds:[],uuid:0,expando:"jQuery"+(p.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){return a=a.nodeType?p.cache[a[p.expando]]:a[p.expando],!!a&&!K(a)},data:function(a,c,d,e){if(!p.acceptData(a))return;var f,g,h=p.expando,i=typeof c=="string",j=a.nodeType,k=j?p.cache:a,l=j?a[h]:a[h]&&h;if((!l||!k[l]||!e&&!k[l].data)&&i&&d===b)return;l||(j?a[h]=l=p.deletedIds.pop()||p.guid++:l=h),k[l]||(k[l]={},j||(k[l].toJSON=p.noop));if(typeof c=="object"||typeof c=="function")e?k[l]=p.extend(k[l],c):k[l].data=p.extend(k[l].data,c);return f=k[l],e||(f.data||(f.data={}),f=f.data),d!==b&&(f[p.camelCase(c)]=d),i?(g=f[c],g==null&&(g=f[p.camelCase(c)])):g=f,g},removeData:function(a,b,c){if(!p.acceptData(a))return;var d,e,f,g=a.nodeType,h=g?p.cache:a,i=g?a[p.expando]:p.expando;if(!h[i])return;if(b){d=c?h[i]:h[i].data;if(d){p.isArray(b)||(b in d?b=[b]:(b=p.camelCase(b),b in d?b=[b]:b=b.split(" ")));for(e=0,f=b.length;e<f;e++)delete d[b[e]];if(!(c?K:p.isEmptyObject)(d))return}}if(!c){delete h[i].data;if(!K(h[i]))return}g?p.cleanData([a],!0):p.support.deleteExpando||h!=h.window?delete h[i]:h[i]=null},_data:function(a,b,c){return p.data(a,b,c,!0)},acceptData:function(a){var b=a.nodeName&&p.noData[a.nodeName.toLowerCase()];return!b||b!==!0&&a.getAttribute("classid")===b}}),p.fn.extend({data:function(a,c){var d,e,f,g,h,i=this[0],j=0,k=null;if(a===b){if(this.length){k=p.data(i);if(i.nodeType===1&&!p._data(i,"parsedAttrs")){f=i.attributes;for(h=f.length;j<h;j++)g=f[j].name,g.indexOf("data-")||(g=p.camelCase(g.substring(5)),J(i,g,k[g]));p._data(i,"parsedAttrs",!0)}}return k}return typeof a=="object"?this.each(function(){p.data(this,a)}):(d=a.split(".",2),d[1]=d[1]?"."+d[1]:"",e=d[1]+"!",p.access(this,function(c){if(c===b)return k=this.triggerHandler("getData"+e,[d[0]]),k===b&&i&&(k=p.data(i,a),k=J(i,a,k)),k===b&&d[1]?this.data(d[0]):k;d[1]=c,this.each(function(){var b=p(this);b.triggerHandler("setData"+e,d),p.data(this,a,c),b.triggerHandler("changeData"+e,d)})},null,c,arguments.length>1,null,!1))},removeData:function(a){return this.each(function(){p.removeData(this,a)})}}),p.extend({queue:function(a,b,c){var d;if(a)return b=(b||"fx")+"queue",d=p._data(a,b),c&&(!d||p.isArray(c)?d=p._data(a,b,p.makeArray(c)):d.push(c)),d||[]},dequeue:function(a,b){b=b||"fx";var c=p.queue(a,b),d=c.length,e=c.shift(),f=p._queueHooks(a,b),g=function(){p.dequeue(a,b)};e==="inprogress"&&(e=c.shift(),d--),e&&(b==="fx"&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return p._data(a,c)||p._data(a,c,{empty:p.Callbacks("once memory").add(function(){p.removeData(a,b+"queue",!0),p.removeData(a,c,!0)})})}}),p.fn.extend({queue:function(a,c){var d=2;return typeof a!="string"&&(c=a,a="fx",d--),arguments.length<d?p.queue(this[0],a):c===b?this:this.each(function(){var b=p.queue(this,a,c);p._queueHooks(this,a),a==="fx"&&b[0]!=="inprogress"&&p.dequeue(this,a)})},dequeue:function(a){return this.each(function(){p.dequeue(this,a)})},delay:function(a,b){return a=p.fx?p.fx.speeds[a]||a:a,b=b||"fx",this.queue(b,function(b,c){var d=setTimeout(b,a);c.stop=function(){clearTimeout(d)}})},clearQueue:function(a){return this.queue(a||"fx",[])},promise:function(a,c){var d,e=1,f=p.Deferred(),g=this,h=this.length,i=function(){--e||f.resolveWith(g,[g])};typeof a!="string"&&(c=a,a=b),a=a||"fx";while(h--)d=p._data(g[h],a+"queueHooks"),d&&d.empty&&(e++,d.empty.add(i));return i(),f.promise(c)}});var L,M,N,O=/[\t\r\n]/g,P=/\r/g,Q=/^(?:button|input)$/i,R=/^(?:button|input|object|select|textarea)$/i,S=/^a(?:rea|)$/i,T=/^(?:autofocus|autoplay|async|checked|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped|selected)$/i,U=p.support.getSetAttribute;p.fn.extend({attr:function(a,b){return p.access(this,p.attr,a,b,arguments.length>1)},removeAttr:function(a){return this.each(function(){p.removeAttr(this,a)})},prop:function(a,b){return p.access(this,p.prop,a,b,arguments.length>1)},removeProp:function(a){return a=p.propFix[a]||a,this.each(function(){try{this[a]=b,delete this[a]}catch(c){}})},addClass:function(a){var b,c,d,e,f,g,h;if(p.isFunction(a))return this.each(function(b){p(this).addClass(a.call(this,b,this.className))});if(a&&typeof a=="string"){b=a.split(s);for(c=0,d=this.length;c<d;c++){e=this[c];if(e.nodeType===1)if(!e.className&&b.length===1)e.className=a;else{f=" "+e.className+" ";for(g=0,h=b.length;g<h;g++)f.indexOf(" "+b[g]+" ")<0&&(f+=b[g]+" ");e.className=p.trim(f)}}}return this},removeClass:function(a){var c,d,e,f,g,h,i;if(p.isFunction(a))return this.each(function(b){p(this).removeClass(a.call(this,b,this.className))});if(a&&typeof a=="string"||a===b){c=(a||"").split(s);for(h=0,i=this.length;h<i;h++){e=this[h];if(e.nodeType===1&&e.className){d=(" "+e.className+" ").replace(O," ");for(f=0,g=c.length;f<g;f++)while(d.indexOf(" "+c[f]+" ")>=0)d=d.replace(" "+c[f]+" "," ");e.className=a?p.trim(d):""}}}return this},toggleClass:function(a,b){var c=typeof a,d=typeof b=="boolean";return p.isFunction(a)?this.each(function(c){p(this).toggleClass(a.call(this,c,this.className,b),b)}):this.each(function(){if(c==="string"){var e,f=0,g=p(this),h=b,i=a.split(s);while(e=i[f++])h=d?h:!g.hasClass(e),g[h?"addClass":"removeClass"](e)}else if(c==="undefined"||c==="boolean")this.className&&p._data(this,"__className__",this.className),this.className=this.className||a===!1?"":p._data(this,"__className__")||""})},hasClass:function(a){var b=" "+a+" ",c=0,d=this.length;for(;c<d;c++)if(this[c].nodeType===1&&(" "+this[c].className+" ").replace(O," ").indexOf(b)>=0)return!0;return!1},val:function(a){var c,d,e,f=this[0];if(!arguments.length){if(f)return c=p.valHooks[f.type]||p.valHooks[f.nodeName.toLowerCase()],c&&"get"in c&&(d=c.get(f,"value"))!==b?d:(d=f.value,typeof d=="string"?d.replace(P,""):d==null?"":d);return}return e=p.isFunction(a),this.each(function(d){var f,g=p(this);if(this.nodeType!==1)return;e?f=a.call(this,d,g.val()):f=a,f==null?f="":typeof f=="number"?f+="":p.isArray(f)&&(f=p.map(f,function(a){return a==null?"":a+""})),c=p.valHooks[this.type]||p.valHooks[this.nodeName.toLowerCase()];if(!c||!("set"in c)||c.set(this,f,"value")===b)this.value=f})}}),p.extend({valHooks:{option:{get:function(a){var b=a.attributes.value;return!b||b.specified?a.value:a.text}},select:{get:function(a){var b,c,d,e,f=a.selectedIndex,g=[],h=a.options,i=a.type==="select-one";if(f<0)return null;c=i?f:0,d=i?f+1:h.length;for(;c<d;c++){e=h[c];if(e.selected&&(p.support.optDisabled?!e.disabled:e.getAttribute("disabled")===null)&&(!e.parentNode.disabled||!p.nodeName(e.parentNode,"optgroup"))){b=p(e).val();if(i)return b;g.push(b)}}return i&&!g.length&&h.length?p(h[f]).val():g},set:function(a,b){var c=p.makeArray(b);return p(a).find("option").each(function(){this.selected=p.inArray(p(this).val(),c)>=0}),c.length||(a.selectedIndex=-1),c}}},attrFn:{},attr:function(a,c,d,e){var f,g,h,i=a.nodeType;if(!a||i===3||i===8||i===2)return;if(e&&p.isFunction(p.fn[c]))return p(a)[c](d);if(typeof a.getAttribute=="undefined")return p.prop(a,c,d);h=i!==1||!p.isXMLDoc(a),h&&(c=c.toLowerCase(),g=p.attrHooks[c]||(T.test(c)?M:L));if(d!==b){if(d===null){p.removeAttr(a,c);return}return g&&"set"in g&&h&&(f=g.set(a,d,c))!==b?f:(a.setAttribute(c,d+""),d)}return g&&"get"in g&&h&&(f=g.get(a,c))!==null?f:(f=a.getAttribute(c),f===null?b:f)},removeAttr:function(a,b){var c,d,e,f,g=0;if(b&&a.nodeType===1){d=b.split(s);for(;g<d.length;g++)e=d[g],e&&(c=p.propFix[e]||e,f=T.test(e),f||p.attr(a,e,""),a.removeAttribute(U?e:c),f&&c in a&&(a[c]=!1))}},attrHooks:{type:{set:function(a,b){if(Q.test(a.nodeName)&&a.parentNode)p.error("type property can't be changed");else if(!p.support.radioValue&&b==="radio"&&p.nodeName(a,"input")){var c=a.value;return a.setAttribute("type",b),c&&(a.value=c),b}}},value:{get:function(a,b){return L&&p.nodeName(a,"button")?L.get(a,b):b in a?a.value:null},set:function(a,b,c){if(L&&p.nodeName(a,"button"))return L.set(a,b,c);a.value=b}}},propFix:{tabindex:"tabIndex",readonly:"readOnly","for":"htmlFor","class":"className",maxlength:"maxLength",cellspacing:"cellSpacing",cellpadding:"cellPadding",rowspan:"rowSpan",colspan:"colSpan",usemap:"useMap",frameborder:"frameBorder",contenteditable:"contentEditable"},prop:function(a,c,d){var e,f,g,h=a.nodeType;if(!a||h===3||h===8||h===2)return;return g=h!==1||!p.isXMLDoc(a),g&&(c=p.propFix[c]||c,f=p.propHooks[c]),d!==b?f&&"set"in f&&(e=f.set(a,d,c))!==b?e:a[c]=d:f&&"get"in f&&(e=f.get(a,c))!==null?e:a[c]},propHooks:{tabIndex:{get:function(a){var c=a.getAttributeNode("tabindex");return c&&c.specified?parseInt(c.value,10):R.test(a.nodeName)||S.test(a.nodeName)&&a.href?0:b}}}}),M={get:function(a,c){var d,e=p.prop(a,c);return e===!0||typeof e!="boolean"&&(d=a.getAttributeNode(c))&&d.nodeValue!==!1?c.toLowerCase():b},set:function(a,b,c){var d;return b===!1?p.removeAttr(a,c):(d=p.propFix[c]||c,d in a&&(a[d]=!0),a.setAttribute(c,c.toLowerCase())),c}},U||(N={name:!0,id:!0,coords:!0},L=p.valHooks.button={get:function(a,c){var d;return d=a.getAttributeNode(c),d&&(N[c]?d.value!=="":d.specified)?d.value:b},set:function(a,b,c){var d=a.getAttributeNode(c);return d||(d=e.createAttribute(c),a.setAttributeNode(d)),d.value=b+""}},p.each(["width","height"],function(a,b){p.attrHooks[b]=p.extend(p.attrHooks[b],{set:function(a,c){if(c==="")return a.setAttribute(b,"auto"),c}})}),p.attrHooks.contenteditable={get:L.get,set:function(a,b,c){b===""&&(b="false"),L.set(a,b,c)}}),p.support.hrefNormalized||p.each(["href","src","width","height"],function(a,c){p.attrHooks[c]=p.extend(p.attrHooks[c],{get:function(a){var d=a.getAttribute(c,2);return d===null?b:d}})}),p.support.style||(p.attrHooks.style={get:function(a){return a.style.cssText.toLowerCase()||b},set:function(a,b){return a.style.cssText=b+""}}),p.support.optSelected||(p.propHooks.selected=p.extend(p.propHooks.selected,{get:function(a){var b=a.parentNode;return b&&(b.selectedIndex,b.parentNode&&b.parentNode.selectedIndex),null}})),p.support.enctype||(p.propFix.enctype="encoding"),p.support.checkOn||p.each(["radio","checkbox"],function(){p.valHooks[this]={get:function(a){return a.getAttribute("value")===null?"on":a.value}}}),p.each(["radio","checkbox"],function(){p.valHooks[this]=p.extend(p.valHooks[this],{set:function(a,b){if(p.isArray(b))return a.checked=p.inArray(p(a).val(),b)>=0}})});var V=/^(?:textarea|input|select)$/i,W=/^([^\.]*|)(?:\.(.+)|)$/,X=/(?:^|\s)hover(\.\S+|)\b/,Y=/^key/,Z=/^(?:mouse|contextmenu)|click/,$=/^(?:focusinfocus|focusoutblur)$/,_=function(a){return p.event.special.hover?a:a.replace(X,"mouseenter$1 mouseleave$1")};p.event={add:function(a,c,d,e,f){var g,h,i,j,k,l,m,n,o,q,r;if(a.nodeType===3||a.nodeType===8||!c||!d||!(g=p._data(a)))return;d.handler&&(o=d,d=o.handler,f=o.selector),d.guid||(d.guid=p.guid++),i=g.events,i||(g.events=i={}),h=g.handle,h||(g.handle=h=function(a){return typeof p!="undefined"&&(!a||p.event.triggered!==a.type)?p.event.dispatch.apply(h.elem,arguments):b},h.elem=a),c=p.trim(_(c)).split(" ");for(j=0;j<c.length;j++){k=W.exec(c[j])||[],l=k[1],m=(k[2]||"").split(".").sort(),r=p.event.special[l]||{},l=(f?r.delegateType:r.bindType)||l,r=p.event.special[l]||{},n=p.extend({type:l,origType:k[1],data:e,handler:d,guid:d.guid,selector:f,needsContext:f&&p.expr.match.needsContext.test(f),namespace:m.join(".")},o),q=i[l];if(!q){q=i[l]=[],q.delegateCount=0;if(!r.setup||r.setup.call(a,e,m,h)===!1)a.addEventListener?a.addEventListener(l,h,!1):a.attachEvent&&a.attachEvent("on"+l,h)}r.add&&(r.add.call(a,n),n.handler.guid||(n.handler.guid=d.guid)),f?q.splice(q.delegateCount++,0,n):q.push(n),p.event.global[l]=!0}a=null},global:{},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,n,o,q,r=p.hasData(a)&&p._data(a);if(!r||!(m=r.events))return;b=p.trim(_(b||"")).split(" ");for(f=0;f<b.length;f++){g=W.exec(b[f])||[],h=i=g[1],j=g[2];if(!h){for(h in m)p.event.remove(a,h+b[f],c,d,!0);continue}n=p.event.special[h]||{},h=(d?n.delegateType:n.bindType)||h,o=m[h]||[],k=o.length,j=j?new RegExp("(^|\\.)"+j.split(".").sort().join("\\.(?:.*\\.|)")+"(\\.|$)"):null;for(l=0;l<o.length;l++)q=o[l],(e||i===q.origType)&&(!c||c.guid===q.guid)&&(!j||j.test(q.namespace))&&(!d||d===q.selector||d==="**"&&q.selector)&&(o.splice(l--,1),q.selector&&o.delegateCount--,n.remove&&n.remove.call(a,q));o.length===0&&k!==o.length&&((!n.teardown||n.teardown.call(a,j,r.handle)===!1)&&p.removeEvent(a,h,r.handle),delete m[h])}p.isEmptyObject(m)&&(delete r.handle,p.removeData(a,"events",!0))},customEvent:{getData:!0,setData:!0,changeData:!0},trigger:function(c,d,f,g){if(!f||f.nodeType!==3&&f.nodeType!==8){var h,i,j,k,l,m,n,o,q,r,s=c.type||c,t=[];if($.test(s+p.event.triggered))return;s.indexOf("!")>=0&&(s=s.slice(0,-1),i=!0),s.indexOf(".")>=0&&(t=s.split("."),s=t.shift(),t.sort());if((!f||p.event.customEvent[s])&&!p.event.global[s])return;c=typeof c=="object"?c[p.expando]?c:new p.Event(s,c):new p.Event(s),c.type=s,c.isTrigger=!0,c.exclusive=i,c.namespace=t.join("."),c.namespace_re=c.namespace?new RegExp("(^|\\.)"+t.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,m=s.indexOf(":")<0?"on"+s:"";if(!f){h=p.cache;for(j in h)h[j].events&&h[j].events[s]&&p.event.trigger(c,d,h[j].handle.elem,!0);return}c.result=b,c.target||(c.target=f),d=d!=null?p.makeArray(d):[],d.unshift(c),n=p.event.special[s]||{};if(n.trigger&&n.trigger.apply(f,d)===!1)return;q=[[f,n.bindType||s]];if(!g&&!n.noBubble&&!p.isWindow(f)){r=n.delegateType||s,k=$.test(r+s)?f:f.parentNode;for(l=f;k;k=k.parentNode)q.push([k,r]),l=k;l===(f.ownerDocument||e)&&q.push([l.defaultView||l.parentWindow||a,r])}for(j=0;j<q.length&&!c.isPropagationStopped();j++)k=q[j][0],c.type=q[j][1],o=(p._data(k,"events")||{})[c.type]&&p._data(k,"handle"),o&&o.apply(k,d),o=m&&k[m],o&&p.acceptData(k)&&o.apply&&o.apply(k,d)===!1&&c.preventDefault();return c.type=s,!g&&!c.isDefaultPrevented()&&(!n._default||n._default.apply(f.ownerDocument,d)===!1)&&(s!=="click"||!p.nodeName(f,"a"))&&p.acceptData(f)&&m&&f[s]&&(s!=="focus"&&s!=="blur"||c.target.offsetWidth!==0)&&!p.isWindow(f)&&(l=f[m],l&&(f[m]=null),p.event.triggered=s,f[s](),p.event.triggered=b,l&&(f[m]=l)),c.result}return},dispatch:function(c){c=p.event.fix(c||a.event);var d,e,f,g,h,i,j,l,m,n,o=(p._data(this,"events")||{})[c.type]||[],q=o.delegateCount,r=k.call(arguments),s=!c.exclusive&&!c.namespace,t=p.event.special[c.type]||{},u=[];r[0]=c,c.delegateTarget=this;if(t.preDispatch&&t.preDispatch.call(this,c)===!1)return;if(q&&(!c.button||c.type!=="click"))for(f=c.target;f!=this;f=f.parentNode||this)if(f.disabled!==!0||c.type!=="click"){h={},j=[];for(d=0;d<q;d++)l=o[d],m=l.selector,h[m]===b&&(h[m]=l.needsContext?p(m,this).index(f)>=0:p.find(m,this,null,[f]).length),h[m]&&j.push(l);j.length&&u.push({elem:f,matches:j})}o.length>q&&u.push({elem:this,matches:o.slice(q)});for(d=0;d<u.length&&!c.isPropagationStopped();d++){i=u[d],c.currentTarget=i.elem;for(e=0;e<i.matches.length&&!c.isImmediatePropagationStopped();e++){l=i.matches[e];if(s||!c.namespace&&!l.namespace||c.namespace_re&&c.namespace_re.test(l.namespace))c.data=l.data,c.handleObj=l,g=((p.event.special[l.origType]||{}).handle||l.handler).apply(i.elem,r),g!==b&&(c.result=g,g===!1&&(c.preventDefault(),c.stopPropagation()))}}return t.postDispatch&&t.postDispatch.call(this,c),c.result},props:"attrChange attrName relatedNode srcElement altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(a,b){return a.which==null&&(a.which=b.charCode!=null?b.charCode:b.keyCode),a}},mouseHooks:{props:"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(a,c){var d,f,g,h=c.button,i=c.fromElement;return a.pageX==null&&c.clientX!=null&&(d=a.target.ownerDocument||e,f=d.documentElement,g=d.body,a.pageX=c.clientX+(f&&f.scrollLeft||g&&g.scrollLeft||0)-(f&&f.clientLeft||g&&g.clientLeft||0),a.pageY=c.clientY+(f&&f.scrollTop||g&&g.scrollTop||0)-(f&&f.clientTop||g&&g.clientTop||0)),!a.relatedTarget&&i&&(a.relatedTarget=i===a.target?c.toElement:i),!a.which&&h!==b&&(a.which=h&1?1:h&2?3:h&4?2:0),a}},fix:function(a){if(a[p.expando])return a;var b,c,d=a,f=p.event.fixHooks[a.type]||{},g=f.props?this.props.concat(f.props):this.props;a=p.Event(d);for(b=g.length;b;)c=g[--b],a[c]=d[c];return a.target||(a.target=d.srcElement||e),a.target.nodeType===3&&(a.target=a.target.parentNode),a.metaKey=!!a.metaKey,f.filter?f.filter(a,d):a},special:{load:{noBubble:!0},focus:{delegateType:"focusin"},blur:{delegateType:"focusout"},beforeunload:{setup:function(a,b,c){p.isWindow(this)&&(this.onbeforeunload=c)},teardown:function(a,b){this.onbeforeunload===b&&(this.onbeforeunload=null)}}},simulate:function(a,b,c,d){var e=p.extend(new p.Event,c,{type:a,isSimulated:!0,originalEvent:{}});d?p.event.trigger(e,null,b):p.event.dispatch.call(b,e),e.isDefaultPrevented()&&c.preventDefault()}},p.event.handle=p.event.dispatch,p.removeEvent=e.removeEventListener?function(a,b,c){a.removeEventListener&&a.removeEventListener(b,c,!1)}:function(a,b,c){var d="on"+b;a.detachEvent&&(typeof a[d]=="undefined"&&(a[d]=null),a.detachEvent(d,c))},p.Event=function(a,b){if(this instanceof p.Event)a&&a.type?(this.originalEvent=a,this.type=a.type,this.isDefaultPrevented=a.defaultPrevented||a.returnValue===!1||a.getPreventDefault&&a.getPreventDefault()?bb:ba):this.type=a,b&&p.extend(this,b),this.timeStamp=a&&a.timeStamp||p.now(),this[p.expando]=!0;else return new p.Event(a,b)},p.Event.prototype={preventDefault:function(){this.isDefaultPrevented=bb;var a=this.originalEvent;if(!a)return;a.preventDefault?a.preventDefault():a.returnValue=!1},stopPropagation:function(){this.isPropagationStopped=bb;var a=this.originalEvent;if(!a)return;a.stopPropagation&&a.stopPropagation(),a.cancelBubble=!0},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=bb,this.stopPropagation()},isDefaultPrevented:ba,isPropagationStopped:ba,isImmediatePropagationStopped:ba},p.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(a,b){p.event.special[a]={delegateType:b,bindType:b,handle:function(a){var c,d=this,e=a.relatedTarget,f=a.handleObj,g=f.selector;if(!e||e!==d&&!p.contains(d,e))a.type=f.origType,c=f.handler.apply(this,arguments),a.type=b;return c}}}),p.support.submitBubbles||(p.event.special.submit={setup:function(){if(p.nodeName(this,"form"))return!1;p.event.add(this,"click._submit keypress._submit",function(a){var c=a.target,d=p.nodeName(c,"input")||p.nodeName(c,"button")?c.form:b;d&&!p._data(d,"_submit_attached")&&(p.event.add(d,"submit._submit",function(a){a._submit_bubble=!0}),p._data(d,"_submit_attached",!0))})},postDispatch:function(a){a._submit_bubble&&(delete a._submit_bubble,this.parentNode&&!a.isTrigger&&p.event.simulate("submit",this.parentNode,a,!0))},teardown:function(){if(p.nodeName(this,"form"))return!1;p.event.remove(this,"._submit")}}),p.support.changeBubbles||(p.event.special.change={setup:function(){if(V.test(this.nodeName)){if(this.type==="checkbox"||this.type==="radio")p.event.add(this,"propertychange._change",function(a){a.originalEvent.propertyName==="checked"&&(this._just_changed=!0)}),p.event.add(this,"click._change",function(a){this._just_changed&&!a.isTrigger&&(this._just_changed=!1),p.event.simulate("change",this,a,!0)});return!1}p.event.add(this,"beforeactivate._change",function(a){var b=a.target;V.test(b.nodeName)&&!p._data(b,"_change_attached")&&(p.event.add(b,"change._change",function(a){this.parentNode&&!a.isSimulated&&!a.isTrigger&&p.event.simulate("change",this.parentNode,a,!0)}),p._data(b,"_change_attached",!0))})},handle:function(a){var b=a.target;if(this!==b||a.isSimulated||a.isTrigger||b.type!=="radio"&&b.type!=="checkbox")return a.handleObj.handler.apply(this,arguments)},teardown:function(){return p.event.remove(this,"._change"),!V.test(this.nodeName)}}),p.support.focusinBubbles||p.each({focus:"focusin",blur:"focusout"},function(a,b){var c=0,d=function(a){p.event.simulate(b,a.target,p.event.fix(a),!0)};p.event.special[b]={setup:function(){c++===0&&e.addEventListener(a,d,!0)},teardown:function(){--c===0&&e.removeEventListener(a,d,!0)}}}),p.fn.extend({on:function(a,c,d,e,f){var g,h;if(typeof a=="object"){typeof c!="string"&&(d=d||c,c=b);for(h in a)this.on(h,c,d,a[h],f);return this}d==null&&e==null?(e=c,d=c=b):e==null&&(typeof c=="string"?(e=d,d=b):(e=d,d=c,c=b));if(e===!1)e=ba;else if(!e)return this;return f===1&&(g=e,e=function(a){return p().off(a),g.apply(this,arguments)},e.guid=g.guid||(g.guid=p.guid++)),this.each(function(){p.event.add(this,a,e,d,c)})},one:function(a,b,c,d){return this.on(a,b,c,d,1)},off:function(a,c,d){var e,f;if(a&&a.preventDefault&&a.handleObj)return e=a.handleObj,p(a.delegateTarget).off(e.namespace?e.origType+"."+e.namespace:e.origType,e.selector,e.handler),this;if(typeof a=="object"){for(f in a)this.off(f,c,a[f]);return this}if(c===!1||typeof c=="function")d=c,c=b;return d===!1&&(d=ba),this.each(function(){p.event.remove(this,a,d,c)})},bind:function(a,b,c){return this.on(a,null,b,c)},unbind:function(a,b){return this.off(a,null,b)},live:function(a,b,c){return p(this.context).on(a,this.selector,b,c),this},die:function(a,b){return p(this.context).off(a,this.selector||"**",b),this},delegate:function(a,b,c,d){return this.on(b,a,c,d)},undelegate:function(a,b,c){return arguments.length===1?this.off(a,"**"):this.off(b,a||"**",c)},trigger:function(a,b){return this.each(function(){p.event.trigger(a,b,this)})},triggerHandler:function(a,b){if(this[0])return p.event.trigger(a,b,this[0],!0)},toggle:function(a){var b=arguments,c=a.guid||p.guid++,d=0,e=function(c){var e=(p._data(this,"lastToggle"+a.guid)||0)%d;return p._data(this,"lastToggle"+a.guid,e+1),c.preventDefault(),b[e].apply(this,arguments)||!1};e.guid=c;while(d<b.length)b[d++].guid=c;return this.click(e)},hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)}}),p.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(a,b){p.fn[b]=function(a,c){return c==null&&(c=a,a=null),arguments.length>0?this.on(b,null,a,c):this.trigger(b)},Y.test(b)&&(p.event.fixHooks[b]=p.event.keyHooks),Z.test(b)&&(p.event.fixHooks[b]=p.event.mouseHooks)}),function(a,b){function bc(a,b,c,d){c=c||[],b=b||r;var e,f,i,j,k=b.nodeType;if(!a||typeof a!="string")return c;if(k!==1&&k!==9)return[];i=g(b);if(!i&&!d)if(e=P.exec(a))if(j=e[1]){if(k===9){f=b.getElementById(j);if(!f||!f.parentNode)return c;if(f.id===j)return c.push(f),c}else if(b.ownerDocument&&(f=b.ownerDocument.getElementById(j))&&h(b,f)&&f.id===j)return c.push(f),c}else{if(e[2])return w.apply(c,x.call(b.getElementsByTagName(a),0)),c;if((j=e[3])&&_&&b.getElementsByClassName)return w.apply(c,x.call(b.getElementsByClassName(j),0)),c}return bp(a.replace(L,"$1"),b,c,d,i)}function bd(a){return function(b){var c=b.nodeName.toLowerCase();return c==="input"&&b.type===a}}function be(a){return function(b){var c=b.nodeName.toLowerCase();return(c==="input"||c==="button")&&b.type===a}}function bf(a){return z(function(b){return b=+b,z(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function bg(a,b,c){if(a===b)return c;var d=a.nextSibling;while(d){if(d===b)return-1;d=d.nextSibling}return 1}function bh(a,b){var c,d,f,g,h,i,j,k=C[o][a];if(k)return b?0:k.slice(0);h=a,i=[],j=e.preFilter;while(h){if(!c||(d=M.exec(h)))d&&(h=h.slice(d[0].length)),i.push(f=[]);c=!1;if(d=N.exec(h))f.push(c=new q(d.shift())),h=h.slice(c.length),c.type=d[0].replace(L," ");for(g in e.filter)(d=W[g].exec(h))&&(!j[g]||(d=j[g](d,r,!0)))&&(f.push(c=new q(d.shift())),h=h.slice(c.length),c.type=g,c.matches=d);if(!c)break}return b?h.length:h?bc.error(a):C(a,i).slice(0)}function bi(a,b,d){var e=b.dir,f=d&&b.dir==="parentNode",g=u++;return b.first?function(b,c,d){while(b=b[e])if(f||b.nodeType===1)return a(b,c,d)}:function(b,d,h){if(!h){var i,j=t+" "+g+" ",k=j+c;while(b=b[e])if(f||b.nodeType===1){if((i=b[o])===k)return b.sizset;if(typeof i=="string"&&i.indexOf(j)===0){if(b.sizset)return b}else{b[o]=k;if(a(b,d,h))return b.sizset=!0,b;b.sizset=!1}}}else while(b=b[e])if(f||b.nodeType===1)if(a(b,d,h))return b}}function bj(a){return a.length>1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function bk(a,b,c,d,e){var f,g=[],h=0,i=a.length,j=b!=null;for(;h<i;h++)if(f=a[h])if(!c||c(f,d,e))g.push(f),j&&b.push(h);return g}function bl(a,b,c,d,e,f){return d&&!d[o]&&(d=bl(d)),e&&!e[o]&&(e=bl(e,f)),z(function(f,g,h,i){if(f&&e)return;var j,k,l,m=[],n=[],o=g.length,p=f||bo(b||"*",h.nodeType?[h]:h,[],f),q=a&&(f||!b)?bk(p,m,a,h,i):p,r=c?e||(f?a:o||d)?[]:g:q;c&&c(q,r,h,i);if(d){l=bk(r,n),d(l,[],h,i),j=l.length;while(j--)if(k=l[j])r[n[j]]=!(q[n[j]]=k)}if(f){j=a&&r.length;while(j--)if(k=r[j])f[m[j]]=!(g[m[j]]=k)}else r=bk(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):w.apply(g,r)})}function bm(a){var b,c,d,f=a.length,g=e.relative[a[0].type],h=g||e.relative[" "],i=g?1:0,j=bi(function(a){return a===b},h,!0),k=bi(function(a){return y.call(b,a)>-1},h,!0),m=[function(a,c,d){return!g&&(d||c!==l)||((b=c).nodeType?j(a,c,d):k(a,c,d))}];for(;i<f;i++)if(c=e.relative[a[i].type])m=[bi(bj(m),c)];else{c=e.filter[a[i].type].apply(null,a[i].matches);if(c[o]){d=++i;for(;d<f;d++)if(e.relative[a[d].type])break;return bl(i>1&&bj(m),i>1&&a.slice(0,i-1).join("").replace(L,"$1"),c,i<d&&bm(a.slice(i,d)),d<f&&bm(a=a.slice(d)),d<f&&a.join(""))}m.push(c)}return bj(m)}function bn(a,b){var d=b.length>0,f=a.length>0,g=function(h,i,j,k,m){var n,o,p,q=[],s=0,u="0",x=h&&[],y=m!=null,z=l,A=h||f&&e.find.TAG("*",m&&i.parentNode||i),B=t+=z==null?1:Math.E;y&&(l=i!==r&&i,c=g.el);for(;(n=A[u])!=null;u++){if(f&&n){for(o=0;p=a[o];o++)if(p(n,i,j)){k.push(n);break}y&&(t=B,c=++g.el)}d&&((n=!p&&n)&&s--,h&&x.push(n))}s+=u;if(d&&u!==s){for(o=0;p=b[o];o++)p(x,q,i,j);if(h){if(s>0)while(u--)!x[u]&&!q[u]&&(q[u]=v.call(k));q=bk(q)}w.apply(k,q),y&&!h&&q.length>0&&s+b.length>1&&bc.uniqueSort(k)}return y&&(t=B,l=z),x};return g.el=0,d?z(g):g}function bo(a,b,c,d){var e=0,f=b.length;for(;e<f;e++)bc(a,b[e],c,d);return c}function bp(a,b,c,d,f){var g,h,j,k,l,m=bh(a),n=m.length;if(!d&&m.length===1){h=m[0]=m[0].slice(0);if(h.length>2&&(j=h[0]).type==="ID"&&b.nodeType===9&&!f&&e.relative[h[1].type]){b=e.find.ID(j.matches[0].replace(V,""),b,f)[0];if(!b)return c;a=a.slice(h.shift().length)}for(g=W.POS.test(a)?-1:h.length-1;g>=0;g--){j=h[g];if(e.relative[k=j.type])break;if(l=e.find[k])if(d=l(j.matches[0].replace(V,""),R.test(h[0].type)&&b.parentNode||b,f)){h.splice(g,1),a=d.length&&h.join("");if(!a)return w.apply(c,x.call(d,0)),c;break}}}return i(a,m)(d,b,f,c,R.test(a)),c}function bq(){}var c,d,e,f,g,h,i,j,k,l,m=!0,n="undefined",o=("sizcache"+Math.random()).replace(".",""),q=String,r=a.document,s=r.documentElement,t=0,u=0,v=[].pop,w=[].push,x=[].slice,y=[].indexOf||function(a){var b=0,c=this.length;for(;b<c;b++)if(this[b]===a)return b;return-1},z=function(a,b){return a[o]=b==null||b,a},A=function(){var a={},b=[];return z(function(c,d){return b.push(c)>e.cacheLength&&delete a[b.shift()],a[c]=d},a)},B=A(),C=A(),D=A(),E="[\\x20\\t\\r\\n\\f]",F="(?:\\\\.|[-\\w]|[^\\x00-\\xa0])+",G=F.replace("w","w#"),H="([*^$|!~]?=)",I="\\["+E+"*("+F+")"+E+"*(?:"+H+E+"*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|("+G+")|)|)"+E+"*\\]",J=":("+F+")(?:\\((?:(['\"])((?:\\\\.|[^\\\\])*?)\\2|([^()[\\]]*|(?:(?:"+I+")|[^:]|\\\\.)*|.*))\\)|)",K=":(even|odd|eq|gt|lt|nth|first|last)(?:\\("+E+"*((?:-\\d)?\\d*)"+E+"*\\)|)(?=[^-]|$)",L=new RegExp("^"+E+"+|((?:^|[^\\\\])(?:\\\\.)*)"+E+"+$","g"),M=new RegExp("^"+E+"*,"+E+"*"),N=new RegExp("^"+E+"*([\\x20\\t\\r\\n\\f>+~])"+E+"*"),O=new RegExp(J),P=/^(?:#([\w\-]+)|(\w+)|\.([\w\-]+))$/,Q=/^:not/,R=/[\x20\t\r\n\f]*[+~]/,S=/:not\($/,T=/h\d/i,U=/input|select|textarea|button/i,V=/\\(?!\\)/g,W={ID:new RegExp("^#("+F+")"),CLASS:new RegExp("^\\.("+F+")"),NAME:new RegExp("^\\[name=['\"]?("+F+")['\"]?\\]"),TAG:new RegExp("^("+F.replace("w","w*")+")"),ATTR:new RegExp("^"+I),PSEUDO:new RegExp("^"+J),POS:new RegExp(K,"i"),CHILD:new RegExp("^:(only|nth|first|last)-child(?:\\("+E+"*(even|odd|(([+-]|)(\\d*)n|)"+E+"*(?:([+-]|)"+E+"*(\\d+)|))"+E+"*\\)|)","i"),needsContext:new RegExp("^"+E+"*[>+~]|"+K,"i")},X=function(a){var b=r.createElement("div");try{return a(b)}catch(c){return!1}finally{b=null}},Y=X(function(a){return a.appendChild(r.createComment("")),!a.getElementsByTagName("*").length}),Z=X(function(a){return a.innerHTML="<a href='#'></a>",a.firstChild&&typeof a.firstChild.getAttribute!==n&&a.firstChild.getAttribute("href")==="#"}),$=X(function(a){a.innerHTML="<select></select>";var b=typeof a.lastChild.getAttribute("multiple");return b!=="boolean"&&b!=="string"}),_=X(function(a){return a.innerHTML="<div class='hidden e'></div><div class='hidden'></div>",!a.getElementsByClassName||!a.getElementsByClassName("e").length?!1:(a.lastChild.className="e",a.getElementsByClassName("e").length===2)}),ba=X(function(a){a.id=o+0,a.innerHTML="<a name='"+o+"'></a><div name='"+o+"'></div>",s.insertBefore(a,s.firstChild);var b=r.getElementsByName&&r.getElementsByName(o).length===2+r.getElementsByName(o+0).length;return d=!r.getElementById(o),s.removeChild(a),b});try{x.call(s.childNodes,0)[0].nodeType}catch(bb){x=function(a){var b,c=[];for(;b=this[a];a++)c.push(b);return c}}bc.matches=function(a,b){return bc(a,null,null,b)},bc.matchesSelector=function(a,b){return bc(b,null,null,[a]).length>0},f=bc.getText=function(a){var b,c="",d=0,e=a.nodeType;if(e){if(e===1||e===9||e===11){if(typeof a.textContent=="string")return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=f(a)}else if(e===3||e===4)return a.nodeValue}else for(;b=a[d];d++)c+=f(b);return c},g=bc.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?b.nodeName!=="HTML":!1},h=bc.contains=s.contains?function(a,b){var c=a.nodeType===9?a.documentElement:a,d=b&&b.parentNode;return a===d||!!(d&&d.nodeType===1&&c.contains&&c.contains(d))}:s.compareDocumentPosition?function(a,b){return b&&!!(a.compareDocumentPosition(b)&16)}:function(a,b){while(b=b.parentNode)if(b===a)return!0;return!1},bc.attr=function(a,b){var c,d=g(a);return d||(b=b.toLowerCase()),(c=e.attrHandle[b])?c(a):d||$?a.getAttribute(b):(c=a.getAttributeNode(b),c?typeof a[b]=="boolean"?a[b]?b:null:c.specified?c.value:null:null)},e=bc.selectors={cacheLength:50,createPseudo:z,match:W,attrHandle:Z?{}:{href:function(a){return a.getAttribute("href",2)},type:function(a){return a.getAttribute("type")}},find:{ID:d?function(a,b,c){if(typeof b.getElementById!==n&&!c){var d=b.getElementById(a);return d&&d.parentNode?[d]:[]}}:function(a,c,d){if(typeof c.getElementById!==n&&!d){var e=c.getElementById(a);return e?e.id===a||typeof e.getAttributeNode!==n&&e.getAttributeNode("id").value===a?[e]:b:[]}},TAG:Y?function(a,b){if(typeof b.getElementsByTagName!==n)return b.getElementsByTagName(a)}:function(a,b){var c=b.getElementsByTagName(a);if(a==="*"){var d,e=[],f=0;for(;d=c[f];f++)d.nodeType===1&&e.push(d);return e}return c},NAME:ba&&function(a,b){if(typeof b.getElementsByName!==n)return b.getElementsByName(name)},CLASS:_&&function(a,b,c){if(typeof b.getElementsByClassName!==n&&!c)return b.getElementsByClassName(a)}},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(V,""),a[3]=(a[4]||a[5]||"").replace(V,""),a[2]==="~="&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),a[1]==="nth"?(a[2]||bc.error(a[0]),a[3]=+(a[3]?a[4]+(a[5]||1):2*(a[2]==="even"||a[2]==="odd")),a[4]=+(a[6]+a[7]||a[2]==="odd")):a[2]&&bc.error(a[0]),a},PSEUDO:function(a){var b,c;if(W.CHILD.test(a[0]))return null;if(a[3])a[2]=a[3];else if(b=a[4])O.test(b)&&(c=bh(b,!0))&&(c=b.indexOf(")",b.length-c)-b.length)&&(b=b.slice(0,c),a[0]=a[0].slice(0,c)),a[2]=b;return a.slice(0,3)}},filter:{ID:d?function(a){return a=a.replace(V,""),function(b){return b.getAttribute("id")===a}}:function(a){return a=a.replace(V,""),function(b){var c=typeof b.getAttributeNode!==n&&b.getAttributeNode("id");return c&&c.value===a}},TAG:function(a){return a==="*"?function(){return!0}:(a=a.replace(V,"").toLowerCase(),function(b){return b.nodeName&&b.nodeName.toLowerCase()===a})},CLASS:function(a){var b=B[o][a];return b||(b=B(a,new RegExp("(^|"+E+")"+a+"("+E+"|$)"))),function(a){return b.test(a.className||typeof a.getAttribute!==n&&a.getAttribute("class")||"")}},ATTR:function(a,b,c){return function(d,e){var f=bc.attr(d,a);return f==null?b==="!=":b?(f+="",b==="="?f===c:b==="!="?f!==c:b==="^="?c&&f.indexOf(c)===0:b==="*="?c&&f.indexOf(c)>-1:b==="$="?c&&f.substr(f.length-c.length)===c:b==="~="?(" "+f+" ").indexOf(c)>-1:b==="|="?f===c||f.substr(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d){return a==="nth"?function(a){var b,e,f=a.parentNode;if(c===1&&d===0)return!0;if(f){e=0;for(b=f.firstChild;b;b=b.nextSibling)if(b.nodeType===1){e++;if(a===b)break}}return e-=d,e===c||e%c===0&&e/c>=0}:function(b){var c=b;switch(a){case"only":case"first":while(c=c.previousSibling)if(c.nodeType===1)return!1;if(a==="first")return!0;c=b;case"last":while(c=c.nextSibling)if(c.nodeType===1)return!1;return!0}}},PSEUDO:function(a,b){var c,d=e.pseudos[a]||e.setFilters[a.toLowerCase()]||bc.error("unsupported pseudo: "+a);return d[o]?d(b):d.length>1?(c=[a,a,"",b],e.setFilters.hasOwnProperty(a.toLowerCase())?z(function(a,c){var e,f=d(a,b),g=f.length;while(g--)e=y.call(a,f[g]),a[e]=!(c[e]=f[g])}):function(a){return d(a,0,c)}):d}},pseudos:{not:z(function(a){var b=[],c=[],d=i(a.replace(L,"$1"));return d[o]?z(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)if(f=g[h])a[h]=!(b[h]=f)}):function(a,e,f){return b[0]=a,d(b,null,f,c),!c.pop()}}),has:z(function(a){return function(b){return bc(a,b).length>0}}),contains:z(function(a){return function(b){return(b.textContent||b.innerText||f(b)).indexOf(a)>-1}}),enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&!!a.checked||b==="option"&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},parent:function(a){return!e.pseudos.empty(a)},empty:function(a){var b;a=a.firstChild;while(a){if(a.nodeName>"@"||(b=a.nodeType)===3||b===4)return!1;a=a.nextSibling}return!0},header:function(a){return T.test(a.nodeName)},text:function(a){var b,c;return a.nodeName.toLowerCase()==="input"&&(b=a.type)==="text"&&((c=a.getAttribute("type"))==null||c.toLowerCase()===b)},radio:bd("radio"),checkbox:bd("checkbox"),file:bd("file"),password:bd("password"),image:bd("image"),submit:be("submit"),reset:be("reset"),button:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&a.type==="button"||b==="button"},input:function(a){return U.test(a.nodeName)},focus:function(a){var b=a.ownerDocument;return a===b.activeElement&&(!b.hasFocus||b.hasFocus())&&(!!a.type||!!a.href)},active:function(a){return a===a.ownerDocument.activeElement},first:bf(function(a,b,c){return[0]}),last:bf(function(a,b,c){return[b-1]}),eq:bf(function(a,b,c){return[c<0?c+b:c]}),even:bf(function(a,b,c){for(var d=0;d<b;d+=2)a.push(d);return a}),odd:bf(function(a,b,c){for(var d=1;d<b;d+=2)a.push(d);return a}),lt:bf(function(a,b,c){for(var d=c<0?c+b:c;--d>=0;)a.push(d);return a}),gt:bf(function(a,b,c){for(var d=c<0?c+b:c;++d<b;)a.push(d);return a})}},j=s.compareDocumentPosition?function(a,b){return a===b?(k=!0,0):(!a.compareDocumentPosition||!b.compareDocumentPosition?a.compareDocumentPosition:a.compareDocumentPosition(b)&4)?-1:1}:function(a,b){if(a===b)return k=!0,0;if(a.sourceIndex&&b.sourceIndex)return a.sourceIndex-b.sourceIndex;var c,d,e=[],f=[],g=a.parentNode,h=b.parentNode,i=g;if(g===h)return bg(a,b);if(!g)return-1;if(!h)return 1;while(i)e.unshift(i),i=i.parentNode;i=h;while(i)f.unshift(i),i=i.parentNode;c=e.length,d=f.length;for(var j=0;j<c&&j<d;j++)if(e[j]!==f[j])return bg(e[j],f[j]);return j===c?bg(a,f[j],-1):bg(e[j],b,1)},[0,0].sort(j),m=!k,bc.uniqueSort=function(a){var b,c=1;k=m,a.sort(j);if(k)for(;b=a[c];c++)b===a[c-1]&&a.splice(c--,1);return a},bc.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},i=bc.compile=function(a,b){var c,d=[],e=[],f=D[o][a];if(!f){b||(b=bh(a)),c=b.length;while(c--)f=bm(b[c]),f[o]?d.push(f):e.push(f);f=D(a,bn(e,d))}return f},r.querySelectorAll&&function(){var a,b=bp,c=/'|\\/g,d=/\=[\x20\t\r\n\f]*([^'"\]]*)[\x20\t\r\n\f]*\]/g,e=[":focus"],f=[":active",":focus"],h=s.matchesSelector||s.mozMatchesSelector||s.webkitMatchesSelector||s.oMatchesSelector||s.msMatchesSelector;X(function(a){a.innerHTML="<select><option selected=''></option></select>",a.querySelectorAll("[selected]").length||e.push("\\["+E+"*(?:checked|disabled|ismap|multiple|readonly|selected|value)"),a.querySelectorAll(":checked").length||e.push(":checked")}),X(function(a){a.innerHTML="<p test=''></p>",a.querySelectorAll("[test^='']").length&&e.push("[*^$]="+E+"*(?:\"\"|'')"),a.innerHTML="<input type='hidden'/>",a.querySelectorAll(":enabled").length||e.push(":enabled",":disabled")}),e=new RegExp(e.join("|")),bp=function(a,d,f,g,h){if(!g&&!h&&(!e||!e.test(a))){var i,j,k=!0,l=o,m=d,n=d.nodeType===9&&a;if(d.nodeType===1&&d.nodeName.toLowerCase()!=="object"){i=bh(a),(k=d.getAttribute("id"))?l=k.replace(c,"\\$&"):d.setAttribute("id",l),l="[id='"+l+"'] ",j=i.length;while(j--)i[j]=l+i[j].join("");m=R.test(a)&&d.parentNode||d,n=i.join(",")}if(n)try{return w.apply(f,x.call(m.querySelectorAll(n),0)),f}catch(p){}finally{k||d.removeAttribute("id")}}return b(a,d,f,g,h)},h&&(X(function(b){a=h.call(b,"div");try{h.call(b,"[test!='']:sizzle"),f.push("!=",J)}catch(c){}}),f=new RegExp(f.join("|")),bc.matchesSelector=function(b,c){c=c.replace(d,"='$1']");if(!g(b)&&!f.test(c)&&(!e||!e.test(c)))try{var i=h.call(b,c);if(i||a||b.document&&b.document.nodeType!==11)return i}catch(j){}return bc(c,null,null,[b]).length>0})}(),e.pseudos.nth=e.pseudos.eq,e.filters=bq.prototype=e.pseudos,e.setFilters=new bq,bc.attr=p.attr,p.find=bc,p.expr=bc.selectors,p.expr[":"]=p.expr.pseudos,p.unique=bc.uniqueSort,p.text=bc.getText,p.isXMLDoc=bc.isXML,p.contains=bc.contains}(a);var bc=/Until$/,bd=/^(?:parents|prev(?:Until|All))/,be=/^.[^:#\[\.,]*$/,bf=p.expr.match.needsContext,bg={children:!0,contents:!0,next:!0,prev:!0};p.fn.extend({find:function(a){var b,c,d,e,f,g,h=this;if(typeof a!="string")return p(a).filter(function(){for(b=0,c=h.length;b<c;b++)if(p.contains(h[b],this))return!0});g=this.pushStack("","find",a);for(b=0,c=this.length;b<c;b++){d=g.length,p.find(a,this[b],g);if(b>0)for(e=d;e<g.length;e++)for(f=0;f<d;f++)if(g[f]===g[e]){g.splice(e--,1);break}}return g},has:function(a){var b,c=p(a,this),d=c.length;return this.filter(function(){for(b=0;b<d;b++)if(p.contains(this,c[b]))return!0})},not:function(a){return this.pushStack(bj(this,a,!1),"not",a)},filter:function(a){return this.pushStack(bj(this,a,!0),"filter",a)},is:function(a){return!!a&&(typeof a=="string"?bf.test(a)?p(a,this.context).index(this[0])>=0:p.filter(a,this).length>0:this.filter(a).length>0)},closest:function(a,b){var c,d=0,e=this.length,f=[],g=bf.test(a)||typeof a!="string"?p(a,b||this.context):0;for(;d<e;d++){c=this[d];while(c&&c.ownerDocument&&c!==b&&c.nodeType!==11){if(g?g.index(c)>-1:p.find.matchesSelector(c,a)){f.push(c);break}c=c.parentNode}}return f=f.length>1?p.unique(f):f,this.pushStack(f,"closest",a)},index:function(a){return a?typeof a=="string"?p.inArray(this[0],p(a)):p.inArray(a.jquery?a[0]:a,this):this[0]&&this[0].parentNode?this.prevAll().length:-1},add:function(a,b){var c=typeof a=="string"?p(a,b):p.makeArray(a&&a.nodeType?[a]:a),d=p.merge(this.get(),c);return this.pushStack(bh(c[0])||bh(d[0])?d:p.unique(d))},addBack:function(a){return this.add(a==null?this.prevObject:this.prevObject.filter(a))}}),p.fn.andSelf=p.fn.addBack,p.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return p.dir(a,"parentNode")},parentsUntil:function(a,b,c){return p.dir(a,"parentNode",c)},next:function(a){return bi(a,"nextSibling")},prev:function(a){return bi(a,"previousSibling")},nextAll:function(a){return p.dir(a,"nextSibling")},prevAll:function(a){return p.dir(a,"previousSibling")},nextUntil:function(a,b,c){return p.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return p.dir(a,"previousSibling",c)},siblings:function(a){return p.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return p.sibling(a.firstChild)},contents:function(a){return p.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:p.merge([],a.childNodes)}},function(a,b){p.fn[a]=function(c,d){var e=p.map(this,b,c);return bc.test(a)||(d=c),d&&typeof d=="string"&&(e=p.filter(d,e)),e=this.length>1&&!bg[a]?p.unique(e):e,this.length>1&&bd.test(a)&&(e=e.reverse()),this.pushStack(e,a,k.call(arguments).join(","))}}),p.extend({filter:function(a,b,c){return c&&(a=":not("+a+")"),b.length===1?p.find.matchesSelector(b[0],a)?[b[0]]:[]:p.find.matches(a,b)},dir:function(a,c,d){var e=[],f=a[c];while(f&&f.nodeType!==9&&(d===b||f.nodeType!==1||!p(f).is(d)))f.nodeType===1&&e.push(f),f=f[c];return e},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var bl="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",bm=/ jQuery\d+="(?:null|\d+)"/g,bn=/^\s+/,bo=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,bp=/<([\w:]+)/,bq=/<tbody/i,br=/<|&#?\w+;/,bs=/<(?:script|style|link)/i,bt=/<(?:script|object|embed|option|style)/i,bu=new RegExp("<(?:"+bl+")[\\s/>]","i"),bv=/^(?:checkbox|radio)$/,bw=/checked\s*(?:[^=]|=\s*.checked.)/i,bx=/\/(java|ecma)script/i,by=/^\s*<!(?:\[CDATA\[|\-\-)|[\]\-]{2}>\s*$/g,bz={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],area:[1,"<map>","</map>"],_default:[0,"",""]},bA=bk(e),bB=bA.appendChild(e.createElement("div"));bz.optgroup=bz.option,bz.tbody=bz.tfoot=bz.colgroup=bz.caption=bz.thead,bz.th=bz.td,p.support.htmlSerialize||(bz._default=[1,"X<div>","</div>"]),p.fn.extend({text:function(a){return p.access(this,function(a){return a===b?p.text(this):this.empty().append((this[0]&&this[0].ownerDocument||e).createTextNode(a))},null,a,arguments.length)},wrapAll:function(a){if(p.isFunction(a))return this.each(function(b){p(this).wrapAll(a.call(this,b))});if(this[0]){var b=p(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){return p.isFunction(a)?this.each(function(b){p(this).wrapInner(a.call(this,b))}):this.each(function(){var b=p(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=p.isFunction(a);return this.each(function(c){p(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){p.nodeName(this,"body")||p(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){(this.nodeType===1||this.nodeType===11)&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){(this.nodeType===1||this.nodeType===11)&&this.insertBefore(a,this.firstChild)})},before:function(){if(!bh(this[0]))return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=p.clean(arguments);return this.pushStack(p.merge(a,this),"before",this.selector)}},after:function(){if(!bh(this[0]))return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=p.clean(arguments);return this.pushStack(p.merge(this,a),"after",this.selector)}},remove:function(a,b){var c,d=0;for(;(c=this[d])!=null;d++)if(!a||p.filter(a,[c]).length)!b&&c.nodeType===1&&(p.cleanData(c.getElementsByTagName("*")),p.cleanData([c])),c.parentNode&&c.parentNode.removeChild(c);return this},empty:function(){var a,b=0;for(;(a=this[b])!=null;b++){a.nodeType===1&&p.cleanData(a.getElementsByTagName("*"));while(a.firstChild)a.removeChild(a.firstChild)}return this},clone:function(a,b){return a=a==null?!1:a,b=b==null?a:b,this.map(function(){return p.clone(this,a,b)})},html:function(a){return p.access(this,function(a){var c=this[0]||{},d=0,e=this.length;if(a===b)return c.nodeType===1?c.innerHTML.replace(bm,""):b;if(typeof a=="string"&&!bs.test(a)&&(p.support.htmlSerialize||!bu.test(a))&&(p.support.leadingWhitespace||!bn.test(a))&&!bz[(bp.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(bo,"<$1></$2>");try{for(;d<e;d++)c=this[d]||{},c.nodeType===1&&(p.cleanData(c.getElementsByTagName("*")),c.innerHTML=a);c=0}catch(f){}}c&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function(a){return bh(this[0])?this.length?this.pushStack(p(p.isFunction(a)?a():a),"replaceWith",a):this:p.isFunction(a)?this.each(function(b){var c=p(this),d=c.html();c.replaceWith(a.call(this,b,d))}):(typeof a!="string"&&(a=p(a).detach()),this.each(function(){var b=this.nextSibling,c=this.parentNode;p(this).remove(),b?p(b).before(a):p(c).append(a)}))},detach:function(a){return this.remove(a,!0)},domManip:function(a,c,d){a=[].concat.apply([],a);var e,f,g,h,i=0,j=a[0],k=[],l=this.length;if(!p.support.checkClone&&l>1&&typeof j=="string"&&bw.test(j))return this.each(function(){p(this).domManip(a,c,d)});if(p.isFunction(j))return this.each(function(e){var f=p(this);a[0]=j.call(this,e,c?f.html():b),f.domManip(a,c,d)});if(this[0]){e=p.buildFragment(a,this,k),g=e.fragment,f=g.firstChild,g.childNodes.length===1&&(g=f);if(f){c=c&&p.nodeName(f,"tr");for(h=e.cacheable||l-1;i<l;i++)d.call(c&&p.nodeName(this[i],"table")?bC(this[i],"tbody"):this[i],i===h?g:p.clone(g,!0,!0))}g=f=null,k.length&&p.each(k,function(a,b){b.src?p.ajax?p.ajax({url:b.src,type:"GET",dataType:"script",async:!1,global:!1,"throws":!0}):p.error("no ajax"):p.globalEval((b.text||b.textContent||b.innerHTML||"").replace(by,"")),b.parentNode&&b.parentNode.removeChild(b)})}return this}}),p.buildFragment=function(a,c,d){var f,g,h,i=a[0];return c=c||e,c=!c.nodeType&&c[0]||c,c=c.ownerDocument||c,a.length===1&&typeof i=="string"&&i.length<512&&c===e&&i.charAt(0)==="<"&&!bt.test(i)&&(p.support.checkClone||!bw.test(i))&&(p.support.html5Clone||!bu.test(i))&&(g=!0,f=p.fragments[i],h=f!==b),f||(f=c.createDocumentFragment(),p.clean(a,c,f,d),g&&(p.fragments[i]=h&&f)),{fragment:f,cacheable:g}},p.fragments={},p.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){p.fn[a]=function(c){var d,e=0,f=[],g=p(c),h=g.length,i=this.length===1&&this[0].parentNode;if((i==null||i&&i.nodeType===11&&i.childNodes.length===1)&&h===1)return g[b](this[0]),this;for(;e<h;e++)d=(e>0?this.clone(!0):this).get(),p(g[e])[b](d),f=f.concat(d);return this.pushStack(f,a,g.selector)}}),p.extend({clone:function(a,b,c){var d,e,f,g;p.support.html5Clone||p.isXMLDoc(a)||!bu.test("<"+a.nodeName+">")?g=a.cloneNode(!0):(bB.innerHTML=a.outerHTML,bB.removeChild(g=bB.firstChild));if((!p.support.noCloneEvent||!p.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!p.isXMLDoc(a)){bE(a,g),d=bF(a),e=bF(g);for(f=0;d[f];++f)e[f]&&bE(d[f],e[f])}if(b){bD(a,g);if(c){d=bF(a),e=bF(g);for(f=0;d[f];++f)bD(d[f],e[f])}}return d=e=null,g},clean:function(a,b,c,d){var f,g,h,i,j,k,l,m,n,o,q,r,s=b===e&&bA,t=[];if(!b||typeof b.createDocumentFragment=="undefined")b=e;for(f=0;(h=a[f])!=null;f++){typeof h=="number"&&(h+="");if(!h)continue;if(typeof h=="string")if(!br.test(h))h=b.createTextNode(h);else{s=s||bk(b),l=b.createElement("div"),s.appendChild(l),h=h.replace(bo,"<$1></$2>"),i=(bp.exec(h)||["",""])[1].toLowerCase(),j=bz[i]||bz._default,k=j[0],l.innerHTML=j[1]+h+j[2];while(k--)l=l.lastChild;if(!p.support.tbody){m=bq.test(h),n=i==="table"&&!m?l.firstChild&&l.firstChild.childNodes:j[1]==="<table>"&&!m?l.childNodes:[];for(g=n.length-1;g>=0;--g)p.nodeName(n[g],"tbody")&&!n[g].childNodes.length&&n[g].parentNode.removeChild(n[g])}!p.support.leadingWhitespace&&bn.test(h)&&l.insertBefore(b.createTextNode(bn.exec(h)[0]),l.firstChild),h=l.childNodes,l.parentNode.removeChild(l)}h.nodeType?t.push(h):p.merge(t,h)}l&&(h=l=s=null);if(!p.support.appendChecked)for(f=0;(h=t[f])!=null;f++)p.nodeName(h,"input")?bG(h):typeof h.getElementsByTagName!="undefined"&&p.grep(h.getElementsByTagName("input"),bG);if(c){q=function(a){if(!a.type||bx.test(a.type))return d?d.push(a.parentNode?a.parentNode.removeChild(a):a):c.appendChild(a)};for(f=0;(h=t[f])!=null;f++)if(!p.nodeName(h,"script")||!q(h))c.appendChild(h),typeof h.getElementsByTagName!="undefined"&&(r=p.grep(p.merge([],h.getElementsByTagName("script")),q),t.splice.apply(t,[f+1,0].concat(r)),f+=r.length)}return t},cleanData:function(a,b){var c,d,e,f,g=0,h=p.expando,i=p.cache,j=p.support.deleteExpando,k=p.event.special;for(;(e=a[g])!=null;g++)if(b||p.acceptData(e)){d=e[h],c=d&&i[d];if(c){if(c.events)for(f in c.events)k[f]?p.event.remove(e,f):p.removeEvent(e,f,c.handle);i[d]&&(delete i[d],j?delete e[h]:e.removeAttribute?e.removeAttribute(h):e[h]=null,p.deletedIds.push(d))}}}}),function(){var a,b;p.uaMatch=function(a){a=a.toLowerCase();var b=/(chrome)[ \/]([\w.]+)/.exec(a)||/(webkit)[ \/]([\w.]+)/.exec(a)||/(opera)(?:.*version|)[ \/]([\w.]+)/.exec(a)||/(msie) ([\w.]+)/.exec(a)||a.indexOf("compatible")<0&&/(mozilla)(?:.*? rv:([\w.]+)|)/.exec(a)||[];return{browser:b[1]||"",version:b[2]||"0"}},a=p.uaMatch(g.userAgent),b={},a.browser&&(b[a.browser]=!0,b.version=a.version),b.chrome?b.webkit=!0:b.webkit&&(b.safari=!0),p.browser=b,p.sub=function(){function a(b,c){return new a.fn.init(b,c)}p.extend(!0,a,this),a.superclass=this,a.fn=a.prototype=this(),a.fn.constructor=a,a.sub=this.sub,a.fn.init=function c(c,d){return d&&d instanceof p&&!(d instanceof a)&&(d=a(d)),p.fn.init.call(this,c,d,b)},a.fn.init.prototype=a.fn;var b=a(e);return a}}();var bH,bI,bJ,bK=/alpha\([^)]*\)/i,bL=/opacity=([^)]*)/,bM=/^(top|right|bottom|left)$/,bN=/^(none|table(?!-c[ea]).+)/,bO=/^margin/,bP=new RegExp("^("+q+")(.*)$","i"),bQ=new RegExp("^("+q+")(?!px)[a-z%]+$","i"),bR=new RegExp("^([-+])=("+q+")","i"),bS={},bT={position:"absolute",visibility:"hidden",display:"block"},bU={letterSpacing:0,fontWeight:400},bV=["Top","Right","Bottom","Left"],bW=["Webkit","O","Moz","ms"],bX=p.fn.toggle;p.fn.extend({css:function(a,c){return p.access(this,function(a,c,d){return d!==b?p.style(a,c,d):p.css(a,c)},a,c,arguments.length>1)},show:function(){return b$(this,!0)},hide:function(){return b$(this)},toggle:function(a,b){var c=typeof a=="boolean";return p.isFunction(a)&&p.isFunction(b)?bX.apply(this,arguments):this.each(function(){(c?a:bZ(this))?p(this).show():p(this).hide()})}}),p.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=bH(a,"opacity");return c===""?"1":c}}}},cssNumber:{fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":p.support.cssFloat?"cssFloat":"styleFloat"},style:function(a,c,d,e){if(!a||a.nodeType===3||a.nodeType===8||!a.style)return;var f,g,h,i=p.camelCase(c),j=a.style;c=p.cssProps[i]||(p.cssProps[i]=bY(j,i)),h=p.cssHooks[c]||p.cssHooks[i];if(d===b)return h&&"get"in h&&(f=h.get(a,!1,e))!==b?f:j[c];g=typeof d,g==="string"&&(f=bR.exec(d))&&(d=(f[1]+1)*f[2]+parseFloat(p.css(a,c)),g="number");if(d==null||g==="number"&&isNaN(d))return;g==="number"&&!p.cssNumber[i]&&(d+="px");if(!h||!("set"in h)||(d=h.set(a,d,e))!==b)try{j[c]=d}catch(k){}},css:function(a,c,d,e){var f,g,h,i=p.camelCase(c);return c=p.cssProps[i]||(p.cssProps[i]=bY(a.style,i)),h=p.cssHooks[c]||p.cssHooks[i],h&&"get"in h&&(f=h.get(a,!0,e)),f===b&&(f=bH(a,c)),f==="normal"&&c in bU&&(f=bU[c]),d||e!==b?(g=parseFloat(f),d||p.isNumeric(g)?g||0:f):f},swap:function(a,b,c){var d,e,f={};for(e in b)f[e]=a.style[e],a.style[e]=b[e];d=c.call(a);for(e in b)a.style[e]=f[e];return d}}),a.getComputedStyle?bH=function(b,c){var d,e,f,g,h=a.getComputedStyle(b,null),i=b.style;return h&&(d=h[c],d===""&&!p.contains(b.ownerDocument,b)&&(d=p.style(b,c)),bQ.test(d)&&bO.test(c)&&(e=i.width,f=i.minWidth,g=i.maxWidth,i.minWidth=i.maxWidth=i.width=d,d=h.width,i.width=e,i.minWidth=f,i.maxWidth=g)),d}:e.documentElement.currentStyle&&(bH=function(a,b){var c,d,e=a.currentStyle&&a.currentStyle[b],f=a.style;return e==null&&f&&f[b]&&(e=f[b]),bQ.test(e)&&!bM.test(b)&&(c=f.left,d=a.runtimeStyle&&a.runtimeStyle.left,d&&(a.runtimeStyle.left=a.currentStyle.left),f.left=b==="fontSize"?"1em":e,e=f.pixelLeft+"px",f.left=c,d&&(a.runtimeStyle.left=d)),e===""?"auto":e}),p.each(["height","width"],function(a,b){p.cssHooks[b]={get:function(a,c,d){if(c)return a.offsetWidth===0&&bN.test(bH(a,"display"))?p.swap(a,bT,function(){return cb(a,b,d)}):cb(a,b,d)},set:function(a,c,d){return b_(a,c,d?ca(a,b,d,p.support.boxSizing&&p.css(a,"boxSizing")==="border-box"):0)}}}),p.support.opacity||(p.cssHooks.opacity={get:function(a,b){return bL.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?.01*parseFloat(RegExp.$1)+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=p.isNumeric(b)?"alpha(opacity="+b*100+")":"",f=d&&d.filter||c.filter||"";c.zoom=1;if(b>=1&&p.trim(f.replace(bK,""))===""&&c.removeAttribute){c.removeAttribute("filter");if(d&&!d.filter)return}c.filter=bK.test(f)?f.replace(bK,e):f+" "+e}}),p(function(){p.support.reliableMarginRight||(p.cssHooks.marginRight={get:function(a,b){return p.swap(a,{display:"inline-block"},function(){if(b)return bH(a,"marginRight")})}}),!p.support.pixelPosition&&p.fn.position&&p.each(["top","left"],function(a,b){p.cssHooks[b]={get:function(a,c){if(c){var d=bH(a,b);return bQ.test(d)?p(a).position()[b]+"px":d}}}})}),p.expr&&p.expr.filters&&(p.expr.filters.hidden=function(a){return a.offsetWidth===0&&a.offsetHeight===0||!p.support.reliableHiddenOffsets&&(a.style&&a.style.display||bH(a,"display"))==="none"},p.expr.filters.visible=function(a){return!p.expr.filters.hidden(a)}),p.each({margin:"",padding:"",border:"Width"},function(a,b){p.cssHooks[a+b]={expand:function(c){var d,e=typeof c=="string"?c.split(" "):[c],f={};for(d=0;d<4;d++)f[a+bV[d]+b]=e[d]||e[d-2]||e[0];return f}},bO.test(a)||(p.cssHooks[a+b].set=b_)});var cd=/%20/g,ce=/\[\]$/,cf=/\r?\n/g,cg=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,ch=/^(?:select|textarea)/i;p.fn.extend({serialize:function(){return p.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?p.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||ch.test(this.nodeName)||cg.test(this.type))}).map(function(a,b){var c=p(this).val();return c==null?null:p.isArray(c)?p.map(c,function(a,c){return{name:b.name,value:a.replace(cf,"\r\n")}}):{name:b.name,value:c.replace(cf,"\r\n")}}).get()}}),p.param=function(a,c){var d,e=[],f=function(a,b){b=p.isFunction(b)?b():b==null?"":b,e[e.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=p.ajaxSettings&&p.ajaxSettings.traditional);if(p.isArray(a)||a.jquery&&!p.isPlainObject(a))p.each(a,function(){f(this.name,this.value)});else for(d in a)ci(d,a[d],c,f);return e.join("&").replace(cd,"+")};var cj,ck,cl=/#.*$/,cm=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,cn=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,co=/^(?:GET|HEAD)$/,cp=/^\/\//,cq=/\?/,cr=/<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi,cs=/([?&])_=[^&]*/,ct=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+)|)|)/,cu=p.fn.load,cv={},cw={},cx=["*/"]+["*"];try{ck=f.href}catch(cy){ck=e.createElement("a"),ck.href="",ck=ck.href}cj=ct.exec(ck.toLowerCase())||[],p.fn.load=function(a,c,d){if(typeof a!="string"&&cu)return cu.apply(this,arguments);if(!this.length)return this;var e,f,g,h=this,i=a.indexOf(" ");return i>=0&&(e=a.slice(i,a.length),a=a.slice(0,i)),p.isFunction(c)?(d=c,c=b):c&&typeof c=="object"&&(f="POST"),p.ajax({url:a,type:f,dataType:"html",data:c,complete:function(a,b){d&&h.each(d,g||[a.responseText,b,a])}}).done(function(a){g=arguments,h.html(e?p("<div>").append(a.replace(cr,"")).find(e):a)}),this},p.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){p.fn[b]=function(a){return this.on(b,a)}}),p.each(["get","post"],function(a,c){p[c]=function(a,d,e,f){return p.isFunction(d)&&(f=f||e,e=d,d=b),p.ajax({type:c,url:a,data:d,success:e,dataType:f})}}),p.extend({getScript:function(a,c){return p.get(a,b,c,"script")},getJSON:function(a,b,c){return p.get(a,b,c,"json")},ajaxSetup:function(a,b){return b?cB(a,p.ajaxSettings):(b=a,a=p.ajaxSettings),cB(a,b),a},ajaxSettings:{url:ck,isLocal:cn.test(cj[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded; charset=UTF-8",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":cx},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":p.parseJSON,"text xml":p.parseXML},flatOptions:{context:!0,url:!0}},ajaxPrefilter:cz(cv),ajaxTransport:cz(cw),ajax:function(a,c){function y(a,c,f,i){var k,s,t,u,w,y=c;if(v===2)return;v=2,h&&clearTimeout(h),g=b,e=i||"",x.readyState=a>0?4:0,f&&(u=cC(l,x,f));if(a>=200&&a<300||a===304)l.ifModified&&(w=x.getResponseHeader("Last-Modified"),w&&(p.lastModified[d]=w),w=x.getResponseHeader("Etag"),w&&(p.etag[d]=w)),a===304?(y="notmodified",k=!0):(k=cD(l,u),y=k.state,s=k.data,t=k.error,k=!t);else{t=y;if(!y||a)y="error",a<0&&(a=0)}x.status=a,x.statusText=(c||y)+"",k?o.resolveWith(m,[s,y,x]):o.rejectWith(m,[x,y,t]),x.statusCode(r),r=b,j&&n.trigger("ajax"+(k?"Success":"Error"),[x,l,k?s:t]),q.fireWith(m,[x,y]),j&&(n.trigger("ajaxComplete",[x,l]),--p.active||p.event.trigger("ajaxStop"))}typeof a=="object"&&(c=a,a=b),c=c||{};var d,e,f,g,h,i,j,k,l=p.ajaxSetup({},c),m=l.context||l,n=m!==l&&(m.nodeType||m instanceof p)?p(m):p.event,o=p.Deferred(),q=p.Callbacks("once memory"),r=l.statusCode||{},t={},u={},v=0,w="canceled",x={readyState:0,setRequestHeader:function(a,b){if(!v){var c=a.toLowerCase();a=u[c]=u[c]||a,t[a]=b}return this},getAllResponseHeaders:function(){return v===2?e:null},getResponseHeader:function(a){var c;if(v===2){if(!f){f={};while(c=cm.exec(e))f[c[1].toLowerCase()]=c[2]}c=f[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){return v||(l.mimeType=a),this},abort:function(a){return a=a||w,g&&g.abort(a),y(0,a),this}};o.promise(x),x.success=x.done,x.error=x.fail,x.complete=q.add,x.statusCode=function(a){if(a){var b;if(v<2)for(b in a)r[b]=[r[b],a[b]];else b=a[x.status],x.always(b)}return this},l.url=((a||l.url)+"").replace(cl,"").replace(cp,cj[1]+"//"),l.dataTypes=p.trim(l.dataType||"*").toLowerCase().split(s),l.crossDomain==null&&(i=ct.exec(l.url.toLowerCase())||!1,l.crossDomain=i&&i.join(":")+(i[3]?"":i[1]==="http:"?80:443)!==cj.join(":")+(cj[3]?"":cj[1]==="http:"?80:443)),l.data&&l.processData&&typeof l.data!="string"&&(l.data=p.param(l.data,l.traditional)),cA(cv,l,c,x);if(v===2)return x;j=l.global,l.type=l.type.toUpperCase(),l.hasContent=!co.test(l.type),j&&p.active++===0&&p.event.trigger("ajaxStart");if(!l.hasContent){l.data&&(l.url+=(cq.test(l.url)?"&":"?")+l.data,delete l.data),d=l.url;if(l.cache===!1){var z=p.now(),A=l.url.replace(cs,"$1_="+z);l.url=A+(A===l.url?(cq.test(l.url)?"&":"?")+"_="+z:"")}}(l.data&&l.hasContent&&l.contentType!==!1||c.contentType)&&x.setRequestHeader("Content-Type",l.contentType),l.ifModified&&(d=d||l.url,p.lastModified[d]&&x.setRequestHeader("If-Modified-Since",p.lastModified[d]),p.etag[d]&&x.setRequestHeader("If-None-Match",p.etag[d])),x.setRequestHeader("Accept",l.dataTypes[0]&&l.accepts[l.dataTypes[0]]?l.accepts[l.dataTypes[0]]+(l.dataTypes[0]!=="*"?", "+cx+"; q=0.01":""):l.accepts["*"]);for(k in l.headers)x.setRequestHeader(k,l.headers[k]);if(!l.beforeSend||l.beforeSend.call(m,x,l)!==!1&&v!==2){w="abort";for(k in{success:1,error:1,complete:1})x[k](l[k]);g=cA(cw,l,c,x);if(!g)y(-1,"No Transport");else{x.readyState=1,j&&n.trigger("ajaxSend",[x,l]),l.async&&l.timeout>0&&(h=setTimeout(function(){x.abort("timeout")},l.timeout));try{v=1,g.send(t,y)}catch(B){if(v<2)y(-1,B);else throw B}}return x}return x.abort()},active:0,lastModified:{},etag:{}});var cE=[],cF=/\?/,cG=/(=)\?(?=&|$)|\?\?/,cH=p.now();p.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var a=cE.pop()||p.expando+"_"+cH++;return this[a]=!0,a}}),p.ajaxPrefilter("json jsonp",function(c,d,e){var f,g,h,i=c.data,j=c.url,k=c.jsonp!==!1,l=k&&cG.test(j),m=k&&!l&&typeof i=="string"&&!(c.contentType||"").indexOf("application/x-www-form-urlencoded")&&cG.test(i);if(c.dataTypes[0]==="jsonp"||l||m)return f=c.jsonpCallback=p.isFunction(c.jsonpCallback)?c.jsonpCallback():c.jsonpCallback,g=a[f],l?c.url=j.replace(cG,"$1"+f):m?c.data=i.replace(cG,"$1"+f):k&&(c.url+=(cF.test(j)?"&":"?")+c.jsonp+"="+f),c.converters["script json"]=function(){return h||p.error(f+" was not called"),h[0]},c.dataTypes[0]="json",a[f]=function(){h=arguments},e.always(function(){a[f]=g,c[f]&&(c.jsonpCallback=d.jsonpCallback,cE.push(f)),h&&p.isFunction(g)&&g(h[0]),h=g=b}),"script"}),p.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){return p.globalEval(a),a}}}),p.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),p.ajaxTransport("script",function(a){if(a.crossDomain){var c,d=e.head||e.getElementsByTagName("head")[0]||e.documentElement;return{send:function(f,g){c=e.createElement("script"),c.async="async",a.scriptCharset&&(c.charset=a.scriptCharset),c.src=a.url,c.onload=c.onreadystatechange=function(a,e){if(e||!c.readyState||/loaded|complete/.test(c.readyState))c.onload=c.onreadystatechange=null,d&&c.parentNode&&d.removeChild(c),c=b,e||g(200,"success")},d.insertBefore(c,d.firstChild)},abort:function(){c&&c.onload(0,1)}}}});var cI,cJ=a.ActiveXObject?function(){for(var a in cI)cI[a](0,1)}:!1,cK=0;p.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&cL()||cM()}:cL,function(a){p.extend(p.support,{ajax:!!a,cors:!!a&&"withCredentials"in a})}(p.ajaxSettings.xhr()),p.support.ajax&&p.ajaxTransport(function(c){if(!c.crossDomain||p.support.cors){var d;return{send:function(e,f){var g,h,i=c.xhr();c.username?i.open(c.type,c.url,c.async,c.username,c.password):i.open(c.type,c.url,c.async);if(c.xhrFields)for(h in c.xhrFields)i[h]=c.xhrFields[h];c.mimeType&&i.overrideMimeType&&i.overrideMimeType(c.mimeType),!c.crossDomain&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(h in e)i.setRequestHeader(h,e[h])}catch(j){}i.send(c.hasContent&&c.data||null),d=function(a,e){var h,j,k,l,m;try{if(d&&(e||i.readyState===4)){d=b,g&&(i.onreadystatechange=p.noop,cJ&&delete cI[g]);if(e)i.readyState!==4&&i.abort();else{h=i.status,k=i.getAllResponseHeaders(),l={},m=i.responseXML,m&&m.documentElement&&(l.xml=m);try{l.text=i.responseText}catch(a){}try{j=i.statusText}catch(n){j=""}!h&&c.isLocal&&!c.crossDomain?h=l.text?200:404:h===1223&&(h=204)}}}catch(o){e||f(-1,o)}l&&f(h,j,l,k)},c.async?i.readyState===4?setTimeout(d,0):(g=++cK,cJ&&(cI||(cI={},p(a).unload(cJ)),cI[g]=d),i.onreadystatechange=d):d()},abort:function(){d&&d(0,1)}}}});var cN,cO,cP=/^(?:toggle|show|hide)$/,cQ=new RegExp("^(?:([-+])=|)("+q+")([a-z%]*)$","i"),cR=/queueHooks$/,cS=[cY],cT={"*":[function(a,b){var c,d,e=this.createTween(a,b),f=cQ.exec(b),g=e.cur(),h=+g||0,i=1,j=20;if(f){c=+f[2],d=f[3]||(p.cssNumber[a]?"":"px");if(d!=="px"&&h){h=p.css(e.elem,a,!0)||c||1;do i=i||".5",h=h/i,p.style(e.elem,a,h+d);while(i!==(i=e.cur()/g)&&i!==1&&--j)}e.unit=d,e.start=h,e.end=f[1]?h+(f[1]+1)*c:c}return e}]};p.Animation=p.extend(cW,{tweener:function(a,b){p.isFunction(a)?(b=a,a=["*"]):a=a.split(" ");var c,d=0,e=a.length;for(;d<e;d++)c=a[d],cT[c]=cT[c]||[],cT[c].unshift(b)},prefilter:function(a,b){b?cS.unshift(a):cS.push(a)}}),p.Tween=cZ,cZ.prototype={constructor:cZ,init:function(a,b,c,d,e,f){this.elem=a,this.prop=c,this.easing=e||"swing",this.options=b,this.start=this.now=this.cur(),this.end=d,this.unit=f||(p.cssNumber[c]?"":"px")},cur:function(){var a=cZ.propHooks[this.prop];return a&&a.get?a.get(this):cZ.propHooks._default.get(this)},run:function(a){var b,c=cZ.propHooks[this.prop];return this.options.duration?this.pos=b=p.easing[this.easing](a,this.options.duration*a,0,1,this.options.duration):this.pos=b=a,this.now=(this.end-this.start)*b+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),c&&c.set?c.set(this):cZ.propHooks._default.set(this),this}},cZ.prototype.init.prototype=cZ.prototype,cZ.propHooks={_default:{get:function(a){var b;return a.elem[a.prop]==null||!!a.elem.style&&a.elem.style[a.prop]!=null?(b=p.css(a.elem,a.prop,!1,""),!b||b==="auto"?0:b):a.elem[a.prop]},set:function(a){p.fx.step[a.prop]?p.fx.step[a.prop](a):a.elem.style&&(a.elem.style[p.cssProps[a.prop]]!=null||p.cssHooks[a.prop])?p.style(a.elem,a.prop,a.now+a.unit):a.elem[a.prop]=a.now}}},cZ.propHooks.scrollTop=cZ.propHooks.scrollLeft={set:function(a){a.elem.nodeType&&a.elem.parentNode&&(a.elem[a.prop]=a.now)}},p.each(["toggle","show","hide"],function(a,b){var c=p.fn[b];p.fn[b]=function(d,e,f){return d==null||typeof d=="boolean"||!a&&p.isFunction(d)&&p.isFunction(e)?c.apply(this,arguments):this.animate(c$(b,!0),d,e,f)}}),p.fn.extend({fadeTo:function(a,b,c,d){return this.filter(bZ).css("opacity",0).show().end().animate({opacity:b},a,c,d)},animate:function(a,b,c,d){var e=p.isEmptyObject(a),f=p.speed(b,c,d),g=function(){var b=cW(this,p.extend({},a),f);e&&b.stop(!0)};return e||f.queue===!1?this.each(g):this.queue(f.queue,g)},stop:function(a,c,d){var e=function(a){var b=a.stop;delete a.stop,b(d)};return typeof a!="string"&&(d=c,c=a,a=b),c&&a!==!1&&this.queue(a||"fx",[]),this.each(function(){var b=!0,c=a!=null&&a+"queueHooks",f=p.timers,g=p._data(this);if(c)g[c]&&g[c].stop&&e(g[c]);else for(c in g)g[c]&&g[c].stop&&cR.test(c)&&e(g[c]);for(c=f.length;c--;)f[c].elem===this&&(a==null||f[c].queue===a)&&(f[c].anim.stop(d),b=!1,f.splice(c,1));(b||!d)&&p.dequeue(this,a)})}}),p.each({slideDown:c$("show"),slideUp:c$("hide"),slideToggle:c$("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(a,b){p.fn[a]=function(a,c,d){return this.animate(b,a,c,d)}}),p.speed=function(a,b,c){var d=a&&typeof a=="object"?p.extend({},a):{complete:c||!c&&b||p.isFunction(a)&&a,duration:a,easing:c&&b||b&&!p.isFunction(b)&&b};d.duration=p.fx.off?0:typeof d.duration=="number"?d.duration:d.duration in p.fx.speeds?p.fx.speeds[d.duration]:p.fx.speeds._default;if(d.queue==null||d.queue===!0)d.queue="fx";return d.old=d.complete,d.complete=function(){p.isFunction(d.old)&&d.old.call(this),d.queue&&p.dequeue(this,d.queue)},d},p.easing={linear:function(a){return a},swing:function(a){return.5-Math.cos(a*Math.PI)/2}},p.timers=[],p.fx=cZ.prototype.init,p.fx.tick=function(){var a,b=p.timers,c=0;for(;c<b.length;c++)a=b[c],!a()&&b[c]===a&&b.splice(c--,1);b.length||p.fx.stop()},p.fx.timer=function(a){a()&&p.timers.push(a)&&!cO&&(cO=setInterval(p.fx.tick,p.fx.interval))},p.fx.interval=13,p.fx.stop=function(){clearInterval(cO),cO=null},p.fx.speeds={slow:600,fast:200,_default:400},p.fx.step={},p.expr&&p.expr.filters&&(p.expr.filters.animated=function(a){return p.grep(p.timers,function(b){return a===b.elem}).length});var c_=/^(?:body|html)$/i;p.fn.offset=function(a){if(arguments.length)return a===b?this:this.each(function(b){p.offset.setOffset(this,a,b)});var c,d,e,f,g,h,i,j={top:0,left:0},k=this[0],l=k&&k.ownerDocument;if(!l)return;return(d=l.body)===k?p.offset.bodyOffset(k):(c=l.documentElement,p.contains(c,k)?(typeof k.getBoundingClientRect!="undefined"&&(j=k.getBoundingClientRect()),e=da(l),f=c.clientTop||d.clientTop||0,g=c.clientLeft||d.clientLeft||0,h=e.pageYOffset||c.scrollTop,i=e.pageXOffset||c.scrollLeft,{top:j.top+h-f,left:j.left+i-g}):j)},p.offset={bodyOffset:function(a){var b=a.offsetTop,c=a.offsetLeft;return p.support.doesNotIncludeMarginInBodyOffset&&(b+=parseFloat(p.css(a,"marginTop"))||0,c+=parseFloat(p.css(a,"marginLeft"))||0),{top:b,left:c}},setOffset:function(a,b,c){var d=p.css(a,"position");d==="static"&&(a.style.position="relative");var e=p(a),f=e.offset(),g=p.css(a,"top"),h=p.css(a,"left"),i=(d==="absolute"||d==="fixed")&&p.inArray("auto",[g,h])>-1,j={},k={},l,m;i?(k=e.position(),l=k.top,m=k.left):(l=parseFloat(g)||0,m=parseFloat(h)||0),p.isFunction(b)&&(b=b.call(a,c,f)),b.top!=null&&(j.top=b.top-f.top+l),b.left!=null&&(j.left=b.left-f.left+m),"using"in b?b.using.call(a,j):e.css(j)}},p.fn.extend({position:function(){if(!this[0])return;var a=this[0],b=this.offsetParent(),c=this.offset(),d=c_.test(b[0].nodeName)?{top:0,left:0}:b.offset();return c.top-=parseFloat(p.css(a,"marginTop"))||0,c.left-=parseFloat(p.css(a,"marginLeft"))||0,d.top+=parseFloat(p.css(b[0],"borderTopWidth"))||0,d.left+=parseFloat(p.css(b[0],"borderLeftWidth"))||0,{top:c.top-d.top,left:c.left-d.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||e.body;while(a&&!c_.test(a.nodeName)&&p.css(a,"position")==="static")a=a.offsetParent;return a||e.body})}}),p.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(a,c){var d=/Y/.test(c);p.fn[a]=function(e){return p.access(this,function(a,e,f){var g=da(a);if(f===b)return g?c in g?g[c]:g.document.documentElement[e]:a[e];g?g.scrollTo(d?p(g).scrollLeft():f,d?f:p(g).scrollTop()):a[e]=f},a,e,arguments.length,null)}}),p.each({Height:"height",Width:"width"},function(a,c){p.each({padding:"inner"+a,content:c,"":"outer"+a},function(d,e){p.fn[e]=function(e,f){var g=arguments.length&&(d||typeof e!="boolean"),h=d||(e===!0||f===!0?"margin":"border");return p.access(this,function(c,d,e){var f;return p.isWindow(c)?c.document.documentElement["client"+a]:c.nodeType===9?(f=c.documentElement,Math.max(c.body["scroll"+a],f["scroll"+a],c.body["offset"+a],f["offset"+a],f["client"+a])):e===b?p.css(c,d,e,h):p.style(c,d,e,h)},c,g?e:b,g,null)}})}),a.jQuery=a.$=p,typeof define=="function"&&define.amd&&define.amd.jQuery&&define("jquery",[],function(){return p})})(window); diff --git a/pub/lib/jquery/ui/jquery-ui.js b/pub/lib/jquery/ui/jquery-ui.js deleted file mode 100644 index d9d9b66bf21f7bd8d8a7a20c0dd32f084793e06c..0000000000000000000000000000000000000000 --- a/pub/lib/jquery/ui/jquery-ui.js +++ /dev/null @@ -1,14742 +0,0 @@ -/*! jQuery UI - v1.9.0 - 2012-10-05 - * http://jqueryui.com - * Includes: jquery.ui.core.js, jquery.ui.widget.js, jquery.ui.mouse.js, jquery.ui.draggable.js, jquery.ui.droppable.js, jquery.ui.resizable.js, jquery.ui.selectable.js, jquery.ui.sortable.js, jquery.ui.effect.js, jquery.ui.accordion.js, jquery.ui.autocomplete.js, jquery.ui.button.js, jquery.ui.datepicker.js, jquery.ui.dialog.js, jquery.ui.effect-blind.js, jquery.ui.effect-bounce.js, jquery.ui.effect-clip.js, jquery.ui.effect-drop.js, jquery.ui.effect-explode.js, jquery.ui.effect-fade.js, jquery.ui.effect-fold.js, jquery.ui.effect-highlight.js, jquery.ui.effect-pulsate.js, jquery.ui.effect-scale.js, jquery.ui.effect-shake.js, jquery.ui.effect-slide.js, jquery.ui.effect-transfer.js, jquery.ui.menu.js, jquery.ui.position.js, jquery.ui.progressbar.js, jquery.ui.slider.js, jquery.ui.spinner.js, jquery.ui.tabs.js, jquery.ui.tooltip.js - * Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */ - -(function( $, undefined ) { - - var uuid = 0, - runiqueId = /^ui-id-\d+$/; - -// prevent duplicate loading -// this is only a problem because we proxy existing functions -// and we don't want to double proxy them - $.ui = $.ui || {}; - if ( $.ui.version ) { - return; - } - - $.extend( $.ui, { - version: "1.9.0", - - keyCode: { - BACKSPACE: 8, - COMMA: 188, - DELETE: 46, - DOWN: 40, - END: 35, - ENTER: 13, - ESCAPE: 27, - HOME: 36, - LEFT: 37, - NUMPAD_ADD: 107, - NUMPAD_DECIMAL: 110, - NUMPAD_DIVIDE: 111, - NUMPAD_ENTER: 108, - NUMPAD_MULTIPLY: 106, - NUMPAD_SUBTRACT: 109, - PAGE_DOWN: 34, - PAGE_UP: 33, - PERIOD: 190, - RIGHT: 39, - SPACE: 32, - TAB: 9, - UP: 38 - } - }); - -// plugins - $.fn.extend({ - _focus: $.fn.focus, - focus: function( delay, fn ) { - return typeof delay === "number" ? - this.each(function() { - var elem = this; - setTimeout(function() { - $( elem ).focus(); - if ( fn ) { - fn.call( elem ); - } - }, delay ); - }) : - this._focus.apply( this, arguments ); - }, - - scrollParent: function() { - var scrollParent; - if (($.browser.msie && (/(static|relative)/).test(this.css('position'))) || (/absolute/).test(this.css('position'))) { - scrollParent = this.parents().filter(function() { - return (/(relative|absolute|fixed)/).test($.css(this,'position')) && (/(auto|scroll)/).test($.css(this,'overflow')+$.css(this,'overflow-y')+$.css(this,'overflow-x')); - }).eq(0); - } else { - scrollParent = this.parents().filter(function() { - return (/(auto|scroll)/).test($.css(this,'overflow')+$.css(this,'overflow-y')+$.css(this,'overflow-x')); - }).eq(0); - } - - return (/fixed/).test(this.css('position')) || !scrollParent.length ? $(document) : scrollParent; - }, - - zIndex: function( zIndex ) { - if ( zIndex !== undefined ) { - return this.css( "zIndex", zIndex ); - } - - if ( this.length ) { - var elem = $( this[ 0 ] ), position, value; - while ( elem.length && elem[ 0 ] !== document ) { - // Ignore z-index if position is set to a value where z-index is ignored by the browser - // This makes behavior of this function consistent across browsers - // WebKit always returns auto if the element is positioned - position = elem.css( "position" ); - if ( position === "absolute" || position === "relative" || position === "fixed" ) { - // IE returns 0 when zIndex is not specified - // other browsers return a string - // we ignore the case of nested elements with an explicit value of 0 - // <div style="z-index: -10;"><div style="z-index: 0;"></div></div> - value = parseInt( elem.css( "zIndex" ), 10 ); - if ( !isNaN( value ) && value !== 0 ) { - return value; - } - } - elem = elem.parent(); - } - } - - return 0; - }, - - uniqueId: function() { - return this.each(function() { - if ( !this.id ) { - this.id = "ui-id-" + (++uuid); - } - }); - }, - - removeUniqueId: function() { - return this.each(function() { - if ( runiqueId.test( this.id ) ) { - $( this ).removeAttr( "id" ); - } - }); - } - }); - -// support: jQuery <1.8 - if ( !$( "<a>" ).outerWidth( 1 ).jquery ) { - $.each( [ "Width", "Height" ], function( i, name ) { - var side = name === "Width" ? [ "Left", "Right" ] : [ "Top", "Bottom" ], - type = name.toLowerCase(), - orig = { - innerWidth: $.fn.innerWidth, - innerHeight: $.fn.innerHeight, - outerWidth: $.fn.outerWidth, - outerHeight: $.fn.outerHeight - }; - - function reduce( elem, size, border, margin ) { - $.each( side, function() { - size -= parseFloat( $.css( elem, "padding" + this ) ) || 0; - if ( border ) { - size -= parseFloat( $.css( elem, "border" + this + "Width" ) ) || 0; - } - if ( margin ) { - size -= parseFloat( $.css( elem, "margin" + this ) ) || 0; - } - }); - return size; - } - - $.fn[ "inner" + name ] = function( size ) { - if ( size === undefined ) { - return orig[ "inner" + name ].call( this ); - } - - return this.each(function() { - $( this ).css( type, reduce( this, size ) + "px" ); - }); - }; - - $.fn[ "outer" + name] = function( size, margin ) { - if ( typeof size !== "number" ) { - return orig[ "outer" + name ].call( this, size ); - } - - return this.each(function() { - $( this).css( type, reduce( this, size, true, margin ) + "px" ); - }); - }; - }); - } - -// selectors - function focusable( element, isTabIndexNotNaN ) { - var map, mapName, img, - nodeName = element.nodeName.toLowerCase(); - if ( "area" === nodeName ) { - map = element.parentNode; - mapName = map.name; - if ( !element.href || !mapName || map.nodeName.toLowerCase() !== "map" ) { - return false; - } - img = $( "img[usemap=#" + mapName + "]" )[0]; - return !!img && visible( img ); - } - return ( /input|select|textarea|button|object/.test( nodeName ) ? - !element.disabled : - "a" === nodeName ? - element.href || isTabIndexNotNaN : - isTabIndexNotNaN) && - // the element and all of its ancestors must be visible - visible( element ); - } - - function visible( element ) { - return !$( element ).parents().andSelf().filter(function() { - return $.css( this, "visibility" ) === "hidden" || - $.expr.filters.hidden( this ); - }).length; - } - - $.extend( $.expr[ ":" ], { - data: $.expr.createPseudo ? - $.expr.createPseudo(function( dataName ) { - return function( elem ) { - return !!$.data( elem, dataName ); - }; - }) : - // support: jQuery <1.8 - function( elem, i, match ) { - return !!$.data( elem, match[ 3 ] ); - }, - - focusable: function( element ) { - return focusable( element, !isNaN( $.attr( element, "tabindex" ) ) ); - }, - - tabbable: function( element ) { - var tabIndex = $.attr( element, "tabindex" ), - isTabIndexNaN = isNaN( tabIndex ); - return ( isTabIndexNaN || tabIndex >= 0 ) && focusable( element, !isTabIndexNaN ); - } - }); - -// support - $(function() { - var body = document.body, - div = body.appendChild( div = document.createElement( "div" ) ); - - // access offsetHeight before setting the style to prevent a layout bug - // in IE 9 which causes the element to continue to take up space even - // after it is removed from the DOM (#8026) - div.offsetHeight; - - $.extend( div.style, { - minHeight: "100px", - height: "auto", - padding: 0, - borderWidth: 0 - }); - - $.support.minHeight = div.offsetHeight === 100; - $.support.selectstart = "onselectstart" in div; - - // set display to none to avoid a layout bug in IE - // http://dev.jquery.com/ticket/4014 - body.removeChild( div ).style.display = "none"; - }); - - - - - -// deprecated - - $.fn.extend({ - disableSelection: function() { - return this.bind( ( $.support.selectstart ? "selectstart" : "mousedown" ) + - ".ui-disableSelection", function( event ) { - event.preventDefault(); - }); - }, - - enableSelection: function() { - return this.unbind( ".ui-disableSelection" ); - } - }); - - $.extend( $.ui, { - // $.ui.plugin is deprecated. Use the proxy pattern instead. - plugin: { - add: function( module, option, set ) { - var i, - proto = $.ui[ module ].prototype; - for ( i in set ) { - proto.plugins[ i ] = proto.plugins[ i ] || []; - proto.plugins[ i ].push( [ option, set[ i ] ] ); - } - }, - call: function( instance, name, args ) { - var i, - set = instance.plugins[ name ]; - if ( !set || !instance.element[ 0 ].parentNode || instance.element[ 0 ].parentNode.nodeType === 11 ) { - return; - } - - for ( i = 0; i < set.length; i++ ) { - if ( instance.options[ set[ i ][ 0 ] ] ) { - set[ i ][ 1 ].apply( instance.element, args ); - } - } - } - }, - - contains: $.contains, - - // only used by resizable - hasScroll: function( el, a ) { - - //If overflow is hidden, the element might have extra content, but the user wants to hide it - if ( $( el ).css( "overflow" ) === "hidden") { - return false; - } - - var scroll = ( a && a === "left" ) ? "scrollLeft" : "scrollTop", - has = false; - - if ( el[ scroll ] > 0 ) { - return true; - } - - // TODO: determine which cases actually cause this to happen - // if the element doesn't have the scroll set, see if it's possible to - // set the scroll - el[ scroll ] = 1; - has = ( el[ scroll ] > 0 ); - el[ scroll ] = 0; - return has; - }, - - // these are odd functions, fix the API or move into individual plugins - isOverAxis: function( x, reference, size ) { - //Determines when x coordinate is over "b" element axis - return ( x > reference ) && ( x < ( reference + size ) ); - }, - isOver: function( y, x, top, left, height, width ) { - //Determines when x, y coordinates is over "b" element - return $.ui.isOverAxis( y, top, height ) && $.ui.isOverAxis( x, left, width ); - } - }); - -})( jQuery ); - -(function( $, undefined ) { - - var uuid = 0, - slice = Array.prototype.slice, - _cleanData = $.cleanData; - $.cleanData = function( elems ) { - for ( var i = 0, elem; (elem = elems[i]) != null; i++ ) { - try { - $( elem ).triggerHandler( "remove" ); - // http://bugs.jquery.com/ticket/8235 - } catch( e ) {} - } - _cleanData( elems ); - }; - - $.widget = function( name, base, prototype ) { - var fullName, existingConstructor, constructor, basePrototype, - namespace = name.split( "." )[ 0 ]; - - name = name.split( "." )[ 1 ]; - fullName = namespace + "-" + name; - - if ( !prototype ) { - prototype = base; - base = $.Widget; - } - - // create selector for plugin - $.expr[ ":" ][ fullName.toLowerCase() ] = function( elem ) { - return !!$.data( elem, fullName ); - }; - - $[ namespace ] = $[ namespace ] || {}; - existingConstructor = $[ namespace ][ name ]; - constructor = $[ namespace ][ name ] = function( options, element ) { - // allow instantiation without "new" keyword - if ( !this._createWidget ) { - return new constructor( options, element ); - } - - // allow instantiation without initializing for simple inheritance - // must use "new" keyword (the code above always passes args) - if ( arguments.length ) { - this._createWidget( options, element ); - } - }; - // extend with the existing constructor to carry over any static properties - $.extend( constructor, existingConstructor, { - version: prototype.version, - // copy the object used to create the prototype in case we need to - // redefine the widget later - _proto: $.extend( {}, prototype ), - // track widgets that inherit from this widget in case this widget is - // redefined after a widget inherits from it - _childConstructors: [] - }); - - basePrototype = new base(); - // we need to make the options hash a property directly on the new instance - // otherwise we'll modify the options hash on the prototype that we're - // inheriting from - basePrototype.options = $.widget.extend( {}, basePrototype.options ); - $.each( prototype, function( prop, value ) { - if ( $.isFunction( value ) ) { - prototype[ prop ] = (function() { - var _super = function() { - return base.prototype[ prop ].apply( this, arguments ); - }, - _superApply = function( args ) { - return base.prototype[ prop ].apply( this, args ); - }; - return function() { - var __super = this._super, - __superApply = this._superApply, - returnValue; - - this._super = _super; - this._superApply = _superApply; - - returnValue = value.apply( this, arguments ); - - this._super = __super; - this._superApply = __superApply; - - return returnValue; - }; - })(); - } - }); - constructor.prototype = $.widget.extend( basePrototype, { - // TODO: remove support for widgetEventPrefix - // always use the name + a colon as the prefix, e.g., draggable:start - // don't prefix for widgets that aren't DOM-based - widgetEventPrefix: name - }, prototype, { - constructor: constructor, - namespace: namespace, - widgetName: name, - // TODO remove widgetBaseClass, see #8155 - widgetBaseClass: fullName, - widgetFullName: fullName - }); - - // If this widget is being redefined then we need to find all widgets that - // are inheriting from it and redefine all of them so that they inherit from - // the new version of this widget. We're essentially trying to replace one - // level in the prototype chain. - if ( existingConstructor ) { - $.each( existingConstructor._childConstructors, function( i, child ) { - var childPrototype = child.prototype; - - // redefine the child widget using the same prototype that was - // originally used, but inherit from the new version of the base - $.widget( childPrototype.namespace + "." + childPrototype.widgetName, constructor, child._proto ); - }); - // remove the list of existing child constructors from the old constructor - // so the old child constructors can be garbage collected - delete existingConstructor._childConstructors; - } else { - base._childConstructors.push( constructor ); - } - - $.widget.bridge( name, constructor ); - }; - - $.widget.extend = function( target ) { - var input = slice.call( arguments, 1 ), - inputIndex = 0, - inputLength = input.length, - key, - value; - for ( ; inputIndex < inputLength; inputIndex++ ) { - for ( key in input[ inputIndex ] ) { - value = input[ inputIndex ][ key ]; - if (input[ inputIndex ].hasOwnProperty( key ) && value !== undefined ) { - target[ key ] = $.isPlainObject( value ) ? $.widget.extend( {}, target[ key ], value ) : value; - } - } - } - return target; - }; - - $.widget.bridge = function( name, object ) { - var fullName = object.prototype.widgetFullName; - $.fn[ name ] = function( options ) { - var isMethodCall = typeof options === "string", - args = slice.call( arguments, 1 ), - returnValue = this; - - // allow multiple hashes to be passed on init - options = !isMethodCall && args.length ? - $.widget.extend.apply( null, [ options ].concat(args) ) : - options; - - if ( isMethodCall ) { - this.each(function() { - var methodValue, - instance = $.data( this, fullName ); - if ( !instance ) { - return $.error( "cannot call methods on " + name + " prior to initialization; " + - "attempted to call method '" + options + "'" ); - } - if ( !$.isFunction( instance[options] ) || options.charAt( 0 ) === "_" ) { - return $.error( "no such method '" + options + "' for " + name + " widget instance" ); - } - methodValue = instance[ options ].apply( instance, args ); - if ( methodValue !== instance && methodValue !== undefined ) { - returnValue = methodValue && methodValue.jquery ? - returnValue.pushStack( methodValue.get() ) : - methodValue; - return false; - } - }); - } else { - this.each(function() { - var instance = $.data( this, fullName ); - if ( instance ) { - instance.option( options || {} )._init(); - } else { - new object( options, this ); - } - }); - } - - return returnValue; - }; - }; - - $.Widget = function( options, element ) {}; - $.Widget._childConstructors = []; - - $.Widget.prototype = { - widgetName: "widget", - widgetEventPrefix: "", - defaultElement: "<div>", - options: { - disabled: false, - - // callbacks - create: null - }, - _createWidget: function( options, element ) { - element = $( element || this.defaultElement || this )[ 0 ]; - this.element = $( element ); - this.uuid = uuid++; - this.eventNamespace = "." + this.widgetName + this.uuid; - this.options = $.widget.extend( {}, - this.options, - this._getCreateOptions(), - options ); - - this.bindings = $(); - this.hoverable = $(); - this.focusable = $(); - - if ( element !== this ) { - // 1.9 BC for #7810 - // TODO remove dual storage - $.data( element, this.widgetName, this ); - $.data( element, this.widgetFullName, this ); - this._on({ remove: "destroy" }); - this.document = $( element.style ? - // element within the document - element.ownerDocument : - // element is window or document - element.document || element ); - this.window = $( this.document[0].defaultView || this.document[0].parentWindow ); - } - - this._create(); - this._trigger( "create", null, this._getCreateEventData() ); - this._init(); - }, - _getCreateOptions: $.noop, - _getCreateEventData: $.noop, - _create: $.noop, - _init: $.noop, - - destroy: function() { - this._destroy(); - // we can probably remove the unbind calls in 2.0 - // all event bindings should go through this._on() - this.element - .unbind( this.eventNamespace ) - // 1.9 BC for #7810 - // TODO remove dual storage - .removeData( this.widgetName ) - .removeData( this.widgetFullName ) - // support: jquery <1.6.3 - // http://bugs.jquery.com/ticket/9413 - .removeData( $.camelCase( this.widgetFullName ) ); - this.widget() - .unbind( this.eventNamespace ) - .removeAttr( "aria-disabled" ) - .removeClass( - this.widgetFullName + "-disabled " + - "ui-state-disabled" ); - - // clean up events and states - this.bindings.unbind( this.eventNamespace ); - this.hoverable.removeClass( "ui-state-hover" ); - this.focusable.removeClass( "ui-state-focus" ); - }, - _destroy: $.noop, - - widget: function() { - return this.element; - }, - - option: function( key, value ) { - var options = key, - parts, - curOption, - i; - - if ( arguments.length === 0 ) { - // don't return a reference to the internal hash - return $.widget.extend( {}, this.options ); - } - - if ( typeof key === "string" ) { - // handle nested keys, e.g., "foo.bar" => { foo: { bar: ___ } } - options = {}; - parts = key.split( "." ); - key = parts.shift(); - if ( parts.length ) { - curOption = options[ key ] = $.widget.extend( {}, this.options[ key ] ); - for ( i = 0; i < parts.length - 1; i++ ) { - curOption[ parts[ i ] ] = curOption[ parts[ i ] ] || {}; - curOption = curOption[ parts[ i ] ]; - } - key = parts.pop(); - if ( value === undefined ) { - return curOption[ key ] === undefined ? null : curOption[ key ]; - } - curOption[ key ] = value; - } else { - if ( value === undefined ) { - return this.options[ key ] === undefined ? null : this.options[ key ]; - } - options[ key ] = value; - } - } - - this._setOptions( options ); - - return this; - }, - _setOptions: function( options ) { - var key; - - for ( key in options ) { - this._setOption( key, options[ key ] ); - } - - return this; - }, - _setOption: function( key, value ) { - this.options[ key ] = value; - - if ( key === "disabled" ) { - this.widget() - .toggleClass( this.widgetFullName + "-disabled ui-state-disabled", !!value ) - .attr( "aria-disabled", value ); - this.hoverable.removeClass( "ui-state-hover" ); - this.focusable.removeClass( "ui-state-focus" ); - } - - return this; - }, - - enable: function() { - return this._setOption( "disabled", false ); - }, - disable: function() { - return this._setOption( "disabled", true ); - }, - - _on: function( element, handlers ) { - // no element argument, shuffle and use this.element - if ( !handlers ) { - handlers = element; - element = this.element; - } else { - // accept selectors, DOM elements - element = $( element ); - this.bindings = this.bindings.add( element ); - } - - var instance = this; - $.each( handlers, function( event, handler ) { - function handlerProxy() { - // allow widgets to customize the disabled handling - // - disabled as an array instead of boolean - // - disabled class as method for disabling individual parts - if ( instance.options.disabled === true || - $( this ).hasClass( "ui-state-disabled" ) ) { - return; - } - return ( typeof handler === "string" ? instance[ handler ] : handler ) - .apply( instance, arguments ); - } - - // copy the guid so direct unbinding works - if ( typeof handler !== "string" ) { - handlerProxy.guid = handler.guid = - handler.guid || handlerProxy.guid || $.guid++; - } - - var match = event.match( /^(\w+)\s*(.*)$/ ), - eventName = match[1] + instance.eventNamespace, - selector = match[2]; - if ( selector ) { - instance.widget().delegate( selector, eventName, handlerProxy ); - } else { - element.bind( eventName, handlerProxy ); - } - }); - }, - - _off: function( element, eventName ) { - eventName = (eventName || "").split( " " ).join( this.eventNamespace + " " ) + this.eventNamespace; - element.unbind( eventName ).undelegate( eventName ); - }, - - _delay: function( handler, delay ) { - function handlerProxy() { - return ( typeof handler === "string" ? instance[ handler ] : handler ) - .apply( instance, arguments ); - } - var instance = this; - return setTimeout( handlerProxy, delay || 0 ); - }, - - _hoverable: function( element ) { - this.hoverable = this.hoverable.add( element ); - this._on( element, { - mouseenter: function( event ) { - $( event.currentTarget ).addClass( "ui-state-hover" ); - }, - mouseleave: function( event ) { - $( event.currentTarget ).removeClass( "ui-state-hover" ); - } - }); - }, - - _focusable: function( element ) { - this.focusable = this.focusable.add( element ); - this._on( element, { - focusin: function( event ) { - $( event.currentTarget ).addClass( "ui-state-focus" ); - }, - focusout: function( event ) { - $( event.currentTarget ).removeClass( "ui-state-focus" ); - } - }); - }, - - _trigger: function( type, event, data ) { - var prop, orig, - callback = this.options[ type ]; - - data = data || {}; - event = $.Event( event ); - event.type = ( type === this.widgetEventPrefix ? - type : - this.widgetEventPrefix + type ).toLowerCase(); - // the original event may come from any element - // so we need to reset the target on the new event - event.target = this.element[ 0 ]; - - // copy original event properties over to the new event - orig = event.originalEvent; - if ( orig ) { - for ( prop in orig ) { - if ( !( prop in event ) ) { - event[ prop ] = orig[ prop ]; - } - } - } - - this.element.trigger( event, data ); - return !( $.isFunction( callback ) && - callback.apply( this.element[0], [ event ].concat( data ) ) === false || - event.isDefaultPrevented() ); - } - }; - - $.each( { show: "fadeIn", hide: "fadeOut" }, function( method, defaultEffect ) { - $.Widget.prototype[ "_" + method ] = function( element, options, callback ) { - if ( typeof options === "string" ) { - options = { effect: options }; - } - var hasOptions, - effectName = !options ? - method : - options === true || typeof options === "number" ? - defaultEffect : - options.effect || defaultEffect; - options = options || {}; - if ( typeof options === "number" ) { - options = { duration: options }; - } - hasOptions = !$.isEmptyObject( options ); - options.complete = callback; - if ( options.delay ) { - element.delay( options.delay ); - } - if ( hasOptions && $.effects && ( $.effects.effect[ effectName ] || $.uiBackCompat !== false && $.effects[ effectName ] ) ) { - element[ method ]( options ); - } else if ( effectName !== method && element[ effectName ] ) { - element[ effectName ]( options.duration, options.easing, callback ); - } else { - element.queue(function( next ) { - $( this )[ method ](); - if ( callback ) { - callback.call( element[ 0 ] ); - } - next(); - }); - } - }; - }); - -// DEPRECATED - if ( $.uiBackCompat !== false ) { - $.Widget.prototype._getCreateOptions = function() { - return $.metadata && $.metadata.get( this.element[0] )[ this.widgetName ]; - }; - } - -})( jQuery ); - -(function( $, undefined ) { - - var mouseHandled = false; - $( document ).mouseup( function( e ) { - mouseHandled = false; - }); - - $.widget("ui.mouse", { - version: "1.9.0", - options: { - cancel: 'input,textarea,button,select,option', - distance: 1, - delay: 0 - }, - _mouseInit: function() { - var that = this; - - this.element - .bind('mousedown.'+this.widgetName, function(event) { - return that._mouseDown(event); - }) - .bind('click.'+this.widgetName, function(event) { - if (true === $.data(event.target, that.widgetName + '.preventClickEvent')) { - $.removeData(event.target, that.widgetName + '.preventClickEvent'); - event.stopImmediatePropagation(); - return false; - } - }); - - this.started = false; - }, - - // TODO: make sure destroying one instance of mouse doesn't mess with - // other instances of mouse - _mouseDestroy: function() { - this.element.unbind('.'+this.widgetName); - if ( this._mouseMoveDelegate ) { - $(document) - .unbind('mousemove.'+this.widgetName, this._mouseMoveDelegate) - .unbind('mouseup.'+this.widgetName, this._mouseUpDelegate); - } - }, - - _mouseDown: function(event) { - // don't let more than one widget handle mouseStart - if( mouseHandled ) { return; } - - // we may have missed mouseup (out of window) - (this._mouseStarted && this._mouseUp(event)); - - this._mouseDownEvent = event; - - var that = this, - btnIsLeft = (event.which === 1), - // event.target.nodeName works around a bug in IE 8 with - // disabled inputs (#7620) - elIsCancel = (typeof this.options.cancel === "string" && event.target.nodeName ? $(event.target).closest(this.options.cancel).length : false); - if (!btnIsLeft || elIsCancel || !this._mouseCapture(event)) { - return true; - } - - this.mouseDelayMet = !this.options.delay; - if (!this.mouseDelayMet) { - this._mouseDelayTimer = setTimeout(function() { - that.mouseDelayMet = true; - }, this.options.delay); - } - - if (this._mouseDistanceMet(event) && this._mouseDelayMet(event)) { - this._mouseStarted = (this._mouseStart(event) !== false); - if (!this._mouseStarted) { - event.preventDefault(); - return true; - } - } - - // Click event may never have fired (Gecko & Opera) - if (true === $.data(event.target, this.widgetName + '.preventClickEvent')) { - $.removeData(event.target, this.widgetName + '.preventClickEvent'); - } - - // these delegates are required to keep context - this._mouseMoveDelegate = function(event) { - return that._mouseMove(event); - }; - this._mouseUpDelegate = function(event) { - return that._mouseUp(event); - }; - $(document) - .bind('mousemove.'+this.widgetName, this._mouseMoveDelegate) - .bind('mouseup.'+this.widgetName, this._mouseUpDelegate); - - event.preventDefault(); - - mouseHandled = true; - return true; - }, - - _mouseMove: function(event) { - // IE mouseup check - mouseup happened when mouse was out of window - if ($.browser.msie && !(document.documentMode >= 9) && !event.button) { - return this._mouseUp(event); - } - - if (this._mouseStarted) { - this._mouseDrag(event); - return event.preventDefault(); - } - - if (this._mouseDistanceMet(event) && this._mouseDelayMet(event)) { - this._mouseStarted = - (this._mouseStart(this._mouseDownEvent, event) !== false); - (this._mouseStarted ? this._mouseDrag(event) : this._mouseUp(event)); - } - - return !this._mouseStarted; - }, - - _mouseUp: function(event) { - $(document) - .unbind('mousemove.'+this.widgetName, this._mouseMoveDelegate) - .unbind('mouseup.'+this.widgetName, this._mouseUpDelegate); - - if (this._mouseStarted) { - this._mouseStarted = false; - - if (event.target === this._mouseDownEvent.target) { - $.data(event.target, this.widgetName + '.preventClickEvent', true); - } - - this._mouseStop(event); - } - - return false; - }, - - _mouseDistanceMet: function(event) { - return (Math.max( - Math.abs(this._mouseDownEvent.pageX - event.pageX), - Math.abs(this._mouseDownEvent.pageY - event.pageY) - ) >= this.options.distance - ); - }, - - _mouseDelayMet: function(event) { - return this.mouseDelayMet; - }, - - // These are placeholder methods, to be overriden by extending plugin - _mouseStart: function(event) {}, - _mouseDrag: function(event) {}, - _mouseStop: function(event) {}, - _mouseCapture: function(event) { return true; } - }); - -})(jQuery); - -(function( $, undefined ) { - - $.widget("ui.draggable", $.ui.mouse, { - version: "1.9.0", - widgetEventPrefix: "drag", - options: { - addClasses: true, - appendTo: "parent", - axis: false, - connectToSortable: false, - containment: false, - cursor: "auto", - cursorAt: false, - grid: false, - handle: false, - helper: "original", - iframeFix: false, - opacity: false, - refreshPositions: false, - revert: false, - revertDuration: 500, - scope: "default", - scroll: true, - scrollSensitivity: 20, - scrollSpeed: 20, - snap: false, - snapMode: "both", - snapTolerance: 20, - stack: false, - zIndex: false - }, - _create: function() { - - if (this.options.helper == 'original' && !(/^(?:r|a|f)/).test(this.element.css("position"))) - this.element[0].style.position = 'relative'; - - (this.options.addClasses && this.element.addClass("ui-draggable")); - (this.options.disabled && this.element.addClass("ui-draggable-disabled")); - - this._mouseInit(); - - }, - - _destroy: function() { - this.element.removeClass( "ui-draggable ui-draggable-dragging ui-draggable-disabled" ); - this._mouseDestroy(); - }, - - _mouseCapture: function(event) { - - var o = this.options; - - // among others, prevent a drag on a resizable-handle - if (this.helper || o.disabled || $(event.target).is('.ui-resizable-handle')) - return false; - - //Quit if we're not on a valid handle - this.handle = this._getHandle(event); - if (!this.handle) - return false; - - $(o.iframeFix === true ? "iframe" : o.iframeFix).each(function() { - $('<div class="ui-draggable-iframeFix" style="background: #fff;"></div>') - .css({ - width: this.offsetWidth+"px", height: this.offsetHeight+"px", - position: "absolute", opacity: "0.001", zIndex: 1000 - }) - .css($(this).offset()) - .appendTo("body"); - }); - - return true; - - }, - - _mouseStart: function(event) { - - var o = this.options; - - //Create and append the visible helper - this.helper = this._createHelper(event); - - this.helper.addClass("ui-draggable-dragging"); - - //Cache the helper size - this._cacheHelperProportions(); - - //If ddmanager is used for droppables, set the global draggable - if($.ui.ddmanager) - $.ui.ddmanager.current = this; - - /* - * - Position generation - - * This block generates everything position related - it's the core of draggables. - */ - - //Cache the margins of the original element - this._cacheMargins(); - - //Store the helper's css position - this.cssPosition = this.helper.css("position"); - this.scrollParent = this.helper.scrollParent(); - - //The element's absolute position on the page minus margins - this.offset = this.positionAbs = this.element.offset(); - this.offset = { - top: this.offset.top - this.margins.top, - left: this.offset.left - this.margins.left - }; - - $.extend(this.offset, { - click: { //Where the click happened, relative to the element - left: event.pageX - this.offset.left, - top: event.pageY - this.offset.top - }, - parent: this._getParentOffset(), - relative: this._getRelativeOffset() //This is a relative to absolute position minus the actual position calculation - only used for relative positioned helper - }); - - //Generate the original position - this.originalPosition = this.position = this._generatePosition(event); - this.originalPageX = event.pageX; - this.originalPageY = event.pageY; - - //Adjust the mouse offset relative to the helper if 'cursorAt' is supplied - (o.cursorAt && this._adjustOffsetFromHelper(o.cursorAt)); - - //Set a containment if given in the options - if(o.containment) - this._setContainment(); - - //Trigger event + callbacks - if(this._trigger("start", event) === false) { - this._clear(); - return false; - } - - //Recache the helper size - this._cacheHelperProportions(); - - //Prepare the droppable offsets - if ($.ui.ddmanager && !o.dropBehaviour) - $.ui.ddmanager.prepareOffsets(this, event); - - - this._mouseDrag(event, true); //Execute the drag once - this causes the helper not to be visible before getting its correct position - - //If the ddmanager is used for droppables, inform the manager that dragging has started (see #5003) - if ( $.ui.ddmanager ) $.ui.ddmanager.dragStart(this, event); - - return true; - }, - - _mouseDrag: function(event, noPropagation) { - - //Compute the helpers position - this.position = this._generatePosition(event); - this.positionAbs = this._convertPositionTo("absolute"); - - //Call plugins and callbacks and use the resulting position if something is returned - if (!noPropagation) { - var ui = this._uiHash(); - if(this._trigger('drag', event, ui) === false) { - this._mouseUp({}); - return false; - } - this.position = ui.position; - } - - if(!this.options.axis || this.options.axis != "y") this.helper[0].style.left = this.position.left+'px'; - if(!this.options.axis || this.options.axis != "x") this.helper[0].style.top = this.position.top+'px'; - if($.ui.ddmanager) $.ui.ddmanager.drag(this, event); - - return false; - }, - - _mouseStop: function(event) { - - //If we are using droppables, inform the manager about the drop - var dropped = false; - if ($.ui.ddmanager && !this.options.dropBehaviour) - dropped = $.ui.ddmanager.drop(this, event); - - //if a drop comes from outside (a sortable) - if(this.dropped) { - dropped = this.dropped; - this.dropped = false; - } - - //if the original element is no longer in the DOM don't bother to continue (see #8269) - var element = this.element[0], elementInDom = false; - while ( element && (element = element.parentNode) ) { - if (element == document ) { - elementInDom = true; - } - } - if ( !elementInDom && this.options.helper === "original" ) - return false; - - if((this.options.revert == "invalid" && !dropped) || (this.options.revert == "valid" && dropped) || this.options.revert === true || ($.isFunction(this.options.revert) && this.options.revert.call(this.element, dropped))) { - var that = this; - $(this.helper).animate(this.originalPosition, parseInt(this.options.revertDuration, 10), function() { - if(that._trigger("stop", event) !== false) { - that._clear(); - } - }); - } else { - if(this._trigger("stop", event) !== false) { - this._clear(); - } - } - - return false; - }, - - _mouseUp: function(event) { - //Remove frame helpers - $("div.ui-draggable-iframeFix").each(function() { - this.parentNode.removeChild(this); - }); - - //If the ddmanager is used for droppables, inform the manager that dragging has stopped (see #5003) - if( $.ui.ddmanager ) $.ui.ddmanager.dragStop(this, event); - - return $.ui.mouse.prototype._mouseUp.call(this, event); - }, - - cancel: function() { - - if(this.helper.is(".ui-draggable-dragging")) { - this._mouseUp({}); - } else { - this._clear(); - } - - return this; - - }, - - _getHandle: function(event) { - - var handle = !this.options.handle || !$(this.options.handle, this.element).length ? true : false; - $(this.options.handle, this.element) - .find("*") - .andSelf() - .each(function() { - if(this == event.target) handle = true; - }); - - return handle; - - }, - - _createHelper: function(event) { - - var o = this.options; - var helper = $.isFunction(o.helper) ? $(o.helper.apply(this.element[0], [event])) : (o.helper == 'clone' ? this.element.clone().removeAttr('id') : this.element); - - if(!helper.parents('body').length) - helper.appendTo((o.appendTo == 'parent' ? this.element[0].parentNode : o.appendTo)); - - if(helper[0] != this.element[0] && !(/(fixed|absolute)/).test(helper.css("position"))) - helper.css("position", "absolute"); - - return helper; - - }, - - _adjustOffsetFromHelper: function(obj) { - if (typeof obj == 'string') { - obj = obj.split(' '); - } - if ($.isArray(obj)) { - obj = {left: +obj[0], top: +obj[1] || 0}; - } - if ('left' in obj) { - this.offset.click.left = obj.left + this.margins.left; - } - if ('right' in obj) { - this.offset.click.left = this.helperProportions.width - obj.right + this.margins.left; - } - if ('top' in obj) { - this.offset.click.top = obj.top + this.margins.top; - } - if ('bottom' in obj) { - this.offset.click.top = this.helperProportions.height - obj.bottom + this.margins.top; - } - }, - - _getParentOffset: function() { - - //Get the offsetParent and cache its position - this.offsetParent = this.helper.offsetParent(); - var po = this.offsetParent.offset(); - - // This is a special case where we need to modify a offset calculated on start, since the following happened: - // 1. The position of the helper is absolute, so it's position is calculated based on the next positioned parent - // 2. The actual offset parent is a child of the scroll parent, and the scroll parent isn't the document, which means that - // the scroll is included in the initial calculation of the offset of the parent, and never recalculated upon drag - if(this.cssPosition == 'absolute' && this.scrollParent[0] != document && $.contains(this.scrollParent[0], this.offsetParent[0])) { - po.left += this.scrollParent.scrollLeft(); - po.top += this.scrollParent.scrollTop(); - } - - if((this.offsetParent[0] == document.body) //This needs to be actually done for all browsers, since pageX/pageY includes this information - || (this.offsetParent[0].tagName && this.offsetParent[0].tagName.toLowerCase() == 'html' && $.browser.msie)) //Ugly IE fix - po = { top: 0, left: 0 }; - - return { - top: po.top + (parseInt(this.offsetParent.css("borderTopWidth"),10) || 0), - left: po.left + (parseInt(this.offsetParent.css("borderLeftWidth"),10) || 0) - }; - - }, - - _getRelativeOffset: function() { - - if(this.cssPosition == "relative") { - var p = this.element.position(); - return { - top: p.top - (parseInt(this.helper.css("top"),10) || 0) + this.scrollParent.scrollTop(), - left: p.left - (parseInt(this.helper.css("left"),10) || 0) + this.scrollParent.scrollLeft() - }; - } else { - return { top: 0, left: 0 }; - } - - }, - - _cacheMargins: function() { - this.margins = { - left: (parseInt(this.element.css("marginLeft"),10) || 0), - top: (parseInt(this.element.css("marginTop"),10) || 0), - right: (parseInt(this.element.css("marginRight"),10) || 0), - bottom: (parseInt(this.element.css("marginBottom"),10) || 0) - }; - }, - - _cacheHelperProportions: function() { - this.helperProportions = { - width: this.helper.outerWidth(), - height: this.helper.outerHeight() - }; - }, - - _setContainment: function() { - - var o = this.options; - if(o.containment == 'parent') o.containment = this.helper[0].parentNode; - if(o.containment == 'document' || o.containment == 'window') this.containment = [ - o.containment == 'document' ? 0 : $(window).scrollLeft() - this.offset.relative.left - this.offset.parent.left, - o.containment == 'document' ? 0 : $(window).scrollTop() - this.offset.relative.top - this.offset.parent.top, - (o.containment == 'document' ? 0 : $(window).scrollLeft()) + $(o.containment == 'document' ? document : window).width() - this.helperProportions.width - this.margins.left, - (o.containment == 'document' ? 0 : $(window).scrollTop()) + ($(o.containment == 'document' ? document : window).height() || document.body.parentNode.scrollHeight) - this.helperProportions.height - this.margins.top - ]; - - if(!(/^(document|window|parent)$/).test(o.containment) && o.containment.constructor != Array) { - var c = $(o.containment); - var ce = c[0]; if(!ce) return; - var co = c.offset(); - var over = ($(ce).css("overflow") != 'hidden'); - - this.containment = [ - (parseInt($(ce).css("borderLeftWidth"),10) || 0) + (parseInt($(ce).css("paddingLeft"),10) || 0), - (parseInt($(ce).css("borderTopWidth"),10) || 0) + (parseInt($(ce).css("paddingTop"),10) || 0), - (over ? Math.max(ce.scrollWidth,ce.offsetWidth) : ce.offsetWidth) - (parseInt($(ce).css("borderLeftWidth"),10) || 0) - (parseInt($(ce).css("paddingRight"),10) || 0) - this.helperProportions.width - this.margins.left - this.margins.right, - (over ? Math.max(ce.scrollHeight,ce.offsetHeight) : ce.offsetHeight) - (parseInt($(ce).css("borderTopWidth"),10) || 0) - (parseInt($(ce).css("paddingBottom"),10) || 0) - this.helperProportions.height - this.margins.top - this.margins.bottom - ]; - this.relative_container = c; - - } else if(o.containment.constructor == Array) { - this.containment = o.containment; - } - - }, - - _convertPositionTo: function(d, pos) { - - if(!pos) pos = this.position; - var mod = d == "absolute" ? 1 : -1; - var o = this.options, scroll = this.cssPosition == 'absolute' && !(this.scrollParent[0] != document && $.contains(this.scrollParent[0], this.offsetParent[0])) ? this.offsetParent : this.scrollParent, scrollIsRootNode = (/(html|body)/i).test(scroll[0].tagName); - - return { - top: ( - pos.top // The absolute mouse position - + this.offset.relative.top * mod // Only for relative positioned nodes: Relative offset from element to offset parent - + this.offset.parent.top * mod // The offsetParent's offset without borders (offset + border) - - ( ( this.cssPosition == 'fixed' ? -this.scrollParent.scrollTop() : ( scrollIsRootNode ? 0 : scroll.scrollTop() ) ) * mod) - ), - left: ( - pos.left // The absolute mouse position - + this.offset.relative.left * mod // Only for relative positioned nodes: Relative offset from element to offset parent - + this.offset.parent.left * mod // The offsetParent's offset without borders (offset + border) - - ( ( this.cssPosition == 'fixed' ? -this.scrollParent.scrollLeft() : scrollIsRootNode ? 0 : scroll.scrollLeft() ) * mod) - ) - }; - - }, - - _generatePosition: function(event) { - - var o = this.options, scroll = this.cssPosition == 'absolute' && !(this.scrollParent[0] != document && $.contains(this.scrollParent[0], this.offsetParent[0])) ? this.offsetParent : this.scrollParent, scrollIsRootNode = (/(html|body)/i).test(scroll[0].tagName); - var pageX = event.pageX; - var pageY = event.pageY; - - /* - * - Position constraining - - * Constrain the position to a mix of grid, containment. - */ - - if(this.originalPosition) { //If we are not dragging yet, we won't check for options - var containment; - if(this.containment) { - if (this.relative_container){ - var co = this.relative_container.offset(); - containment = [ this.containment[0] + co.left, - this.containment[1] + co.top, - this.containment[2] + co.left, - this.containment[3] + co.top ]; - } - else { - containment = this.containment; - } - - if(event.pageX - this.offset.click.left < containment[0]) pageX = containment[0] + this.offset.click.left; - if(event.pageY - this.offset.click.top < containment[1]) pageY = containment[1] + this.offset.click.top; - if(event.pageX - this.offset.click.left > containment[2]) pageX = containment[2] + this.offset.click.left; - if(event.pageY - this.offset.click.top > containment[3]) pageY = containment[3] + this.offset.click.top; - } - - if(o.grid) { - //Check for grid elements set to 0 to prevent divide by 0 error causing invalid argument errors in IE (see ticket #6950) - var top = o.grid[1] ? this.originalPageY + Math.round((pageY - this.originalPageY) / o.grid[1]) * o.grid[1] : this.originalPageY; - pageY = containment ? (!(top - this.offset.click.top < containment[1] || top - this.offset.click.top > containment[3]) ? top : (!(top - this.offset.click.top < containment[1]) ? top - o.grid[1] : top + o.grid[1])) : top; - - var left = o.grid[0] ? this.originalPageX + Math.round((pageX - this.originalPageX) / o.grid[0]) * o.grid[0] : this.originalPageX; - pageX = containment ? (!(left - this.offset.click.left < containment[0] || left - this.offset.click.left > containment[2]) ? left : (!(left - this.offset.click.left < containment[0]) ? left - o.grid[0] : left + o.grid[0])) : left; - } - - } - - return { - top: ( - pageY // The absolute mouse position - - this.offset.click.top // Click offset (relative to the element) - - this.offset.relative.top // Only for relative positioned nodes: Relative offset from element to offset parent - - this.offset.parent.top // The offsetParent's offset without borders (offset + border) - + ( ( this.cssPosition == 'fixed' ? -this.scrollParent.scrollTop() : ( scrollIsRootNode ? 0 : scroll.scrollTop() ) )) - ), - left: ( - pageX // The absolute mouse position - - this.offset.click.left // Click offset (relative to the element) - - this.offset.relative.left // Only for relative positioned nodes: Relative offset from element to offset parent - - this.offset.parent.left // The offsetParent's offset without borders (offset + border) - + ( ( this.cssPosition == 'fixed' ? -this.scrollParent.scrollLeft() : scrollIsRootNode ? 0 : scroll.scrollLeft() )) - ) - }; - - }, - - _clear: function() { - this.helper.removeClass("ui-draggable-dragging"); - if(this.helper[0] != this.element[0] && !this.cancelHelperRemoval) this.helper.remove(); - //if($.ui.ddmanager) $.ui.ddmanager.current = null; - this.helper = null; - this.cancelHelperRemoval = false; - }, - - // From now on bulk stuff - mainly helpers - - _trigger: function(type, event, ui) { - ui = ui || this._uiHash(); - $.ui.plugin.call(this, type, [event, ui]); - if(type == "drag") this.positionAbs = this._convertPositionTo("absolute"); //The absolute position has to be recalculated after plugins - return $.Widget.prototype._trigger.call(this, type, event, ui); - }, - - plugins: {}, - - _uiHash: function(event) { - return { - helper: this.helper, - position: this.position, - originalPosition: this.originalPosition, - offset: this.positionAbs - }; - } - - }); - - $.ui.plugin.add("draggable", "connectToSortable", { - start: function(event, ui) { - - var inst = $(this).data("draggable"), o = inst.options, - uiSortable = $.extend({}, ui, { item: inst.element }); - inst.sortables = []; - $(o.connectToSortable).each(function() { - var sortable = $.data(this, 'sortable'); - if (sortable && !sortable.options.disabled) { - inst.sortables.push({ - instance: sortable, - shouldRevert: sortable.options.revert - }); - sortable.refreshPositions(); // Call the sortable's refreshPositions at drag start to refresh the containerCache since the sortable container cache is used in drag and needs to be up to date (this will ensure it's initialised as well as being kept in step with any changes that might have happened on the page). - sortable._trigger("activate", event, uiSortable); - } - }); - - }, - stop: function(event, ui) { - - //If we are still over the sortable, we fake the stop event of the sortable, but also remove helper - var inst = $(this).data("draggable"), - uiSortable = $.extend({}, ui, { item: inst.element }); - - $.each(inst.sortables, function() { - if(this.instance.isOver) { - - this.instance.isOver = 0; - - inst.cancelHelperRemoval = true; //Don't remove the helper in the draggable instance - this.instance.cancelHelperRemoval = false; //Remove it in the sortable instance (so sortable plugins like revert still work) - - //The sortable revert is supported, and we have to set a temporary dropped variable on the draggable to support revert: 'valid/invalid' - if(this.shouldRevert) this.instance.options.revert = true; - - //Trigger the stop of the sortable - this.instance._mouseStop(event); - - this.instance.options.helper = this.instance.options._helper; - - //If the helper has been the original item, restore properties in the sortable - if(inst.options.helper == 'original') - this.instance.currentItem.css({ top: 'auto', left: 'auto' }); - - } else { - this.instance.cancelHelperRemoval = false; //Remove the helper in the sortable instance - this.instance._trigger("deactivate", event, uiSortable); - } - - }); - - }, - drag: function(event, ui) { - - var inst = $(this).data("draggable"), that = this; - - var checkPos = function(o) { - var dyClick = this.offset.click.top, dxClick = this.offset.click.left; - var helperTop = this.positionAbs.top, helperLeft = this.positionAbs.left; - var itemHeight = o.height, itemWidth = o.width; - var itemTop = o.top, itemLeft = o.left; - - return $.ui.isOver(helperTop + dyClick, helperLeft + dxClick, itemTop, itemLeft, itemHeight, itemWidth); - }; - - $.each(inst.sortables, function(i) { - - //Copy over some variables to allow calling the sortable's native _intersectsWith - this.instance.positionAbs = inst.positionAbs; - this.instance.helperProportions = inst.helperProportions; - this.instance.offset.click = inst.offset.click; - - if(this.instance._intersectsWith(this.instance.containerCache)) { - - //If it intersects, we use a little isOver variable and set it once, so our move-in stuff gets fired only once - if(!this.instance.isOver) { - - this.instance.isOver = 1; - //Now we fake the start of dragging for the sortable instance, - //by cloning the list group item, appending it to the sortable and using it as inst.currentItem - //We can then fire the start event of the sortable with our passed browser event, and our own helper (so it doesn't create a new one) - this.instance.currentItem = $(that).clone().removeAttr('id').appendTo(this.instance.element).data("sortable-item", true); - this.instance.options._helper = this.instance.options.helper; //Store helper option to later restore it - this.instance.options.helper = function() { return ui.helper[0]; }; - - event.target = this.instance.currentItem[0]; - this.instance._mouseCapture(event, true); - this.instance._mouseStart(event, true, true); - - //Because the browser event is way off the new appended portlet, we modify a couple of variables to reflect the changes - this.instance.offset.click.top = inst.offset.click.top; - this.instance.offset.click.left = inst.offset.click.left; - this.instance.offset.parent.left -= inst.offset.parent.left - this.instance.offset.parent.left; - this.instance.offset.parent.top -= inst.offset.parent.top - this.instance.offset.parent.top; - - inst._trigger("toSortable", event); - inst.dropped = this.instance.element; //draggable revert needs that - //hack so receive/update callbacks work (mostly) - inst.currentItem = inst.element; - this.instance.fromOutside = inst; - - } - - //Provided we did all the previous steps, we can fire the drag event of the sortable on every draggable drag, when it intersects with the sortable - if(this.instance.currentItem) this.instance._mouseDrag(event); - - } else { - - //If it doesn't intersect with the sortable, and it intersected before, - //we fake the drag stop of the sortable, but make sure it doesn't remove the helper by using cancelHelperRemoval - if(this.instance.isOver) { - - this.instance.isOver = 0; - this.instance.cancelHelperRemoval = true; - - //Prevent reverting on this forced stop - this.instance.options.revert = false; - - // The out event needs to be triggered independently - this.instance._trigger('out', event, this.instance._uiHash(this.instance)); - - this.instance._mouseStop(event, true); - this.instance.options.helper = this.instance.options._helper; - - //Now we remove our currentItem, the list group clone again, and the placeholder, and animate the helper back to it's original size - this.instance.currentItem.remove(); - if(this.instance.placeholder) this.instance.placeholder.remove(); - - inst._trigger("fromSortable", event); - inst.dropped = false; //draggable revert needs that - } - - }; - - }); - - } - }); - - $.ui.plugin.add("draggable", "cursor", { - start: function(event, ui) { - var t = $('body'), o = $(this).data('draggable').options; - if (t.css("cursor")) o._cursor = t.css("cursor"); - t.css("cursor", o.cursor); - }, - stop: function(event, ui) { - var o = $(this).data('draggable').options; - if (o._cursor) $('body').css("cursor", o._cursor); - } - }); - - $.ui.plugin.add("draggable", "opacity", { - start: function(event, ui) { - var t = $(ui.helper), o = $(this).data('draggable').options; - if(t.css("opacity")) o._opacity = t.css("opacity"); - t.css('opacity', o.opacity); - }, - stop: function(event, ui) { - var o = $(this).data('draggable').options; - if(o._opacity) $(ui.helper).css('opacity', o._opacity); - } - }); - - $.ui.plugin.add("draggable", "scroll", { - start: function(event, ui) { - var i = $(this).data("draggable"); - if(i.scrollParent[0] != document && i.scrollParent[0].tagName != 'HTML') i.overflowOffset = i.scrollParent.offset(); - }, - drag: function(event, ui) { - - var i = $(this).data("draggable"), o = i.options, scrolled = false; - - if(i.scrollParent[0] != document && i.scrollParent[0].tagName != 'HTML') { - - if(!o.axis || o.axis != 'x') { - if((i.overflowOffset.top + i.scrollParent[0].offsetHeight) - event.pageY < o.scrollSensitivity) - i.scrollParent[0].scrollTop = scrolled = i.scrollParent[0].scrollTop + o.scrollSpeed; - else if(event.pageY - i.overflowOffset.top < o.scrollSensitivity) - i.scrollParent[0].scrollTop = scrolled = i.scrollParent[0].scrollTop - o.scrollSpeed; - } - - if(!o.axis || o.axis != 'y') { - if((i.overflowOffset.left + i.scrollParent[0].offsetWidth) - event.pageX < o.scrollSensitivity) - i.scrollParent[0].scrollLeft = scrolled = i.scrollParent[0].scrollLeft + o.scrollSpeed; - else if(event.pageX - i.overflowOffset.left < o.scrollSensitivity) - i.scrollParent[0].scrollLeft = scrolled = i.scrollParent[0].scrollLeft - o.scrollSpeed; - } - - } else { - - if(!o.axis || o.axis != 'x') { - if(event.pageY - $(document).scrollTop() < o.scrollSensitivity) - scrolled = $(document).scrollTop($(document).scrollTop() - o.scrollSpeed); - else if($(window).height() - (event.pageY - $(document).scrollTop()) < o.scrollSensitivity) - scrolled = $(document).scrollTop($(document).scrollTop() + o.scrollSpeed); - } - - if(!o.axis || o.axis != 'y') { - if(event.pageX - $(document).scrollLeft() < o.scrollSensitivity) - scrolled = $(document).scrollLeft($(document).scrollLeft() - o.scrollSpeed); - else if($(window).width() - (event.pageX - $(document).scrollLeft()) < o.scrollSensitivity) - scrolled = $(document).scrollLeft($(document).scrollLeft() + o.scrollSpeed); - } - - } - - if(scrolled !== false && $.ui.ddmanager && !o.dropBehaviour) - $.ui.ddmanager.prepareOffsets(i, event); - - } - }); - - $.ui.plugin.add("draggable", "snap", { - start: function(event, ui) { - - var i = $(this).data("draggable"), o = i.options; - i.snapElements = []; - - $(o.snap.constructor != String ? ( o.snap.items || ':data(draggable)' ) : o.snap).each(function() { - var $t = $(this); var $o = $t.offset(); - if(this != i.element[0]) i.snapElements.push({ - item: this, - width: $t.outerWidth(), height: $t.outerHeight(), - top: $o.top, left: $o.left - }); - }); - - }, - drag: function(event, ui) { - - var inst = $(this).data("draggable"), o = inst.options; - var d = o.snapTolerance; - - var x1 = ui.offset.left, x2 = x1 + inst.helperProportions.width, - y1 = ui.offset.top, y2 = y1 + inst.helperProportions.height; - - for (var i = inst.snapElements.length - 1; i >= 0; i--){ - - var l = inst.snapElements[i].left, r = l + inst.snapElements[i].width, - t = inst.snapElements[i].top, b = t + inst.snapElements[i].height; - - //Yes, I know, this is insane ;) - if(!((l-d < x1 && x1 < r+d && t-d < y1 && y1 < b+d) || (l-d < x1 && x1 < r+d && t-d < y2 && y2 < b+d) || (l-d < x2 && x2 < r+d && t-d < y1 && y1 < b+d) || (l-d < x2 && x2 < r+d && t-d < y2 && y2 < b+d))) { - if(inst.snapElements[i].snapping) (inst.options.snap.release && inst.options.snap.release.call(inst.element, event, $.extend(inst._uiHash(), { snapItem: inst.snapElements[i].item }))); - inst.snapElements[i].snapping = false; - continue; - } - - if(o.snapMode != 'inner') { - var ts = Math.abs(t - y2) <= d; - var bs = Math.abs(b - y1) <= d; - var ls = Math.abs(l - x2) <= d; - var rs = Math.abs(r - x1) <= d; - if(ts) ui.position.top = inst._convertPositionTo("relative", { top: t - inst.helperProportions.height, left: 0 }).top - inst.margins.top; - if(bs) ui.position.top = inst._convertPositionTo("relative", { top: b, left: 0 }).top - inst.margins.top; - if(ls) ui.position.left = inst._convertPositionTo("relative", { top: 0, left: l - inst.helperProportions.width }).left - inst.margins.left; - if(rs) ui.position.left = inst._convertPositionTo("relative", { top: 0, left: r }).left - inst.margins.left; - } - - var first = (ts || bs || ls || rs); - - if(o.snapMode != 'outer') { - var ts = Math.abs(t - y1) <= d; - var bs = Math.abs(b - y2) <= d; - var ls = Math.abs(l - x1) <= d; - var rs = Math.abs(r - x2) <= d; - if(ts) ui.position.top = inst._convertPositionTo("relative", { top: t, left: 0 }).top - inst.margins.top; - if(bs) ui.position.top = inst._convertPositionTo("relative", { top: b - inst.helperProportions.height, left: 0 }).top - inst.margins.top; - if(ls) ui.position.left = inst._convertPositionTo("relative", { top: 0, left: l }).left - inst.margins.left; - if(rs) ui.position.left = inst._convertPositionTo("relative", { top: 0, left: r - inst.helperProportions.width }).left - inst.margins.left; - } - - if(!inst.snapElements[i].snapping && (ts || bs || ls || rs || first)) - (inst.options.snap.snap && inst.options.snap.snap.call(inst.element, event, $.extend(inst._uiHash(), { snapItem: inst.snapElements[i].item }))); - inst.snapElements[i].snapping = (ts || bs || ls || rs || first); - - }; - - } - }); - - $.ui.plugin.add("draggable", "stack", { - start: function(event, ui) { - - var o = $(this).data("draggable").options; - - var group = $.makeArray($(o.stack)).sort(function(a,b) { - return (parseInt($(a).css("zIndex"),10) || 0) - (parseInt($(b).css("zIndex"),10) || 0); - }); - if (!group.length) { return; } - - var min = parseInt(group[0].style.zIndex) || 0; - $(group).each(function(i) { - this.style.zIndex = min + i; - }); - - this[0].style.zIndex = min + group.length; - - } - }); - - $.ui.plugin.add("draggable", "zIndex", { - start: function(event, ui) { - var t = $(ui.helper), o = $(this).data("draggable").options; - if(t.css("zIndex")) o._zIndex = t.css("zIndex"); - t.css('zIndex', o.zIndex); - }, - stop: function(event, ui) { - var o = $(this).data("draggable").options; - if(o._zIndex) $(ui.helper).css('zIndex', o._zIndex); - } - }); - -})(jQuery); - -(function( $, undefined ) { - - $.widget("ui.droppable", { - version: "1.9.0", - widgetEventPrefix: "drop", - options: { - accept: '*', - activeClass: false, - addClasses: true, - greedy: false, - hoverClass: false, - scope: 'default', - tolerance: 'intersect' - }, - _create: function() { - - var o = this.options, accept = o.accept; - this.isover = 0; this.isout = 1; - - this.accept = $.isFunction(accept) ? accept : function(d) { - return d.is(accept); - }; - - //Store the droppable's proportions - this.proportions = { width: this.element[0].offsetWidth, height: this.element[0].offsetHeight }; - - // Add the reference and positions to the manager - $.ui.ddmanager.droppables[o.scope] = $.ui.ddmanager.droppables[o.scope] || []; - $.ui.ddmanager.droppables[o.scope].push(this); - - (o.addClasses && this.element.addClass("ui-droppable")); - - }, - - _destroy: function() { - var drop = $.ui.ddmanager.droppables[this.options.scope]; - for ( var i = 0; i < drop.length; i++ ) - if ( drop[i] == this ) - drop.splice(i, 1); - - this.element.removeClass("ui-droppable ui-droppable-disabled"); - }, - - _setOption: function(key, value) { - - if(key == 'accept') { - this.accept = $.isFunction(value) ? value : function(d) { - return d.is(value); - }; - } - $.Widget.prototype._setOption.apply(this, arguments); - }, - - _activate: function(event) { - var draggable = $.ui.ddmanager.current; - if(this.options.activeClass) this.element.addClass(this.options.activeClass); - (draggable && this._trigger('activate', event, this.ui(draggable))); - }, - - _deactivate: function(event) { - var draggable = $.ui.ddmanager.current; - if(this.options.activeClass) this.element.removeClass(this.options.activeClass); - (draggable && this._trigger('deactivate', event, this.ui(draggable))); - }, - - _over: function(event) { - - var draggable = $.ui.ddmanager.current; - if (!draggable || (draggable.currentItem || draggable.element)[0] == this.element[0]) return; // Bail if draggable and droppable are same element - - if (this.accept.call(this.element[0],(draggable.currentItem || draggable.element))) { - if(this.options.hoverClass) this.element.addClass(this.options.hoverClass); - this._trigger('over', event, this.ui(draggable)); - } - - }, - - _out: function(event) { - - var draggable = $.ui.ddmanager.current; - if (!draggable || (draggable.currentItem || draggable.element)[0] == this.element[0]) return; // Bail if draggable and droppable are same element - - if (this.accept.call(this.element[0],(draggable.currentItem || draggable.element))) { - if(this.options.hoverClass) this.element.removeClass(this.options.hoverClass); - this._trigger('out', event, this.ui(draggable)); - } - - }, - - _drop: function(event,custom) { - - var draggable = custom || $.ui.ddmanager.current; - if (!draggable || (draggable.currentItem || draggable.element)[0] == this.element[0]) return false; // Bail if draggable and droppable are same element - - var childrenIntersection = false; - this.element.find(":data(droppable)").not(".ui-draggable-dragging").each(function() { - var inst = $.data(this, 'droppable'); - if( - inst.options.greedy - && !inst.options.disabled - && inst.options.scope == draggable.options.scope - && inst.accept.call(inst.element[0], (draggable.currentItem || draggable.element)) - && $.ui.intersect(draggable, $.extend(inst, { offset: inst.element.offset() }), inst.options.tolerance) - ) { childrenIntersection = true; return false; } - }); - if(childrenIntersection) return false; - - if(this.accept.call(this.element[0],(draggable.currentItem || draggable.element))) { - if(this.options.activeClass) this.element.removeClass(this.options.activeClass); - if(this.options.hoverClass) this.element.removeClass(this.options.hoverClass); - this._trigger('drop', event, this.ui(draggable)); - return this.element; - } - - return false; - - }, - - ui: function(c) { - return { - draggable: (c.currentItem || c.element), - helper: c.helper, - position: c.position, - offset: c.positionAbs - }; - } - - }); - - $.ui.intersect = function(draggable, droppable, toleranceMode) { - - if (!droppable.offset) return false; - - var x1 = (draggable.positionAbs || draggable.position.absolute).left, x2 = x1 + draggable.helperProportions.width, - y1 = (draggable.positionAbs || draggable.position.absolute).top, y2 = y1 + draggable.helperProportions.height; - var l = droppable.offset.left, r = l + droppable.proportions.width, - t = droppable.offset.top, b = t + droppable.proportions.height; - - switch (toleranceMode) { - case 'fit': - return (l <= x1 && x2 <= r - && t <= y1 && y2 <= b); - break; - case 'intersect': - return (l < x1 + (draggable.helperProportions.width / 2) // Right Half - && x2 - (draggable.helperProportions.width / 2) < r // Left Half - && t < y1 + (draggable.helperProportions.height / 2) // Bottom Half - && y2 - (draggable.helperProportions.height / 2) < b ); // Top Half - break; - case 'pointer': - var draggableLeft = ((draggable.positionAbs || draggable.position.absolute).left + (draggable.clickOffset || draggable.offset.click).left), - draggableTop = ((draggable.positionAbs || draggable.position.absolute).top + (draggable.clickOffset || draggable.offset.click).top), - isOver = $.ui.isOver(draggableTop, draggableLeft, t, l, droppable.proportions.height, droppable.proportions.width); - return isOver; - break; - case 'touch': - return ( - (y1 >= t && y1 <= b) || // Top edge touching - (y2 >= t && y2 <= b) || // Bottom edge touching - (y1 < t && y2 > b) // Surrounded vertically - ) && ( - (x1 >= l && x1 <= r) || // Left edge touching - (x2 >= l && x2 <= r) || // Right edge touching - (x1 < l && x2 > r) // Surrounded horizontally - ); - break; - default: - return false; - break; - } - - }; - - /* - This manager tracks offsets of draggables and droppables - */ - $.ui.ddmanager = { - current: null, - droppables: { 'default': [] }, - prepareOffsets: function(t, event) { - - var m = $.ui.ddmanager.droppables[t.options.scope] || []; - var type = event ? event.type : null; // workaround for #2317 - var list = (t.currentItem || t.element).find(":data(droppable)").andSelf(); - - droppablesLoop: for (var i = 0; i < m.length; i++) { - - if(m[i].options.disabled || (t && !m[i].accept.call(m[i].element[0],(t.currentItem || t.element)))) continue; //No disabled and non-accepted - for (var j=0; j < list.length; j++) { if(list[j] == m[i].element[0]) { m[i].proportions.height = 0; continue droppablesLoop; } }; //Filter out elements in the current dragged item - m[i].visible = m[i].element.css("display") != "none"; if(!m[i].visible) continue; //If the element is not visible, continue - - if(type == "mousedown") m[i]._activate.call(m[i], event); //Activate the droppable if used directly from draggables - - m[i].offset = m[i].element.offset(); - m[i].proportions = { width: m[i].element[0].offsetWidth, height: m[i].element[0].offsetHeight }; - - } - - }, - drop: function(draggable, event) { - - var dropped = false; - $.each($.ui.ddmanager.droppables[draggable.options.scope] || [], function() { - - if(!this.options) return; - if (!this.options.disabled && this.visible && $.ui.intersect(draggable, this, this.options.tolerance)) - dropped = this._drop.call(this, event) || dropped; - - if (!this.options.disabled && this.visible && this.accept.call(this.element[0],(draggable.currentItem || draggable.element))) { - this.isout = 1; this.isover = 0; - this._deactivate.call(this, event); - } - - }); - return dropped; - - }, - dragStart: function( draggable, event ) { - //Listen for scrolling so that if the dragging causes scrolling the position of the droppables can be recalculated (see #5003) - draggable.element.parentsUntil( "body" ).bind( "scroll.droppable", function() { - if( !draggable.options.refreshPositions ) $.ui.ddmanager.prepareOffsets( draggable, event ); - }); - }, - drag: function(draggable, event) { - - //If you have a highly dynamic page, you might try this option. It renders positions every time you move the mouse. - if(draggable.options.refreshPositions) $.ui.ddmanager.prepareOffsets(draggable, event); - - //Run through all droppables and check their positions based on specific tolerance options - $.each($.ui.ddmanager.droppables[draggable.options.scope] || [], function() { - - if(this.options.disabled || this.greedyChild || !this.visible) return; - var intersects = $.ui.intersect(draggable, this, this.options.tolerance); - - var c = !intersects && this.isover == 1 ? 'isout' : (intersects && this.isover == 0 ? 'isover' : null); - if(!c) return; - - var parentInstance; - if (this.options.greedy) { - // find droppable parents with same scope - var scope = this.options.scope; - var parent = this.element.parents(':data(droppable)').filter(function () { - return $.data(this, 'droppable').options.scope === scope; - }); - - if (parent.length) { - parentInstance = $.data(parent[0], 'droppable'); - parentInstance.greedyChild = (c == 'isover' ? 1 : 0); - } - } - - // we just moved into a greedy child - if (parentInstance && c == 'isover') { - parentInstance['isover'] = 0; - parentInstance['isout'] = 1; - parentInstance._out.call(parentInstance, event); - } - - this[c] = 1; this[c == 'isout' ? 'isover' : 'isout'] = 0; - this[c == "isover" ? "_over" : "_out"].call(this, event); - - // we just moved out of a greedy child - if (parentInstance && c == 'isout') { - parentInstance['isout'] = 0; - parentInstance['isover'] = 1; - parentInstance._over.call(parentInstance, event); - } - }); - - }, - dragStop: function( draggable, event ) { - draggable.element.parentsUntil( "body" ).unbind( "scroll.droppable" ); - //Call prepareOffsets one final time since IE does not fire return scroll events when overflow was caused by drag (see #5003) - if( !draggable.options.refreshPositions ) $.ui.ddmanager.prepareOffsets( draggable, event ); - } - }; - -})(jQuery); - -(function( $, undefined ) { - - $.widget("ui.resizable", $.ui.mouse, { - version: "1.9.0", - widgetEventPrefix: "resize", - options: { - alsoResize: false, - animate: false, - animateDuration: "slow", - animateEasing: "swing", - aspectRatio: false, - autoHide: false, - containment: false, - ghost: false, - grid: false, - handles: "e,s,se", - helper: false, - maxHeight: null, - maxWidth: null, - minHeight: 10, - minWidth: 10, - zIndex: 1000 - }, - _create: function() { - - var that = this, o = this.options; - this.element.addClass("ui-resizable"); - - $.extend(this, { - _aspectRatio: !!(o.aspectRatio), - aspectRatio: o.aspectRatio, - originalElement: this.element, - _proportionallyResizeElements: [], - _helper: o.helper || o.ghost || o.animate ? o.helper || 'ui-resizable-helper' : null - }); - - //Wrap the element if it cannot hold child nodes - if(this.element[0].nodeName.match(/canvas|textarea|input|select|button|img/i)) { - - //Create a wrapper element and set the wrapper to the new current internal element - this.element.wrap( - $('<div class="ui-wrapper" style="overflow: hidden;"></div>').css({ - position: this.element.css('position'), - width: this.element.outerWidth(), - height: this.element.outerHeight(), - top: this.element.css('top'), - left: this.element.css('left') - }) - ); - - //Overwrite the original this.element - this.element = this.element.parent().data( - "resizable", this.element.data('resizable') - ); - - this.elementIsWrapper = true; - - //Move margins to the wrapper - this.element.css({ marginLeft: this.originalElement.css("marginLeft"), marginTop: this.originalElement.css("marginTop"), marginRight: this.originalElement.css("marginRight"), marginBottom: this.originalElement.css("marginBottom") }); - this.originalElement.css({ marginLeft: 0, marginTop: 0, marginRight: 0, marginBottom: 0}); - - //Prevent Safari textarea resize - this.originalResizeStyle = this.originalElement.css('resize'); - this.originalElement.css('resize', 'none'); - - //Push the actual element to our proportionallyResize internal array - this._proportionallyResizeElements.push(this.originalElement.css({ position: 'static', zoom: 1, display: 'block' })); - - // avoid IE jump (hard set the margin) - this.originalElement.css({ margin: this.originalElement.css('margin') }); - - // fix handlers offset - this._proportionallyResize(); - - } - - this.handles = o.handles || (!$('.ui-resizable-handle', this.element).length ? "e,s,se" : { n: '.ui-resizable-n', e: '.ui-resizable-e', s: '.ui-resizable-s', w: '.ui-resizable-w', se: '.ui-resizable-se', sw: '.ui-resizable-sw', ne: '.ui-resizable-ne', nw: '.ui-resizable-nw' }); - if(this.handles.constructor == String) { - - if(this.handles == 'all') this.handles = 'n,e,s,w,se,sw,ne,nw'; - var n = this.handles.split(","); this.handles = {}; - - for(var i = 0; i < n.length; i++) { - - var handle = $.trim(n[i]), hname = 'ui-resizable-'+handle; - var axis = $('<div class="ui-resizable-handle ' + hname + '"></div>'); - - // Apply zIndex to all handles - see #7960 - axis.css({ zIndex: o.zIndex }); - - //TODO : What's going on here? - if ('se' == handle) { - axis.addClass('ui-icon ui-icon-gripsmall-diagonal-se'); - }; - - //Insert into internal handles object and append to element - this.handles[handle] = '.ui-resizable-'+handle; - this.element.append(axis); - } - - } - - this._renderAxis = function(target) { - - target = target || this.element; - - for(var i in this.handles) { - - if(this.handles[i].constructor == String) - this.handles[i] = $(this.handles[i], this.element).show(); - - //Apply pad to wrapper element, needed to fix axis position (textarea, inputs, scrolls) - if (this.elementIsWrapper && this.originalElement[0].nodeName.match(/textarea|input|select|button/i)) { - - var axis = $(this.handles[i], this.element), padWrapper = 0; - - //Checking the correct pad and border - padWrapper = /sw|ne|nw|se|n|s/.test(i) ? axis.outerHeight() : axis.outerWidth(); - - //The padding type i have to apply... - var padPos = [ 'padding', - /ne|nw|n/.test(i) ? 'Top' : - /se|sw|s/.test(i) ? 'Bottom' : - /^e$/.test(i) ? 'Right' : 'Left' ].join(""); - - target.css(padPos, padWrapper); - - this._proportionallyResize(); - - } - - //TODO: What's that good for? There's not anything to be executed left - if(!$(this.handles[i]).length) - continue; - - } - }; - - //TODO: make renderAxis a prototype function - this._renderAxis(this.element); - - this._handles = $('.ui-resizable-handle', this.element) - .disableSelection(); - - //Matching axis name - this._handles.mouseover(function() { - if (!that.resizing) { - if (this.className) - var axis = this.className.match(/ui-resizable-(se|sw|ne|nw|n|e|s|w)/i); - //Axis, default = se - that.axis = axis && axis[1] ? axis[1] : 'se'; - } - }); - - //If we want to auto hide the elements - if (o.autoHide) { - this._handles.hide(); - $(this.element) - .addClass("ui-resizable-autohide") - .mouseenter(function() { - if (o.disabled) return; - $(this).removeClass("ui-resizable-autohide"); - that._handles.show(); - }) - .mouseleave(function(){ - if (o.disabled) return; - if (!that.resizing) { - $(this).addClass("ui-resizable-autohide"); - that._handles.hide(); - } - }); - } - - //Initialize the mouse interaction - this._mouseInit(); - - }, - - _destroy: function() { - - this._mouseDestroy(); - - var _destroy = function(exp) { - $(exp).removeClass("ui-resizable ui-resizable-disabled ui-resizable-resizing") - .removeData("resizable").removeData("ui-resizable").unbind(".resizable").find('.ui-resizable-handle').remove(); - }; - - //TODO: Unwrap at same DOM position - if (this.elementIsWrapper) { - _destroy(this.element); - var wrapper = this.element; - wrapper.after( - this.originalElement.css({ - position: wrapper.css('position'), - width: wrapper.outerWidth(), - height: wrapper.outerHeight(), - top: wrapper.css('top'), - left: wrapper.css('left') - }) - ).remove(); - } - - this.originalElement.css('resize', this.originalResizeStyle); - _destroy(this.originalElement); - - return this; - }, - - _mouseCapture: function(event) { - var handle = false; - for (var i in this.handles) { - if ($(this.handles[i])[0] == event.target) { - handle = true; - } - } - - return !this.options.disabled && handle; - }, - - _mouseStart: function(event) { - - var o = this.options, iniPos = this.element.position(), el = this.element; - - this.resizing = true; - this.documentScroll = { top: $(document).scrollTop(), left: $(document).scrollLeft() }; - - // bugfix for http://dev.jquery.com/ticket/1749 - if (el.is('.ui-draggable') || (/absolute/).test(el.css('position'))) { - el.css({ position: 'absolute', top: iniPos.top, left: iniPos.left }); - } - - this._renderProxy(); - - var curleft = num(this.helper.css('left')), curtop = num(this.helper.css('top')); - - if (o.containment) { - curleft += $(o.containment).scrollLeft() || 0; - curtop += $(o.containment).scrollTop() || 0; - } - - //Store needed variables - this.offset = this.helper.offset(); - this.position = { left: curleft, top: curtop }; - this.size = this._helper ? { width: el.outerWidth(), height: el.outerHeight() } : { width: el.width(), height: el.height() }; - this.originalSize = this._helper ? { width: el.outerWidth(), height: el.outerHeight() } : { width: el.width(), height: el.height() }; - this.originalPosition = { left: curleft, top: curtop }; - this.sizeDiff = { width: el.outerWidth() - el.width(), height: el.outerHeight() - el.height() }; - this.originalMousePosition = { left: event.pageX, top: event.pageY }; - - //Aspect Ratio - this.aspectRatio = (typeof o.aspectRatio == 'number') ? o.aspectRatio : ((this.originalSize.width / this.originalSize.height) || 1); - - var cursor = $('.ui-resizable-' + this.axis).css('cursor'); - $('body').css('cursor', cursor == 'auto' ? this.axis + '-resize' : cursor); - - el.addClass("ui-resizable-resizing"); - this._propagate("start", event); - return true; - }, - - _mouseDrag: function(event) { - - //Increase performance, avoid regex - var el = this.helper, o = this.options, props = {}, - that = this, smp = this.originalMousePosition, a = this.axis; - - var dx = (event.pageX-smp.left)||0, dy = (event.pageY-smp.top)||0; - var trigger = this._change[a]; - if (!trigger) return false; - - // Calculate the attrs that will be change - var data = trigger.apply(this, [event, dx, dy]); - - // Put this in the mouseDrag handler since the user can start pressing shift while resizing - this._updateVirtualBoundaries(event.shiftKey); - if (this._aspectRatio || event.shiftKey) - data = this._updateRatio(data, event); - - data = this._respectSize(data, event); - - // plugins callbacks need to be called first - this._propagate("resize", event); - - el.css({ - top: this.position.top + "px", left: this.position.left + "px", - width: this.size.width + "px", height: this.size.height + "px" - }); - - if (!this._helper && this._proportionallyResizeElements.length) - this._proportionallyResize(); - - this._updateCache(data); - - // calling the user callback at the end - this._trigger('resize', event, this.ui()); - - return false; - }, - - _mouseStop: function(event) { - - this.resizing = false; - var o = this.options, that = this; - - if(this._helper) { - var pr = this._proportionallyResizeElements, ista = pr.length && (/textarea/i).test(pr[0].nodeName), - soffseth = ista && $.ui.hasScroll(pr[0], 'left') /* TODO - jump height */ ? 0 : that.sizeDiff.height, - soffsetw = ista ? 0 : that.sizeDiff.width; - - var s = { width: (that.helper.width() - soffsetw), height: (that.helper.height() - soffseth) }, - left = (parseInt(that.element.css('left'), 10) + (that.position.left - that.originalPosition.left)) || null, - top = (parseInt(that.element.css('top'), 10) + (that.position.top - that.originalPosition.top)) || null; - - if (!o.animate) - this.element.css($.extend(s, { top: top, left: left })); - - that.helper.height(that.size.height); - that.helper.width(that.size.width); - - if (this._helper && !o.animate) this._proportionallyResize(); - } - - $('body').css('cursor', 'auto'); - - this.element.removeClass("ui-resizable-resizing"); - - this._propagate("stop", event); - - if (this._helper) this.helper.remove(); - return false; - - }, - - _updateVirtualBoundaries: function(forceAspectRatio) { - var o = this.options, pMinWidth, pMaxWidth, pMinHeight, pMaxHeight, b; - - b = { - minWidth: isNumber(o.minWidth) ? o.minWidth : 0, - maxWidth: isNumber(o.maxWidth) ? o.maxWidth : Infinity, - minHeight: isNumber(o.minHeight) ? o.minHeight : 0, - maxHeight: isNumber(o.maxHeight) ? o.maxHeight : Infinity - }; - - if(this._aspectRatio || forceAspectRatio) { - // We want to create an enclosing box whose aspect ration is the requested one - // First, compute the "projected" size for each dimension based on the aspect ratio and other dimension - pMinWidth = b.minHeight * this.aspectRatio; - pMinHeight = b.minWidth / this.aspectRatio; - pMaxWidth = b.maxHeight * this.aspectRatio; - pMaxHeight = b.maxWidth / this.aspectRatio; - - if(pMinWidth > b.minWidth) b.minWidth = pMinWidth; - if(pMinHeight > b.minHeight) b.minHeight = pMinHeight; - if(pMaxWidth < b.maxWidth) b.maxWidth = pMaxWidth; - if(pMaxHeight < b.maxHeight) b.maxHeight = pMaxHeight; - } - this._vBoundaries = b; - }, - - _updateCache: function(data) { - var o = this.options; - this.offset = this.helper.offset(); - if (isNumber(data.left)) this.position.left = data.left; - if (isNumber(data.top)) this.position.top = data.top; - if (isNumber(data.height)) this.size.height = data.height; - if (isNumber(data.width)) this.size.width = data.width; - }, - - _updateRatio: function(data, event) { - - var o = this.options, cpos = this.position, csize = this.size, a = this.axis; - - if (isNumber(data.height)) data.width = (data.height * this.aspectRatio); - else if (isNumber(data.width)) data.height = (data.width / this.aspectRatio); - - if (a == 'sw') { - data.left = cpos.left + (csize.width - data.width); - data.top = null; - } - if (a == 'nw') { - data.top = cpos.top + (csize.height - data.height); - data.left = cpos.left + (csize.width - data.width); - } - - return data; - }, - - _respectSize: function(data, event) { - - var el = this.helper, o = this._vBoundaries, pRatio = this._aspectRatio || event.shiftKey, a = this.axis, - ismaxw = isNumber(data.width) && o.maxWidth && (o.maxWidth < data.width), ismaxh = isNumber(data.height) && o.maxHeight && (o.maxHeight < data.height), - isminw = isNumber(data.width) && o.minWidth && (o.minWidth > data.width), isminh = isNumber(data.height) && o.minHeight && (o.minHeight > data.height); - - if (isminw) data.width = o.minWidth; - if (isminh) data.height = o.minHeight; - if (ismaxw) data.width = o.maxWidth; - if (ismaxh) data.height = o.maxHeight; - - var dw = this.originalPosition.left + this.originalSize.width, dh = this.position.top + this.size.height; - var cw = /sw|nw|w/.test(a), ch = /nw|ne|n/.test(a); - - if (isminw && cw) data.left = dw - o.minWidth; - if (ismaxw && cw) data.left = dw - o.maxWidth; - if (isminh && ch) data.top = dh - o.minHeight; - if (ismaxh && ch) data.top = dh - o.maxHeight; - - // fixing jump error on top/left - bug #2330 - var isNotwh = !data.width && !data.height; - if (isNotwh && !data.left && data.top) data.top = null; - else if (isNotwh && !data.top && data.left) data.left = null; - - return data; - }, - - _proportionallyResize: function() { - - var o = this.options; - if (!this._proportionallyResizeElements.length) return; - var element = this.helper || this.element; - - for (var i=0; i < this._proportionallyResizeElements.length; i++) { - - var prel = this._proportionallyResizeElements[i]; - - if (!this.borderDif) { - var b = [prel.css('borderTopWidth'), prel.css('borderRightWidth'), prel.css('borderBottomWidth'), prel.css('borderLeftWidth')], - p = [prel.css('paddingTop'), prel.css('paddingRight'), prel.css('paddingBottom'), prel.css('paddingLeft')]; - - this.borderDif = $.map(b, function(v, i) { - var border = parseInt(v,10)||0, padding = parseInt(p[i],10)||0; - return border + padding; - }); - } - - prel.css({ - height: (element.height() - this.borderDif[0] - this.borderDif[2]) || 0, - width: (element.width() - this.borderDif[1] - this.borderDif[3]) || 0 - }); - - }; - - }, - - _renderProxy: function() { - - var el = this.element, o = this.options; - this.elementOffset = el.offset(); - - if(this._helper) { - - this.helper = this.helper || $('<div style="overflow:hidden;"></div>'); - - // fix ie6 offset TODO: This seems broken - var ie6 = $.browser.msie && $.browser.version < 7, ie6offset = (ie6 ? 1 : 0), - pxyoffset = ( ie6 ? 2 : -1 ); - - this.helper.addClass(this._helper).css({ - width: this.element.outerWidth() + pxyoffset, - height: this.element.outerHeight() + pxyoffset, - position: 'absolute', - left: this.elementOffset.left - ie6offset +'px', - top: this.elementOffset.top - ie6offset +'px', - zIndex: ++o.zIndex //TODO: Don't modify option - }); - - this.helper - .appendTo("body") - .disableSelection(); - - } else { - this.helper = this.element; - } - - }, - - _change: { - e: function(event, dx, dy) { - return { width: this.originalSize.width + dx }; - }, - w: function(event, dx, dy) { - var o = this.options, cs = this.originalSize, sp = this.originalPosition; - return { left: sp.left + dx, width: cs.width - dx }; - }, - n: function(event, dx, dy) { - var o = this.options, cs = this.originalSize, sp = this.originalPosition; - return { top: sp.top + dy, height: cs.height - dy }; - }, - s: function(event, dx, dy) { - return { height: this.originalSize.height + dy }; - }, - se: function(event, dx, dy) { - return $.extend(this._change.s.apply(this, arguments), this._change.e.apply(this, [event, dx, dy])); - }, - sw: function(event, dx, dy) { - return $.extend(this._change.s.apply(this, arguments), this._change.w.apply(this, [event, dx, dy])); - }, - ne: function(event, dx, dy) { - return $.extend(this._change.n.apply(this, arguments), this._change.e.apply(this, [event, dx, dy])); - }, - nw: function(event, dx, dy) { - return $.extend(this._change.n.apply(this, arguments), this._change.w.apply(this, [event, dx, dy])); - } - }, - - _propagate: function(n, event) { - $.ui.plugin.call(this, n, [event, this.ui()]); - (n != "resize" && this._trigger(n, event, this.ui())); - }, - - plugins: {}, - - ui: function() { - return { - originalElement: this.originalElement, - element: this.element, - helper: this.helper, - position: this.position, - size: this.size, - originalSize: this.originalSize, - originalPosition: this.originalPosition - }; - } - - }); - - /* - * Resizable Extensions - */ - - $.ui.plugin.add("resizable", "alsoResize", { - - start: function (event, ui) { - var that = $(this).data("resizable"), o = that.options; - - var _store = function (exp) { - $(exp).each(function() { - var el = $(this); - el.data("resizable-alsoresize", { - width: parseInt(el.width(), 10), height: parseInt(el.height(), 10), - left: parseInt(el.css('left'), 10), top: parseInt(el.css('top'), 10) - }); - }); - }; - - if (typeof(o.alsoResize) == 'object' && !o.alsoResize.parentNode) { - if (o.alsoResize.length) { o.alsoResize = o.alsoResize[0]; _store(o.alsoResize); } - else { $.each(o.alsoResize, function (exp) { _store(exp); }); } - }else{ - _store(o.alsoResize); - } - }, - - resize: function (event, ui) { - var that = $(this).data("resizable"), o = that.options, os = that.originalSize, op = that.originalPosition; - - var delta = { - height: (that.size.height - os.height) || 0, width: (that.size.width - os.width) || 0, - top: (that.position.top - op.top) || 0, left: (that.position.left - op.left) || 0 - }, - - _alsoResize = function (exp, c) { - $(exp).each(function() { - var el = $(this), start = $(this).data("resizable-alsoresize"), style = {}, - css = c && c.length ? c : el.parents(ui.originalElement[0]).length ? ['width', 'height'] : ['width', 'height', 'top', 'left']; - - $.each(css, function (i, prop) { - var sum = (start[prop]||0) + (delta[prop]||0); - if (sum && sum >= 0) - style[prop] = sum || null; - }); - - el.css(style); - }); - }; - - if (typeof(o.alsoResize) == 'object' && !o.alsoResize.nodeType) { - $.each(o.alsoResize, function (exp, c) { _alsoResize(exp, c); }); - }else{ - _alsoResize(o.alsoResize); - } - }, - - stop: function (event, ui) { - $(this).removeData("resizable-alsoresize"); - } - }); - - $.ui.plugin.add("resizable", "animate", { - - stop: function(event, ui) { - var that = $(this).data("resizable"), o = that.options; - - var pr = that._proportionallyResizeElements, ista = pr.length && (/textarea/i).test(pr[0].nodeName), - soffseth = ista && $.ui.hasScroll(pr[0], 'left') /* TODO - jump height */ ? 0 : that.sizeDiff.height, - soffsetw = ista ? 0 : that.sizeDiff.width; - - var style = { width: (that.size.width - soffsetw), height: (that.size.height - soffseth) }, - left = (parseInt(that.element.css('left'), 10) + (that.position.left - that.originalPosition.left)) || null, - top = (parseInt(that.element.css('top'), 10) + (that.position.top - that.originalPosition.top)) || null; - - that.element.animate( - $.extend(style, top && left ? { top: top, left: left } : {}), { - duration: o.animateDuration, - easing: o.animateEasing, - step: function() { - - var data = { - width: parseInt(that.element.css('width'), 10), - height: parseInt(that.element.css('height'), 10), - top: parseInt(that.element.css('top'), 10), - left: parseInt(that.element.css('left'), 10) - }; - - if (pr && pr.length) $(pr[0]).css({ width: data.width, height: data.height }); - - // propagating resize, and updating values for each animation step - that._updateCache(data); - that._propagate("resize", event); - - } - } - ); - } - - }); - - $.ui.plugin.add("resizable", "containment", { - - start: function(event, ui) { - var that = $(this).data("resizable"), o = that.options, el = that.element; - var oc = o.containment, ce = (oc instanceof $) ? oc.get(0) : (/parent/.test(oc)) ? el.parent().get(0) : oc; - if (!ce) return; - - that.containerElement = $(ce); - - if (/document/.test(oc) || oc == document) { - that.containerOffset = { left: 0, top: 0 }; - that.containerPosition = { left: 0, top: 0 }; - - that.parentData = { - element: $(document), left: 0, top: 0, - width: $(document).width(), height: $(document).height() || document.body.parentNode.scrollHeight - }; - } - - // i'm a node, so compute top, left, right, bottom - else { - var element = $(ce), p = []; - $([ "Top", "Right", "Left", "Bottom" ]).each(function(i, name) { p[i] = num(element.css("padding" + name)); }); - - that.containerOffset = element.offset(); - that.containerPosition = element.position(); - that.containerSize = { height: (element.innerHeight() - p[3]), width: (element.innerWidth() - p[1]) }; - - var co = that.containerOffset, ch = that.containerSize.height, cw = that.containerSize.width, - width = ($.ui.hasScroll(ce, "left") ? ce.scrollWidth : cw ), height = ($.ui.hasScroll(ce) ? ce.scrollHeight : ch); - - that.parentData = { - element: ce, left: co.left, top: co.top, width: width, height: height - }; - } - }, - - resize: function(event, ui) { - var that = $(this).data("resizable"), o = that.options, - ps = that.containerSize, co = that.containerOffset, cs = that.size, cp = that.position, - pRatio = that._aspectRatio || event.shiftKey, cop = { top:0, left:0 }, ce = that.containerElement; - - if (ce[0] != document && (/static/).test(ce.css('position'))) cop = co; - - if (cp.left < (that._helper ? co.left : 0)) { - that.size.width = that.size.width + (that._helper ? (that.position.left - co.left) : (that.position.left - cop.left)); - if (pRatio) that.size.height = that.size.width / that.aspectRatio; - that.position.left = o.helper ? co.left : 0; - } - - if (cp.top < (that._helper ? co.top : 0)) { - that.size.height = that.size.height + (that._helper ? (that.position.top - co.top) : that.position.top); - if (pRatio) that.size.width = that.size.height * that.aspectRatio; - that.position.top = that._helper ? co.top : 0; - } - - that.offset.left = that.parentData.left+that.position.left; - that.offset.top = that.parentData.top+that.position.top; - - var woset = Math.abs( (that._helper ? that.offset.left - cop.left : (that.offset.left - cop.left)) + that.sizeDiff.width ), - hoset = Math.abs( (that._helper ? that.offset.top - cop.top : (that.offset.top - co.top)) + that.sizeDiff.height ); - - var isParent = that.containerElement.get(0) == that.element.parent().get(0), - isOffsetRelative = /relative|absolute/.test(that.containerElement.css('position')); - - if(isParent && isOffsetRelative) woset -= that.parentData.left; - - if (woset + that.size.width >= that.parentData.width) { - that.size.width = that.parentData.width - woset; - if (pRatio) that.size.height = that.size.width / that.aspectRatio; - } - - if (hoset + that.size.height >= that.parentData.height) { - that.size.height = that.parentData.height - hoset; - if (pRatio) that.size.width = that.size.height * that.aspectRatio; - } - }, - - stop: function(event, ui){ - var that = $(this).data("resizable"), o = that.options, cp = that.position, - co = that.containerOffset, cop = that.containerPosition, ce = that.containerElement; - - var helper = $(that.helper), ho = helper.offset(), w = helper.outerWidth() - that.sizeDiff.width, h = helper.outerHeight() - that.sizeDiff.height; - - if (that._helper && !o.animate && (/relative/).test(ce.css('position'))) - $(this).css({ left: ho.left - cop.left - co.left, width: w, height: h }); - - if (that._helper && !o.animate && (/static/).test(ce.css('position'))) - $(this).css({ left: ho.left - cop.left - co.left, width: w, height: h }); - - } - }); - - $.ui.plugin.add("resizable", "ghost", { - - start: function(event, ui) { - - var that = $(this).data("resizable"), o = that.options, cs = that.size; - - that.ghost = that.originalElement.clone(); - that.ghost - .css({ opacity: .25, display: 'block', position: 'relative', height: cs.height, width: cs.width, margin: 0, left: 0, top: 0 }) - .addClass('ui-resizable-ghost') - .addClass(typeof o.ghost == 'string' ? o.ghost : ''); - - that.ghost.appendTo(that.helper); - - }, - - resize: function(event, ui){ - var that = $(this).data("resizable"), o = that.options; - if (that.ghost) that.ghost.css({ position: 'relative', height: that.size.height, width: that.size.width }); - }, - - stop: function(event, ui){ - var that = $(this).data("resizable"), o = that.options; - if (that.ghost && that.helper) that.helper.get(0).removeChild(that.ghost.get(0)); - } - - }); - - $.ui.plugin.add("resizable", "grid", { - - resize: function(event, ui) { - var that = $(this).data("resizable"), o = that.options, cs = that.size, os = that.originalSize, op = that.originalPosition, a = that.axis, ratio = o._aspectRatio || event.shiftKey; - o.grid = typeof o.grid == "number" ? [o.grid, o.grid] : o.grid; - var ox = Math.round((cs.width - os.width) / (o.grid[0]||1)) * (o.grid[0]||1), oy = Math.round((cs.height - os.height) / (o.grid[1]||1)) * (o.grid[1]||1); - - if (/^(se|s|e)$/.test(a)) { - that.size.width = os.width + ox; - that.size.height = os.height + oy; - } - else if (/^(ne)$/.test(a)) { - that.size.width = os.width + ox; - that.size.height = os.height + oy; - that.position.top = op.top - oy; - } - else if (/^(sw)$/.test(a)) { - that.size.width = os.width + ox; - that.size.height = os.height + oy; - that.position.left = op.left - ox; - } - else { - that.size.width = os.width + ox; - that.size.height = os.height + oy; - that.position.top = op.top - oy; - that.position.left = op.left - ox; - } - } - - }); - - var num = function(v) { - return parseInt(v, 10) || 0; - }; - - var isNumber = function(value) { - return !isNaN(parseInt(value, 10)); - }; - -})(jQuery); - -(function( $, undefined ) { - - $.widget("ui.selectable", $.ui.mouse, { - version: "1.9.0", - options: { - appendTo: 'body', - autoRefresh: true, - distance: 0, - filter: '*', - tolerance: 'touch' - }, - _create: function() { - var that = this; - - this.element.addClass("ui-selectable"); - - this.dragged = false; - - // cache selectee children based on filter - var selectees; - this.refresh = function() { - selectees = $(that.options.filter, that.element[0]); - selectees.addClass("ui-selectee"); - selectees.each(function() { - var $this = $(this); - var pos = $this.offset(); - $.data(this, "selectable-item", { - element: this, - $element: $this, - left: pos.left, - top: pos.top, - right: pos.left + $this.outerWidth(), - bottom: pos.top + $this.outerHeight(), - startselected: false, - selected: $this.hasClass('ui-selected'), - selecting: $this.hasClass('ui-selecting'), - unselecting: $this.hasClass('ui-unselecting') - }); - }); - }; - this.refresh(); - - this.selectees = selectees.addClass("ui-selectee"); - - this._mouseInit(); - - this.helper = $("<div class='ui-selectable-helper'></div>"); - }, - - _destroy: function() { - this.selectees - .removeClass("ui-selectee") - .removeData("selectable-item"); - this.element - .removeClass("ui-selectable ui-selectable-disabled"); - this._mouseDestroy(); - }, - - _mouseStart: function(event) { - var that = this; - - this.opos = [event.pageX, event.pageY]; - - if (this.options.disabled) - return; - - var options = this.options; - - this.selectees = $(options.filter, this.element[0]); - - this._trigger("start", event); - - $(options.appendTo).append(this.helper); - // position helper (lasso) - this.helper.css({ - "left": event.clientX, - "top": event.clientY, - "width": 0, - "height": 0 - }); - - if (options.autoRefresh) { - this.refresh(); - } - - this.selectees.filter('.ui-selected').each(function() { - var selectee = $.data(this, "selectable-item"); - selectee.startselected = true; - if (!event.metaKey && !event.ctrlKey) { - selectee.$element.removeClass('ui-selected'); - selectee.selected = false; - selectee.$element.addClass('ui-unselecting'); - selectee.unselecting = true; - // selectable UNSELECTING callback - that._trigger("unselecting", event, { - unselecting: selectee.element - }); - } - }); - - $(event.target).parents().andSelf().each(function() { - var selectee = $.data(this, "selectable-item"); - if (selectee) { - var doSelect = (!event.metaKey && !event.ctrlKey) || !selectee.$element.hasClass('ui-selected'); - selectee.$element - .removeClass(doSelect ? "ui-unselecting" : "ui-selected") - .addClass(doSelect ? "ui-selecting" : "ui-unselecting"); - selectee.unselecting = !doSelect; - selectee.selecting = doSelect; - selectee.selected = doSelect; - // selectable (UN)SELECTING callback - if (doSelect) { - that._trigger("selecting", event, { - selecting: selectee.element - }); - } else { - that._trigger("unselecting", event, { - unselecting: selectee.element - }); - } - return false; - } - }); - - }, - - _mouseDrag: function(event) { - var that = this; - this.dragged = true; - - if (this.options.disabled) - return; - - var options = this.options; - - var x1 = this.opos[0], y1 = this.opos[1], x2 = event.pageX, y2 = event.pageY; - if (x1 > x2) { var tmp = x2; x2 = x1; x1 = tmp; } - if (y1 > y2) { var tmp = y2; y2 = y1; y1 = tmp; } - this.helper.css({left: x1, top: y1, width: x2-x1, height: y2-y1}); - - this.selectees.each(function() { - var selectee = $.data(this, "selectable-item"); - //prevent helper from being selected if appendTo: selectable - if (!selectee || selectee.element == that.element[0]) - return; - var hit = false; - if (options.tolerance == 'touch') { - hit = ( !(selectee.left > x2 || selectee.right < x1 || selectee.top > y2 || selectee.bottom < y1) ); - } else if (options.tolerance == 'fit') { - hit = (selectee.left > x1 && selectee.right < x2 && selectee.top > y1 && selectee.bottom < y2); - } - - if (hit) { - // SELECT - if (selectee.selected) { - selectee.$element.removeClass('ui-selected'); - selectee.selected = false; - } - if (selectee.unselecting) { - selectee.$element.removeClass('ui-unselecting'); - selectee.unselecting = false; - } - if (!selectee.selecting) { - selectee.$element.addClass('ui-selecting'); - selectee.selecting = true; - // selectable SELECTING callback - that._trigger("selecting", event, { - selecting: selectee.element - }); - } - } else { - // UNSELECT - if (selectee.selecting) { - if ((event.metaKey || event.ctrlKey) && selectee.startselected) { - selectee.$element.removeClass('ui-selecting'); - selectee.selecting = false; - selectee.$element.addClass('ui-selected'); - selectee.selected = true; - } else { - selectee.$element.removeClass('ui-selecting'); - selectee.selecting = false; - if (selectee.startselected) { - selectee.$element.addClass('ui-unselecting'); - selectee.unselecting = true; - } - // selectable UNSELECTING callback - that._trigger("unselecting", event, { - unselecting: selectee.element - }); - } - } - if (selectee.selected) { - if (!event.metaKey && !event.ctrlKey && !selectee.startselected) { - selectee.$element.removeClass('ui-selected'); - selectee.selected = false; - - selectee.$element.addClass('ui-unselecting'); - selectee.unselecting = true; - // selectable UNSELECTING callback - that._trigger("unselecting", event, { - unselecting: selectee.element - }); - } - } - } - }); - - return false; - }, - - _mouseStop: function(event) { - var that = this; - - this.dragged = false; - - var options = this.options; - - $('.ui-unselecting', this.element[0]).each(function() { - var selectee = $.data(this, "selectable-item"); - selectee.$element.removeClass('ui-unselecting'); - selectee.unselecting = false; - selectee.startselected = false; - that._trigger("unselected", event, { - unselected: selectee.element - }); - }); - $('.ui-selecting', this.element[0]).each(function() { - var selectee = $.data(this, "selectable-item"); - selectee.$element.removeClass('ui-selecting').addClass('ui-selected'); - selectee.selecting = false; - selectee.selected = true; - selectee.startselected = true; - that._trigger("selected", event, { - selected: selectee.element - }); - }); - this._trigger("stop", event); - - this.helper.remove(); - - return false; - } - - }); - -})(jQuery); - -(function( $, undefined ) { - - $.widget("ui.sortable", $.ui.mouse, { - version: "1.9.0", - widgetEventPrefix: "sort", - ready: false, - options: { - appendTo: "parent", - axis: false, - connectWith: false, - containment: false, - cursor: 'auto', - cursorAt: false, - dropOnEmpty: true, - forcePlaceholderSize: false, - forceHelperSize: false, - grid: false, - handle: false, - helper: "original", - items: '> *', - opacity: false, - placeholder: false, - revert: false, - scroll: true, - scrollSensitivity: 20, - scrollSpeed: 20, - scope: "default", - tolerance: "intersect", - zIndex: 1000 - }, - _create: function() { - - var o = this.options; - this.containerCache = {}; - this.element.addClass("ui-sortable"); - - //Get the items - this.refresh(); - - //Let's determine if the items are being displayed horizontally - this.floating = this.items.length ? o.axis === 'x' || (/left|right/).test(this.items[0].item.css('float')) || (/inline|table-cell/).test(this.items[0].item.css('display')) : false; - - //Let's determine the parent's offset - this.offset = this.element.offset(); - - //Initialize mouse events for interaction - this._mouseInit(); - - //We're ready to go - this.ready = true - - }, - - _destroy: function() { - this.element - .removeClass("ui-sortable ui-sortable-disabled"); - this._mouseDestroy(); - - for ( var i = this.items.length - 1; i >= 0; i-- ) - this.items[i].item.removeData(this.widgetName + "-item"); - - return this; - }, - - _setOption: function(key, value){ - if ( key === "disabled" ) { - this.options[ key ] = value; - - this.widget().toggleClass( "ui-sortable-disabled", !!value ); - } else { - // Don't call widget base _setOption for disable as it adds ui-state-disabled class - $.Widget.prototype._setOption.apply(this, arguments); - } - }, - - _mouseCapture: function(event, overrideHandle) { - var that = this; - - if (this.reverting) { - return false; - } - - if(this.options.disabled || this.options.type == 'static') return false; - - //We have to refresh the items data once first - this._refreshItems(event); - - //Find out if the clicked node (or one of its parents) is a actual item in this.items - var currentItem = null, nodes = $(event.target).parents().each(function() { - if($.data(this, that.widgetName + '-item') == that) { - currentItem = $(this); - return false; - } - }); - if($.data(event.target, that.widgetName + '-item') == that) currentItem = $(event.target); - - if(!currentItem) return false; - if(this.options.handle && !overrideHandle) { - var validHandle = false; - - $(this.options.handle, currentItem).find("*").andSelf().each(function() { if(this == event.target) validHandle = true; }); - if(!validHandle) return false; - } - - this.currentItem = currentItem; - this._removeCurrentsFromItems(); - return true; - - }, - - _mouseStart: function(event, overrideHandle, noActivation) { - - var o = this.options; - this.currentContainer = this; - - //We only need to call refreshPositions, because the refreshItems call has been moved to mouseCapture - this.refreshPositions(); - - //Create and append the visible helper - this.helper = this._createHelper(event); - - //Cache the helper size - this._cacheHelperProportions(); - - /* - * - Position generation - - * This block generates everything position related - it's the core of draggables. - */ - - //Cache the margins of the original element - this._cacheMargins(); - - //Get the next scrolling parent - this.scrollParent = this.helper.scrollParent(); - - //The element's absolute position on the page minus margins - this.offset = this.currentItem.offset(); - this.offset = { - top: this.offset.top - this.margins.top, - left: this.offset.left - this.margins.left - }; - - $.extend(this.offset, { - click: { //Where the click happened, relative to the element - left: event.pageX - this.offset.left, - top: event.pageY - this.offset.top - }, - parent: this._getParentOffset(), - relative: this._getRelativeOffset() //This is a relative to absolute position minus the actual position calculation - only used for relative positioned helper - }); - - // Only after we got the offset, we can change the helper's position to absolute - // TODO: Still need to figure out a way to make relative sorting possible - this.helper.css("position", "absolute"); - this.cssPosition = this.helper.css("position"); - - //Generate the original position - this.originalPosition = this._generatePosition(event); - this.originalPageX = event.pageX; - this.originalPageY = event.pageY; - - //Adjust the mouse offset relative to the helper if 'cursorAt' is supplied - (o.cursorAt && this._adjustOffsetFromHelper(o.cursorAt)); - - //Cache the former DOM position - this.domPosition = { prev: this.currentItem.prev()[0], parent: this.currentItem.parent()[0] }; - - //If the helper is not the original, hide the original so it's not playing any role during the drag, won't cause anything bad this way - if(this.helper[0] != this.currentItem[0]) { - this.currentItem.hide(); - } - - //Create the placeholder - this._createPlaceholder(); - - //Set a containment if given in the options - if(o.containment) - this._setContainment(); - - if(o.cursor) { // cursor option - if ($('body').css("cursor")) this._storedCursor = $('body').css("cursor"); - $('body').css("cursor", o.cursor); - } - - if(o.opacity) { // opacity option - if (this.helper.css("opacity")) this._storedOpacity = this.helper.css("opacity"); - this.helper.css("opacity", o.opacity); - } - - if(o.zIndex) { // zIndex option - if (this.helper.css("zIndex")) this._storedZIndex = this.helper.css("zIndex"); - this.helper.css("zIndex", o.zIndex); - } - - //Prepare scrolling - if(this.scrollParent[0] != document && this.scrollParent[0].tagName != 'HTML') - this.overflowOffset = this.scrollParent.offset(); - - //Call callbacks - this._trigger("start", event, this._uiHash()); - - //Recache the helper size - if(!this._preserveHelperProportions) - this._cacheHelperProportions(); - - - //Post 'activate' events to possible containers - if(!noActivation) { - for (var i = this.containers.length - 1; i >= 0; i--) { this.containers[i]._trigger("activate", event, this._uiHash(this)); } - } - - //Prepare possible droppables - if($.ui.ddmanager) - $.ui.ddmanager.current = this; - - if ($.ui.ddmanager && !o.dropBehaviour) - $.ui.ddmanager.prepareOffsets(this, event); - - this.dragging = true; - - this.helper.addClass("ui-sortable-helper"); - this._mouseDrag(event); //Execute the drag once - this causes the helper not to be visible before getting its correct position - return true; - - }, - - _mouseDrag: function(event) { - - //Compute the helpers position - this.position = this._generatePosition(event); - this.positionAbs = this._convertPositionTo("absolute"); - - if (!this.lastPositionAbs) { - this.lastPositionAbs = this.positionAbs; - } - - //Do scrolling - if(this.options.scroll) { - var o = this.options, scrolled = false; - if(this.scrollParent[0] != document && this.scrollParent[0].tagName != 'HTML') { - - if((this.overflowOffset.top + this.scrollParent[0].offsetHeight) - event.pageY < o.scrollSensitivity) - this.scrollParent[0].scrollTop = scrolled = this.scrollParent[0].scrollTop + o.scrollSpeed; - else if(event.pageY - this.overflowOffset.top < o.scrollSensitivity) - this.scrollParent[0].scrollTop = scrolled = this.scrollParent[0].scrollTop - o.scrollSpeed; - - if((this.overflowOffset.left + this.scrollParent[0].offsetWidth) - event.pageX < o.scrollSensitivity) - this.scrollParent[0].scrollLeft = scrolled = this.scrollParent[0].scrollLeft + o.scrollSpeed; - else if(event.pageX - this.overflowOffset.left < o.scrollSensitivity) - this.scrollParent[0].scrollLeft = scrolled = this.scrollParent[0].scrollLeft - o.scrollSpeed; - - } else { - - if(event.pageY - $(document).scrollTop() < o.scrollSensitivity) - scrolled = $(document).scrollTop($(document).scrollTop() - o.scrollSpeed); - else if($(window).height() - (event.pageY - $(document).scrollTop()) < o.scrollSensitivity) - scrolled = $(document).scrollTop($(document).scrollTop() + o.scrollSpeed); - - if(event.pageX - $(document).scrollLeft() < o.scrollSensitivity) - scrolled = $(document).scrollLeft($(document).scrollLeft() - o.scrollSpeed); - else if($(window).width() - (event.pageX - $(document).scrollLeft()) < o.scrollSensitivity) - scrolled = $(document).scrollLeft($(document).scrollLeft() + o.scrollSpeed); - - } - - if(scrolled !== false && $.ui.ddmanager && !o.dropBehaviour) - $.ui.ddmanager.prepareOffsets(this, event); - } - - //Regenerate the absolute position used for position checks - this.positionAbs = this._convertPositionTo("absolute"); - - //Set the helper position - if(!this.options.axis || this.options.axis != "y") this.helper[0].style.left = this.position.left+'px'; - if(!this.options.axis || this.options.axis != "x") this.helper[0].style.top = this.position.top+'px'; - - //Rearrange - for (var i = this.items.length - 1; i >= 0; i--) { - - //Cache variables and intersection, continue if no intersection - var item = this.items[i], itemElement = item.item[0], intersection = this._intersectsWithPointer(item); - if (!intersection) continue; - - // Only put the placeholder inside the current Container, skip all - // items form other containers. This works because when moving - // an item from one container to another the - // currentContainer is switched before the placeholder is moved. - // - // Without this moving items in "sub-sortables" can cause the placeholder to jitter - // beetween the outer and inner container. - if (item.instance !== this.currentContainer) continue; - - if (itemElement != this.currentItem[0] //cannot intersect with itself - && this.placeholder[intersection == 1 ? "next" : "prev"]()[0] != itemElement //no useless actions that have been done before - && !$.contains(this.placeholder[0], itemElement) //no action if the item moved is the parent of the item checked - && (this.options.type == 'semi-dynamic' ? !$.contains(this.element[0], itemElement) : true) - //&& itemElement.parentNode == this.placeholder[0].parentNode // only rearrange items within the same container - ) { - - this.direction = intersection == 1 ? "down" : "up"; - - if (this.options.tolerance == "pointer" || this._intersectsWithSides(item)) { - this._rearrange(event, item); - } else { - break; - } - - this._trigger("change", event, this._uiHash()); - break; - } - } - - //Post events to containers - this._contactContainers(event); - - //Interconnect with droppables - if($.ui.ddmanager) $.ui.ddmanager.drag(this, event); - - //Call callbacks - this._trigger('sort', event, this._uiHash()); - - this.lastPositionAbs = this.positionAbs; - return false; - - }, - - _mouseStop: function(event, noPropagation) { - - if(!event) return; - - //If we are using droppables, inform the manager about the drop - if ($.ui.ddmanager && !this.options.dropBehaviour) - $.ui.ddmanager.drop(this, event); - - if(this.options.revert) { - var that = this; - var cur = this.placeholder.offset(); - - this.reverting = true; - - $(this.helper).animate({ - left: cur.left - this.offset.parent.left - this.margins.left + (this.offsetParent[0] == document.body ? 0 : this.offsetParent[0].scrollLeft), - top: cur.top - this.offset.parent.top - this.margins.top + (this.offsetParent[0] == document.body ? 0 : this.offsetParent[0].scrollTop) - }, parseInt(this.options.revert, 10) || 500, function() { - that._clear(event); - }); - } else { - this._clear(event, noPropagation); - } - - return false; - - }, - - cancel: function() { - - if(this.dragging) { - - this._mouseUp({ target: null }); - - if(this.options.helper == "original") - this.currentItem.css(this._storedCSS).removeClass("ui-sortable-helper"); - else - this.currentItem.show(); - - //Post deactivating events to containers - for (var i = this.containers.length - 1; i >= 0; i--){ - this.containers[i]._trigger("deactivate", null, this._uiHash(this)); - if(this.containers[i].containerCache.over) { - this.containers[i]._trigger("out", null, this._uiHash(this)); - this.containers[i].containerCache.over = 0; - } - } - - } - - if (this.placeholder) { - //$(this.placeholder[0]).remove(); would have been the jQuery way - unfortunately, it unbinds ALL events from the original node! - if(this.placeholder[0].parentNode) this.placeholder[0].parentNode.removeChild(this.placeholder[0]); - if(this.options.helper != "original" && this.helper && this.helper[0].parentNode) this.helper.remove(); - - $.extend(this, { - helper: null, - dragging: false, - reverting: false, - _noFinalSort: null - }); - - if(this.domPosition.prev) { - $(this.domPosition.prev).after(this.currentItem); - } else { - $(this.domPosition.parent).prepend(this.currentItem); - } - } - - return this; - - }, - - serialize: function(o) { - - var items = this._getItemsAsjQuery(o && o.connected); - var str = []; o = o || {}; - - $(items).each(function() { - var res = ($(o.item || this).attr(o.attribute || 'id') || '').match(o.expression || (/(.+)[-=_](.+)/)); - if(res) str.push((o.key || res[1]+'[]')+'='+(o.key && o.expression ? res[1] : res[2])); - }); - - if(!str.length && o.key) { - str.push(o.key + '='); - } - - return str.join('&'); - - }, - - toArray: function(o) { - - var items = this._getItemsAsjQuery(o && o.connected); - var ret = []; o = o || {}; - - items.each(function() { ret.push($(o.item || this).attr(o.attribute || 'id') || ''); }); - return ret; - - }, - - /* Be careful with the following core functions */ - _intersectsWith: function(item) { - - var x1 = this.positionAbs.left, - x2 = x1 + this.helperProportions.width, - y1 = this.positionAbs.top, - y2 = y1 + this.helperProportions.height; - - var l = item.left, - r = l + item.width, - t = item.top, - b = t + item.height; - - var dyClick = this.offset.click.top, - dxClick = this.offset.click.left; - - var isOverElement = (y1 + dyClick) > t && (y1 + dyClick) < b && (x1 + dxClick) > l && (x1 + dxClick) < r; - - if( this.options.tolerance == "pointer" - || this.options.forcePointerForContainers - || (this.options.tolerance != "pointer" && this.helperProportions[this.floating ? 'width' : 'height'] > item[this.floating ? 'width' : 'height']) - ) { - return isOverElement; - } else { - - return (l < x1 + (this.helperProportions.width / 2) // Right Half - && x2 - (this.helperProportions.width / 2) < r // Left Half - && t < y1 + (this.helperProportions.height / 2) // Bottom Half - && y2 - (this.helperProportions.height / 2) < b ); // Top Half - - } - }, - - _intersectsWithPointer: function(item) { - - var isOverElementHeight = (this.options.axis === 'x') || $.ui.isOverAxis(this.positionAbs.top + this.offset.click.top, item.top, item.height), - isOverElementWidth = (this.options.axis === 'y') || $.ui.isOverAxis(this.positionAbs.left + this.offset.click.left, item.left, item.width), - isOverElement = isOverElementHeight && isOverElementWidth, - verticalDirection = this._getDragVerticalDirection(), - horizontalDirection = this._getDragHorizontalDirection(); - - if (!isOverElement) - return false; - - return this.floating ? - ( ((horizontalDirection && horizontalDirection == "right") || verticalDirection == "down") ? 2 : 1 ) - : ( verticalDirection && (verticalDirection == "down" ? 2 : 1) ); - - }, - - _intersectsWithSides: function(item) { - - var isOverBottomHalf = $.ui.isOverAxis(this.positionAbs.top + this.offset.click.top, item.top + (item.height/2), item.height), - isOverRightHalf = $.ui.isOverAxis(this.positionAbs.left + this.offset.click.left, item.left + (item.width/2), item.width), - verticalDirection = this._getDragVerticalDirection(), - horizontalDirection = this._getDragHorizontalDirection(); - - if (this.floating && horizontalDirection) { - return ((horizontalDirection == "right" && isOverRightHalf) || (horizontalDirection == "left" && !isOverRightHalf)); - } else { - return verticalDirection && ((verticalDirection == "down" && isOverBottomHalf) || (verticalDirection == "up" && !isOverBottomHalf)); - } - - }, - - _getDragVerticalDirection: function() { - var delta = this.positionAbs.top - this.lastPositionAbs.top; - return delta != 0 && (delta > 0 ? "down" : "up"); - }, - - _getDragHorizontalDirection: function() { - var delta = this.positionAbs.left - this.lastPositionAbs.left; - return delta != 0 && (delta > 0 ? "right" : "left"); - }, - - refresh: function(event) { - this._refreshItems(event); - this.refreshPositions(); - return this; - }, - - _connectWith: function() { - var options = this.options; - return options.connectWith.constructor == String - ? [options.connectWith] - : options.connectWith; - }, - - _getItemsAsjQuery: function(connected) { - - var items = []; - var queries = []; - var connectWith = this._connectWith(); - - if(connectWith && connected) { - for (var i = connectWith.length - 1; i >= 0; i--){ - var cur = $(connectWith[i]); - for (var j = cur.length - 1; j >= 0; j--){ - var inst = $.data(cur[j], this.widgetName); - if(inst && inst != this && !inst.options.disabled) { - queries.push([$.isFunction(inst.options.items) ? inst.options.items.call(inst.element) : $(inst.options.items, inst.element).not(".ui-sortable-helper").not('.ui-sortable-placeholder'), inst]); - } - }; - }; - } - - queries.push([$.isFunction(this.options.items) ? this.options.items.call(this.element, null, { options: this.options, item: this.currentItem }) : $(this.options.items, this.element).not(".ui-sortable-helper").not('.ui-sortable-placeholder'), this]); - - for (var i = queries.length - 1; i >= 0; i--){ - queries[i][0].each(function() { - items.push(this); - }); - }; - - return $(items); - - }, - - _removeCurrentsFromItems: function() { - - var list = this.currentItem.find(":data(" + this.widgetName + "-item)"); - - for (var i=0; i < this.items.length; i++) { - - for (var j=0; j < list.length; j++) { - if(list[j] == this.items[i].item[0]) - this.items.splice(i,1); - }; - - }; - - }, - - _refreshItems: function(event) { - - this.items = []; - this.containers = [this]; - var items = this.items; - var queries = [[$.isFunction(this.options.items) ? this.options.items.call(this.element[0], event, { item: this.currentItem }) : $(this.options.items, this.element), this]]; - var connectWith = this._connectWith(); - - if(connectWith && this.ready) { //Shouldn't be run the first time through due to massive slow-down - for (var i = connectWith.length - 1; i >= 0; i--){ - var cur = $(connectWith[i]); - for (var j = cur.length - 1; j >= 0; j--){ - var inst = $.data(cur[j], this.widgetName); - if(inst && inst != this && !inst.options.disabled) { - queries.push([$.isFunction(inst.options.items) ? inst.options.items.call(inst.element[0], event, { item: this.currentItem }) : $(inst.options.items, inst.element), inst]); - this.containers.push(inst); - } - }; - }; - } - - for (var i = queries.length - 1; i >= 0; i--) { - var targetData = queries[i][1]; - var _queries = queries[i][0]; - - for (var j=0, queriesLength = _queries.length; j < queriesLength; j++) { - var item = $(_queries[j]); - - item.data(this.widgetName + '-item', targetData); // Data for target checking (mouse manager) - - items.push({ - item: item, - instance: targetData, - width: 0, height: 0, - left: 0, top: 0 - }); - }; - }; - - }, - - refreshPositions: function(fast) { - - //This has to be redone because due to the item being moved out/into the offsetParent, the offsetParent's position will change - if(this.offsetParent && this.helper) { - this.offset.parent = this._getParentOffset(); - } - - for (var i = this.items.length - 1; i >= 0; i--){ - var item = this.items[i]; - - //We ignore calculating positions of all connected containers when we're not over them - if(item.instance != this.currentContainer && this.currentContainer && item.item[0] != this.currentItem[0]) - continue; - - var t = this.options.toleranceElement ? $(this.options.toleranceElement, item.item) : item.item; - - if (!fast) { - item.width = t.outerWidth(); - item.height = t.outerHeight(); - } - - var p = t.offset(); - item.left = p.left; - item.top = p.top; - }; - - if(this.options.custom && this.options.custom.refreshContainers) { - this.options.custom.refreshContainers.call(this); - } else { - for (var i = this.containers.length - 1; i >= 0; i--){ - var p = this.containers[i].element.offset(); - this.containers[i].containerCache.left = p.left; - this.containers[i].containerCache.top = p.top; - this.containers[i].containerCache.width = this.containers[i].element.outerWidth(); - this.containers[i].containerCache.height = this.containers[i].element.outerHeight(); - }; - } - - return this; - }, - - _createPlaceholder: function(that) { - that = that || this; - var o = that.options; - - if(!o.placeholder || o.placeholder.constructor == String) { - var className = o.placeholder; - o.placeholder = { - element: function() { - - var el = $(document.createElement(that.currentItem[0].nodeName)) - .addClass(className || that.currentItem[0].className+" ui-sortable-placeholder") - .removeClass("ui-sortable-helper")[0]; - - if(!className) - el.style.visibility = "hidden"; - - return el; - }, - update: function(container, p) { - - // 1. If a className is set as 'placeholder option, we don't force sizes - the class is responsible for that - // 2. The option 'forcePlaceholderSize can be enabled to force it even if a class name is specified - if(className && !o.forcePlaceholderSize) return; - - //If the element doesn't have a actual height by itself (without styles coming from a stylesheet), it receives the inline height from the dragged item - if(!p.height()) { p.height(that.currentItem.innerHeight() - parseInt(that.currentItem.css('paddingTop')||0, 10) - parseInt(that.currentItem.css('paddingBottom')||0, 10)); }; - if(!p.width()) { p.width(that.currentItem.innerWidth() - parseInt(that.currentItem.css('paddingLeft')||0, 10) - parseInt(that.currentItem.css('paddingRight')||0, 10)); }; - } - }; - } - - //Create the placeholder - that.placeholder = $(o.placeholder.element.call(that.element, that.currentItem)); - - //Append it after the actual current item - that.currentItem.after(that.placeholder); - - //Update the size of the placeholder (TODO: Logic to fuzzy, see line 316/317) - o.placeholder.update(that, that.placeholder); - - }, - - _contactContainers: function(event) { - - // get innermost container that intersects with item - var innermostContainer = null, innermostIndex = null; - - - for (var i = this.containers.length - 1; i >= 0; i--){ - - // never consider a container that's located within the item itself - if($.contains(this.currentItem[0], this.containers[i].element[0])) - continue; - - if(this._intersectsWith(this.containers[i].containerCache)) { - - // if we've already found a container and it's more "inner" than this, then continue - if(innermostContainer && $.contains(this.containers[i].element[0], innermostContainer.element[0])) - continue; - - innermostContainer = this.containers[i]; - innermostIndex = i; - - } else { - // container doesn't intersect. trigger "out" event if necessary - if(this.containers[i].containerCache.over) { - this.containers[i]._trigger("out", event, this._uiHash(this)); - this.containers[i].containerCache.over = 0; - } - } - - } - - // if no intersecting containers found, return - if(!innermostContainer) return; - - // move the item into the container if it's not there already - if(this.containers.length === 1) { - this.containers[innermostIndex]._trigger("over", event, this._uiHash(this)); - this.containers[innermostIndex].containerCache.over = 1; - } else if(this.currentContainer != this.containers[innermostIndex]) { - - //When entering a new container, we will find the item with the least distance and append our item near it - var dist = 10000; var itemWithLeastDistance = null; var base = this.positionAbs[this.containers[innermostIndex].floating ? 'left' : 'top']; - for (var j = this.items.length - 1; j >= 0; j--) { - if(!$.contains(this.containers[innermostIndex].element[0], this.items[j].item[0])) continue; - var cur = this.containers[innermostIndex].floating ? this.items[j].item.offset().left : this.items[j].item.offset().top; - if(Math.abs(cur - base) < dist) { - dist = Math.abs(cur - base); itemWithLeastDistance = this.items[j]; - this.direction = (cur - base > 0) ? 'down' : 'up'; - } - } - - if(!itemWithLeastDistance && !this.options.dropOnEmpty) //Check if dropOnEmpty is enabled - return; - - this.currentContainer = this.containers[innermostIndex]; - itemWithLeastDistance ? this._rearrange(event, itemWithLeastDistance, null, true) : this._rearrange(event, null, this.containers[innermostIndex].element, true); - this._trigger("change", event, this._uiHash()); - this.containers[innermostIndex]._trigger("change", event, this._uiHash(this)); - - //Update the placeholder - this.options.placeholder.update(this.currentContainer, this.placeholder); - - this.containers[innermostIndex]._trigger("over", event, this._uiHash(this)); - this.containers[innermostIndex].containerCache.over = 1; - } - - - }, - - _createHelper: function(event) { - - var o = this.options; - var helper = $.isFunction(o.helper) ? $(o.helper.apply(this.element[0], [event, this.currentItem])) : (o.helper == 'clone' ? this.currentItem.clone() : this.currentItem); - - if(!helper.parents('body').length) //Add the helper to the DOM if that didn't happen already - $(o.appendTo != 'parent' ? o.appendTo : this.currentItem[0].parentNode)[0].appendChild(helper[0]); - - if(helper[0] == this.currentItem[0]) - this._storedCSS = { width: this.currentItem[0].style.width, height: this.currentItem[0].style.height, position: this.currentItem.css("position"), top: this.currentItem.css("top"), left: this.currentItem.css("left") }; - - if(helper[0].style.width == '' || o.forceHelperSize) helper.width(this.currentItem.width()); - if(helper[0].style.height == '' || o.forceHelperSize) helper.height(this.currentItem.height()); - - return helper; - - }, - - _adjustOffsetFromHelper: function(obj) { - if (typeof obj == 'string') { - obj = obj.split(' '); - } - if ($.isArray(obj)) { - obj = {left: +obj[0], top: +obj[1] || 0}; - } - if ('left' in obj) { - this.offset.click.left = obj.left + this.margins.left; - } - if ('right' in obj) { - this.offset.click.left = this.helperProportions.width - obj.right + this.margins.left; - } - if ('top' in obj) { - this.offset.click.top = obj.top + this.margins.top; - } - if ('bottom' in obj) { - this.offset.click.top = this.helperProportions.height - obj.bottom + this.margins.top; - } - }, - - _getParentOffset: function() { - - - //Get the offsetParent and cache its position - this.offsetParent = this.helper.offsetParent(); - var po = this.offsetParent.offset(); - - // This is a special case where we need to modify a offset calculated on start, since the following happened: - // 1. The position of the helper is absolute, so it's position is calculated based on the next positioned parent - // 2. The actual offset parent is a child of the scroll parent, and the scroll parent isn't the document, which means that - // the scroll is included in the initial calculation of the offset of the parent, and never recalculated upon drag - if(this.cssPosition == 'absolute' && this.scrollParent[0] != document && $.contains(this.scrollParent[0], this.offsetParent[0])) { - po.left += this.scrollParent.scrollLeft(); - po.top += this.scrollParent.scrollTop(); - } - - if((this.offsetParent[0] == document.body) //This needs to be actually done for all browsers, since pageX/pageY includes this information - || (this.offsetParent[0].tagName && this.offsetParent[0].tagName.toLowerCase() == 'html' && $.browser.msie)) //Ugly IE fix - po = { top: 0, left: 0 }; - - return { - top: po.top + (parseInt(this.offsetParent.css("borderTopWidth"),10) || 0), - left: po.left + (parseInt(this.offsetParent.css("borderLeftWidth"),10) || 0) - }; - - }, - - _getRelativeOffset: function() { - - if(this.cssPosition == "relative") { - var p = this.currentItem.position(); - return { - top: p.top - (parseInt(this.helper.css("top"),10) || 0) + this.scrollParent.scrollTop(), - left: p.left - (parseInt(this.helper.css("left"),10) || 0) + this.scrollParent.scrollLeft() - }; - } else { - return { top: 0, left: 0 }; - } - - }, - - _cacheMargins: function() { - this.margins = { - left: (parseInt(this.currentItem.css("marginLeft"),10) || 0), - top: (parseInt(this.currentItem.css("marginTop"),10) || 0) - }; - }, - - _cacheHelperProportions: function() { - this.helperProportions = { - width: this.helper.outerWidth(), - height: this.helper.outerHeight() - }; - }, - - _setContainment: function() { - - var o = this.options; - if(o.containment == 'parent') o.containment = this.helper[0].parentNode; - if(o.containment == 'document' || o.containment == 'window') this.containment = [ - 0 - this.offset.relative.left - this.offset.parent.left, - 0 - this.offset.relative.top - this.offset.parent.top, - $(o.containment == 'document' ? document : window).width() - this.helperProportions.width - this.margins.left, - ($(o.containment == 'document' ? document : window).height() || document.body.parentNode.scrollHeight) - this.helperProportions.height - this.margins.top - ]; - - if(!(/^(document|window|parent)$/).test(o.containment)) { - var ce = $(o.containment)[0]; - var co = $(o.containment).offset(); - var over = ($(ce).css("overflow") != 'hidden'); - - this.containment = [ - co.left + (parseInt($(ce).css("borderLeftWidth"),10) || 0) + (parseInt($(ce).css("paddingLeft"),10) || 0) - this.margins.left, - co.top + (parseInt($(ce).css("borderTopWidth"),10) || 0) + (parseInt($(ce).css("paddingTop"),10) || 0) - this.margins.top, - co.left+(over ? Math.max(ce.scrollWidth,ce.offsetWidth) : ce.offsetWidth) - (parseInt($(ce).css("borderLeftWidth"),10) || 0) - (parseInt($(ce).css("paddingRight"),10) || 0) - this.helperProportions.width - this.margins.left, - co.top+(over ? Math.max(ce.scrollHeight,ce.offsetHeight) : ce.offsetHeight) - (parseInt($(ce).css("borderTopWidth"),10) || 0) - (parseInt($(ce).css("paddingBottom"),10) || 0) - this.helperProportions.height - this.margins.top - ]; - } - - }, - - _convertPositionTo: function(d, pos) { - - if(!pos) pos = this.position; - var mod = d == "absolute" ? 1 : -1; - var o = this.options, scroll = this.cssPosition == 'absolute' && !(this.scrollParent[0] != document && $.contains(this.scrollParent[0], this.offsetParent[0])) ? this.offsetParent : this.scrollParent, scrollIsRootNode = (/(html|body)/i).test(scroll[0].tagName); - - return { - top: ( - pos.top // The absolute mouse position - + this.offset.relative.top * mod // Only for relative positioned nodes: Relative offset from element to offset parent - + this.offset.parent.top * mod // The offsetParent's offset without borders (offset + border) - - ( ( this.cssPosition == 'fixed' ? -this.scrollParent.scrollTop() : ( scrollIsRootNode ? 0 : scroll.scrollTop() ) ) * mod) - ), - left: ( - pos.left // The absolute mouse position - + this.offset.relative.left * mod // Only for relative positioned nodes: Relative offset from element to offset parent - + this.offset.parent.left * mod // The offsetParent's offset without borders (offset + border) - - ( ( this.cssPosition == 'fixed' ? -this.scrollParent.scrollLeft() : scrollIsRootNode ? 0 : scroll.scrollLeft() ) * mod) - ) - }; - - }, - - _generatePosition: function(event) { - - var o = this.options, scroll = this.cssPosition == 'absolute' && !(this.scrollParent[0] != document && $.contains(this.scrollParent[0], this.offsetParent[0])) ? this.offsetParent : this.scrollParent, scrollIsRootNode = (/(html|body)/i).test(scroll[0].tagName); - - // This is another very weird special case that only happens for relative elements: - // 1. If the css position is relative - // 2. and the scroll parent is the document or similar to the offset parent - // we have to refresh the relative offset during the scroll so there are no jumps - if(this.cssPosition == 'relative' && !(this.scrollParent[0] != document && this.scrollParent[0] != this.offsetParent[0])) { - this.offset.relative = this._getRelativeOffset(); - } - - var pageX = event.pageX; - var pageY = event.pageY; - - /* - * - Position constraining - - * Constrain the position to a mix of grid, containment. - */ - - if(this.originalPosition) { //If we are not dragging yet, we won't check for options - - if(this.containment) { - if(event.pageX - this.offset.click.left < this.containment[0]) pageX = this.containment[0] + this.offset.click.left; - if(event.pageY - this.offset.click.top < this.containment[1]) pageY = this.containment[1] + this.offset.click.top; - if(event.pageX - this.offset.click.left > this.containment[2]) pageX = this.containment[2] + this.offset.click.left; - if(event.pageY - this.offset.click.top > this.containment[3]) pageY = this.containment[3] + this.offset.click.top; - } - - if(o.grid) { - var top = this.originalPageY + Math.round((pageY - this.originalPageY) / o.grid[1]) * o.grid[1]; - pageY = this.containment ? (!(top - this.offset.click.top < this.containment[1] || top - this.offset.click.top > this.containment[3]) ? top : (!(top - this.offset.click.top < this.containment[1]) ? top - o.grid[1] : top + o.grid[1])) : top; - - var left = this.originalPageX + Math.round((pageX - this.originalPageX) / o.grid[0]) * o.grid[0]; - pageX = this.containment ? (!(left - this.offset.click.left < this.containment[0] || left - this.offset.click.left > this.containment[2]) ? left : (!(left - this.offset.click.left < this.containment[0]) ? left - o.grid[0] : left + o.grid[0])) : left; - } - - } - - return { - top: ( - pageY // The absolute mouse position - - this.offset.click.top // Click offset (relative to the element) - - this.offset.relative.top // Only for relative positioned nodes: Relative offset from element to offset parent - - this.offset.parent.top // The offsetParent's offset without borders (offset + border) - + ( ( this.cssPosition == 'fixed' ? -this.scrollParent.scrollTop() : ( scrollIsRootNode ? 0 : scroll.scrollTop() ) )) - ), - left: ( - pageX // The absolute mouse position - - this.offset.click.left // Click offset (relative to the element) - - this.offset.relative.left // Only for relative positioned nodes: Relative offset from element to offset parent - - this.offset.parent.left // The offsetParent's offset without borders (offset + border) - + ( ( this.cssPosition == 'fixed' ? -this.scrollParent.scrollLeft() : scrollIsRootNode ? 0 : scroll.scrollLeft() )) - ) - }; - - }, - - _rearrange: function(event, i, a, hardRefresh) { - - a ? a[0].appendChild(this.placeholder[0]) : i.item[0].parentNode.insertBefore(this.placeholder[0], (this.direction == 'down' ? i.item[0] : i.item[0].nextSibling)); - - //Various things done here to improve the performance: - // 1. we create a setTimeout, that calls refreshPositions - // 2. on the instance, we have a counter variable, that get's higher after every append - // 3. on the local scope, we copy the counter variable, and check in the timeout, if it's still the same - // 4. this lets only the last addition to the timeout stack through - this.counter = this.counter ? ++this.counter : 1; - var counter = this.counter; - - this._delay(function() { - if(counter == this.counter) this.refreshPositions(!hardRefresh); //Precompute after each DOM insertion, NOT on mousemove - }); - - }, - - _clear: function(event, noPropagation) { - - this.reverting = false; - // We delay all events that have to be triggered to after the point where the placeholder has been removed and - // everything else normalized again - var delayedTriggers = []; - - // We first have to update the dom position of the actual currentItem - // Note: don't do it if the current item is already removed (by a user), or it gets reappended (see #4088) - if(!this._noFinalSort && this.currentItem.parent().length) this.placeholder.before(this.currentItem); - this._noFinalSort = null; - - if(this.helper[0] == this.currentItem[0]) { - for(var i in this._storedCSS) { - if(this._storedCSS[i] == 'auto' || this._storedCSS[i] == 'static') this._storedCSS[i] = ''; - } - this.currentItem.css(this._storedCSS).removeClass("ui-sortable-helper"); - } else { - this.currentItem.show(); - } - - if(this.fromOutside && !noPropagation) delayedTriggers.push(function(event) { this._trigger("receive", event, this._uiHash(this.fromOutside)); }); - if((this.fromOutside || this.domPosition.prev != this.currentItem.prev().not(".ui-sortable-helper")[0] || this.domPosition.parent != this.currentItem.parent()[0]) && !noPropagation) delayedTriggers.push(function(event) { this._trigger("update", event, this._uiHash()); }); //Trigger update callback if the DOM position has changed - - // Check if the items Container has Changed and trigger appropriate - // events. - if (this !== this.currentContainer) { - if(!noPropagation) { - delayedTriggers.push(function(event) { this._trigger("remove", event, this._uiHash()); }); - delayedTriggers.push((function(c) { return function(event) { c._trigger("receive", event, this._uiHash(this)); }; }).call(this, this.currentContainer)); - delayedTriggers.push((function(c) { return function(event) { c._trigger("update", event, this._uiHash(this)); }; }).call(this, this.currentContainer)); - } - } - - - //Post events to containers - for (var i = this.containers.length - 1; i >= 0; i--){ - if(!noPropagation) delayedTriggers.push((function(c) { return function(event) { c._trigger("deactivate", event, this._uiHash(this)); }; }).call(this, this.containers[i])); - if(this.containers[i].containerCache.over) { - delayedTriggers.push((function(c) { return function(event) { c._trigger("out", event, this._uiHash(this)); }; }).call(this, this.containers[i])); - this.containers[i].containerCache.over = 0; - } - } - - //Do what was originally in plugins - if(this._storedCursor) $('body').css("cursor", this._storedCursor); //Reset cursor - if(this._storedOpacity) this.helper.css("opacity", this._storedOpacity); //Reset opacity - if(this._storedZIndex) this.helper.css("zIndex", this._storedZIndex == 'auto' ? '' : this._storedZIndex); //Reset z-index - - this.dragging = false; - if(this.cancelHelperRemoval) { - if(!noPropagation) { - this._trigger("beforeStop", event, this._uiHash()); - for (var i=0; i < delayedTriggers.length; i++) { delayedTriggers[i].call(this, event); }; //Trigger all delayed events - this._trigger("stop", event, this._uiHash()); - } - - this.fromOutside = false; - return false; - } - - if(!noPropagation) this._trigger("beforeStop", event, this._uiHash()); - - //$(this.placeholder[0]).remove(); would have been the jQuery way - unfortunately, it unbinds ALL events from the original node! - this.placeholder[0].parentNode.removeChild(this.placeholder[0]); - - if(this.helper[0] != this.currentItem[0]) this.helper.remove(); this.helper = null; - - if(!noPropagation) { - for (var i=0; i < delayedTriggers.length; i++) { delayedTriggers[i].call(this, event); }; //Trigger all delayed events - this._trigger("stop", event, this._uiHash()); - } - - this.fromOutside = false; - return true; - - }, - - _trigger: function() { - if ($.Widget.prototype._trigger.apply(this, arguments) === false) { - this.cancel(); - } - }, - - _uiHash: function(_inst) { - var inst = _inst || this; - return { - helper: inst.helper, - placeholder: inst.placeholder || $([]), - position: inst.position, - originalPosition: inst.originalPosition, - offset: inst.positionAbs, - item: inst.currentItem, - sender: _inst ? _inst.element : null - }; - } - - }); - -})(jQuery); - -;(jQuery.effects || (function($, undefined) { - - var backCompat = $.uiBackCompat !== false, - // prefix used for storing data on .data() - dataSpace = "ui-effects-"; - - $.effects = { - effect: {} - }; - - /*! - * jQuery Color Animations v2.0.0 - * http://jquery.com/ - * - * Copyright 2012 jQuery Foundation and other contributors - * Released under the MIT license. - * http://jquery.org/license - * - * Date: Mon Aug 13 13:41:02 2012 -0500 - */ - (function( jQuery, undefined ) { - - var stepHooks = "backgroundColor borderBottomColor borderLeftColor borderRightColor borderTopColor color columnRuleColor outlineColor textDecorationColor textEmphasisColor".split(" "), - - // plusequals test for += 100 -= 100 - rplusequals = /^([\-+])=\s*(\d+\.?\d*)/, - // a set of RE's that can match strings and generate color tuples. - stringParsers = [{ - re: /rgba?\(\s*(\d{1,3})\s*,\s*(\d{1,3})\s*,\s*(\d{1,3})\s*(?:,\s*(\d+(?:\.\d+)?)\s*)?\)/, - parse: function( execResult ) { - return [ - execResult[ 1 ], - execResult[ 2 ], - execResult[ 3 ], - execResult[ 4 ] - ]; - } - }, { - re: /rgba?\(\s*(\d+(?:\.\d+)?)\%\s*,\s*(\d+(?:\.\d+)?)\%\s*,\s*(\d+(?:\.\d+)?)\%\s*(?:,\s*(\d+(?:\.\d+)?)\s*)?\)/, - parse: function( execResult ) { - return [ - execResult[ 1 ] * 2.55, - execResult[ 2 ] * 2.55, - execResult[ 3 ] * 2.55, - execResult[ 4 ] - ]; - } - }, { - // this regex ignores A-F because it's compared against an already lowercased string - re: /#([a-f0-9]{2})([a-f0-9]{2})([a-f0-9]{2})/, - parse: function( execResult ) { - return [ - parseInt( execResult[ 1 ], 16 ), - parseInt( execResult[ 2 ], 16 ), - parseInt( execResult[ 3 ], 16 ) - ]; - } - }, { - // this regex ignores A-F because it's compared against an already lowercased string - re: /#([a-f0-9])([a-f0-9])([a-f0-9])/, - parse: function( execResult ) { - return [ - parseInt( execResult[ 1 ] + execResult[ 1 ], 16 ), - parseInt( execResult[ 2 ] + execResult[ 2 ], 16 ), - parseInt( execResult[ 3 ] + execResult[ 3 ], 16 ) - ]; - } - }, { - re: /hsla?\(\s*(\d+(?:\.\d+)?)\s*,\s*(\d+(?:\.\d+)?)\%\s*,\s*(\d+(?:\.\d+)?)\%\s*(?:,\s*(\d+(?:\.\d+)?)\s*)?\)/, - space: "hsla", - parse: function( execResult ) { - return [ - execResult[ 1 ], - execResult[ 2 ] / 100, - execResult[ 3 ] / 100, - execResult[ 4 ] - ]; - } - }], - - // jQuery.Color( ) - color = jQuery.Color = function( color, green, blue, alpha ) { - return new jQuery.Color.fn.parse( color, green, blue, alpha ); - }, - spaces = { - rgba: { - props: { - red: { - idx: 0, - type: "byte" - }, - green: { - idx: 1, - type: "byte" - }, - blue: { - idx: 2, - type: "byte" - } - } - }, - - hsla: { - props: { - hue: { - idx: 0, - type: "degrees" - }, - saturation: { - idx: 1, - type: "percent" - }, - lightness: { - idx: 2, - type: "percent" - } - } - } - }, - propTypes = { - "byte": { - floor: true, - max: 255 - }, - "percent": { - max: 1 - }, - "degrees": { - mod: 360, - floor: true - } - }, - support = color.support = {}, - - // element for support tests - supportElem = jQuery( "<p>" )[ 0 ], - - // colors = jQuery.Color.names - colors, - - // local aliases of functions called often - each = jQuery.each; - -// determine rgba support immediately - supportElem.style.cssText = "background-color:rgba(1,1,1,.5)"; - support.rgba = supportElem.style.backgroundColor.indexOf( "rgba" ) > -1; - -// define cache name and alpha properties -// for rgba and hsla spaces - each( spaces, function( spaceName, space ) { - space.cache = "_" + spaceName; - space.props.alpha = { - idx: 3, - type: "percent", - def: 1 - }; - }); - - function clamp( value, prop, allowEmpty ) { - var type = propTypes[ prop.type ] || {}; - - if ( value == null ) { - return (allowEmpty || !prop.def) ? null : prop.def; - } - - // ~~ is an short way of doing floor for positive numbers - value = type.floor ? ~~value : parseFloat( value ); - - // IE will pass in empty strings as value for alpha, - // which will hit this case - if ( isNaN( value ) ) { - return prop.def; - } - - if ( type.mod ) { - // we add mod before modding to make sure that negatives values - // get converted properly: -10 -> 350 - return (value + type.mod) % type.mod; - } - - // for now all property types without mod have min and max - return 0 > value ? 0 : type.max < value ? type.max : value; - } - - function stringParse( string ) { - var inst = color(), - rgba = inst._rgba = []; - - string = string.toLowerCase(); - - each( stringParsers, function( i, parser ) { - var parsed, - match = parser.re.exec( string ), - values = match && parser.parse( match ), - spaceName = parser.space || "rgba"; - - if ( values ) { - parsed = inst[ spaceName ]( values ); - - // if this was an rgba parse the assignment might happen twice - // oh well.... - inst[ spaces[ spaceName ].cache ] = parsed[ spaces[ spaceName ].cache ]; - rgba = inst._rgba = parsed._rgba; - - // exit each( stringParsers ) here because we matched - return false; - } - }); - - // Found a stringParser that handled it - if ( rgba.length ) { - - // if this came from a parsed string, force "transparent" when alpha is 0 - // chrome, (and maybe others) return "transparent" as rgba(0,0,0,0) - if ( rgba.join() === "0,0,0,0" ) { - jQuery.extend( rgba, colors.transparent ); - } - return inst; - } - - // named colors - return colors[ string ]; - } - - color.fn = jQuery.extend( color.prototype, { - parse: function( red, green, blue, alpha ) { - if ( red === undefined ) { - this._rgba = [ null, null, null, null ]; - return this; - } - if ( red.jquery || red.nodeType ) { - red = jQuery( red ).css( green ); - green = undefined; - } - - var inst = this, - type = jQuery.type( red ), - rgba = this._rgba = [], - source; - - // more than 1 argument specified - assume ( red, green, blue, alpha ) - if ( green !== undefined ) { - red = [ red, green, blue, alpha ]; - type = "array"; - } - - if ( type === "string" ) { - return this.parse( stringParse( red ) || colors._default ); - } - - if ( type === "array" ) { - each( spaces.rgba.props, function( key, prop ) { - rgba[ prop.idx ] = clamp( red[ prop.idx ], prop ); - }); - return this; - } - - if ( type === "object" ) { - if ( red instanceof color ) { - each( spaces, function( spaceName, space ) { - if ( red[ space.cache ] ) { - inst[ space.cache ] = red[ space.cache ].slice(); - } - }); - } else { - each( spaces, function( spaceName, space ) { - var cache = space.cache; - each( space.props, function( key, prop ) { - - // if the cache doesn't exist, and we know how to convert - if ( !inst[ cache ] && space.to ) { - - // if the value was null, we don't need to copy it - // if the key was alpha, we don't need to copy it either - if ( key === "alpha" || red[ key ] == null ) { - return; - } - inst[ cache ] = space.to( inst._rgba ); - } - - // this is the only case where we allow nulls for ALL properties. - // call clamp with alwaysAllowEmpty - inst[ cache ][ prop.idx ] = clamp( red[ key ], prop, true ); - }); - - // everything defined but alpha? - if ( inst[ cache ] && $.inArray( null, inst[ cache ].slice( 0, 3 ) ) < 0 ) { - // use the default of 1 - inst[ cache ][ 3 ] = 1; - if ( space.from ) { - inst._rgba = space.from( inst[ cache ] ); - } - } - }); - } - return this; - } - }, - is: function( compare ) { - var is = color( compare ), - same = true, - inst = this; - - each( spaces, function( _, space ) { - var localCache, - isCache = is[ space.cache ]; - if (isCache) { - localCache = inst[ space.cache ] || space.to && space.to( inst._rgba ) || []; - each( space.props, function( _, prop ) { - if ( isCache[ prop.idx ] != null ) { - same = ( isCache[ prop.idx ] === localCache[ prop.idx ] ); - return same; - } - }); - } - return same; - }); - return same; - }, - _space: function() { - var used = [], - inst = this; - each( spaces, function( spaceName, space ) { - if ( inst[ space.cache ] ) { - used.push( spaceName ); - } - }); - return used.pop(); - }, - transition: function( other, distance ) { - var end = color( other ), - spaceName = end._space(), - space = spaces[ spaceName ], - startColor = this.alpha() === 0 ? color( "transparent" ) : this, - start = startColor[ space.cache ] || space.to( startColor._rgba ), - result = start.slice(); - - end = end[ space.cache ]; - each( space.props, function( key, prop ) { - var index = prop.idx, - startValue = start[ index ], - endValue = end[ index ], - type = propTypes[ prop.type ] || {}; - - // if null, don't override start value - if ( endValue === null ) { - return; - } - // if null - use end - if ( startValue === null ) { - result[ index ] = endValue; - } else { - if ( type.mod ) { - if ( endValue - startValue > type.mod / 2 ) { - startValue += type.mod; - } else if ( startValue - endValue > type.mod / 2 ) { - startValue -= type.mod; - } - } - result[ index ] = clamp( ( endValue - startValue ) * distance + startValue, prop ); - } - }); - return this[ spaceName ]( result ); - }, - blend: function( opaque ) { - // if we are already opaque - return ourself - if ( this._rgba[ 3 ] === 1 ) { - return this; - } - - var rgb = this._rgba.slice(), - a = rgb.pop(), - blend = color( opaque )._rgba; - - return color( jQuery.map( rgb, function( v, i ) { - return ( 1 - a ) * blend[ i ] + a * v; - })); - }, - toRgbaString: function() { - var prefix = "rgba(", - rgba = jQuery.map( this._rgba, function( v, i ) { - return v == null ? ( i > 2 ? 1 : 0 ) : v; - }); - - if ( rgba[ 3 ] === 1 ) { - rgba.pop(); - prefix = "rgb("; - } - - return prefix + rgba.join() + ")"; - }, - toHslaString: function() { - var prefix = "hsla(", - hsla = jQuery.map( this.hsla(), function( v, i ) { - if ( v == null ) { - v = i > 2 ? 1 : 0; - } - - // catch 1 and 2 - if ( i && i < 3 ) { - v = Math.round( v * 100 ) + "%"; - } - return v; - }); - - if ( hsla[ 3 ] === 1 ) { - hsla.pop(); - prefix = "hsl("; - } - return prefix + hsla.join() + ")"; - }, - toHexString: function( includeAlpha ) { - var rgba = this._rgba.slice(), - alpha = rgba.pop(); - - if ( includeAlpha ) { - rgba.push( ~~( alpha * 255 ) ); - } - - return "#" + jQuery.map( rgba, function( v, i ) { - - // default to 0 when nulls exist - v = ( v || 0 ).toString( 16 ); - return v.length === 1 ? "0" + v : v; - }).join(""); - }, - toString: function() { - return this._rgba[ 3 ] === 0 ? "transparent" : this.toRgbaString(); - } - }); - color.fn.parse.prototype = color.fn; - -// hsla conversions adapted from: -// https://code.google.com/p/maashaack/source/browse/packages/graphics/trunk/src/graphics/colors/HUE2RGB.as?r=5021 - - function hue2rgb( p, q, h ) { - h = ( h + 1 ) % 1; - if ( h * 6 < 1 ) { - return p + (q - p) * h * 6; - } - if ( h * 2 < 1) { - return q; - } - if ( h * 3 < 2 ) { - return p + (q - p) * ((2/3) - h) * 6; - } - return p; - } - - spaces.hsla.to = function ( rgba ) { - if ( rgba[ 0 ] == null || rgba[ 1 ] == null || rgba[ 2 ] == null ) { - return [ null, null, null, rgba[ 3 ] ]; - } - var r = rgba[ 0 ] / 255, - g = rgba[ 1 ] / 255, - b = rgba[ 2 ] / 255, - a = rgba[ 3 ], - max = Math.max( r, g, b ), - min = Math.min( r, g, b ), - diff = max - min, - add = max + min, - l = add * 0.5, - h, s; - - if ( min === max ) { - h = 0; - } else if ( r === max ) { - h = ( 60 * ( g - b ) / diff ) + 360; - } else if ( g === max ) { - h = ( 60 * ( b - r ) / diff ) + 120; - } else { - h = ( 60 * ( r - g ) / diff ) + 240; - } - - if ( l === 0 || l === 1 ) { - s = l; - } else if ( l <= 0.5 ) { - s = diff / add; - } else { - s = diff / ( 2 - add ); - } - return [ Math.round(h) % 360, s, l, a == null ? 1 : a ]; - }; - - spaces.hsla.from = function ( hsla ) { - if ( hsla[ 0 ] == null || hsla[ 1 ] == null || hsla[ 2 ] == null ) { - return [ null, null, null, hsla[ 3 ] ]; - } - var h = hsla[ 0 ] / 360, - s = hsla[ 1 ], - l = hsla[ 2 ], - a = hsla[ 3 ], - q = l <= 0.5 ? l * ( 1 + s ) : l + s - l * s, - p = 2 * l - q, - r, g, b; - - return [ - Math.round( hue2rgb( p, q, h + ( 1 / 3 ) ) * 255 ), - Math.round( hue2rgb( p, q, h ) * 255 ), - Math.round( hue2rgb( p, q, h - ( 1 / 3 ) ) * 255 ), - a - ]; - }; - - - each( spaces, function( spaceName, space ) { - var props = space.props, - cache = space.cache, - to = space.to, - from = space.from; - - // makes rgba() and hsla() - color.fn[ spaceName ] = function( value ) { - - // generate a cache for this space if it doesn't exist - if ( to && !this[ cache ] ) { - this[ cache ] = to( this._rgba ); - } - if ( value === undefined ) { - return this[ cache ].slice(); - } - - var ret, - type = jQuery.type( value ), - arr = ( type === "array" || type === "object" ) ? value : arguments, - local = this[ cache ].slice(); - - each( props, function( key, prop ) { - var val = arr[ type === "object" ? key : prop.idx ]; - if ( val == null ) { - val = local[ prop.idx ]; - } - local[ prop.idx ] = clamp( val, prop ); - }); - - if ( from ) { - ret = color( from( local ) ); - ret[ cache ] = local; - return ret; - } else { - return color( local ); - } - }; - - // makes red() green() blue() alpha() hue() saturation() lightness() - each( props, function( key, prop ) { - // alpha is included in more than one space - if ( color.fn[ key ] ) { - return; - } - color.fn[ key ] = function( value ) { - var vtype = jQuery.type( value ), - fn = ( key === "alpha" ? ( this._hsla ? "hsla" : "rgba" ) : spaceName ), - local = this[ fn ](), - cur = local[ prop.idx ], - match; - - if ( vtype === "undefined" ) { - return cur; - } - - if ( vtype === "function" ) { - value = value.call( this, cur ); - vtype = jQuery.type( value ); - } - if ( value == null && prop.empty ) { - return this; - } - if ( vtype === "string" ) { - match = rplusequals.exec( value ); - if ( match ) { - value = cur + parseFloat( match[ 2 ] ) * ( match[ 1 ] === "+" ? 1 : -1 ); - } - } - local[ prop.idx ] = value; - return this[ fn ]( local ); - }; - }); - }); - -// add .fx.step functions - each( stepHooks, function( i, hook ) { - jQuery.cssHooks[ hook ] = { - set: function( elem, value ) { - var parsed, curElem, - backgroundColor = ""; - - if ( jQuery.type( value ) !== "string" || ( parsed = stringParse( value ) ) ) { - value = color( parsed || value ); - if ( !support.rgba && value._rgba[ 3 ] !== 1 ) { - curElem = hook === "backgroundColor" ? elem.parentNode : elem; - while ( - (backgroundColor === "" || backgroundColor === "transparent") && - curElem && curElem.style - ) { - try { - backgroundColor = jQuery.css( curElem, "backgroundColor" ); - curElem = curElem.parentNode; - } catch ( e ) { - } - } - - value = value.blend( backgroundColor && backgroundColor !== "transparent" ? - backgroundColor : - "_default" ); - } - - value = value.toRgbaString(); - } - try { - elem.style[ hook ] = value; - } catch( value ) { - // wrapped to prevent IE from throwing errors on "invalid" values like 'auto' or 'inherit' - } - } - }; - jQuery.fx.step[ hook ] = function( fx ) { - if ( !fx.colorInit ) { - fx.start = color( fx.elem, hook ); - fx.end = color( fx.end ); - fx.colorInit = true; - } - jQuery.cssHooks[ hook ].set( fx.elem, fx.start.transition( fx.end, fx.pos ) ); - }; - }); - - jQuery.cssHooks.borderColor = { - expand: function( value ) { - var expanded = {}; - - each( [ "Top", "Right", "Bottom", "Left" ], function( i, part ) { - expanded[ "border" + part + "Color" ] = value; - }); - return expanded; - } - }; - -// Basic color names only. -// Usage of any of the other color names requires adding yourself or including -// jquery.color.svg-names.js. - colors = jQuery.Color.names = { - // 4.1. Basic color keywords - aqua: "#00ffff", - black: "#000000", - blue: "#0000ff", - fuchsia: "#ff00ff", - gray: "#808080", - green: "#008000", - lime: "#00ff00", - maroon: "#800000", - navy: "#000080", - olive: "#808000", - purple: "#800080", - red: "#ff0000", - silver: "#c0c0c0", - teal: "#008080", - white: "#ffffff", - yellow: "#ffff00", - - // 4.2.3. "transparent" color keyword - transparent: [ null, null, null, 0 ], - - _default: "#ffffff" - }; - - })( jQuery ); - - - - /******************************************************************************/ - /****************************** CLASS ANIMATIONS ******************************/ - /******************************************************************************/ - (function() { - - var classAnimationActions = [ "add", "remove", "toggle" ], - shorthandStyles = { - border: 1, - borderBottom: 1, - borderColor: 1, - borderLeft: 1, - borderRight: 1, - borderTop: 1, - borderWidth: 1, - margin: 1, - padding: 1 - }; - - $.each([ "borderLeftStyle", "borderRightStyle", "borderBottomStyle", "borderTopStyle" ], function( _, prop ) { - $.fx.step[ prop ] = function( fx ) { - if ( fx.end !== "none" && !fx.setAttr || fx.pos === 1 && !fx.setAttr ) { - jQuery.style( fx.elem, prop, fx.end ); - fx.setAttr = true; - } - }; - }); - - function getElementStyles() { - var style = this.ownerDocument.defaultView ? - this.ownerDocument.defaultView.getComputedStyle( this, null ) : - this.currentStyle, - newStyle = {}, - key, - camelCase, - len; - - // webkit enumerates style porperties - if ( style && style.length && style[ 0 ] && style[ style[ 0 ] ] ) { - len = style.length; - while ( len-- ) { - key = style[ len ]; - if ( typeof style[ key ] === "string" ) { - newStyle[ $.camelCase( key ) ] = style[ key ]; - } - } - } else { - for ( key in style ) { - if ( typeof style[ key ] === "string" ) { - newStyle[ key ] = style[ key ]; - } - } - } - - return newStyle; - } - - - function styleDifference( oldStyle, newStyle ) { - var diff = {}, - name, value; - - for ( name in newStyle ) { - value = newStyle[ name ]; - if ( oldStyle[ name ] !== value ) { - if ( !shorthandStyles[ name ] ) { - if ( $.fx.step[ name ] || !isNaN( parseFloat( value ) ) ) { - diff[ name ] = value; - } - } - } - } - - return diff; - } - - $.effects.animateClass = function( value, duration, easing, callback ) { - var o = $.speed( duration, easing, callback ); - - return this.queue( function() { - var animated = $( this ), - baseClass = animated.attr( "class" ) || "", - applyClassChange, - allAnimations = o.children ? animated.find( "*" ).andSelf() : animated; - - // map the animated objects to store the original styles. - allAnimations = allAnimations.map(function() { - var el = $( this ); - return { - el: el, - start: getElementStyles.call( this ) - }; - }); - - // apply class change - applyClassChange = function() { - $.each( classAnimationActions, function(i, action) { - if ( value[ action ] ) { - animated[ action + "Class" ]( value[ action ] ); - } - }); - }; - applyClassChange(); - - // map all animated objects again - calculate new styles and diff - allAnimations = allAnimations.map(function() { - this.end = getElementStyles.call( this.el[ 0 ] ); - this.diff = styleDifference( this.start, this.end ); - return this; - }); - - // apply original class - animated.attr( "class", baseClass ); - - // map all animated objects again - this time collecting a promise - allAnimations = allAnimations.map(function() { - var styleInfo = this, - dfd = $.Deferred(), - opts = jQuery.extend({}, o, { - queue: false, - complete: function() { - dfd.resolve( styleInfo ); - } - }); - - this.el.animate( this.diff, opts ); - return dfd.promise(); - }); - - // once all animations have completed: - $.when.apply( $, allAnimations.get() ).done(function() { - - // set the final class - applyClassChange(); - - // for each animated element, - // clear all css properties that were animated - $.each( arguments, function() { - var el = this.el; - $.each( this.diff, function(key) { - el.css( key, '' ); - }); - }); - - // this is guarnteed to be there if you use jQuery.speed() - // it also handles dequeuing the next anim... - o.complete.call( animated[ 0 ] ); - }); - }); - }; - - $.fn.extend({ - _addClass: $.fn.addClass, - addClass: function( classNames, speed, easing, callback ) { - return speed ? - $.effects.animateClass.call( this, - { add: classNames }, speed, easing, callback ) : - this._addClass( classNames ); - }, - - _removeClass: $.fn.removeClass, - removeClass: function( classNames, speed, easing, callback ) { - return speed ? - $.effects.animateClass.call( this, - { remove: classNames }, speed, easing, callback ) : - this._removeClass( classNames ); - }, - - _toggleClass: $.fn.toggleClass, - toggleClass: function( classNames, force, speed, easing, callback ) { - if ( typeof force === "boolean" || force === undefined ) { - if ( !speed ) { - // without speed parameter - return this._toggleClass( classNames, force ); - } else { - return $.effects.animateClass.call( this, - (force ? { add: classNames } : { remove: classNames }), - speed, easing, callback ); - } - } else { - // without force parameter - return $.effects.animateClass.call( this, - { toggle: classNames }, force, speed, easing ); - } - }, - - switchClass: function( remove, add, speed, easing, callback) { - return $.effects.animateClass.call( this, { - add: add, - remove: remove - }, speed, easing, callback ); - } - }); - - })(); - - /******************************************************************************/ - /*********************************** EFFECTS **********************************/ - /******************************************************************************/ - - (function() { - - $.extend( $.effects, { - version: "1.9.0", - - // Saves a set of properties in a data storage - save: function( element, set ) { - for( var i=0; i < set.length; i++ ) { - if ( set[ i ] !== null ) { - element.data( dataSpace + set[ i ], element[ 0 ].style[ set[ i ] ] ); - } - } - }, - - // Restores a set of previously saved properties from a data storage - restore: function( element, set ) { - var val, i; - for( i=0; i < set.length; i++ ) { - if ( set[ i ] !== null ) { - val = element.data( dataSpace + set[ i ] ); - // support: jQuery 1.6.2 - // http://bugs.jquery.com/ticket/9917 - // jQuery 1.6.2 incorrectly returns undefined for any falsy value. - // We can't differentiate between "" and 0 here, so we just assume - // empty string since it's likely to be a more common value... - if ( val === undefined ) { - val = ""; - } - element.css( set[ i ], val ); - } - } - }, - - setMode: function( el, mode ) { - if (mode === "toggle") { - mode = el.is( ":hidden" ) ? "show" : "hide"; - } - return mode; - }, - - // Translates a [top,left] array into a baseline value - // this should be a little more flexible in the future to handle a string & hash - getBaseline: function( origin, original ) { - var y, x; - switch ( origin[ 0 ] ) { - case "top": y = 0; break; - case "middle": y = 0.5; break; - case "bottom": y = 1; break; - default: y = origin[ 0 ] / original.height; - } - switch ( origin[ 1 ] ) { - case "left": x = 0; break; - case "center": x = 0.5; break; - case "right": x = 1; break; - default: x = origin[ 1 ] / original.width; - } - return { - x: x, - y: y - }; - }, - - // Wraps the element around a wrapper that copies position properties - createWrapper: function( element ) { - - // if the element is already wrapped, return it - if ( element.parent().is( ".ui-effects-wrapper" )) { - return element.parent(); - } - - // wrap the element - var props = { - width: element.outerWidth(true), - height: element.outerHeight(true), - "float": element.css( "float" ) - }, - wrapper = $( "<div></div>" ) - .addClass( "ui-effects-wrapper" ) - .css({ - fontSize: "100%", - background: "transparent", - border: "none", - margin: 0, - padding: 0 - }), - // Store the size in case width/height are defined in % - Fixes #5245 - size = { - width: element.width(), - height: element.height() - }, - active = document.activeElement; - - // support: Firefox - // Firefox incorrectly exposes anonymous content - // https://bugzilla.mozilla.org/show_bug.cgi?id=561664 - try { - active.id; - } catch( e ) { - active = document.body; - } - - element.wrap( wrapper ); - - // Fixes #7595 - Elements lose focus when wrapped. - if ( element[ 0 ] === active || $.contains( element[ 0 ], active ) ) { - $( active ).focus(); - } - - wrapper = element.parent(); //Hotfix for jQuery 1.4 since some change in wrap() seems to actually lose the reference to the wrapped element - - // transfer positioning properties to the wrapper - if ( element.css( "position" ) === "static" ) { - wrapper.css({ position: "relative" }); - element.css({ position: "relative" }); - } else { - $.extend( props, { - position: element.css( "position" ), - zIndex: element.css( "z-index" ) - }); - $.each([ "top", "left", "bottom", "right" ], function(i, pos) { - props[ pos ] = element.css( pos ); - if ( isNaN( parseInt( props[ pos ], 10 ) ) ) { - props[ pos ] = "auto"; - } - }); - element.css({ - position: "relative", - top: 0, - left: 0, - right: "auto", - bottom: "auto" - }); - } - element.css(size); - - return wrapper.css( props ).show(); - }, - - removeWrapper: function( element ) { - var active = document.activeElement; - - if ( element.parent().is( ".ui-effects-wrapper" ) ) { - element.parent().replaceWith( element ); - - // Fixes #7595 - Elements lose focus when wrapped. - if ( element[ 0 ] === active || $.contains( element[ 0 ], active ) ) { - $( active ).focus(); - } - } - - - return element; - }, - - setTransition: function( element, list, factor, value ) { - value = value || {}; - $.each( list, function( i, x ) { - var unit = element.cssUnit( x ); - if ( unit[ 0 ] > 0 ) { - value[ x ] = unit[ 0 ] * factor + unit[ 1 ]; - } - }); - return value; - } - }); - -// return an effect options object for the given parameters: - function _normalizeArguments( effect, options, speed, callback ) { - - // allow passing all optinos as the first parameter - if ( $.isPlainObject( effect ) ) { - options = effect; - effect = effect.effect; - } - - // convert to an object - effect = { effect: effect }; - - // catch (effect) - if ( options === undefined ) { - options = {}; - } - - // catch (effect, callback) - if ( $.isFunction( options ) ) { - callback = options; - speed = null; - options = {}; - } - - // catch (effect, speed, ?) - if ( typeof options === "number" || $.fx.speeds[ options ] ) { - callback = speed; - speed = options; - options = {}; - } - - // catch (effect, options, callback) - if ( $.isFunction( speed ) ) { - callback = speed; - speed = null; - } - - // add options to effect - if ( options ) { - $.extend( effect, options ); - } - - speed = speed || options.duration; - effect.duration = $.fx.off ? 0 : - typeof speed === "number" ? speed : - speed in $.fx.speeds ? $.fx.speeds[ speed ] : - $.fx.speeds._default; - - effect.complete = callback || options.complete; - - return effect; - } - - function standardSpeed( speed ) { - // valid standard speeds - if ( !speed || typeof speed === "number" || $.fx.speeds[ speed ] ) { - return true; - } - - // invalid strings - treat as "normal" speed - if ( typeof speed === "string" && !$.effects.effect[ speed ] ) { - // TODO: remove in 2.0 (#7115) - if ( backCompat && $.effects[ speed ] ) { - return false; - } - return true; - } - - return false; - } - - $.fn.extend({ - effect: function( effect, options, speed, callback ) { - var args = _normalizeArguments.apply( this, arguments ), - mode = args.mode, - queue = args.queue, - effectMethod = $.effects.effect[ args.effect ], - - // DEPRECATED: remove in 2.0 (#7115) - oldEffectMethod = !effectMethod && backCompat && $.effects[ args.effect ]; - - if ( $.fx.off || !( effectMethod || oldEffectMethod ) ) { - // delegate to the original method (e.g., .show()) if possible - if ( mode ) { - return this[ mode ]( args.duration, args.complete ); - } else { - return this.each( function() { - if ( args.complete ) { - args.complete.call( this ); - } - }); - } - } - - function run( next ) { - var elem = $( this ), - complete = args.complete, - mode = args.mode; - - function done() { - if ( $.isFunction( complete ) ) { - complete.call( elem[0] ); - } - if ( $.isFunction( next ) ) { - next(); - } - } - - // if the element is hiddden and mode is hide, - // or element is visible and mode is show - if ( elem.is( ":hidden" ) ? mode === "hide" : mode === "show" ) { - done(); - } else { - effectMethod.call( elem[0], args, done ); - } - } - - // TODO: remove this check in 2.0, effectMethod will always be true - if ( effectMethod ) { - return queue === false ? this.each( run ) : this.queue( queue || "fx", run ); - } else { - // DEPRECATED: remove in 2.0 (#7115) - return oldEffectMethod.call(this, { - options: args, - duration: args.duration, - callback: args.complete, - mode: args.mode - }); - } - }, - - _show: $.fn.show, - show: function( speed ) { - if ( standardSpeed( speed ) ) { - return this._show.apply( this, arguments ); - } else { - var args = _normalizeArguments.apply( this, arguments ); - args.mode = "show"; - return this.effect.call( this, args ); - } - }, - - _hide: $.fn.hide, - hide: function( speed ) { - if ( standardSpeed( speed ) ) { - return this._hide.apply( this, arguments ); - } else { - var args = _normalizeArguments.apply( this, arguments ); - args.mode = "hide"; - return this.effect.call( this, args ); - } - }, - - // jQuery core overloads toggle and creates _toggle - __toggle: $.fn.toggle, - toggle: function( speed ) { - if ( standardSpeed( speed ) || typeof speed === "boolean" || $.isFunction( speed ) ) { - return this.__toggle.apply( this, arguments ); - } else { - var args = _normalizeArguments.apply( this, arguments ); - args.mode = "toggle"; - return this.effect.call( this, args ); - } - }, - - // helper functions - cssUnit: function(key) { - var style = this.css( key ), - val = []; - - $.each( [ "em", "px", "%", "pt" ], function( i, unit ) { - if ( style.indexOf( unit ) > 0 ) { - val = [ parseFloat( style ), unit ]; - } - }); - return val; - } - }); - - })(); - - /******************************************************************************/ - /*********************************** EASING ***********************************/ - /******************************************************************************/ - - (function() { - -// based on easing equations from Robert Penner (http://www.robertpenner.com/easing) - - var baseEasings = {}; - - $.each( [ "Quad", "Cubic", "Quart", "Quint", "Expo" ], function( i, name ) { - baseEasings[ name ] = function( p ) { - return Math.pow( p, i + 2 ); - }; - }); - - $.extend( baseEasings, { - Sine: function ( p ) { - return 1 - Math.cos( p * Math.PI / 2 ); - }, - Circ: function ( p ) { - return 1 - Math.sqrt( 1 - p * p ); - }, - Elastic: function( p ) { - return p === 0 || p === 1 ? p : - -Math.pow( 2, 8 * (p - 1) ) * Math.sin( ( (p - 1) * 80 - 7.5 ) * Math.PI / 15 ); - }, - Back: function( p ) { - return p * p * ( 3 * p - 2 ); - }, - Bounce: function ( p ) { - var pow2, - bounce = 4; - - while ( p < ( ( pow2 = Math.pow( 2, --bounce ) ) - 1 ) / 11 ) {} - return 1 / Math.pow( 4, 3 - bounce ) - 7.5625 * Math.pow( ( pow2 * 3 - 2 ) / 22 - p, 2 ); - } - }); - - $.each( baseEasings, function( name, easeIn ) { - $.easing[ "easeIn" + name ] = easeIn; - $.easing[ "easeOut" + name ] = function( p ) { - return 1 - easeIn( 1 - p ); - }; - $.easing[ "easeInOut" + name ] = function( p ) { - return p < 0.5 ? - easeIn( p * 2 ) / 2 : - 1 - easeIn( p * -2 + 2 ) / 2; - }; - }); - - })(); - -})(jQuery)); - -(function( $, undefined ) { - - var uid = 0, - hideProps = {}, - showProps = {}; - - hideProps.height = hideProps.paddingTop = hideProps.paddingBottom = - hideProps.borderTopWidth = hideProps.borderBottomWidth = "hide"; - showProps.height = showProps.paddingTop = showProps.paddingBottom = - showProps.borderTopWidth = showProps.borderBottomWidth = "show"; - - $.widget( "ui.accordion", { - version: "1.9.0", - options: { - active: 0, - animate: {}, - collapsible: false, - event: "click", - header: "> li > :first-child,> :not(li):even", - heightStyle: "auto", - icons: { - activeHeader: "ui-icon-triangle-1-s", - header: "ui-icon-triangle-1-e" - }, - - // callbacks - activate: null, - beforeActivate: null - }, - - _create: function() { - var accordionId = this.accordionId = "ui-accordion-" + - (this.element.attr( "id" ) || ++uid), - options = this.options; - - this.prevShow = this.prevHide = $(); - this.element.addClass( "ui-accordion ui-widget ui-helper-reset" ); - - this.headers = this.element.find( options.header ) - .addClass( "ui-accordion-header ui-helper-reset ui-state-default ui-corner-all" ); - this._hoverable( this.headers ); - this._focusable( this.headers ); - - this.headers.next() - .addClass( "ui-accordion-content ui-helper-reset ui-widget-content ui-corner-bottom" ) - .hide(); - - // don't allow collapsible: false and active: false - if ( !options.collapsible && options.active === false ) { - options.active = 0; - } - // handle negative values - if ( options.active < 0 ) { - options.active += this.headers.length; - } - this.active = this._findActive( options.active ) - .addClass( "ui-accordion-header-active ui-state-active" ) - .toggleClass( "ui-corner-all ui-corner-top" ); - this.active.next() - .addClass( "ui-accordion-content-active" ) - .show(); - - this._createIcons(); - this.originalHeight = this.element[0].style.height; - this.refresh(); - - // ARIA - this.element.attr( "role", "tablist" ); - - this.headers - .attr( "role", "tab" ) - .each(function( i ) { - var header = $( this ), - headerId = header.attr( "id" ), - panel = header.next(), - panelId = panel.attr( "id" ); - if ( !headerId ) { - headerId = accordionId + "-header-" + i; - header.attr( "id", headerId ); - } - if ( !panelId ) { - panelId = accordionId + "-panel-" + i; - panel.attr( "id", panelId ); - } - header.attr( "aria-controls", panelId ); - panel.attr( "aria-labelledby", headerId ); - }) - .next() - .attr( "role", "tabpanel" ); - - this.headers - .not( this.active ) - .attr({ - "aria-selected": "false", - tabIndex: -1 - }) - .next() - .attr({ - "aria-expanded": "false", - "aria-hidden": "true" - }) - .hide(); - - // make sure at least one header is in the tab order - if ( !this.active.length ) { - this.headers.eq( 0 ).attr( "tabIndex", 0 ); - } else { - this.active.attr({ - "aria-selected": "true", - tabIndex: 0 - }) - .next() - .attr({ - "aria-expanded": "true", - "aria-hidden": "false" - }); - } - - this._on( this.headers, { keydown: "_keydown" }); - this._on( this.headers.next(), { keydown: "_panelKeyDown" }); - this._setupEvents( options.event ); - }, - - _getCreateEventData: function() { - return { - header: this.active, - content: !this.active.length ? $() : this.active.next() - }; - }, - - _createIcons: function() { - var icons = this.options.icons; - if ( icons ) { - $( "<span>" ) - .addClass( "ui-accordion-header-icon ui-icon " + icons.header ) - .prependTo( this.headers ); - this.active.children( ".ui-accordion-header-icon" ) - .removeClass( icons.header ) - .addClass( icons.activeHeader ); - this.headers.addClass( "ui-accordion-icons" ); - } - }, - - _destroyIcons: function() { - this.headers - .removeClass( "ui-accordion-icons" ) - .children( ".ui-accordion-header-icon" ) - .remove(); - }, - - _destroy: function() { - var contents; - - // clean up main element - this.element - .removeClass( "ui-accordion ui-widget ui-helper-reset" ) - .removeAttr( "role" ); - - // clean up headers - this.headers - .removeClass( "ui-accordion-header ui-accordion-header-active ui-helper-reset ui-state-default ui-corner-all ui-state-active ui-state-disabled ui-corner-top" ) - .removeAttr( "role" ) - .removeAttr( "aria-selected" ) - .removeAttr( "aria-controls" ) - .removeAttr( "tabIndex" ) - .each(function() { - if ( /^ui-accordion/.test( this.id ) ) { - this.removeAttribute( "id" ); - } - }); - this._destroyIcons(); - - // clean up content panels - contents = this.headers.next() - .css( "display", "" ) - .removeAttr( "role" ) - .removeAttr( "aria-expanded" ) - .removeAttr( "aria-hidden" ) - .removeAttr( "aria-labelledby" ) - .removeClass( "ui-helper-reset ui-widget-content ui-corner-bottom ui-accordion-content ui-accordion-content-active ui-state-disabled" ) - .each(function() { - if ( /^ui-accordion/.test( this.id ) ) { - this.removeAttribute( "id" ); - } - }); - if ( this.options.heightStyle !== "content" ) { - this.element.css( "height", this.originalHeight ); - contents.css( "height", "" ); - } - }, - - _setOption: function( key, value ) { - if ( key === "active" ) { - // _activate() will handle invalid values and update this.options - this._activate( value ); - return; - } - - if ( key === "event" ) { - if ( this.options.event ) { - this._off( this.headers, this.options.event ); - } - this._setupEvents( value ); - } - - this._super( key, value ); - - // setting collapsible: false while collapsed; open first panel - if ( key === "collapsible" && !value && this.options.active === false ) { - this._activate( 0 ); - } - - if ( key === "icons" ) { - this._destroyIcons(); - if ( value ) { - this._createIcons(); - } - } - - // #5332 - opacity doesn't cascade to positioned elements in IE - // so we need to add the disabled class to the headers and panels - if ( key === "disabled" ) { - this.headers.add( this.headers.next() ) - .toggleClass( "ui-state-disabled", !!value ); - } - }, - - _keydown: function( event ) { - if ( event.altKey || event.ctrlKey ) { - return; - } - - var keyCode = $.ui.keyCode, - length = this.headers.length, - currentIndex = this.headers.index( event.target ), - toFocus = false; - - switch ( event.keyCode ) { - case keyCode.RIGHT: - case keyCode.DOWN: - toFocus = this.headers[ ( currentIndex + 1 ) % length ]; - break; - case keyCode.LEFT: - case keyCode.UP: - toFocus = this.headers[ ( currentIndex - 1 + length ) % length ]; - break; - case keyCode.SPACE: - case keyCode.ENTER: - this._eventHandler( event ); - break; - case keyCode.HOME: - toFocus = this.headers[ 0 ]; - break; - case keyCode.END: - toFocus = this.headers[ length - 1 ]; - break; - } - - if ( toFocus ) { - $( event.target ).attr( "tabIndex", -1 ); - $( toFocus ).attr( "tabIndex", 0 ); - toFocus.focus(); - event.preventDefault(); - } - }, - - _panelKeyDown : function( event ) { - if ( event.keyCode === $.ui.keyCode.UP && event.ctrlKey ) { - $( event.currentTarget ).prev().focus(); - } - }, - - refresh: function() { - var maxHeight, overflow, - heightStyle = this.options.heightStyle, - parent = this.element.parent(); - - this.element.css( "height", this.originalHeight ); - - if ( heightStyle === "fill" ) { - // IE 6 treats height like minHeight, so we need to turn off overflow - // in order to get a reliable height - // we use the minHeight support test because we assume that only - // browsers that don't support minHeight will treat height as minHeight - if ( !$.support.minHeight ) { - overflow = parent.css( "overflow" ); - parent.css( "overflow", "hidden"); - } - maxHeight = parent.height(); - this.element.siblings( ":visible" ).each(function() { - var elem = $( this ), - position = elem.css( "position" ); - - if ( position === "absolute" || position === "fixed" ) { - return; - } - maxHeight -= elem.outerHeight( true ); - }); - if ( overflow ) { - parent.css( "overflow", overflow ); - } - - this.headers.each(function() { - maxHeight -= $( this ).outerHeight( true ); - }); - - this.headers.next() - .each(function() { - $( this ).height( Math.max( 0, maxHeight - - $( this ).innerHeight() + $( this ).height() ) ); - }) - .css( "overflow", "auto" ); - } else if ( heightStyle === "auto" ) { - maxHeight = 0; - this.headers.next() - .each(function() { - maxHeight = Math.max( maxHeight, $( this ).height( "" ).height() ); - }) - .height( maxHeight ); - } - - if ( heightStyle !== "content" ) { - this.element.height( this.element.height() ); - } - }, - - _activate: function( index ) { - var active = this._findActive( index )[ 0 ]; - - // trying to activate the already active panel - if ( active === this.active[ 0 ] ) { - return; - } - - // trying to collapse, simulate a click on the currently active header - active = active || this.active[ 0 ]; - - this._eventHandler({ - target: active, - currentTarget: active, - preventDefault: $.noop - }); - }, - - _findActive: function( selector ) { - return typeof selector === "number" ? this.headers.eq( selector ) : $(); - }, - - _setupEvents: function( event ) { - var events = {}; - if ( !event ) { - return; - } - $.each( event.split(" "), function( index, eventName ) { - events[ eventName ] = "_eventHandler"; - }); - this._on( this.headers, events ); - }, - - _eventHandler: function( event ) { - var options = this.options, - active = this.active, - clicked = $( event.currentTarget ), - clickedIsActive = clicked[ 0 ] === active[ 0 ], - collapsing = clickedIsActive && options.collapsible, - toShow = collapsing ? $() : clicked.next(), - toHide = active.next(), - eventData = { - oldHeader: active, - oldPanel: toHide, - newHeader: collapsing ? $() : clicked, - newPanel: toShow - }; - - event.preventDefault(); - - if ( - // click on active header, but not collapsible - ( clickedIsActive && !options.collapsible ) || - // allow canceling activation - ( this._trigger( "beforeActivate", event, eventData ) === false ) ) { - return; - } - - options.active = collapsing ? false : this.headers.index( clicked ); - - // when the call to ._toggle() comes after the class changes - // it causes a very odd bug in IE 8 (see #6720) - this.active = clickedIsActive ? $() : clicked; - this._toggle( eventData ); - - // switch classes - // corner classes on the previously active header stay after the animation - active.removeClass( "ui-accordion-header-active ui-state-active" ); - if ( options.icons ) { - active.children( ".ui-accordion-header-icon" ) - .removeClass( options.icons.activeHeader ) - .addClass( options.icons.header ); - } - - if ( !clickedIsActive ) { - clicked - .removeClass( "ui-corner-all" ) - .addClass( "ui-accordion-header-active ui-state-active ui-corner-top" ); - if ( options.icons ) { - clicked.children( ".ui-accordion-header-icon" ) - .removeClass( options.icons.header ) - .addClass( options.icons.activeHeader ); - } - - clicked - .next() - .addClass( "ui-accordion-content-active" ); - } - }, - - _toggle: function( data ) { - var toShow = data.newPanel, - toHide = this.prevShow.length ? this.prevShow : data.oldPanel; - - // handle activating a panel during the animation for another activation - this.prevShow.add( this.prevHide ).stop( true, true ); - this.prevShow = toShow; - this.prevHide = toHide; - - if ( this.options.animate ) { - this._animate( toShow, toHide, data ); - } else { - toHide.hide(); - toShow.show(); - this._toggleComplete( data ); - } - - toHide.attr({ - "aria-expanded": "false", - "aria-hidden": "true" - }); - toHide.prev().attr( "aria-selected", "false" ); - // if we're switching panels, remove the old header from the tab order - // if we're opening from collapsed state, remove the previous header from the tab order - // if we're collapsing, then keep the collapsing header in the tab order - if ( toShow.length && toHide.length ) { - toHide.prev().attr( "tabIndex", -1 ); - } else if ( toShow.length ) { - this.headers.filter(function() { - return $( this ).attr( "tabIndex" ) === 0; - }) - .attr( "tabIndex", -1 ); - } - - toShow - .attr({ - "aria-expanded": "true", - "aria-hidden": "false" - }) - .prev() - .attr({ - "aria-selected": "true", - tabIndex: 0 - }); - }, - - _animate: function( toShow, toHide, data ) { - var total, easing, duration, - that = this, - adjust = 0, - down = toShow.length && - ( !toHide.length || ( toShow.index() < toHide.index() ) ), - animate = this.options.animate || {}, - options = down && animate.down || animate, - complete = function() { - that._toggleComplete( data ); - }; - - if ( typeof options === "number" ) { - duration = options; - } - if ( typeof options === "string" ) { - easing = options; - } - // fall back from options to animation in case of partial down settings - easing = easing || options.easing || animate.easing; - duration = duration || options.duration || animate.duration; - - if ( !toHide.length ) { - return toShow.animate( showProps, duration, easing, complete ); - } - if ( !toShow.length ) { - return toHide.animate( hideProps, duration, easing, complete ); - } - - total = toShow.show().outerHeight(); - toHide.animate( hideProps, { - duration: duration, - easing: easing, - step: function( now, fx ) { - fx.now = Math.round( now ); - } - }); - toShow - .hide() - .animate( showProps, { - duration: duration, - easing: easing, - complete: complete, - step: function( now, fx ) { - fx.now = Math.round( now ); - if ( fx.prop !== "height" ) { - adjust += fx.now; - } else if ( that.options.heightStyle !== "content" ) { - fx.now = Math.round( total - toHide.outerHeight() - adjust ); - adjust = 0; - } - } - }); - }, - - _toggleComplete: function( data ) { - var toHide = data.oldPanel; - - toHide - .removeClass( "ui-accordion-content-active" ) - .prev() - .removeClass( "ui-corner-top" ) - .addClass( "ui-corner-all" ); - - // Work around for rendering bug in IE (#5421) - if ( toHide.length ) { - toHide.parent()[0].className = toHide.parent()[0].className; - } - - this._trigger( "activate", null, data ); - } - }); - - - -// DEPRECATED - if ( $.uiBackCompat !== false ) { - // navigation options - (function( $, prototype ) { - $.extend( prototype.options, { - navigation: false, - navigationFilter: function() { - return this.href.toLowerCase() === location.href.toLowerCase(); - } - }); - - var _create = prototype._create; - prototype._create = function() { - if ( this.options.navigation ) { - var that = this, - headers = this.element.find( this.options.header ), - content = headers.next(), - current = headers.add( content ) - .find( "a" ) - .filter( this.options.navigationFilter ) - [ 0 ]; - if ( current ) { - headers.add( content ).each( function( index ) { - if ( $.contains( this, current ) ) { - that.options.active = Math.floor( index / 2 ); - return false; - } - }); - } - } - _create.call( this ); - }; - }( jQuery, jQuery.ui.accordion.prototype ) ); - - // height options - (function( $, prototype ) { - $.extend( prototype.options, { - heightStyle: null, // remove default so we fall back to old values - autoHeight: true, // use heightStyle: "auto" - clearStyle: false, // use heightStyle: "content" - fillSpace: false // use heightStyle: "fill" - }); - - var _create = prototype._create, - _setOption = prototype._setOption; - - $.extend( prototype, { - _create: function() { - this.options.heightStyle = this.options.heightStyle || - this._mergeHeightStyle(); - - _create.call( this ); - }, - - _setOption: function( key, value ) { - if ( key === "autoHeight" || key === "clearStyle" || key === "fillSpace" ) { - this.options.heightStyle = this._mergeHeightStyle(); - } - _setOption.apply( this, arguments ); - }, - - _mergeHeightStyle: function() { - var options = this.options; - - if ( options.fillSpace ) { - return "fill"; - } - - if ( options.clearStyle ) { - return "content"; - } - - if ( options.autoHeight ) { - return "auto"; - } - } - }); - }( jQuery, jQuery.ui.accordion.prototype ) ); - - // icon options - (function( $, prototype ) { - $.extend( prototype.options.icons, { - activeHeader: null, // remove default so we fall back to old values - headerSelected: "ui-icon-triangle-1-s" - }); - - var _createIcons = prototype._createIcons; - prototype._createIcons = function() { - if ( this.options.icons ) { - this.options.icons.activeHeader = this.options.icons.activeHeader || - this.options.icons.headerSelected; - } - _createIcons.call( this ); - }; - }( jQuery, jQuery.ui.accordion.prototype ) ); - - // expanded active option, activate method - (function( $, prototype ) { - prototype.activate = prototype._activate; - - var _findActive = prototype._findActive; - prototype._findActive = function( index ) { - if ( index === -1 ) { - index = false; - } - if ( index && typeof index !== "number" ) { - index = this.headers.index( this.headers.filter( index ) ); - if ( index === -1 ) { - index = false; - } - } - return _findActive.call( this, index ); - }; - }( jQuery, jQuery.ui.accordion.prototype ) ); - - // resize method - jQuery.ui.accordion.prototype.resize = jQuery.ui.accordion.prototype.refresh; - - // change events - (function( $, prototype ) { - $.extend( prototype.options, { - change: null, - changestart: null - }); - - var _trigger = prototype._trigger; - prototype._trigger = function( type, event, data ) { - var ret = _trigger.apply( this, arguments ); - if ( !ret ) { - return false; - } - - if ( type === "beforeActivate" ) { - ret = _trigger.call( this, "changestart", event, { - oldHeader: data.oldHeader, - oldContent: data.oldPanel, - newHeader: data.newHeader, - newContent: data.newPanel - }); - } else if ( type === "activate" ) { - ret = _trigger.call( this, "change", event, { - oldHeader: data.oldHeader, - oldContent: data.oldPanel, - newHeader: data.newHeader, - newContent: data.newPanel - }); - } - return ret; - }; - }( jQuery, jQuery.ui.accordion.prototype ) ); - - // animated option - // NOTE: this only provides support for "slide", "bounceslide", and easings - // not the full $.ui.accordion.animations API - (function( $, prototype ) { - $.extend( prototype.options, { - animate: null, - animated: "slide" - }); - - var _create = prototype._create; - prototype._create = function() { - var options = this.options; - if ( options.animate === null ) { - if ( !options.animated ) { - options.animate = false; - } else if ( options.animated === "slide" ) { - options.animate = 300; - } else if ( options.animated === "bounceslide" ) { - options.animate = { - duration: 200, - down: { - easing: "easeOutBounce", - duration: 1000 - } - }; - } else { - options.animate = options.animated; - } - } - - _create.call( this ); - }; - }( jQuery, jQuery.ui.accordion.prototype ) ); - } - -})( jQuery ); - -(function( $, undefined ) { - -// used to prevent race conditions with remote data sources - var requestIndex = 0; - - $.widget( "ui.autocomplete", { - version: "1.9.0", - defaultElement: "<input>", - options: { - appendTo: "body", - autoFocus: false, - delay: 300, - minLength: 1, - position: { - my: "left top", - at: "left bottom", - collision: "none" - }, - source: null, - - // callbacks - change: null, - close: null, - focus: null, - open: null, - response: null, - search: null, - select: null - }, - - pending: 0, - - _create: function() { - // Some browsers only repeat keydown events, not keypress events, - // so we use the suppressKeyPress flag to determine if we've already - // handled the keydown event. #7269 - // Unfortunately the code for & in keypress is the same as the up arrow, - // so we use the suppressKeyPressRepeat flag to avoid handling keypress - // events when we know the keydown event was used to modify the - // search term. #7799 - var suppressKeyPress, suppressKeyPressRepeat, suppressInput; - - this.isMultiLine = this._isMultiLine(); - this.valueMethod = this.element[ this.element.is( "input,textarea" ) ? "val" : "text" ]; - this.isNewMenu = true; - - this.element - .addClass( "ui-autocomplete-input" ) - .attr( "autocomplete", "off" ); - - this._on({ - keydown: function( event ) { - if ( this.element.prop( "readOnly" ) ) { - suppressKeyPress = true; - suppressInput = true; - suppressKeyPressRepeat = true; - return; - } - - suppressKeyPress = false; - suppressInput = false; - suppressKeyPressRepeat = false; - var keyCode = $.ui.keyCode; - switch( event.keyCode ) { - case keyCode.PAGE_UP: - suppressKeyPress = true; - this._move( "previousPage", event ); - break; - case keyCode.PAGE_DOWN: - suppressKeyPress = true; - this._move( "nextPage", event ); - break; - case keyCode.UP: - suppressKeyPress = true; - this._keyEvent( "previous", event ); - break; - case keyCode.DOWN: - suppressKeyPress = true; - this._keyEvent( "next", event ); - break; - case keyCode.ENTER: - case keyCode.NUMPAD_ENTER: - // when menu is open and has focus - if ( this.menu.active ) { - // #6055 - Opera still allows the keypress to occur - // which causes forms to submit - suppressKeyPress = true; - event.preventDefault(); - this.menu.select( event ); - } - break; - case keyCode.TAB: - if ( this.menu.active ) { - this.menu.select( event ); - } - break; - case keyCode.ESCAPE: - if ( this.menu.element.is( ":visible" ) ) { - this._value( this.term ); - this.close( event ); - // Different browsers have different default behavior for escape - // Single press can mean undo or clear - // Double press in IE means clear the whole form - event.preventDefault(); - } - break; - default: - suppressKeyPressRepeat = true; - // search timeout should be triggered before the input value is changed - this._searchTimeout( event ); - break; - } - }, - keypress: function( event ) { - if ( suppressKeyPress ) { - suppressKeyPress = false; - event.preventDefault(); - return; - } - if ( suppressKeyPressRepeat ) { - return; - } - - // replicate some key handlers to allow them to repeat in Firefox and Opera - var keyCode = $.ui.keyCode; - switch( event.keyCode ) { - case keyCode.PAGE_UP: - this._move( "previousPage", event ); - break; - case keyCode.PAGE_DOWN: - this._move( "nextPage", event ); - break; - case keyCode.UP: - this._keyEvent( "previous", event ); - break; - case keyCode.DOWN: - this._keyEvent( "next", event ); - break; - } - }, - input: function( event ) { - if ( suppressInput ) { - suppressInput = false; - event.preventDefault(); - return; - } - this._searchTimeout( event ); - }, - focus: function() { - this.selectedItem = null; - this.previous = this._value(); - }, - blur: function( event ) { - if ( this.cancelBlur ) { - delete this.cancelBlur; - return; - } - - clearTimeout( this.searching ); - this.close( event ); - this._change( event ); - } - }); - - this._initSource(); - this.menu = $( "<ul>" ) - .addClass( "ui-autocomplete" ) - .appendTo( this.document.find( this.options.appendTo || "body" )[ 0 ] ) - .menu({ - // custom key handling for now - input: $(), - // disable ARIA support, the live region takes care of that - role: null - }) - .zIndex( this.element.zIndex() + 1 ) - .hide() - .data( "menu" ); - this._on( this.menu.element, { - mousedown: function( event ) { - // prevent moving focus out of the text field - event.preventDefault(); - - // IE doesn't prevent moving focus even with event.preventDefault() - // so we set a flag to know when we should ignore the blur event - this.cancelBlur = true; - this._delay(function() { - delete this.cancelBlur; - }); - - // clicking on the scrollbar causes focus to shift to the body - // but we can't detect a mouseup or a click immediately afterward - // so we have to track the next mousedown and close the menu if - // the user clicks somewhere outside of the autocomplete - var menuElement = this.menu.element[ 0 ]; - if ( !$( event.target ).closest( ".ui-menu-item" ).length ) { - this._delay(function() { - var that = this; - this.document.one( "mousedown", function( event ) { - if ( event.target !== that.element[ 0 ] && - event.target !== menuElement && - !$.contains( menuElement, event.target ) ) { - that.close(); - } - }); - }); - } - }, - menufocus: function( event, ui ) { - // #7024 - Prevent accidental activation of menu items in Firefox - if ( this.isNewMenu ) { - this.isNewMenu = false; - if ( event.originalEvent && /^mouse/.test( event.originalEvent.type ) ) { - this.menu.blur(); - - this.document.one( "mousemove", function() { - $( event.target ).trigger( event.originalEvent ); - }); - - return; - } - } - - // back compat for _renderItem using item.autocomplete, via #7810 - // TODO remove the fallback, see #8156 - var item = ui.item.data( "ui-autocomplete-item" ) || ui.item.data( "item.autocomplete" ); - if ( false !== this._trigger( "focus", event, { item: item } ) ) { - // use value to match what will end up in the input, if it was a key event - if ( event.originalEvent && /^key/.test( event.originalEvent.type ) ) { - this._value( item.value ); - } - } else { - // Normally the input is populated with the item's value as the - // menu is navigated, causing screen readers to notice a change and - // announce the item. Since the focus event was canceled, this doesn't - // happen, so we update the live region so that screen readers can - // still notice the change and announce it. - this.liveRegion.text( item.value ); - } - }, - menuselect: function( event, ui ) { - // back compat for _renderItem using item.autocomplete, via #7810 - // TODO remove the fallback, see #8156 - var item = ui.item.data( "ui-autocomplete-item" ) || ui.item.data( "item.autocomplete" ), - previous = this.previous; - - // only trigger when focus was lost (click on menu) - if ( this.element[0] !== this.document[0].activeElement ) { - this.element.focus(); - this.previous = previous; - // #6109 - IE triggers two focus events and the second - // is asynchronous, so we need to reset the previous - // term synchronously and asynchronously :-( - this._delay(function() { - this.previous = previous; - this.selectedItem = item; - }); - } - - if ( false !== this._trigger( "select", event, { item: item } ) ) { - this._value( item.value ); - } - // reset the term after the select event - // this allows custom select handling to work properly - this.term = this._value(); - - this.close( event ); - this.selectedItem = item; - } - }); - - this.liveRegion = $( "<span>", { - role: "status", - "aria-live": "polite" - }) - .addClass( "ui-helper-hidden-accessible" ) - .insertAfter( this.element ); - - if ( $.fn.bgiframe ) { - this.menu.element.bgiframe(); - } - - // turning off autocomplete prevents the browser from remembering the - // value when navigating through history, so we re-enable autocomplete - // if the page is unloaded before the widget is destroyed. #7790 - this._on( this.window, { - beforeunload: function() { - this.element.removeAttr( "autocomplete" ); - } - }); - }, - - _destroy: function() { - clearTimeout( this.searching ); - this.element - .removeClass( "ui-autocomplete-input" ) - .removeAttr( "autocomplete" ); - this.menu.element.remove(); - this.liveRegion.remove(); - }, - - _setOption: function( key, value ) { - this._super( key, value ); - if ( key === "source" ) { - this._initSource(); - } - if ( key === "appendTo" ) { - this.menu.element.appendTo( this.document.find( value || "body" )[0] ); - } - if ( key === "disabled" && value && this.xhr ) { - this.xhr.abort(); - } - }, - - _isMultiLine: function() { - // Textareas are always multi-line - if ( this.element.is( "textarea" ) ) { - return true; - } - // Inputs are always single-line, even if inside a contentEditable element - // IE also treats inputs as contentEditable - if ( this.element.is( "input" ) ) { - return false; - } - // All other element types are determined by whether or not they're contentEditable - return this.element.prop( "isContentEditable" ); - }, - - _initSource: function() { - var array, url, - that = this; - if ( $.isArray(this.options.source) ) { - array = this.options.source; - this.source = function( request, response ) { - response( $.ui.autocomplete.filter( array, request.term ) ); - }; - } else if ( typeof this.options.source === "string" ) { - url = this.options.source; - this.source = function( request, response ) { - if ( that.xhr ) { - that.xhr.abort(); - } - that.xhr = $.ajax({ - url: url, - data: request, - dataType: "json", - success: function( data, status ) { - response( data ); - }, - error: function() { - response( [] ); - } - }); - }; - } else { - this.source = this.options.source; - } - }, - - _searchTimeout: function( event ) { - clearTimeout( this.searching ); - this.searching = this._delay(function() { - // only search if the value has changed - if ( this.term !== this._value() ) { - this.selectedItem = null; - this.search( null, event ); - } - }, this.options.delay ); - }, - - search: function( value, event ) { - value = value != null ? value : this._value(); - - // always save the actual value, not the one passed as an argument - this.term = this._value(); - - if ( value.length < this.options.minLength ) { - return this.close( event ); - } - - if ( this._trigger( "search", event ) === false ) { - return; - } - - return this._search( value ); - }, - - _search: function( value ) { - this.pending++; - this.element.addClass( "ui-autocomplete-loading" ); - this.cancelSearch = false; - - this.source( { term: value }, this._response() ); - }, - - _response: function() { - var that = this, - index = ++requestIndex; - - return function( content ) { - if ( index === requestIndex ) { - that.__response( content ); - } - - that.pending--; - if ( !that.pending ) { - that.element.removeClass( "ui-autocomplete-loading" ); - } - }; - }, - - __response: function( content ) { - if ( content ) { - content = this._normalize( content ); - } - this._trigger( "response", null, { content: content } ); - if ( !this.options.disabled && content && content.length && !this.cancelSearch ) { - this._suggest( content ); - this._trigger( "open" ); - } else { - // use ._close() instead of .close() so we don't cancel future searches - this._close(); - } - }, - - close: function( event ) { - this.cancelSearch = true; - this._close( event ); - }, - - _close: function( event ) { - if ( this.menu.element.is( ":visible" ) ) { - this.menu.element.hide(); - this.menu.blur(); - this.isNewMenu = true; - this._trigger( "close", event ); - } - }, - - _change: function( event ) { - if ( this.previous !== this._value() ) { - this._trigger( "change", event, { item: this.selectedItem } ); - } - }, - - _normalize: function( items ) { - // assume all items have the right format when the first item is complete - if ( items.length && items[0].label && items[0].value ) { - return items; - } - return $.map( items, function( item ) { - if ( typeof item === "string" ) { - return { - label: item, - value: item - }; - } - return $.extend({ - label: item.label || item.value, - value: item.value || item.label - }, item ); - }); - }, - - _suggest: function( items ) { - var ul = this.menu.element - .empty() - .zIndex( this.element.zIndex() + 1 ); - this._renderMenu( ul, items ); - this.menu.refresh(); - - // size and position menu - ul.show(); - this._resizeMenu(); - ul.position( $.extend({ - of: this.element - }, this.options.position )); - - if ( this.options.autoFocus ) { - this.menu.next(); - } - }, - - _resizeMenu: function() { - var ul = this.menu.element; - ul.outerWidth( Math.max( - // Firefox wraps long text (possibly a rounding bug) - // so we add 1px to avoid the wrapping (#7513) - ul.width( "" ).outerWidth() + 1, - this.element.outerWidth() - ) ); - }, - - _renderMenu: function( ul, items ) { - var that = this; - $.each( items, function( index, item ) { - that._renderItemData( ul, item ); - }); - }, - - _renderItemData: function( ul, item ) { - return this._renderItem( ul, item ).data( "ui-autocomplete-item", item ); - }, - - _renderItem: function( ul, item ) { - return $( "<li>" ) - .append( $( "<a>" ).text( item.label ) ) - .appendTo( ul ); - }, - - _move: function( direction, event ) { - if ( !this.menu.element.is( ":visible" ) ) { - this.search( null, event ); - return; - } - if ( this.menu.isFirstItem() && /^previous/.test( direction ) || - this.menu.isLastItem() && /^next/.test( direction ) ) { - this._value( this.term ); - this.menu.blur(); - return; - } - this.menu[ direction ]( event ); - }, - - widget: function() { - return this.menu.element; - }, - - _value: function( value ) { - return this.valueMethod.apply( this.element, arguments ); - }, - - _keyEvent: function( keyEvent, event ) { - if ( !this.isMultiLine || this.menu.element.is( ":visible" ) ) { - this._move( keyEvent, event ); - - // prevents moving cursor to beginning/end of the text field in some browsers - event.preventDefault(); - } - } - }); - - $.extend( $.ui.autocomplete, { - escapeRegex: function( value ) { - return value.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g, "\\$&"); - }, - filter: function(array, term) { - var matcher = new RegExp( $.ui.autocomplete.escapeRegex(term), "i" ); - return $.grep( array, function(value) { - return matcher.test( value.label || value.value || value ); - }); - } - }); - - -// live region extension, adding a `messages` option -// NOTE: This is an experimental API. We are still investigating -// a full solution for string manipulation and internationalization. - $.widget( "ui.autocomplete", $.ui.autocomplete, { - options: { - messages: { - noResults: "No search results.", - results: function( amount ) { - return amount + ( amount > 1 ? " results are" : " result is" ) + - " available, use up and down arrow keys to navigate."; - } - } - }, - - __response: function( content ) { - var message; - this._superApply( arguments ); - if ( this.options.disabled || this.cancelSearch ) { - return; - } - if ( content && content.length ) { - message = this.options.messages.results( content.length ); - } else { - message = this.options.messages.noResults; - } - this.liveRegion.text( message ); - } - }); - - -}( jQuery )); - -(function( $, undefined ) { - - var lastActive, startXPos, startYPos, clickDragged, - baseClasses = "ui-button ui-widget ui-state-default ui-corner-all", - stateClasses = "ui-state-hover ui-state-active ", - typeClasses = "ui-button-icons-only ui-button-icon-only ui-button-text-icons ui-button-text-icon-primary ui-button-text-icon-secondary ui-button-text-only", - formResetHandler = function() { - var buttons = $( this ).find( ":ui-button" ); - setTimeout(function() { - buttons.button( "refresh" ); - }, 1 ); - }, - radioGroup = function( radio ) { - var name = radio.name, - form = radio.form, - radios = $( [] ); - if ( name ) { - if ( form ) { - radios = $( form ).find( "[name='" + name + "']" ); - } else { - radios = $( "[name='" + name + "']", radio.ownerDocument ) - .filter(function() { - return !this.form; - }); - } - } - return radios; - }; - - $.widget( "ui.button", { - version: "1.9.0", - defaultElement: "<button>", - options: { - disabled: null, - text: true, - label: null, - icons: { - primary: null, - secondary: null - } - }, - _create: function() { - this.element.closest( "form" ) - .unbind( "reset" + this.eventNamespace ) - .bind( "reset" + this.eventNamespace, formResetHandler ); - - if ( typeof this.options.disabled !== "boolean" ) { - this.options.disabled = !!this.element.prop( "disabled" ); - } else { - this.element.prop( "disabled", this.options.disabled ); - } - - this._determineButtonType(); - this.hasTitle = !!this.buttonElement.attr( "title" ); - - var that = this, - options = this.options, - toggleButton = this.type === "checkbox" || this.type === "radio", - hoverClass = "ui-state-hover" + ( !toggleButton ? " ui-state-active" : "" ), - focusClass = "ui-state-focus"; - - if ( options.label === null ) { - options.label = (this.type === "input" ? this.buttonElement.val() : this.buttonElement.html()); - } - - this.buttonElement - .addClass( baseClasses ) - .attr( "role", "button" ) - .bind( "mouseenter" + this.eventNamespace, function() { - if ( options.disabled ) { - return; - } - $( this ).addClass( "ui-state-hover" ); - if ( this === lastActive ) { - $( this ).addClass( "ui-state-active" ); - } - }) - .bind( "mouseleave" + this.eventNamespace, function() { - if ( options.disabled ) { - return; - } - $( this ).removeClass( hoverClass ); - }) - .bind( "click" + this.eventNamespace, function( event ) { - if ( options.disabled ) { - event.preventDefault(); - event.stopImmediatePropagation(); - } - }); - - this.element - .bind( "focus" + this.eventNamespace, function() { - // no need to check disabled, focus won't be triggered anyway - that.buttonElement.addClass( focusClass ); - }) - .bind( "blur" + this.eventNamespace, function() { - that.buttonElement.removeClass( focusClass ); - }); - - if ( toggleButton ) { - this.element.bind( "change" + this.eventNamespace, function() { - if ( clickDragged ) { - return; - } - that.refresh(); - }); - // if mouse moves between mousedown and mouseup (drag) set clickDragged flag - // prevents issue where button state changes but checkbox/radio checked state - // does not in Firefox (see ticket #6970) - this.buttonElement - .bind( "mousedown" + this.eventNamespace, function( event ) { - if ( options.disabled ) { - return; - } - clickDragged = false; - startXPos = event.pageX; - startYPos = event.pageY; - }) - .bind( "mouseup" + this.eventNamespace, function( event ) { - if ( options.disabled ) { - return; - } - if ( startXPos !== event.pageX || startYPos !== event.pageY ) { - clickDragged = true; - } - }); - } - - if ( this.type === "checkbox" ) { - this.buttonElement.bind( "click" + this.eventNamespace, function() { - if ( options.disabled || clickDragged ) { - return false; - } - $( this ).toggleClass( "ui-state-active" ); - that.buttonElement.attr( "aria-pressed", that.element[0].checked ); - }); - } else if ( this.type === "radio" ) { - this.buttonElement.bind( "click" + this.eventNamespace, function() { - if ( options.disabled || clickDragged ) { - return false; - } - $( this ).addClass( "ui-state-active" ); - that.buttonElement.attr( "aria-pressed", "true" ); - - var radio = that.element[ 0 ]; - radioGroup( radio ) - .not( radio ) - .map(function() { - return $( this ).button( "widget" )[ 0 ]; - }) - .removeClass( "ui-state-active" ) - .attr( "aria-pressed", "false" ); - }); - } else { - this.buttonElement - .bind( "mousedown" + this.eventNamespace, function() { - if ( options.disabled ) { - return false; - } - $( this ).addClass( "ui-state-active" ); - lastActive = this; - that.document.one( "mouseup", function() { - lastActive = null; - }); - }) - .bind( "mouseup" + this.eventNamespace, function() { - if ( options.disabled ) { - return false; - } - $( this ).removeClass( "ui-state-active" ); - }) - .bind( "keydown" + this.eventNamespace, function(event) { - if ( options.disabled ) { - return false; - } - if ( event.keyCode === $.ui.keyCode.SPACE || event.keyCode === $.ui.keyCode.ENTER ) { - $( this ).addClass( "ui-state-active" ); - } - }) - .bind( "keyup" + this.eventNamespace, function() { - $( this ).removeClass( "ui-state-active" ); - }); - - if ( this.buttonElement.is("a") ) { - this.buttonElement.keyup(function(event) { - if ( event.keyCode === $.ui.keyCode.SPACE ) { - // TODO pass through original event correctly (just as 2nd argument doesn't work) - $( this ).click(); - } - }); - } - } - - // TODO: pull out $.Widget's handling for the disabled option into - // $.Widget.prototype._setOptionDisabled so it's easy to proxy and can - // be overridden by individual plugins - this._setOption( "disabled", options.disabled ); - this._resetButton(); - }, - - _determineButtonType: function() { - var ancestor, labelSelector, checked; - - if ( this.element.is("[type=checkbox]") ) { - this.type = "checkbox"; - } else if ( this.element.is("[type=radio]") ) { - this.type = "radio"; - } else if ( this.element.is("input") ) { - this.type = "input"; - } else { - this.type = "button"; - } - - if ( this.type === "checkbox" || this.type === "radio" ) { - // we don't search against the document in case the element - // is disconnected from the DOM - ancestor = this.element.parents().last(); - labelSelector = "label[for='" + this.element.attr("id") + "']"; - this.buttonElement = ancestor.find( labelSelector ); - if ( !this.buttonElement.length ) { - ancestor = ancestor.length ? ancestor.siblings() : this.element.siblings(); - this.buttonElement = ancestor.filter( labelSelector ); - if ( !this.buttonElement.length ) { - this.buttonElement = ancestor.find( labelSelector ); - } - } - this.element.addClass( "ui-helper-hidden-accessible" ); - - checked = this.element.is( ":checked" ); - if ( checked ) { - this.buttonElement.addClass( "ui-state-active" ); - } - this.buttonElement.prop( "aria-pressed", checked ); - } else { - this.buttonElement = this.element; - } - }, - - widget: function() { - return this.buttonElement; - }, - - _destroy: function() { - this.element - .removeClass( "ui-helper-hidden-accessible" ); - this.buttonElement - .removeClass( baseClasses + " " + stateClasses + " " + typeClasses ) - .removeAttr( "role" ) - .removeAttr( "aria-pressed" ) - .html( this.buttonElement.find(".ui-button-text").html() ); - - if ( !this.hasTitle ) { - this.buttonElement.removeAttr( "title" ); - } - }, - - _setOption: function( key, value ) { - this._super( key, value ); - if ( key === "disabled" ) { - if ( value ) { - this.element.prop( "disabled", true ); - } else { - this.element.prop( "disabled", false ); - } - return; - } - this._resetButton(); - }, - - refresh: function() { - var isDisabled = this.element.is( ":disabled" ); - if ( isDisabled !== this.options.disabled ) { - this._setOption( "disabled", isDisabled ); - } - if ( this.type === "radio" ) { - radioGroup( this.element[0] ).each(function() { - if ( $( this ).is( ":checked" ) ) { - $( this ).button( "widget" ) - .addClass( "ui-state-active" ) - .attr( "aria-pressed", "true" ); - } else { - $( this ).button( "widget" ) - .removeClass( "ui-state-active" ) - .attr( "aria-pressed", "false" ); - } - }); - } else if ( this.type === "checkbox" ) { - if ( this.element.is( ":checked" ) ) { - this.buttonElement - .addClass( "ui-state-active" ) - .attr( "aria-pressed", "true" ); - } else { - this.buttonElement - .removeClass( "ui-state-active" ) - .attr( "aria-pressed", "false" ); - } - } - }, - - _resetButton: function() { - if ( this.type === "input" ) { - if ( this.options.label ) { - this.element.val( this.options.label ); - } - return; - } - var buttonElement = this.buttonElement.removeClass( typeClasses ), - buttonText = $( "<span></span>", this.document[0] ) - .addClass( "ui-button-text" ) - .html( this.options.label ) - .appendTo( buttonElement.empty() ) - .text(), - icons = this.options.icons, - multipleIcons = icons.primary && icons.secondary, - buttonClasses = []; - - if ( icons.primary || icons.secondary ) { - if ( this.options.text ) { - buttonClasses.push( "ui-button-text-icon" + ( multipleIcons ? "s" : ( icons.primary ? "-primary" : "-secondary" ) ) ); - } - - if ( icons.primary ) { - buttonElement.prepend( "<span class='ui-button-icon-primary ui-icon " + icons.primary + "'></span>" ); - } - - if ( icons.secondary ) { - buttonElement.append( "<span class='ui-button-icon-secondary ui-icon " + icons.secondary + "'></span>" ); - } - - if ( !this.options.text ) { - buttonClasses.push( multipleIcons ? "ui-button-icons-only" : "ui-button-icon-only" ); - - if ( !this.hasTitle ) { - buttonElement.attr( "title", $.trim( buttonText ) ); - } - } - } else { - buttonClasses.push( "ui-button-text-only" ); - } - buttonElement.addClass( buttonClasses.join( " " ) ); - } - }); - - $.widget( "ui.buttonset", { - version: "1.9.0", - options: { - items: "button, input[type=button], input[type=submit], input[type=reset], input[type=checkbox], input[type=radio], a, :data(button)" - }, - - _create: function() { - this.element.addClass( "ui-buttonset" ); - }, - - _init: function() { - this.refresh(); - }, - - _setOption: function( key, value ) { - if ( key === "disabled" ) { - this.buttons.button( "option", key, value ); - } - - this._super( key, value ); - }, - - refresh: function() { - var rtl = this.element.css( "direction" ) === "rtl"; - - this.buttons = this.element.find( this.options.items ) - .filter( ":ui-button" ) - .button( "refresh" ) - .end() - .not( ":ui-button" ) - .button() - .end() - .map(function() { - return $( this ).button( "widget" )[ 0 ]; - }) - .removeClass( "ui-corner-all ui-corner-left ui-corner-right" ) - .filter( ":first" ) - .addClass( rtl ? "ui-corner-right" : "ui-corner-left" ) - .end() - .filter( ":last" ) - .addClass( rtl ? "ui-corner-left" : "ui-corner-right" ) - .end() - .end(); - }, - - _destroy: function() { - this.element.removeClass( "ui-buttonset" ); - this.buttons - .map(function() { - return $( this ).button( "widget" )[ 0 ]; - }) - .removeClass( "ui-corner-left ui-corner-right" ) - .end() - .button( "destroy" ); - } - }); - -}( jQuery ) ); - -(function( $, undefined ) { - - $.extend($.ui, { datepicker: { version: "1.9.0" } }); - - var PROP_NAME = 'datepicker'; - var dpuuid = new Date().getTime(); - var instActive; - - /* Date picker manager. - Use the singleton instance of this class, $.datepicker, to interact with the date picker. - Settings for (groups of) date pickers are maintained in an instance object, - allowing multiple different settings on the same page. */ - - function Datepicker() { - this.debug = false; // Change this to true to start debugging - this._curInst = null; // The current instance in use - this._keyEvent = false; // If the last event was a key event - this._disabledInputs = []; // List of date picker inputs that have been disabled - this._datepickerShowing = false; // True if the popup picker is showing , false if not - this._inDialog = false; // True if showing within a "dialog", false if not - this._mainDivId = 'ui-datepicker-div'; // The ID of the main datepicker division - this._inlineClass = 'ui-datepicker-inline'; // The name of the inline marker class - this._appendClass = 'ui-datepicker-append'; // The name of the append marker class - this._triggerClass = 'ui-datepicker-trigger'; // The name of the trigger marker class - this._dialogClass = 'ui-datepicker-dialog'; // The name of the dialog marker class - this._disableClass = 'ui-datepicker-disabled'; // The name of the disabled covering marker class - this._unselectableClass = 'ui-datepicker-unselectable'; // The name of the unselectable cell marker class - this._currentClass = 'ui-datepicker-current-day'; // The name of the current day marker class - this._dayOverClass = 'ui-datepicker-days-cell-over'; // The name of the day hover marker class - this.regional = []; // Available regional settings, indexed by language code - this.regional[''] = { // Default regional settings - closeText: 'Done', // Display text for close link - prevText: 'Prev', // Display text for previous month link - nextText: 'Next', // Display text for next month link - currentText: 'Today', // Display text for current month link - monthNames: ['January','February','March','April','May','June', - 'July','August','September','October','November','December'], // Names of months for drop-down and formatting - monthNamesShort: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'], // For formatting - dayNames: ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'], // For formatting - dayNamesShort: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'], // For formatting - dayNamesMin: ['Su','Mo','Tu','We','Th','Fr','Sa'], // Column headings for days starting at Sunday - weekHeader: 'Wk', // Column header for week of the year - dateFormat: 'mm/dd/yy', // See format options on parseDate - firstDay: 0, // The first day of the week, Sun = 0, Mon = 1, ... - isRTL: false, // True if right-to-left language, false if left-to-right - showMonthAfterYear: false, // True if the year select precedes month, false for month then year - yearSuffix: '' // Additional text to append to the year in the month headers - }; - this._defaults = { // Global defaults for all the date picker instances - showOn: 'focus', // 'focus' for popup on focus, - // 'button' for trigger button, or 'both' for either - showAnim: 'fadeIn', // Name of jQuery animation for popup - showOptions: {}, // Options for enhanced animations - defaultDate: null, // Used when field is blank: actual date, - // +/-number for offset from today, null for today - appendText: '', // Display text following the input box, e.g. showing the format - buttonText: '...', // Text for trigger button - buttonImage: '', // URL for trigger button image - buttonImageOnly: false, // True if the image appears alone, false if it appears on a button - hideIfNoPrevNext: false, // True to hide next/previous month links - // if not applicable, false to just disable them - navigationAsDateFormat: false, // True if date formatting applied to prev/today/next links - gotoCurrent: false, // True if today link goes back to current selection instead - changeMonth: false, // True if month can be selected directly, false if only prev/next - changeYear: false, // True if year can be selected directly, false if only prev/next - yearRange: 'c-10:c+10', // Range of years to display in drop-down, - // either relative to today's year (-nn:+nn), relative to currently displayed year - // (c-nn:c+nn), absolute (nnnn:nnnn), or a combination of the above (nnnn:-n) - showOtherMonths: false, // True to show dates in other months, false to leave blank - selectOtherMonths: false, // True to allow selection of dates in other months, false for unselectable - showWeek: false, // True to show week of the year, false to not show it - calculateWeek: this.iso8601Week, // How to calculate the week of the year, - // takes a Date and returns the number of the week for it - shortYearCutoff: '+10', // Short year values < this are in the current century, - // > this are in the previous century, - // string value starting with '+' for current year + value - minDate: null, // The earliest selectable date, or null for no limit - maxDate: null, // The latest selectable date, or null for no limit - duration: 'fast', // Duration of display/closure - beforeShowDay: null, // Function that takes a date and returns an array with - // [0] = true if selectable, false if not, [1] = custom CSS class name(s) or '', - // [2] = cell title (optional), e.g. $.datepicker.noWeekends - beforeShow: null, // Function that takes an input field and - // returns a set of custom settings for the date picker - onSelect: null, // Define a callback function when a date is selected - onChangeMonthYear: null, // Define a callback function when the month or year is changed - onClose: null, // Define a callback function when the datepicker is closed - numberOfMonths: 1, // Number of months to show at a time - showCurrentAtPos: 0, // The position in multipe months at which to show the current month (starting at 0) - stepMonths: 1, // Number of months to step back/forward - stepBigMonths: 12, // Number of months to step back/forward for the big links - altField: '', // Selector for an alternate field to store selected dates into - altFormat: '', // The date format to use for the alternate field - constrainInput: true, // The input is constrained by the current date format - showButtonPanel: false, // True to show button panel, false to not show it - autoSize: false, // True to size the input for the date format, false to leave as is - disabled: false // The initial disabled state - }; - $.extend(this._defaults, this.regional['']); - this.dpDiv = bindHover($('<div id="' + this._mainDivId + '" class="ui-datepicker ui-widget ui-widget-content ui-helper-clearfix ui-corner-all"></div>')); - } - - $.extend(Datepicker.prototype, { - /* Class name added to elements to indicate already configured with a date picker. */ - markerClassName: 'hasDatepicker', - - //Keep track of the maximum number of rows displayed (see #7043) - maxRows: 4, - - /* Debug logging (if enabled). */ - log: function () { - if (this.debug) - console.log.apply('', arguments); - }, - - // TODO rename to "widget" when switching to widget factory - _widgetDatepicker: function() { - return this.dpDiv; - }, - - /* Override the default settings for all instances of the date picker. - @param settings object - the new settings to use as defaults (anonymous object) - @return the manager object */ - setDefaults: function(settings) { - extendRemove(this._defaults, settings || {}); - return this; - }, - - /* Attach the date picker to a jQuery selection. - @param target element - the target input field or division or span - @param settings object - the new settings to use for this date picker instance (anonymous) */ - _attachDatepicker: function(target, settings) { - // check for settings on the control itself - in namespace 'date:' - var inlineSettings = null; - for (var attrName in this._defaults) { - var attrValue = target.getAttribute('date:' + attrName); - if (attrValue) { - inlineSettings = inlineSettings || {}; - try { - inlineSettings[attrName] = eval(attrValue); - } catch (err) { - inlineSettings[attrName] = attrValue; - } - } - } - var nodeName = target.nodeName.toLowerCase(); - var inline = (nodeName == 'div' || nodeName == 'span'); - if (!target.id) { - this.uuid += 1; - target.id = 'dp' + this.uuid; - } - var inst = this._newInst($(target), inline); - inst.settings = $.extend({}, settings || {}, inlineSettings || {}); - if (nodeName == 'input') { - this._connectDatepicker(target, inst); - } else if (inline) { - this._inlineDatepicker(target, inst); - } - }, - - /* Create a new instance object. */ - _newInst: function(target, inline) { - var id = target[0].id.replace(/([^A-Za-z0-9_-])/g, '\\\\$1'); // escape jQuery meta chars - return {id: id, input: target, // associated target - selectedDay: 0, selectedMonth: 0, selectedYear: 0, // current selection - drawMonth: 0, drawYear: 0, // month being drawn - inline: inline, // is datepicker inline or not - dpDiv: (!inline ? this.dpDiv : // presentation div - bindHover($('<div class="' + this._inlineClass + ' ui-datepicker ui-widget ui-widget-content ui-helper-clearfix ui-corner-all"></div>')))}; - }, - - /* Attach the date picker to an input field. */ - _connectDatepicker: function(target, inst) { - var input = $(target); - inst.append = $([]); - inst.trigger = $([]); - if (input.hasClass(this.markerClassName)) - return; - this._attachments(input, inst); - input.addClass(this.markerClassName).keydown(this._doKeyDown). - keypress(this._doKeyPress).keyup(this._doKeyUp). - bind("setData.datepicker", function(event, key, value) { - inst.settings[key] = value; - }).bind("getData.datepicker", function(event, key) { - return this._get(inst, key); - }); - this._autoSize(inst); - $.data(target, PROP_NAME, inst); - //If disabled option is true, disable the datepicker once it has been attached to the input (see ticket #5665) - if( inst.settings.disabled ) { - this._disableDatepicker( target ); - } - }, - - /* Make attachments based on settings. */ - _attachments: function(input, inst) { - var appendText = this._get(inst, 'appendText'); - var isRTL = this._get(inst, 'isRTL'); - if (inst.append) - inst.append.remove(); - if (appendText) { - inst.append = $('<span class="' + this._appendClass + '">' + appendText + '</span>'); - input[isRTL ? 'before' : 'after'](inst.append); - } - input.unbind('focus', this._showDatepicker); - if (inst.trigger) - inst.trigger.remove(); - var showOn = this._get(inst, 'showOn'); - if (showOn == 'focus' || showOn == 'both') // pop-up date picker when in the marked field - input.focus(this._showDatepicker); - if (showOn == 'button' || showOn == 'both') { // pop-up date picker when button clicked - var buttonText = this._get(inst, 'buttonText'); - var buttonImage = this._get(inst, 'buttonImage'); - inst.trigger = $(this._get(inst, 'buttonImageOnly') ? - $('<img/>').addClass(this._triggerClass). - attr({ src: buttonImage, alt: buttonText, title: buttonText }) : - $('<button type="button"></button>').addClass(this._triggerClass). - html(buttonImage == '' ? buttonText : $('<img/>').attr( - { src:buttonImage, alt:buttonText, title:buttonText }))); - input[isRTL ? 'before' : 'after'](inst.trigger); - inst.trigger.click(function() { - if ($.datepicker._datepickerShowing && $.datepicker._lastInput == input[0]) - $.datepicker._hideDatepicker(); - else if ($.datepicker._datepickerShowing && $.datepicker._lastInput != input[0]) { - $.datepicker._hideDatepicker(); - $.datepicker._showDatepicker(input[0]); - } else - $.datepicker._showDatepicker(input[0]); - return false; - }); - } - }, - - /* Apply the maximum length for the date format. */ - _autoSize: function(inst) { - if (this._get(inst, 'autoSize') && !inst.inline) { - var date = new Date(2009, 12 - 1, 20); // Ensure double digits - var dateFormat = this._get(inst, 'dateFormat'); - if (dateFormat.match(/[DM]/)) { - var findMax = function(names) { - var max = 0; - var maxI = 0; - for (var i = 0; i < names.length; i++) { - if (names[i].length > max) { - max = names[i].length; - maxI = i; - } - } - return maxI; - }; - date.setMonth(findMax(this._get(inst, (dateFormat.match(/MM/) ? - 'monthNames' : 'monthNamesShort')))); - date.setDate(findMax(this._get(inst, (dateFormat.match(/DD/) ? - 'dayNames' : 'dayNamesShort'))) + 20 - date.getDay()); - } - inst.input.attr('size', this._formatDate(inst, date).length); - } - }, - - /* Attach an inline date picker to a div. */ - _inlineDatepicker: function(target, inst) { - var divSpan = $(target); - if (divSpan.hasClass(this.markerClassName)) - return; - divSpan.addClass(this.markerClassName).append(inst.dpDiv). - bind("setData.datepicker", function(event, key, value){ - inst.settings[key] = value; - }).bind("getData.datepicker", function(event, key){ - return this._get(inst, key); - }); - $.data(target, PROP_NAME, inst); - this._setDate(inst, this._getDefaultDate(inst), true); - this._updateDatepicker(inst); - this._updateAlternate(inst); - //If disabled option is true, disable the datepicker before showing it (see ticket #5665) - if( inst.settings.disabled ) { - this._disableDatepicker( target ); - } - // Set display:block in place of inst.dpDiv.show() which won't work on disconnected elements - // http://bugs.jqueryui.com/ticket/7552 - A Datepicker created on a detached div has zero height - inst.dpDiv.css( "display", "block" ); - }, - - /* Pop-up the date picker in a "dialog" box. - @param input element - ignored - @param date string or Date - the initial date to display - @param onSelect function - the function to call when a date is selected - @param settings object - update the dialog date picker instance's settings (anonymous object) - @param pos int[2] - coordinates for the dialog's position within the screen or - event - with x/y coordinates or - leave empty for default (screen centre) - @return the manager object */ - _dialogDatepicker: function(input, date, onSelect, settings, pos) { - var inst = this._dialogInst; // internal instance - if (!inst) { - this.uuid += 1; - var id = 'dp' + this.uuid; - this._dialogInput = $('<input type="text" id="' + id + - '" style="position: absolute; top: -100px; width: 0px;"/>'); - this._dialogInput.keydown(this._doKeyDown); - $('body').append(this._dialogInput); - inst = this._dialogInst = this._newInst(this._dialogInput, false); - inst.settings = {}; - $.data(this._dialogInput[0], PROP_NAME, inst); - } - extendRemove(inst.settings, settings || {}); - date = (date && date.constructor == Date ? this._formatDate(inst, date) : date); - this._dialogInput.val(date); - - this._pos = (pos ? (pos.length ? pos : [pos.pageX, pos.pageY]) : null); - if (!this._pos) { - var browserWidth = document.documentElement.clientWidth; - var browserHeight = document.documentElement.clientHeight; - var scrollX = document.documentElement.scrollLeft || document.body.scrollLeft; - var scrollY = document.documentElement.scrollTop || document.body.scrollTop; - this._pos = // should use actual width/height below - [(browserWidth / 2) - 100 + scrollX, (browserHeight / 2) - 150 + scrollY]; - } - - // move input on screen for focus, but hidden behind dialog - this._dialogInput.css('left', (this._pos[0] + 20) + 'px').css('top', this._pos[1] + 'px'); - inst.settings.onSelect = onSelect; - this._inDialog = true; - this.dpDiv.addClass(this._dialogClass); - this._showDatepicker(this._dialogInput[0]); - if ($.blockUI) - $.blockUI(this.dpDiv); - $.data(this._dialogInput[0], PROP_NAME, inst); - return this; - }, - - /* Detach a datepicker from its control. - @param target element - the target input field or division or span */ - _destroyDatepicker: function(target) { - var $target = $(target); - var inst = $.data(target, PROP_NAME); - if (!$target.hasClass(this.markerClassName)) { - return; - } - var nodeName = target.nodeName.toLowerCase(); - $.removeData(target, PROP_NAME); - if (nodeName == 'input') { - inst.append.remove(); - inst.trigger.remove(); - $target.removeClass(this.markerClassName). - unbind('focus', this._showDatepicker). - unbind('keydown', this._doKeyDown). - unbind('keypress', this._doKeyPress). - unbind('keyup', this._doKeyUp); - } else if (nodeName == 'div' || nodeName == 'span') - $target.removeClass(this.markerClassName).empty(); - }, - - /* Enable the date picker to a jQuery selection. - @param target element - the target input field or division or span */ - _enableDatepicker: function(target) { - var $target = $(target); - var inst = $.data(target, PROP_NAME); - if (!$target.hasClass(this.markerClassName)) { - return; - } - var nodeName = target.nodeName.toLowerCase(); - if (nodeName == 'input') { - target.disabled = false; - inst.trigger.filter('button'). - each(function() { this.disabled = false; }).end(). - filter('img').css({opacity: '1.0', cursor: ''}); - } - else if (nodeName == 'div' || nodeName == 'span') { - var inline = $target.children('.' + this._inlineClass); - inline.children().removeClass('ui-state-disabled'); - inline.find("select.ui-datepicker-month, select.ui-datepicker-year"). - prop("disabled", false); - } - this._disabledInputs = $.map(this._disabledInputs, - function(value) { return (value == target ? null : value); }); // delete entry - }, - - /* Disable the date picker to a jQuery selection. - @param target element - the target input field or division or span */ - _disableDatepicker: function(target) { - var $target = $(target); - var inst = $.data(target, PROP_NAME); - if (!$target.hasClass(this.markerClassName)) { - return; - } - var nodeName = target.nodeName.toLowerCase(); - if (nodeName == 'input') { - target.disabled = true; - inst.trigger.filter('button'). - each(function() { this.disabled = true; }).end(). - filter('img').css({opacity: '0.5', cursor: 'default'}); - } - else if (nodeName == 'div' || nodeName == 'span') { - var inline = $target.children('.' + this._inlineClass); - inline.children().addClass('ui-state-disabled'); - inline.find("select.ui-datepicker-month, select.ui-datepicker-year"). - prop("disabled", true); - } - this._disabledInputs = $.map(this._disabledInputs, - function(value) { return (value == target ? null : value); }); // delete entry - this._disabledInputs[this._disabledInputs.length] = target; - }, - - /* Is the first field in a jQuery collection disabled as a datepicker? - @param target element - the target input field or division or span - @return boolean - true if disabled, false if enabled */ - _isDisabledDatepicker: function(target) { - if (!target) { - return false; - } - for (var i = 0; i < this._disabledInputs.length; i++) { - if (this._disabledInputs[i] == target) - return true; - } - return false; - }, - - /* Retrieve the instance data for the target control. - @param target element - the target input field or division or span - @return object - the associated instance data - @throws error if a jQuery problem getting data */ - _getInst: function(target) { - try { - return $.data(target, PROP_NAME); - } - catch (err) { - throw 'Missing instance data for this datepicker'; - } - }, - - /* Update or retrieve the settings for a date picker attached to an input field or division. - @param target element - the target input field or division or span - @param name object - the new settings to update or - string - the name of the setting to change or retrieve, - when retrieving also 'all' for all instance settings or - 'defaults' for all global defaults - @param value any - the new value for the setting - (omit if above is an object or to retrieve a value) */ - _optionDatepicker: function(target, name, value) { - var inst = this._getInst(target); - if (arguments.length == 2 && typeof name == 'string') { - return (name == 'defaults' ? $.extend({}, $.datepicker._defaults) : - (inst ? (name == 'all' ? $.extend({}, inst.settings) : - this._get(inst, name)) : null)); - } - var settings = name || {}; - if (typeof name == 'string') { - settings = {}; - settings[name] = value; - } - if (inst) { - if (this._curInst == inst) { - this._hideDatepicker(); - } - var date = this._getDateDatepicker(target, true); - var minDate = this._getMinMaxDate(inst, 'min'); - var maxDate = this._getMinMaxDate(inst, 'max'); - extendRemove(inst.settings, settings); - // reformat the old minDate/maxDate values if dateFormat changes and a new minDate/maxDate isn't provided - if (minDate !== null && settings['dateFormat'] !== undefined && settings['minDate'] === undefined) - inst.settings.minDate = this._formatDate(inst, minDate); - if (maxDate !== null && settings['dateFormat'] !== undefined && settings['maxDate'] === undefined) - inst.settings.maxDate = this._formatDate(inst, maxDate); - this._attachments($(target), inst); - this._autoSize(inst); - this._setDate(inst, date); - this._updateAlternate(inst); - this._updateDatepicker(inst); - } - }, - - // change method deprecated - _changeDatepicker: function(target, name, value) { - this._optionDatepicker(target, name, value); - }, - - /* Redraw the date picker attached to an input field or division. - @param target element - the target input field or division or span */ - _refreshDatepicker: function(target) { - var inst = this._getInst(target); - if (inst) { - this._updateDatepicker(inst); - } - }, - - /* Set the dates for a jQuery selection. - @param target element - the target input field or division or span - @param date Date - the new date */ - _setDateDatepicker: function(target, date) { - var inst = this._getInst(target); - if (inst) { - this._setDate(inst, date); - this._updateDatepicker(inst); - this._updateAlternate(inst); - } - }, - - /* Get the date(s) for the first entry in a jQuery selection. - @param target element - the target input field or division or span - @param noDefault boolean - true if no default date is to be used - @return Date - the current date */ - _getDateDatepicker: function(target, noDefault) { - var inst = this._getInst(target); - if (inst && !inst.inline) - this._setDateFromField(inst, noDefault); - return (inst ? this._getDate(inst) : null); - }, - - /* Handle keystrokes. */ - _doKeyDown: function(event) { - var inst = $.datepicker._getInst(event.target); - var handled = true; - var isRTL = inst.dpDiv.is('.ui-datepicker-rtl'); - inst._keyEvent = true; - if ($.datepicker._datepickerShowing) - switch (event.keyCode) { - case 9: $.datepicker._hideDatepicker(); - handled = false; - break; // hide on tab out - case 13: var sel = $('td.' + $.datepicker._dayOverClass + ':not(.' + - $.datepicker._currentClass + ')', inst.dpDiv); - if (sel[0]) - $.datepicker._selectDay(event.target, inst.selectedMonth, inst.selectedYear, sel[0]); - var onSelect = $.datepicker._get(inst, 'onSelect'); - if (onSelect) { - var dateStr = $.datepicker._formatDate(inst); - - // trigger custom callback - onSelect.apply((inst.input ? inst.input[0] : null), [dateStr, inst]); - } - else - $.datepicker._hideDatepicker(); - return false; // don't submit the form - break; // select the value on enter - case 27: $.datepicker._hideDatepicker(); - break; // hide on escape - case 33: $.datepicker._adjustDate(event.target, (event.ctrlKey ? - -$.datepicker._get(inst, 'stepBigMonths') : - -$.datepicker._get(inst, 'stepMonths')), 'M'); - break; // previous month/year on page up/+ ctrl - case 34: $.datepicker._adjustDate(event.target, (event.ctrlKey ? - +$.datepicker._get(inst, 'stepBigMonths') : - +$.datepicker._get(inst, 'stepMonths')), 'M'); - break; // next month/year on page down/+ ctrl - case 35: if (event.ctrlKey || event.metaKey) $.datepicker._clearDate(event.target); - handled = event.ctrlKey || event.metaKey; - break; // clear on ctrl or command +end - case 36: if (event.ctrlKey || event.metaKey) $.datepicker._gotoToday(event.target); - handled = event.ctrlKey || event.metaKey; - break; // current on ctrl or command +home - case 37: if (event.ctrlKey || event.metaKey) $.datepicker._adjustDate(event.target, (isRTL ? +1 : -1), 'D'); - handled = event.ctrlKey || event.metaKey; - // -1 day on ctrl or command +left - if (event.originalEvent.altKey) $.datepicker._adjustDate(event.target, (event.ctrlKey ? - -$.datepicker._get(inst, 'stepBigMonths') : - -$.datepicker._get(inst, 'stepMonths')), 'M'); - // next month/year on alt +left on Mac - break; - case 38: if (event.ctrlKey || event.metaKey) $.datepicker._adjustDate(event.target, -7, 'D'); - handled = event.ctrlKey || event.metaKey; - break; // -1 week on ctrl or command +up - case 39: if (event.ctrlKey || event.metaKey) $.datepicker._adjustDate(event.target, (isRTL ? -1 : +1), 'D'); - handled = event.ctrlKey || event.metaKey; - // +1 day on ctrl or command +right - if (event.originalEvent.altKey) $.datepicker._adjustDate(event.target, (event.ctrlKey ? - +$.datepicker._get(inst, 'stepBigMonths') : - +$.datepicker._get(inst, 'stepMonths')), 'M'); - // next month/year on alt +right - break; - case 40: if (event.ctrlKey || event.metaKey) $.datepicker._adjustDate(event.target, +7, 'D'); - handled = event.ctrlKey || event.metaKey; - break; // +1 week on ctrl or command +down - default: handled = false; - } - else if (event.keyCode == 36 && event.ctrlKey) // display the date picker on ctrl+home - $.datepicker._showDatepicker(this); - else { - handled = false; - } - if (handled) { - event.preventDefault(); - event.stopPropagation(); - } - }, - - /* Filter entered characters - based on date format. */ - _doKeyPress: function(event) { - var inst = $.datepicker._getInst(event.target); - if ($.datepicker._get(inst, 'constrainInput')) { - var chars = $.datepicker._possibleChars($.datepicker._get(inst, 'dateFormat')); - var chr = String.fromCharCode(event.charCode == undefined ? event.keyCode : event.charCode); - return event.ctrlKey || event.metaKey || (chr < ' ' || !chars || chars.indexOf(chr) > -1); - } - }, - - /* Synchronise manual entry and field/alternate field. */ - _doKeyUp: function(event) { - var inst = $.datepicker._getInst(event.target); - if (inst.input.val() != inst.lastVal) { - try { - var date = $.datepicker.parseDate($.datepicker._get(inst, 'dateFormat'), - (inst.input ? inst.input.val() : null), - $.datepicker._getFormatConfig(inst)); - if (date) { // only if valid - $.datepicker._setDateFromField(inst); - $.datepicker._updateAlternate(inst); - $.datepicker._updateDatepicker(inst); - } - } - catch (err) { - $.datepicker.log(err); - } - } - return true; - }, - - /* Pop-up the date picker for a given input field. - If false returned from beforeShow event handler do not show. - @param input element - the input field attached to the date picker or - event - if triggered by focus */ - _showDatepicker: function(input) { - input = input.target || input; - if (input.nodeName.toLowerCase() != 'input') // find from button/image trigger - input = $('input', input.parentNode)[0]; - if ($.datepicker._isDisabledDatepicker(input) || $.datepicker._lastInput == input) // already here - return; - var inst = $.datepicker._getInst(input); - if ($.datepicker._curInst && $.datepicker._curInst != inst) { - $.datepicker._curInst.dpDiv.stop(true, true); - if ( inst && $.datepicker._datepickerShowing ) { - $.datepicker._hideDatepicker( $.datepicker._curInst.input[0] ); - } - } - var beforeShow = $.datepicker._get(inst, 'beforeShow'); - var beforeShowSettings = beforeShow ? beforeShow.apply(input, [input, inst]) : {}; - if(beforeShowSettings === false){ - //false - return; - } - extendRemove(inst.settings, beforeShowSettings); - inst.lastVal = null; - $.datepicker._lastInput = input; - $.datepicker._setDateFromField(inst); - if ($.datepicker._inDialog) // hide cursor - input.value = ''; - if (!$.datepicker._pos) { // position below input - $.datepicker._pos = $.datepicker._findPos(input); - $.datepicker._pos[1] += input.offsetHeight; // add the height - } - var isFixed = false; - $(input).parents().each(function() { - isFixed |= $(this).css('position') == 'fixed'; - return !isFixed; - }); - var offset = {left: $.datepicker._pos[0], top: $.datepicker._pos[1]}; - $.datepicker._pos = null; - //to avoid flashes on Firefox - inst.dpDiv.empty(); - // determine sizing offscreen - inst.dpDiv.css({position: 'absolute', display: 'block', top: '-1000px'}); - $.datepicker._updateDatepicker(inst); - // fix width for dynamic number of date pickers - // and adjust position before showing - offset = $.datepicker._checkOffset(inst, offset, isFixed); - inst.dpDiv.css({position: ($.datepicker._inDialog && $.blockUI ? - 'static' : (isFixed ? 'fixed' : 'absolute')), display: 'none', - left: offset.left + 'px', top: offset.top + 'px'}); - if (!inst.inline) { - var showAnim = $.datepicker._get(inst, 'showAnim'); - var duration = $.datepicker._get(inst, 'duration'); - var postProcess = function() { - var cover = inst.dpDiv.find('iframe.ui-datepicker-cover'); // IE6- only - if( !! cover.length ){ - var borders = $.datepicker._getBorders(inst.dpDiv); - cover.css({left: -borders[0], top: -borders[1], - width: inst.dpDiv.outerWidth(), height: inst.dpDiv.outerHeight()}); - } - }; - inst.dpDiv.zIndex($(input).zIndex()+1); - $.datepicker._datepickerShowing = true; - - // DEPRECATED: after BC for 1.8.x $.effects[ showAnim ] is not needed - if ( $.effects && ( $.effects.effect[ showAnim ] || $.effects[ showAnim ] ) ) - inst.dpDiv.show(showAnim, $.datepicker._get(inst, 'showOptions'), duration, postProcess); - else - inst.dpDiv[showAnim || 'show']((showAnim ? duration : null), postProcess); - if (!showAnim || !duration) - postProcess(); - if (inst.input.is(':visible') && !inst.input.is(':disabled')) - inst.input.focus(); - $.datepicker._curInst = inst; - } - }, - - /* Generate the date picker content. */ - _updateDatepicker: function(inst) { - this.maxRows = 4; //Reset the max number of rows being displayed (see #7043) - var borders = $.datepicker._getBorders(inst.dpDiv); - instActive = inst; // for delegate hover events - inst.dpDiv.empty().append(this._generateHTML(inst)); - this._attachHandlers(inst); - var cover = inst.dpDiv.find('iframe.ui-datepicker-cover'); // IE6- only - if( !!cover.length ){ //avoid call to outerXXXX() when not in IE6 - cover.css({left: -borders[0], top: -borders[1], width: inst.dpDiv.outerWidth(), height: inst.dpDiv.outerHeight()}) - } - inst.dpDiv.find('.' + this._dayOverClass + ' a').mouseover(); - var numMonths = this._getNumberOfMonths(inst); - var cols = numMonths[1]; - var width = 17; - inst.dpDiv.removeClass('ui-datepicker-multi-2 ui-datepicker-multi-3 ui-datepicker-multi-4').width(''); - if (cols > 1) - inst.dpDiv.addClass('ui-datepicker-multi-' + cols).css('width', (width * cols) + 'em'); - inst.dpDiv[(numMonths[0] != 1 || numMonths[1] != 1 ? 'add' : 'remove') + - 'Class']('ui-datepicker-multi'); - inst.dpDiv[(this._get(inst, 'isRTL') ? 'add' : 'remove') + - 'Class']('ui-datepicker-rtl'); - if (inst == $.datepicker._curInst && $.datepicker._datepickerShowing && inst.input && - // #6694 - don't focus the input if it's already focused - // this breaks the change event in IE - inst.input.is(':visible') && !inst.input.is(':disabled') && inst.input[0] != document.activeElement) - inst.input.focus(); - // deffered render of the years select (to avoid flashes on Firefox) - if( inst.yearshtml ){ - var origyearshtml = inst.yearshtml; - setTimeout(function(){ - //assure that inst.yearshtml didn't change. - if( origyearshtml === inst.yearshtml && inst.yearshtml ){ - inst.dpDiv.find('select.ui-datepicker-year:first').replaceWith(inst.yearshtml); - } - origyearshtml = inst.yearshtml = null; - }, 0); - } - }, - - /* Retrieve the size of left and top borders for an element. - @param elem (jQuery object) the element of interest - @return (number[2]) the left and top borders */ - _getBorders: function(elem) { - var convert = function(value) { - return {thin: 1, medium: 2, thick: 3}[value] || value; - }; - return [parseFloat(convert(elem.css('border-left-width'))), - parseFloat(convert(elem.css('border-top-width')))]; - }, - - /* Check positioning to remain on screen. */ - _checkOffset: function(inst, offset, isFixed) { - var dpWidth = inst.dpDiv.outerWidth(); - var dpHeight = inst.dpDiv.outerHeight(); - var inputWidth = inst.input ? inst.input.outerWidth() : 0; - var inputHeight = inst.input ? inst.input.outerHeight() : 0; - var viewWidth = document.documentElement.clientWidth + (isFixed ? 0 : $(document).scrollLeft()); - var viewHeight = document.documentElement.clientHeight + (isFixed ? 0 : $(document).scrollTop()); - - offset.left -= (this._get(inst, 'isRTL') ? (dpWidth - inputWidth) : 0); - offset.left -= (isFixed && offset.left == inst.input.offset().left) ? $(document).scrollLeft() : 0; - offset.top -= (isFixed && offset.top == (inst.input.offset().top + inputHeight)) ? $(document).scrollTop() : 0; - - // now check if datepicker is showing outside window viewport - move to a better place if so. - offset.left -= Math.min(offset.left, (offset.left + dpWidth > viewWidth && viewWidth > dpWidth) ? - Math.abs(offset.left + dpWidth - viewWidth) : 0); - offset.top -= Math.min(offset.top, (offset.top + dpHeight > viewHeight && viewHeight > dpHeight) ? - Math.abs(dpHeight + inputHeight) : 0); - - return offset; - }, - - /* Find an object's position on the screen. */ - _findPos: function(obj) { - var inst = this._getInst(obj); - var isRTL = this._get(inst, 'isRTL'); - while (obj && (obj.type == 'hidden' || obj.nodeType != 1 || $.expr.filters.hidden(obj))) { - obj = obj[isRTL ? 'previousSibling' : 'nextSibling']; - } - var position = $(obj).offset(); - return [position.left, position.top]; - }, - - /* Hide the date picker from view. - @param input element - the input field attached to the date picker */ - _hideDatepicker: function(input) { - var inst = this._curInst; - if (!inst || (input && inst != $.data(input, PROP_NAME))) - return; - if (this._datepickerShowing) { - var showAnim = this._get(inst, 'showAnim'); - var duration = this._get(inst, 'duration'); - var postProcess = function() { - $.datepicker._tidyDialog(inst); - }; - - // DEPRECATED: after BC for 1.8.x $.effects[ showAnim ] is not needed - if ( $.effects && ( $.effects.effect[ showAnim ] || $.effects[ showAnim ] ) ) - inst.dpDiv.hide(showAnim, $.datepicker._get(inst, 'showOptions'), duration, postProcess); - else - inst.dpDiv[(showAnim == 'slideDown' ? 'slideUp' : - (showAnim == 'fadeIn' ? 'fadeOut' : 'hide'))]((showAnim ? duration : null), postProcess); - if (!showAnim) - postProcess(); - this._datepickerShowing = false; - var onClose = this._get(inst, 'onClose'); - if (onClose) - onClose.apply((inst.input ? inst.input[0] : null), - [(inst.input ? inst.input.val() : ''), inst]); - this._lastInput = null; - if (this._inDialog) { - this._dialogInput.css({ position: 'absolute', left: '0', top: '-100px' }); - if ($.blockUI) { - $.unblockUI(); - $('body').append(this.dpDiv); - } - } - this._inDialog = false; - } - }, - - /* Tidy up after a dialog display. */ - _tidyDialog: function(inst) { - inst.dpDiv.removeClass(this._dialogClass).unbind('.ui-datepicker-calendar'); - }, - - /* Close date picker if clicked elsewhere. */ - _checkExternalClick: function(event) { - if (!$.datepicker._curInst) - return; - - var $target = $(event.target), - inst = $.datepicker._getInst($target[0]); - - if ( ( ( $target[0].id != $.datepicker._mainDivId && - $target.parents('#' + $.datepicker._mainDivId).length == 0 && - !$target.hasClass($.datepicker.markerClassName) && - !$target.closest("." + $.datepicker._triggerClass).length && - $.datepicker._datepickerShowing && !($.datepicker._inDialog && $.blockUI) ) ) || - ( $target.hasClass($.datepicker.markerClassName) && $.datepicker._curInst != inst ) ) - $.datepicker._hideDatepicker(); - }, - - /* Adjust one of the date sub-fields. */ - _adjustDate: function(id, offset, period) { - var target = $(id); - var inst = this._getInst(target[0]); - if (this._isDisabledDatepicker(target[0])) { - return; - } - this._adjustInstDate(inst, offset + - (period == 'M' ? this._get(inst, 'showCurrentAtPos') : 0), // undo positioning - period); - this._updateDatepicker(inst); - }, - - /* Action for current link. */ - _gotoToday: function(id) { - var target = $(id); - var inst = this._getInst(target[0]); - if (this._get(inst, 'gotoCurrent') && inst.currentDay) { - inst.selectedDay = inst.currentDay; - inst.drawMonth = inst.selectedMonth = inst.currentMonth; - inst.drawYear = inst.selectedYear = inst.currentYear; - } - else { - var date = new Date(); - inst.selectedDay = date.getDate(); - inst.drawMonth = inst.selectedMonth = date.getMonth(); - inst.drawYear = inst.selectedYear = date.getFullYear(); - } - this._notifyChange(inst); - this._adjustDate(target); - }, - - /* Action for selecting a new month/year. */ - _selectMonthYear: function(id, select, period) { - var target = $(id); - var inst = this._getInst(target[0]); - inst['selected' + (period == 'M' ? 'Month' : 'Year')] = - inst['draw' + (period == 'M' ? 'Month' : 'Year')] = - parseInt(select.options[select.selectedIndex].value,10); - this._notifyChange(inst); - this._adjustDate(target); - }, - - /* Action for selecting a day. */ - _selectDay: function(id, month, year, td) { - var target = $(id); - if ($(td).hasClass(this._unselectableClass) || this._isDisabledDatepicker(target[0])) { - return; - } - var inst = this._getInst(target[0]); - inst.selectedDay = inst.currentDay = $('a', td).html(); - inst.selectedMonth = inst.currentMonth = month; - inst.selectedYear = inst.currentYear = year; - this._selectDate(id, this._formatDate(inst, - inst.currentDay, inst.currentMonth, inst.currentYear)); - }, - - /* Erase the input field and hide the date picker. */ - _clearDate: function(id) { - var target = $(id); - var inst = this._getInst(target[0]); - this._selectDate(target, ''); - }, - - /* Update the input field with the selected date. */ - _selectDate: function(id, dateStr) { - var target = $(id); - var inst = this._getInst(target[0]); - dateStr = (dateStr != null ? dateStr : this._formatDate(inst)); - if (inst.input) - inst.input.val(dateStr); - this._updateAlternate(inst); - var onSelect = this._get(inst, 'onSelect'); - if (onSelect) - onSelect.apply((inst.input ? inst.input[0] : null), [dateStr, inst]); // trigger custom callback - else if (inst.input) - inst.input.trigger('change'); // fire the change event - if (inst.inline) - this._updateDatepicker(inst); - else { - this._hideDatepicker(); - this._lastInput = inst.input[0]; - if (typeof(inst.input[0]) != 'object') - inst.input.focus(); // restore focus - this._lastInput = null; - } - }, - - /* Update any alternate field to synchronise with the main field. */ - _updateAlternate: function(inst) { - var altField = this._get(inst, 'altField'); - if (altField) { // update alternate field too - var altFormat = this._get(inst, 'altFormat') || this._get(inst, 'dateFormat'); - var date = this._getDate(inst); - var dateStr = this.formatDate(altFormat, date, this._getFormatConfig(inst)); - $(altField).each(function() { $(this).val(dateStr); }); - } - }, - - /* Set as beforeShowDay function to prevent selection of weekends. - @param date Date - the date to customise - @return [boolean, string] - is this date selectable?, what is its CSS class? */ - noWeekends: function(date) { - var day = date.getDay(); - return [(day > 0 && day < 6), '']; - }, - - /* Set as calculateWeek to determine the week of the year based on the ISO 8601 definition. - @param date Date - the date to get the week for - @return number - the number of the week within the year that contains this date */ - iso8601Week: function(date) { - var checkDate = new Date(date.getTime()); - // Find Thursday of this week starting on Monday - checkDate.setDate(checkDate.getDate() + 4 - (checkDate.getDay() || 7)); - var time = checkDate.getTime(); - checkDate.setMonth(0); // Compare with Jan 1 - checkDate.setDate(1); - return Math.floor(Math.round((time - checkDate) / 86400000) / 7) + 1; - }, - - /* Parse a string value into a date object. - See formatDate below for the possible formats. - - @param format string - the expected format of the date - @param value string - the date in the above format - @param settings Object - attributes include: - shortYearCutoff number - the cutoff year for determining the century (optional) - dayNamesShort string[7] - abbreviated names of the days from Sunday (optional) - dayNames string[7] - names of the days from Sunday (optional) - monthNamesShort string[12] - abbreviated names of the months (optional) - monthNames string[12] - names of the months (optional) - @return Date - the extracted date value or null if value is blank */ - parseDate: function (format, value, settings) { - if (format == null || value == null) - throw 'Invalid arguments'; - value = (typeof value == 'object' ? value.toString() : value + ''); - if (value == '') - return null; - var shortYearCutoff = (settings ? settings.shortYearCutoff : null) || this._defaults.shortYearCutoff; - shortYearCutoff = (typeof shortYearCutoff != 'string' ? shortYearCutoff : - new Date().getFullYear() % 100 + parseInt(shortYearCutoff, 10)); - var dayNamesShort = (settings ? settings.dayNamesShort : null) || this._defaults.dayNamesShort; - var dayNames = (settings ? settings.dayNames : null) || this._defaults.dayNames; - var monthNamesShort = (settings ? settings.monthNamesShort : null) || this._defaults.monthNamesShort; - var monthNames = (settings ? settings.monthNames : null) || this._defaults.monthNames; - var year = -1; - var month = -1; - var day = -1; - var doy = -1; - var literal = false; - // Check whether a format character is doubled - var lookAhead = function(match) { - var matches = (iFormat + 1 < format.length && format.charAt(iFormat + 1) == match); - if (matches) - iFormat++; - return matches; - }; - // Extract a number from the string value - var getNumber = function(match) { - var isDoubled = lookAhead(match); - var size = (match == '@' ? 14 : (match == '!' ? 20 : - (match == 'y' && isDoubled ? 4 : (match == 'o' ? 3 : 2)))); - var digits = new RegExp('^\\d{1,' + size + '}'); - var num = value.substring(iValue).match(digits); - if (!num) - throw 'Missing number at position ' + iValue; - iValue += num[0].length; - return parseInt(num[0], 10); - }; - // Extract a name from the string value and convert to an index - var getName = function(match, shortNames, longNames) { - var names = $.map(lookAhead(match) ? longNames : shortNames, function (v, k) { - return [ [k, v] ]; - }).sort(function (a, b) { - return -(a[1].length - b[1].length); - }); - var index = -1; - $.each(names, function (i, pair) { - var name = pair[1]; - if (value.substr(iValue, name.length).toLowerCase() == name.toLowerCase()) { - index = pair[0]; - iValue += name.length; - return false; - } - }); - if (index != -1) - return index + 1; - else - throw 'Unknown name at position ' + iValue; - }; - // Confirm that a literal character matches the string value - var checkLiteral = function() { - if (value.charAt(iValue) != format.charAt(iFormat)) - throw 'Unexpected literal at position ' + iValue; - iValue++; - }; - var iValue = 0; - for (var iFormat = 0; iFormat < format.length; iFormat++) { - if (literal) - if (format.charAt(iFormat) == "'" && !lookAhead("'")) - literal = false; - else - checkLiteral(); - else - switch (format.charAt(iFormat)) { - case 'd': - day = getNumber('d'); - break; - case 'D': - getName('D', dayNamesShort, dayNames); - break; - case 'o': - doy = getNumber('o'); - break; - case 'm': - month = getNumber('m'); - break; - case 'M': - month = getName('M', monthNamesShort, monthNames); - break; - case 'y': - year = getNumber('y'); - break; - case '@': - var date = new Date(getNumber('@')); - year = date.getFullYear(); - month = date.getMonth() + 1; - day = date.getDate(); - break; - case '!': - var date = new Date((getNumber('!') - this._ticksTo1970) / 10000); - year = date.getFullYear(); - month = date.getMonth() + 1; - day = date.getDate(); - break; - case "'": - if (lookAhead("'")) - checkLiteral(); - else - literal = true; - break; - default: - checkLiteral(); - } - } - if (iValue < value.length){ - var extra = value.substr(iValue); - if (!/^\s+/.test(extra)) { - throw "Extra/unparsed characters found in date: " + extra; - } - } - if (year == -1) - year = new Date().getFullYear(); - else if (year < 100) - year += new Date().getFullYear() - new Date().getFullYear() % 100 + - (year <= shortYearCutoff ? 0 : -100); - if (doy > -1) { - month = 1; - day = doy; - do { - var dim = this._getDaysInMonth(year, month - 1); - if (day <= dim) - break; - month++; - day -= dim; - } while (true); - } - var date = this._daylightSavingAdjust(new Date(year, month - 1, day)); - if (date.getFullYear() != year || date.getMonth() + 1 != month || date.getDate() != day) - throw 'Invalid date'; // E.g. 31/02/00 - return date; - }, - - /* Standard date formats. */ - ATOM: 'yy-mm-dd', // RFC 3339 (ISO 8601) - COOKIE: 'D, dd M yy', - ISO_8601: 'yy-mm-dd', - RFC_822: 'D, d M y', - RFC_850: 'DD, dd-M-y', - RFC_1036: 'D, d M y', - RFC_1123: 'D, d M yy', - RFC_2822: 'D, d M yy', - RSS: 'D, d M y', // RFC 822 - TICKS: '!', - TIMESTAMP: '@', - W3C: 'yy-mm-dd', // ISO 8601 - - _ticksTo1970: (((1970 - 1) * 365 + Math.floor(1970 / 4) - Math.floor(1970 / 100) + - Math.floor(1970 / 400)) * 24 * 60 * 60 * 10000000), - - /* Format a date object into a string value. - The format can be combinations of the following: - d - day of month (no leading zero) - dd - day of month (two digit) - o - day of year (no leading zeros) - oo - day of year (three digit) - D - day name short - DD - day name long - m - month of year (no leading zero) - mm - month of year (two digit) - M - month name short - MM - month name long - y - year (two digit) - yy - year (four digit) - @ - Unix timestamp (ms since 01/01/1970) - ! - Windows ticks (100ns since 01/01/0001) - '...' - literal text - '' - single quote - - @param format string - the desired format of the date - @param date Date - the date value to format - @param settings Object - attributes include: - dayNamesShort string[7] - abbreviated names of the days from Sunday (optional) - dayNames string[7] - names of the days from Sunday (optional) - monthNamesShort string[12] - abbreviated names of the months (optional) - monthNames string[12] - names of the months (optional) - @return string - the date in the above format */ - formatDate: function (format, date, settings) { - if (!date) - return ''; - var dayNamesShort = (settings ? settings.dayNamesShort : null) || this._defaults.dayNamesShort; - var dayNames = (settings ? settings.dayNames : null) || this._defaults.dayNames; - var monthNamesShort = (settings ? settings.monthNamesShort : null) || this._defaults.monthNamesShort; - var monthNames = (settings ? settings.monthNames : null) || this._defaults.monthNames; - // Check whether a format character is doubled - var lookAhead = function(match) { - var matches = (iFormat + 1 < format.length && format.charAt(iFormat + 1) == match); - if (matches) - iFormat++; - return matches; - }; - // Format a number, with leading zero if necessary - var formatNumber = function(match, value, len) { - var num = '' + value; - if (lookAhead(match)) - while (num.length < len) - num = '0' + num; - return num; - }; - // Format a name, short or long as requested - var formatName = function(match, value, shortNames, longNames) { - return (lookAhead(match) ? longNames[value] : shortNames[value]); - }; - var output = ''; - var literal = false; - if (date) - for (var iFormat = 0; iFormat < format.length; iFormat++) { - if (literal) - if (format.charAt(iFormat) == "'" && !lookAhead("'")) - literal = false; - else - output += format.charAt(iFormat); - else - switch (format.charAt(iFormat)) { - case 'd': - output += formatNumber('d', date.getDate(), 2); - break; - case 'D': - output += formatName('D', date.getDay(), dayNamesShort, dayNames); - break; - case 'o': - output += formatNumber('o', - Math.round((new Date(date.getFullYear(), date.getMonth(), date.getDate()).getTime() - new Date(date.getFullYear(), 0, 0).getTime()) / 86400000), 3); - break; - case 'm': - output += formatNumber('m', date.getMonth() + 1, 2); - break; - case 'M': - output += formatName('M', date.getMonth(), monthNamesShort, monthNames); - break; - case 'y': - output += (lookAhead('y') ? date.getFullYear() : - (date.getYear() % 100 < 10 ? '0' : '') + date.getYear() % 100); - break; - case '@': - output += date.getTime(); - break; - case '!': - output += date.getTime() * 10000 + this._ticksTo1970; - break; - case "'": - if (lookAhead("'")) - output += "'"; - else - literal = true; - break; - default: - output += format.charAt(iFormat); - } - } - return output; - }, - - /* Extract all possible characters from the date format. */ - _possibleChars: function (format) { - var chars = ''; - var literal = false; - // Check whether a format character is doubled - var lookAhead = function(match) { - var matches = (iFormat + 1 < format.length && format.charAt(iFormat + 1) == match); - if (matches) - iFormat++; - return matches; - }; - for (var iFormat = 0; iFormat < format.length; iFormat++) - if (literal) - if (format.charAt(iFormat) == "'" && !lookAhead("'")) - literal = false; - else - chars += format.charAt(iFormat); - else - switch (format.charAt(iFormat)) { - case 'd': case 'm': case 'y': case '@': - chars += '0123456789'; - break; - case 'D': case 'M': - return null; // Accept anything - case "'": - if (lookAhead("'")) - chars += "'"; - else - literal = true; - break; - default: - chars += format.charAt(iFormat); - } - return chars; - }, - - /* Get a setting value, defaulting if necessary. */ - _get: function(inst, name) { - return inst.settings[name] !== undefined ? - inst.settings[name] : this._defaults[name]; - }, - - /* Parse existing date and initialise date picker. */ - _setDateFromField: function(inst, noDefault) { - if (inst.input.val() == inst.lastVal) { - return; - } - var dateFormat = this._get(inst, 'dateFormat'); - var dates = inst.lastVal = inst.input ? inst.input.val() : null; - var date, defaultDate; - date = defaultDate = this._getDefaultDate(inst); - var settings = this._getFormatConfig(inst); - try { - date = this.parseDate(dateFormat, dates, settings) || defaultDate; - } catch (event) { - this.log(event); - dates = (noDefault ? '' : dates); - } - inst.selectedDay = date.getDate(); - inst.drawMonth = inst.selectedMonth = date.getMonth(); - inst.drawYear = inst.selectedYear = date.getFullYear(); - inst.currentDay = (dates ? date.getDate() : 0); - inst.currentMonth = (dates ? date.getMonth() : 0); - inst.currentYear = (dates ? date.getFullYear() : 0); - this._adjustInstDate(inst); - }, - - /* Retrieve the default date shown on opening. */ - _getDefaultDate: function(inst) { - return this._restrictMinMax(inst, - this._determineDate(inst, this._get(inst, 'defaultDate'), new Date())); - }, - - /* A date may be specified as an exact value or a relative one. */ - _determineDate: function(inst, date, defaultDate) { - var offsetNumeric = function(offset) { - var date = new Date(); - date.setDate(date.getDate() + offset); - return date; - }; - var offsetString = function(offset) { - try { - return $.datepicker.parseDate($.datepicker._get(inst, 'dateFormat'), - offset, $.datepicker._getFormatConfig(inst)); - } - catch (e) { - // Ignore - } - var date = (offset.toLowerCase().match(/^c/) ? - $.datepicker._getDate(inst) : null) || new Date(); - var year = date.getFullYear(); - var month = date.getMonth(); - var day = date.getDate(); - var pattern = /([+-]?[0-9]+)\s*(d|D|w|W|m|M|y|Y)?/g; - var matches = pattern.exec(offset); - while (matches) { - switch (matches[2] || 'd') { - case 'd' : case 'D' : - day += parseInt(matches[1],10); break; - case 'w' : case 'W' : - day += parseInt(matches[1],10) * 7; break; - case 'm' : case 'M' : - month += parseInt(matches[1],10); - day = Math.min(day, $.datepicker._getDaysInMonth(year, month)); - break; - case 'y': case 'Y' : - year += parseInt(matches[1],10); - day = Math.min(day, $.datepicker._getDaysInMonth(year, month)); - break; - } - matches = pattern.exec(offset); - } - return new Date(year, month, day); - }; - var newDate = (date == null || date === '' ? defaultDate : (typeof date == 'string' ? offsetString(date) : - (typeof date == 'number' ? (isNaN(date) ? defaultDate : offsetNumeric(date)) : new Date(date.getTime())))); - newDate = (newDate && newDate.toString() == 'Invalid Date' ? defaultDate : newDate); - if (newDate) { - newDate.setHours(0); - newDate.setMinutes(0); - newDate.setSeconds(0); - newDate.setMilliseconds(0); - } - return this._daylightSavingAdjust(newDate); - }, - - /* Handle switch to/from daylight saving. - Hours may be non-zero on daylight saving cut-over: - > 12 when midnight changeover, but then cannot generate - midnight datetime, so jump to 1AM, otherwise reset. - @param date (Date) the date to check - @return (Date) the corrected date */ - _daylightSavingAdjust: function(date) { - if (!date) return null; - date.setHours(date.getHours() > 12 ? date.getHours() + 2 : 0); - return date; - }, - - /* Set the date(s) directly. */ - _setDate: function(inst, date, noChange) { - var clear = !date; - var origMonth = inst.selectedMonth; - var origYear = inst.selectedYear; - var newDate = this._restrictMinMax(inst, this._determineDate(inst, date, new Date())); - inst.selectedDay = inst.currentDay = newDate.getDate(); - inst.drawMonth = inst.selectedMonth = inst.currentMonth = newDate.getMonth(); - inst.drawYear = inst.selectedYear = inst.currentYear = newDate.getFullYear(); - if ((origMonth != inst.selectedMonth || origYear != inst.selectedYear) && !noChange) - this._notifyChange(inst); - this._adjustInstDate(inst); - if (inst.input) { - inst.input.val(clear ? '' : this._formatDate(inst)); - } - }, - - /* Retrieve the date(s) directly. */ - _getDate: function(inst) { - var startDate = (!inst.currentYear || (inst.input && inst.input.val() == '') ? null : - this._daylightSavingAdjust(new Date( - inst.currentYear, inst.currentMonth, inst.currentDay))); - return startDate; - }, - - /* Attach the onxxx handlers. These are declared statically so - * they work with static code transformers like Caja. - */ - _attachHandlers: function(inst) { - var stepMonths = this._get(inst, 'stepMonths'); - var id = '#' + inst.id.replace( /\\\\/g, "\\" ); - inst.dpDiv.find('[data-handler]').map(function () { - var handler = { - prev: function () { - window['DP_jQuery_' + dpuuid].datepicker._adjustDate(id, -stepMonths, 'M'); - }, - next: function () { - window['DP_jQuery_' + dpuuid].datepicker._adjustDate(id, +stepMonths, 'M'); - }, - hide: function () { - window['DP_jQuery_' + dpuuid].datepicker._hideDatepicker(); - }, - today: function () { - window['DP_jQuery_' + dpuuid].datepicker._gotoToday(id); - }, - selectDay: function () { - window['DP_jQuery_' + dpuuid].datepicker._selectDay(id, +this.getAttribute('data-month'), +this.getAttribute('data-year'), this); - return false; - }, - selectMonth: function () { - window['DP_jQuery_' + dpuuid].datepicker._selectMonthYear(id, this, 'M'); - return false; - }, - selectYear: function () { - window['DP_jQuery_' + dpuuid].datepicker._selectMonthYear(id, this, 'Y'); - return false; - } - }; - $(this).bind(this.getAttribute('data-event'), handler[this.getAttribute('data-handler')]); - }); - }, - - /* Generate the HTML for the current state of the date picker. */ - _generateHTML: function(inst) { - var today = new Date(); - today = this._daylightSavingAdjust( - new Date(today.getFullYear(), today.getMonth(), today.getDate())); // clear time - var isRTL = this._get(inst, 'isRTL'); - var showButtonPanel = this._get(inst, 'showButtonPanel'); - var hideIfNoPrevNext = this._get(inst, 'hideIfNoPrevNext'); - var navigationAsDateFormat = this._get(inst, 'navigationAsDateFormat'); - var numMonths = this._getNumberOfMonths(inst); - var showCurrentAtPos = this._get(inst, 'showCurrentAtPos'); - var stepMonths = this._get(inst, 'stepMonths'); - var isMultiMonth = (numMonths[0] != 1 || numMonths[1] != 1); - var currentDate = this._daylightSavingAdjust((!inst.currentDay ? new Date(9999, 9, 9) : - new Date(inst.currentYear, inst.currentMonth, inst.currentDay))); - var minDate = this._getMinMaxDate(inst, 'min'); - var maxDate = this._getMinMaxDate(inst, 'max'); - var drawMonth = inst.drawMonth - showCurrentAtPos; - var drawYear = inst.drawYear; - if (drawMonth < 0) { - drawMonth += 12; - drawYear--; - } - if (maxDate) { - var maxDraw = this._daylightSavingAdjust(new Date(maxDate.getFullYear(), - maxDate.getMonth() - (numMonths[0] * numMonths[1]) + 1, maxDate.getDate())); - maxDraw = (minDate && maxDraw < minDate ? minDate : maxDraw); - while (this._daylightSavingAdjust(new Date(drawYear, drawMonth, 1)) > maxDraw) { - drawMonth--; - if (drawMonth < 0) { - drawMonth = 11; - drawYear--; - } - } - } - inst.drawMonth = drawMonth; - inst.drawYear = drawYear; - var prevText = this._get(inst, 'prevText'); - prevText = (!navigationAsDateFormat ? prevText : this.formatDate(prevText, - this._daylightSavingAdjust(new Date(drawYear, drawMonth - stepMonths, 1)), - this._getFormatConfig(inst))); - var prev = (this._canAdjustMonth(inst, -1, drawYear, drawMonth) ? - '<a class="ui-datepicker-prev ui-corner-all" data-handler="prev" data-event="click"' + - ' title="' + prevText + '"><span class="ui-icon ui-icon-circle-triangle-' + ( isRTL ? 'e' : 'w') + '">' + prevText + '</span></a>' : - (hideIfNoPrevNext ? '' : '<a class="ui-datepicker-prev ui-corner-all ui-state-disabled" title="'+ prevText +'"><span class="ui-icon ui-icon-circle-triangle-' + ( isRTL ? 'e' : 'w') + '">' + prevText + '</span></a>')); - var nextText = this._get(inst, 'nextText'); - nextText = (!navigationAsDateFormat ? nextText : this.formatDate(nextText, - this._daylightSavingAdjust(new Date(drawYear, drawMonth + stepMonths, 1)), - this._getFormatConfig(inst))); - var next = (this._canAdjustMonth(inst, +1, drawYear, drawMonth) ? - '<a class="ui-datepicker-next ui-corner-all" data-handler="next" data-event="click"' + - ' title="' + nextText + '"><span class="ui-icon ui-icon-circle-triangle-' + ( isRTL ? 'w' : 'e') + '">' + nextText + '</span></a>' : - (hideIfNoPrevNext ? '' : '<a class="ui-datepicker-next ui-corner-all ui-state-disabled" title="'+ nextText + '"><span class="ui-icon ui-icon-circle-triangle-' + ( isRTL ? 'w' : 'e') + '">' + nextText + '</span></a>')); - var currentText = this._get(inst, 'currentText'); - var gotoDate = (this._get(inst, 'gotoCurrent') && inst.currentDay ? currentDate : today); - currentText = (!navigationAsDateFormat ? currentText : - this.formatDate(currentText, gotoDate, this._getFormatConfig(inst))); - var controls = (!inst.inline ? '<button type="button" class="ui-datepicker-close ui-state-default ui-priority-primary ui-corner-all" data-handler="hide" data-event="click">' + - this._get(inst, 'closeText') + '</button>' : ''); - var buttonPanel = (showButtonPanel) ? '<div class="ui-datepicker-buttonpane ui-widget-content">' + (isRTL ? controls : '') + - (this._isInRange(inst, gotoDate) ? '<button type="button" class="ui-datepicker-current ui-state-default ui-priority-secondary ui-corner-all" data-handler="today" data-event="click"' + - '>' + currentText + '</button>' : '') + (isRTL ? '' : controls) + '</div>' : ''; - var firstDay = parseInt(this._get(inst, 'firstDay'),10); - firstDay = (isNaN(firstDay) ? 0 : firstDay); - var showWeek = this._get(inst, 'showWeek'); - var dayNames = this._get(inst, 'dayNames'); - var dayNamesShort = this._get(inst, 'dayNamesShort'); - var dayNamesMin = this._get(inst, 'dayNamesMin'); - var monthNames = this._get(inst, 'monthNames'); - var monthNamesShort = this._get(inst, 'monthNamesShort'); - var beforeShowDay = this._get(inst, 'beforeShowDay'); - var showOtherMonths = this._get(inst, 'showOtherMonths'); - var selectOtherMonths = this._get(inst, 'selectOtherMonths'); - var calculateWeek = this._get(inst, 'calculateWeek') || this.iso8601Week; - var defaultDate = this._getDefaultDate(inst); - var html = ''; - for (var row = 0; row < numMonths[0]; row++) { - var group = ''; - this.maxRows = 4; - for (var col = 0; col < numMonths[1]; col++) { - var selectedDate = this._daylightSavingAdjust(new Date(drawYear, drawMonth, inst.selectedDay)); - var cornerClass = ' ui-corner-all'; - var calender = ''; - if (isMultiMonth) { - calender += '<div class="ui-datepicker-group'; - if (numMonths[1] > 1) - switch (col) { - case 0: calender += ' ui-datepicker-group-first'; - cornerClass = ' ui-corner-' + (isRTL ? 'right' : 'left'); break; - case numMonths[1]-1: calender += ' ui-datepicker-group-last'; - cornerClass = ' ui-corner-' + (isRTL ? 'left' : 'right'); break; - default: calender += ' ui-datepicker-group-middle'; cornerClass = ''; break; - } - calender += '">'; - } - calender += '<div class="ui-datepicker-header ui-widget-header ui-helper-clearfix' + cornerClass + '">' + - (/all|left/.test(cornerClass) && row == 0 ? (isRTL ? next : prev) : '') + - (/all|right/.test(cornerClass) && row == 0 ? (isRTL ? prev : next) : '') + - this._generateMonthYearHeader(inst, drawMonth, drawYear, minDate, maxDate, - row > 0 || col > 0, monthNames, monthNamesShort) + // draw month headers - '</div><table class="ui-datepicker-calendar"><thead>' + - '<tr>'; - var thead = (showWeek ? '<th class="ui-datepicker-week-col">' + this._get(inst, 'weekHeader') + '</th>' : ''); - for (var dow = 0; dow < 7; dow++) { // days of the week - var day = (dow + firstDay) % 7; - thead += '<th' + ((dow + firstDay + 6) % 7 >= 5 ? ' class="ui-datepicker-week-end"' : '') + '>' + - '<span title="' + dayNames[day] + '">' + dayNamesMin[day] + '</span></th>'; - } - calender += thead + '</tr></thead><tbody>'; - var daysInMonth = this._getDaysInMonth(drawYear, drawMonth); - if (drawYear == inst.selectedYear && drawMonth == inst.selectedMonth) - inst.selectedDay = Math.min(inst.selectedDay, daysInMonth); - var leadDays = (this._getFirstDayOfMonth(drawYear, drawMonth) - firstDay + 7) % 7; - var curRows = Math.ceil((leadDays + daysInMonth) / 7); // calculate the number of rows to generate - var numRows = (isMultiMonth ? this.maxRows > curRows ? this.maxRows : curRows : curRows); //If multiple months, use the higher number of rows (see #7043) - this.maxRows = numRows; - var printDate = this._daylightSavingAdjust(new Date(drawYear, drawMonth, 1 - leadDays)); - for (var dRow = 0; dRow < numRows; dRow++) { // create date picker rows - calender += '<tr>'; - var tbody = (!showWeek ? '' : '<td class="ui-datepicker-week-col">' + - this._get(inst, 'calculateWeek')(printDate) + '</td>'); - for (var dow = 0; dow < 7; dow++) { // create date picker days - var daySettings = (beforeShowDay ? - beforeShowDay.apply((inst.input ? inst.input[0] : null), [printDate]) : [true, '']); - var otherMonth = (printDate.getMonth() != drawMonth); - var unselectable = (otherMonth && !selectOtherMonths) || !daySettings[0] || - (minDate && printDate < minDate) || (maxDate && printDate > maxDate); - tbody += '<td class="' + - ((dow + firstDay + 6) % 7 >= 5 ? ' ui-datepicker-week-end' : '') + // highlight weekends - (otherMonth ? ' ui-datepicker-other-month' : '') + // highlight days from other months - ((printDate.getTime() == selectedDate.getTime() && drawMonth == inst.selectedMonth && inst._keyEvent) || // user pressed key - (defaultDate.getTime() == printDate.getTime() && defaultDate.getTime() == selectedDate.getTime()) ? - // or defaultDate is current printedDate and defaultDate is selectedDate - ' ' + this._dayOverClass : '') + // highlight selected day - (unselectable ? ' ' + this._unselectableClass + ' ui-state-disabled': '') + // highlight unselectable days - (otherMonth && !showOtherMonths ? '' : ' ' + daySettings[1] + // highlight custom dates - (printDate.getTime() == currentDate.getTime() ? ' ' + this._currentClass : '') + // highlight selected day - (printDate.getTime() == today.getTime() ? ' ui-datepicker-today' : '')) + '"' + // highlight today (if different) - ((!otherMonth || showOtherMonths) && daySettings[2] ? ' title="' + daySettings[2] + '"' : '') + // cell title - (unselectable ? '' : ' data-handler="selectDay" data-event="click" data-month="' + printDate.getMonth() + '" data-year="' + printDate.getFullYear() + '"') + '>' + // actions - (otherMonth && !showOtherMonths ? ' ' : // display for other months - (unselectable ? '<span class="ui-state-default">' + printDate.getDate() + '</span>' : '<a class="ui-state-default' + - (printDate.getTime() == today.getTime() ? ' ui-state-highlight' : '') + - (printDate.getTime() == currentDate.getTime() ? ' ui-state-active' : '') + // highlight selected day - (otherMonth ? ' ui-priority-secondary' : '') + // distinguish dates from other months - '" href="#">' + printDate.getDate() + '</a>')) + '</td>'; // display selectable date - printDate.setDate(printDate.getDate() + 1); - printDate = this._daylightSavingAdjust(printDate); - } - calender += tbody + '</tr>'; - } - drawMonth++; - if (drawMonth > 11) { - drawMonth = 0; - drawYear++; - } - calender += '</tbody></table>' + (isMultiMonth ? '</div>' + - ((numMonths[0] > 0 && col == numMonths[1]-1) ? '<div class="ui-datepicker-row-break"></div>' : '') : ''); - group += calender; - } - html += group; - } - html += buttonPanel + ($.browser.msie && parseInt($.browser.version,10) < 7 && !inst.inline ? - '<iframe src="javascript:false;" class="ui-datepicker-cover" frameborder="0"></iframe>' : ''); - inst._keyEvent = false; - return html; - }, - - /* Generate the month and year header. */ - _generateMonthYearHeader: function(inst, drawMonth, drawYear, minDate, maxDate, - secondary, monthNames, monthNamesShort) { - var changeMonth = this._get(inst, 'changeMonth'); - var changeYear = this._get(inst, 'changeYear'); - var showMonthAfterYear = this._get(inst, 'showMonthAfterYear'); - var html = '<div class="ui-datepicker-title">'; - var monthHtml = ''; - // month selection - if (secondary || !changeMonth) - monthHtml += '<span class="ui-datepicker-month">' + monthNames[drawMonth] + '</span>'; - else { - var inMinYear = (minDate && minDate.getFullYear() == drawYear); - var inMaxYear = (maxDate && maxDate.getFullYear() == drawYear); - monthHtml += '<select class="ui-datepicker-month" data-handler="selectMonth" data-event="change">'; - for (var month = 0; month < 12; month++) { - if ((!inMinYear || month >= minDate.getMonth()) && - (!inMaxYear || month <= maxDate.getMonth())) - monthHtml += '<option value="' + month + '"' + - (month == drawMonth ? ' selected="selected"' : '') + - '>' + monthNamesShort[month] + '</option>'; - } - monthHtml += '</select>'; - } - if (!showMonthAfterYear) - html += monthHtml + (secondary || !(changeMonth && changeYear) ? ' ' : ''); - // year selection - if ( !inst.yearshtml ) { - inst.yearshtml = ''; - if (secondary || !changeYear) - html += '<span class="ui-datepicker-year">' + drawYear + '</span>'; - else { - // determine range of years to display - var years = this._get(inst, 'yearRange').split(':'); - var thisYear = new Date().getFullYear(); - var determineYear = function(value) { - var year = (value.match(/c[+-].*/) ? drawYear + parseInt(value.substring(1), 10) : - (value.match(/[+-].*/) ? thisYear + parseInt(value, 10) : - parseInt(value, 10))); - return (isNaN(year) ? thisYear : year); - }; - var year = determineYear(years[0]); - var endYear = Math.max(year, determineYear(years[1] || '')); - year = (minDate ? Math.max(year, minDate.getFullYear()) : year); - endYear = (maxDate ? Math.min(endYear, maxDate.getFullYear()) : endYear); - inst.yearshtml += '<select class="ui-datepicker-year" data-handler="selectYear" data-event="change">'; - for (; year <= endYear; year++) { - inst.yearshtml += '<option value="' + year + '"' + - (year == drawYear ? ' selected="selected"' : '') + - '>' + year + '</option>'; - } - inst.yearshtml += '</select>'; - - html += inst.yearshtml; - inst.yearshtml = null; - } - } - html += this._get(inst, 'yearSuffix'); - if (showMonthAfterYear) - html += (secondary || !(changeMonth && changeYear) ? ' ' : '') + monthHtml; - html += '</div>'; // Close datepicker_header - return html; - }, - - /* Adjust one of the date sub-fields. */ - _adjustInstDate: function(inst, offset, period) { - var year = inst.drawYear + (period == 'Y' ? offset : 0); - var month = inst.drawMonth + (period == 'M' ? offset : 0); - var day = Math.min(inst.selectedDay, this._getDaysInMonth(year, month)) + - (period == 'D' ? offset : 0); - var date = this._restrictMinMax(inst, - this._daylightSavingAdjust(new Date(year, month, day))); - inst.selectedDay = date.getDate(); - inst.drawMonth = inst.selectedMonth = date.getMonth(); - inst.drawYear = inst.selectedYear = date.getFullYear(); - if (period == 'M' || period == 'Y') - this._notifyChange(inst); - }, - - /* Ensure a date is within any min/max bounds. */ - _restrictMinMax: function(inst, date) { - var minDate = this._getMinMaxDate(inst, 'min'); - var maxDate = this._getMinMaxDate(inst, 'max'); - var newDate = (minDate && date < minDate ? minDate : date); - newDate = (maxDate && newDate > maxDate ? maxDate : newDate); - return newDate; - }, - - /* Notify change of month/year. */ - _notifyChange: function(inst) { - var onChange = this._get(inst, 'onChangeMonthYear'); - if (onChange) - onChange.apply((inst.input ? inst.input[0] : null), - [inst.selectedYear, inst.selectedMonth + 1, inst]); - }, - - /* Determine the number of months to show. */ - _getNumberOfMonths: function(inst) { - var numMonths = this._get(inst, 'numberOfMonths'); - return (numMonths == null ? [1, 1] : (typeof numMonths == 'number' ? [1, numMonths] : numMonths)); - }, - - /* Determine the current maximum date - ensure no time components are set. */ - _getMinMaxDate: function(inst, minMax) { - return this._determineDate(inst, this._get(inst, minMax + 'Date'), null); - }, - - /* Find the number of days in a given month. */ - _getDaysInMonth: function(year, month) { - return 32 - this._daylightSavingAdjust(new Date(year, month, 32)).getDate(); - }, - - /* Find the day of the week of the first of a month. */ - _getFirstDayOfMonth: function(year, month) { - return new Date(year, month, 1).getDay(); - }, - - /* Determines if we should allow a "next/prev" month display change. */ - _canAdjustMonth: function(inst, offset, curYear, curMonth) { - var numMonths = this._getNumberOfMonths(inst); - var date = this._daylightSavingAdjust(new Date(curYear, - curMonth + (offset < 0 ? offset : numMonths[0] * numMonths[1]), 1)); - if (offset < 0) - date.setDate(this._getDaysInMonth(date.getFullYear(), date.getMonth())); - return this._isInRange(inst, date); - }, - - /* Is the given date in the accepted range? */ - _isInRange: function(inst, date) { - var minDate = this._getMinMaxDate(inst, 'min'); - var maxDate = this._getMinMaxDate(inst, 'max'); - return ((!minDate || date.getTime() >= minDate.getTime()) && - (!maxDate || date.getTime() <= maxDate.getTime())); - }, - - /* Provide the configuration settings for formatting/parsing. */ - _getFormatConfig: function(inst) { - var shortYearCutoff = this._get(inst, 'shortYearCutoff'); - shortYearCutoff = (typeof shortYearCutoff != 'string' ? shortYearCutoff : - new Date().getFullYear() % 100 + parseInt(shortYearCutoff, 10)); - return {shortYearCutoff: shortYearCutoff, - dayNamesShort: this._get(inst, 'dayNamesShort'), dayNames: this._get(inst, 'dayNames'), - monthNamesShort: this._get(inst, 'monthNamesShort'), monthNames: this._get(inst, 'monthNames')}; - }, - - /* Format the given date for display. */ - _formatDate: function(inst, day, month, year) { - if (!day) { - inst.currentDay = inst.selectedDay; - inst.currentMonth = inst.selectedMonth; - inst.currentYear = inst.selectedYear; - } - var date = (day ? (typeof day == 'object' ? day : - this._daylightSavingAdjust(new Date(year, month, day))) : - this._daylightSavingAdjust(new Date(inst.currentYear, inst.currentMonth, inst.currentDay))); - return this.formatDate(this._get(inst, 'dateFormat'), date, this._getFormatConfig(inst)); - } - }); - - /* - * Bind hover events for datepicker elements. - * Done via delegate so the binding only occurs once in the lifetime of the parent div. - * Global instActive, set by _updateDatepicker allows the handlers to find their way back to the active picker. - */ - function bindHover(dpDiv) { - var selector = 'button, .ui-datepicker-prev, .ui-datepicker-next, .ui-datepicker-calendar td a'; - return dpDiv.delegate(selector, 'mouseout', function() { - $(this).removeClass('ui-state-hover'); - if (this.className.indexOf('ui-datepicker-prev') != -1) $(this).removeClass('ui-datepicker-prev-hover'); - if (this.className.indexOf('ui-datepicker-next') != -1) $(this).removeClass('ui-datepicker-next-hover'); - }) - .delegate(selector, 'mouseover', function(){ - if (!$.datepicker._isDisabledDatepicker( instActive.inline ? dpDiv.parent()[0] : instActive.input[0])) { - $(this).parents('.ui-datepicker-calendar').find('a').removeClass('ui-state-hover'); - $(this).addClass('ui-state-hover'); - if (this.className.indexOf('ui-datepicker-prev') != -1) $(this).addClass('ui-datepicker-prev-hover'); - if (this.className.indexOf('ui-datepicker-next') != -1) $(this).addClass('ui-datepicker-next-hover'); - } - }); - } - - /* jQuery extend now ignores nulls! */ - function extendRemove(target, props) { - $.extend(target, props); - for (var name in props) - if (props[name] == null || props[name] == undefined) - target[name] = props[name]; - return target; - }; - - /* Invoke the datepicker functionality. - @param options string - a command, optionally followed by additional parameters or - Object - settings for attaching new datepicker functionality - @return jQuery object */ - $.fn.datepicker = function(options){ - - /* Verify an empty collection wasn't passed - Fixes #6976 */ - if ( !this.length ) { - return this; - } - - /* Initialise the date picker. */ - if (!$.datepicker.initialized) { - $(document).mousedown($.datepicker._checkExternalClick). - find(document.body).append($.datepicker.dpDiv); - $.datepicker.initialized = true; - } - - var otherArgs = Array.prototype.slice.call(arguments, 1); - if (typeof options == 'string' && (options == 'isDisabled' || options == 'getDate' || options == 'widget')) - return $.datepicker['_' + options + 'Datepicker']. - apply($.datepicker, [this[0]].concat(otherArgs)); - if (options == 'option' && arguments.length == 2 && typeof arguments[1] == 'string') - return $.datepicker['_' + options + 'Datepicker']. - apply($.datepicker, [this[0]].concat(otherArgs)); - return this.each(function() { - typeof options == 'string' ? - $.datepicker['_' + options + 'Datepicker']. - apply($.datepicker, [this].concat(otherArgs)) : - $.datepicker._attachDatepicker(this, options); - }); - }; - - $.datepicker = new Datepicker(); // singleton instance - $.datepicker.initialized = false; - $.datepicker.uuid = new Date().getTime(); - $.datepicker.version = "1.9.0"; - -// Workaround for #4055 -// Add another global to avoid noConflict issues with inline event handlers - window['DP_jQuery_' + dpuuid] = $; - -})(jQuery); - -(function( $, undefined ) { - - var uiDialogClasses = "ui-dialog ui-widget ui-widget-content ui-corner-all ", - sizeRelatedOptions = { - buttons: true, - height: true, - maxHeight: true, - maxWidth: true, - minHeight: true, - minWidth: true, - width: true - }, - resizableRelatedOptions = { - maxHeight: true, - maxWidth: true, - minHeight: true, - minWidth: true - }; - - $.widget("ui.dialog", { - version: "1.9.0", - options: { - autoOpen: true, - buttons: {}, - closeOnEscape: true, - closeText: "close", - dialogClass: "", - draggable: true, - hide: null, - height: "auto", - maxHeight: false, - maxWidth: false, - minHeight: 150, - minWidth: 150, - modal: false, - position: { - my: "center", - at: "center", - of: window, - collision: "fit", - // ensure that the titlebar is never outside the document - using: function( pos ) { - var topOffset = $( this ).css( pos ).offset().top; - if ( topOffset < 0 ) { - $( this ).css( "top", pos.top - topOffset ); - } - } - }, - resizable: true, - show: null, - stack: true, - title: "", - width: 300, - zIndex: 1000 - }, - - _create: function() { - this.originalTitle = this.element.attr( "title" ); - // #5742 - .attr() might return a DOMElement - if ( typeof this.originalTitle !== "string" ) { - this.originalTitle = ""; - } - this.oldPosition = { - parent: this.element.parent(), - index: this.element.parent().children().index( this.element ) - }; - this.options.title = this.options.title || this.originalTitle; - var that = this, - options = this.options, - - title = options.title || " ", - - uiDialog = ( this.uiDialog = $( "<div>" ) ) - .addClass( uiDialogClasses + options.dialogClass ) - .css({ - display: "none", - outline: 0, // TODO: move to stylesheet - zIndex: options.zIndex - }) - // setting tabIndex makes the div focusable - .attr( "tabIndex", -1) - .keydown(function( event ) { - if ( options.closeOnEscape && !event.isDefaultPrevented() && event.keyCode && - event.keyCode === $.ui.keyCode.ESCAPE ) { - that.close( event ); - event.preventDefault(); - } - }) - .mousedown(function( event ) { - that.moveToTop( false, event ); - }) - .appendTo( "body" ), - - uiDialogContent = this.element - .show() - .removeAttr( "title" ) - .addClass( "ui-dialog-content ui-widget-content" ) - .appendTo( uiDialog ), - - uiDialogTitlebar = ( this.uiDialogTitlebar = $( "<div>" ) ) - .addClass( "ui-dialog-titlebar ui-widget-header " + - "ui-corner-all ui-helper-clearfix" ) - .prependTo( uiDialog ), - - uiDialogTitlebarClose = $( "<a href='#'></a>" ) - .addClass( "ui-dialog-titlebar-close ui-corner-all" ) - .attr( "role", "button" ) - .click(function( event ) { - event.preventDefault(); - that.close( event ); - }) - .appendTo( uiDialogTitlebar ), - - uiDialogTitlebarCloseText = ( this.uiDialogTitlebarCloseText = $( "<span>" ) ) - .addClass( "ui-icon ui-icon-closethick" ) - .text( options.closeText ) - .appendTo( uiDialogTitlebarClose ), - - uiDialogTitle = $( "<span>" ) - .uniqueId() - .addClass( "ui-dialog-title" ) - .html( title ) - .prependTo( uiDialogTitlebar ), - - uiDialogButtonPane = ( this.uiDialogButtonPane = $( "<div>" ) ) - .addClass( "ui-dialog-buttonpane ui-widget-content ui-helper-clearfix" ), - - uiButtonSet = ( this.uiButtonSet = $( "<div>" ) ) - .addClass( "ui-dialog-buttonset" ) - .appendTo( uiDialogButtonPane ); - - uiDialog.attr({ - role: "dialog", - "aria-labelledby": uiDialogTitle.attr( "id" ) - }); - - uiDialogTitlebar.find( "*" ).add( uiDialogTitlebar ).disableSelection(); - this._hoverable( uiDialogTitlebarClose ); - this._focusable( uiDialogTitlebarClose ); - - if ( options.draggable && $.fn.draggable ) { - this._makeDraggable(); - } - if ( options.resizable && $.fn.resizable ) { - this._makeResizable(); - } - - this._createButtons( options.buttons ); - this._isOpen = false; - - if ( $.fn.bgiframe ) { - uiDialog.bgiframe(); - } - - // prevent tabbing out of modal dialogs - this._on( uiDialog, { keydown: function( event ) { - if ( !options.modal || event.keyCode !== $.ui.keyCode.TAB ) { - return; - } - - var tabbables = $( ":tabbable", uiDialog ), - first = tabbables.filter( ":first" ), - last = tabbables.filter( ":last" ); - - if ( event.target === last[0] && !event.shiftKey ) { - first.focus( 1 ); - return false; - } else if ( event.target === first[0] && event.shiftKey ) { - last.focus( 1 ); - return false; - } - }}); - }, - - _init: function() { - if ( this.options.autoOpen ) { - this.open(); - } - }, - - _destroy: function() { - var next, - oldPosition = this.oldPosition; - - if ( this.overlay ) { - this.overlay.destroy(); - } - this.uiDialog.hide(); - this.element - .removeClass( "ui-dialog-content ui-widget-content" ) - .hide() - .appendTo( "body" ); - this.uiDialog.remove(); - - if ( this.originalTitle ) { - this.element.attr( "title", this.originalTitle ); - } - - next = oldPosition.parent.children().eq( oldPosition.index ); - // Don't try to place the dialog next to itself (#8613) - if ( next.length && next[ 0 ] !== this.element[ 0 ] ) { - next.before( this.element ); - } else { - oldPosition.parent.append( this.element ); - } - }, - - widget: function() { - return this.uiDialog; - }, - - close: function( event ) { - var that = this, - maxZ, thisZ; - - if ( !this._isOpen ) { - return; - } - - if ( false === this._trigger( "beforeClose", event ) ) { - return; - } - - this._isOpen = false; - - if ( this.overlay ) { - this.overlay.destroy(); - } - - if ( this.options.hide ) { - this.uiDialog.hide( this.options.hide, function() { - that._trigger( "close", event ); - }); - } else { - this.uiDialog.hide(); - this._trigger( "close", event ); - } - - $.ui.dialog.overlay.resize(); - - // adjust the maxZ to allow other modal dialogs to continue to work (see #4309) - if ( this.options.modal ) { - maxZ = 0; - $( ".ui-dialog" ).each(function() { - if ( this !== that.uiDialog[0] ) { - thisZ = $( this ).css( "z-index" ); - if ( !isNaN( thisZ ) ) { - maxZ = Math.max( maxZ, thisZ ); - } - } - }); - $.ui.dialog.maxZ = maxZ; - } - - return this; - }, - - isOpen: function() { - return this._isOpen; - }, - - // the force parameter allows us to move modal dialogs to their correct - // position on open - moveToTop: function( force, event ) { - var options = this.options, - saveScroll; - - if ( ( options.modal && !force ) || - ( !options.stack && !options.modal ) ) { - return this._trigger( "focus", event ); - } - - if ( options.zIndex > $.ui.dialog.maxZ ) { - $.ui.dialog.maxZ = options.zIndex; - } - if ( this.overlay ) { - $.ui.dialog.maxZ += 1; - $.ui.dialog.overlay.maxZ = $.ui.dialog.maxZ; - this.overlay.$el.css( "z-index", $.ui.dialog.overlay.maxZ ); - } - - // Save and then restore scroll - // Opera 9.5+ resets when parent z-index is changed. - // http://bugs.jqueryui.com/ticket/3193 - saveScroll = { - scrollTop: this.element.scrollTop(), - scrollLeft: this.element.scrollLeft() - }; - $.ui.dialog.maxZ += 1; - this.uiDialog.css( "z-index", $.ui.dialog.maxZ ); - this.element.attr( saveScroll ); - this._trigger( "focus", event ); - - return this; - }, - - open: function() { - if ( this._isOpen ) { - return; - } - - var hasFocus, - options = this.options, - uiDialog = this.uiDialog; - - this._size(); - this._position( options.position ); - uiDialog.show( options.show ); - this.overlay = options.modal ? new $.ui.dialog.overlay( this ) : null; - this.moveToTop( true ); - - // set focus to the first tabbable element in the content area or the first button - // if there are no tabbable elements, set focus on the dialog itself - hasFocus = this.element.find( ":tabbable" ); - if ( !hasFocus.length ) { - hasFocus = this.uiDialogButtonPane.find( ":tabbable" ); - if ( !hasFocus.length ) { - hasFocus = uiDialog; - } - } - hasFocus.eq( 0 ).focus(); - - this._isOpen = true; - this._trigger( "open" ); - - return this; - }, - - _createButtons: function( buttons ) { - var uiDialogButtonPane, uiButtonSet, - that = this, - hasButtons = false; - - // if we already have a button pane, remove it - this.uiDialogButtonPane.remove(); - this.uiButtonSet.empty(); - - if ( typeof buttons === "object" && buttons !== null ) { - $.each( buttons, function() { - return !(hasButtons = true); - }); - } - if ( hasButtons ) { - $.each( buttons, function( name, props ) { - props = $.isFunction( props ) ? - { click: props, text: name } : - props; - var button = $( "<button type='button'>" ) - .attr( props, true ) - .unbind( "click" ) - .click(function() { - props.click.apply( that.element[0], arguments ); - }) - .appendTo( that.uiButtonSet ); - if ( $.fn.button ) { - button.button(); - } - }); - this.uiDialog.addClass( "ui-dialog-buttons" ); - this.uiDialogButtonPane.appendTo( this.uiDialog ); - } else { - this.uiDialog.removeClass( "ui-dialog-buttons" ); - } - }, - - _makeDraggable: function() { - var that = this, - options = this.options; - - function filteredUi( ui ) { - return { - position: ui.position, - offset: ui.offset - }; - } - - this.uiDialog.draggable({ - cancel: ".ui-dialog-content, .ui-dialog-titlebar-close", - handle: ".ui-dialog-titlebar", - containment: "document", - start: function( event, ui ) { - $( this ) - .addClass( "ui-dialog-dragging" ); - that._trigger( "dragStart", event, filteredUi( ui ) ); - }, - drag: function( event, ui ) { - that._trigger( "drag", event, filteredUi( ui ) ); - }, - stop: function( event, ui ) { - options.position = [ - ui.position.left - that.document.scrollLeft(), - ui.position.top - that.document.scrollTop() - ]; - $( this ) - .removeClass( "ui-dialog-dragging" ); - that._trigger( "dragStop", event, filteredUi( ui ) ); - $.ui.dialog.overlay.resize(); - } - }); - }, - - _makeResizable: function( handles ) { - handles = (handles === undefined ? this.options.resizable : handles); - var that = this, - options = this.options, - // .ui-resizable has position: relative defined in the stylesheet - // but dialogs have to use absolute or fixed positioning - position = this.uiDialog.css( "position" ), - resizeHandles = typeof handles === 'string' ? - handles : - "n,e,s,w,se,sw,ne,nw"; - - function filteredUi( ui ) { - return { - originalPosition: ui.originalPosition, - originalSize: ui.originalSize, - position: ui.position, - size: ui.size - }; - } - - this.uiDialog.resizable({ - cancel: ".ui-dialog-content", - containment: "document", - alsoResize: this.element, - maxWidth: options.maxWidth, - maxHeight: options.maxHeight, - minWidth: options.minWidth, - minHeight: this._minHeight(), - handles: resizeHandles, - start: function( event, ui ) { - $( this ).addClass( "ui-dialog-resizing" ); - that._trigger( "resizeStart", event, filteredUi( ui ) ); - }, - resize: function( event, ui ) { - that._trigger( "resize", event, filteredUi( ui ) ); - }, - stop: function( event, ui ) { - $( this ).removeClass( "ui-dialog-resizing" ); - options.height = $( this ).height(); - options.width = $( this ).width(); - that._trigger( "resizeStop", event, filteredUi( ui ) ); - $.ui.dialog.overlay.resize(); - } - }) - .css( "position", position ) - .find( ".ui-resizable-se" ) - .addClass( "ui-icon ui-icon-grip-diagonal-se" ); - }, - - _minHeight: function() { - var options = this.options; - - if ( options.height === "auto" ) { - return options.minHeight; - } else { - return Math.min( options.minHeight, options.height ); - } - }, - - _position: function( position ) { - var myAt = [], - offset = [ 0, 0 ], - isVisible; - - if ( position ) { - // deep extending converts arrays to objects in jQuery <= 1.3.2 :-( - // if (typeof position == 'string' || $.isArray(position)) { - // myAt = $.isArray(position) ? position : position.split(' '); - - if ( typeof position === "string" || (typeof position === "object" && "0" in position ) ) { - myAt = position.split ? position.split( " " ) : [ position[ 0 ], position[ 1 ] ]; - if ( myAt.length === 1 ) { - myAt[ 1 ] = myAt[ 0 ]; - } - - $.each( [ "left", "top" ], function( i, offsetPosition ) { - if ( +myAt[ i ] === myAt[ i ] ) { - offset[ i ] = myAt[ i ]; - myAt[ i ] = offsetPosition; - } - }); - - position = { - my: myAt.join( " " ), - at: myAt.join( " " ), - offset: offset.join( " " ) - }; - } - - position = $.extend( {}, $.ui.dialog.prototype.options.position, position ); - } else { - position = $.ui.dialog.prototype.options.position; - } - - // need to show the dialog to get the actual offset in the position plugin - isVisible = this.uiDialog.is( ":visible" ); - if ( !isVisible ) { - this.uiDialog.show(); - } - this.uiDialog.position( position ); - if ( !isVisible ) { - this.uiDialog.hide(); - } - }, - - _setOptions: function( options ) { - var that = this, - resizableOptions = {}, - resize = false; - - $.each( options, function( key, value ) { - that._setOption( key, value ); - - if ( key in sizeRelatedOptions ) { - resize = true; - } - if ( key in resizableRelatedOptions ) { - resizableOptions[ key ] = value; - } - }); - - if ( resize ) { - this._size(); - } - if ( this.uiDialog.is( ":data(resizable)" ) ) { - this.uiDialog.resizable( "option", resizableOptions ); - } - }, - - _setOption: function( key, value ) { - var isDraggable, isResizable, - uiDialog = this.uiDialog; - - switch ( key ) { - case "buttons": - this._createButtons( value ); - break; - case "closeText": - // ensure that we always pass a string - this.uiDialogTitlebarCloseText.text( "" + value ); - break; - case "dialogClass": - uiDialog - .removeClass( this.options.dialogClass ) - .addClass( uiDialogClasses + value ); - break; - case "disabled": - if ( value ) { - uiDialog.addClass( "ui-dialog-disabled" ); - } else { - uiDialog.removeClass( "ui-dialog-disabled" ); - } - break; - case "draggable": - isDraggable = uiDialog.is( ":data(draggable)" ); - if ( isDraggable && !value ) { - uiDialog.draggable( "destroy" ); - } - - if ( !isDraggable && value ) { - this._makeDraggable(); - } - break; - case "position": - this._position( value ); - break; - case "resizable": - // currently resizable, becoming non-resizable - isResizable = uiDialog.is( ":data(resizable)" ); - if ( isResizable && !value ) { - uiDialog.resizable( "destroy" ); - } - - // currently resizable, changing handles - if ( isResizable && typeof value === "string" ) { - uiDialog.resizable( "option", "handles", value ); - } - - // currently non-resizable, becoming resizable - if ( !isResizable && value !== false ) { - this._makeResizable( value ); - } - break; - case "title": - // convert whatever was passed in o a string, for html() to not throw up - $( ".ui-dialog-title", this.uiDialogTitlebar ) - .html( "" + ( value || " " ) ); - break; - } - - this._super( key, value ); - }, - - _size: function() { - /* If the user has resized the dialog, the .ui-dialog and .ui-dialog-content - * divs will both have width and height set, so we need to reset them - */ - var nonContentHeight, minContentHeight, autoHeight, - options = this.options, - isVisible = this.uiDialog.is( ":visible" ); - - // reset content sizing - this.element.show().css({ - width: "auto", - minHeight: 0, - height: 0 - }); - - if ( options.minWidth > options.width ) { - options.width = options.minWidth; - } - - // reset wrapper sizing - // determine the height of all the non-content elements - nonContentHeight = this.uiDialog.css({ - height: "auto", - width: options.width - }) - .outerHeight(); - minContentHeight = Math.max( 0, options.minHeight - nonContentHeight ); - - if ( options.height === "auto" ) { - // only needed for IE6 support - if ( $.support.minHeight ) { - this.element.css({ - minHeight: minContentHeight, - height: "auto" - }); - } else { - this.uiDialog.show(); - autoHeight = this.element.css( "height", "auto" ).height(); - if ( !isVisible ) { - this.uiDialog.hide(); - } - this.element.height( Math.max( autoHeight, minContentHeight ) ); - } - } else { - this.element.height( Math.max( options.height - nonContentHeight, 0 ) ); - } - - if (this.uiDialog.is( ":data(resizable)" ) ) { - this.uiDialog.resizable( "option", "minHeight", this._minHeight() ); - } - } - }); - - $.extend($.ui.dialog, { - uuid: 0, - maxZ: 0, - - getTitleId: function($el) { - var id = $el.attr( "id" ); - if ( !id ) { - this.uuid += 1; - id = this.uuid; - } - return "ui-dialog-title-" + id; - }, - - overlay: function( dialog ) { - this.$el = $.ui.dialog.overlay.create( dialog ); - } - }); - - $.extend( $.ui.dialog.overlay, { - instances: [], - // reuse old instances due to IE memory leak with alpha transparency (see #5185) - oldInstances: [], - maxZ: 0, - events: $.map( - "focus,mousedown,mouseup,keydown,keypress,click".split( "," ), - function( event ) { - return event + ".dialog-overlay"; - } - ).join( " " ), - create: function( dialog ) { - if ( this.instances.length === 0 ) { - // prevent use of anchors and inputs - // we use a setTimeout in case the overlay is created from an - // event that we're going to be cancelling (see #2804) - setTimeout(function() { - // handle $(el).dialog().dialog('close') (see #4065) - if ( $.ui.dialog.overlay.instances.length ) { - $( document ).bind( $.ui.dialog.overlay.events, function( event ) { - // stop events if the z-index of the target is < the z-index of the overlay - // we cannot return true when we don't want to cancel the event (#3523) - if ( $( event.target ).zIndex() < $.ui.dialog.overlay.maxZ ) { - return false; - } - }); - } - }, 1 ); - - // handle window resize - $( window ).bind( "resize.dialog-overlay", $.ui.dialog.overlay.resize ); - } - - var $el = ( this.oldInstances.pop() || $( "<div>" ).addClass( "ui-widget-overlay" ) ); - - // allow closing by pressing the escape key - $( document ).bind( "keydown.dialog-overlay", function( event ) { - var instances = $.ui.dialog.overlay.instances; - // only react to the event if we're the top overlay - if ( instances.length !== 0 && instances[ instances.length - 1 ] === $el && - dialog.options.closeOnEscape && !event.isDefaultPrevented() && event.keyCode && - event.keyCode === $.ui.keyCode.ESCAPE ) { - - dialog.close( event ); - event.preventDefault(); - } - }); - - $el.appendTo( document.body ).css({ - width: this.width(), - height: this.height() - }); - - if ( $.fn.bgiframe ) { - $el.bgiframe(); - } - - this.instances.push( $el ); - return $el; - }, - - destroy: function( $el ) { - var indexOf = $.inArray( $el, this.instances ), - maxZ = 0; - - if ( indexOf !== -1 ) { - this.oldInstances.push( this.instances.splice( indexOf, 1 )[ 0 ] ); - } - - if ( this.instances.length === 0 ) { - $( [ document, window ] ).unbind( ".dialog-overlay" ); - } - - $el.height( 0 ).width( 0 ).remove(); - - // adjust the maxZ to allow other modal dialogs to continue to work (see #4309) - $.each( this.instances, function() { - maxZ = Math.max( maxZ, this.css( "z-index" ) ); - }); - this.maxZ = maxZ; - }, - - height: function() { - var scrollHeight, - offsetHeight; - // handle IE - if ( $.browser.msie ) { - scrollHeight = Math.max( - document.documentElement.scrollHeight, - document.body.scrollHeight - ); - offsetHeight = Math.max( - document.documentElement.offsetHeight, - document.body.offsetHeight - ); - - if ( scrollHeight < offsetHeight ) { - return $( window ).height() + "px"; - } else { - return scrollHeight + "px"; - } - // handle "good" browsers - } else { - return $( document ).height() + "px"; - } - }, - - width: function() { - var scrollWidth, - offsetWidth; - // handle IE - if ( $.browser.msie ) { - scrollWidth = Math.max( - document.documentElement.scrollWidth, - document.body.scrollWidth - ); - offsetWidth = Math.max( - document.documentElement.offsetWidth, - document.body.offsetWidth - ); - - if ( scrollWidth < offsetWidth ) { - return $( window ).width() + "px"; - } else { - return scrollWidth + "px"; - } - // handle "good" browsers - } else { - return $( document ).width() + "px"; - } - }, - - resize: function() { - /* If the dialog is draggable and the user drags it past the - * right edge of the window, the document becomes wider so we - * need to stretch the overlay. If the user then drags the - * dialog back to the left, the document will become narrower, - * so we need to shrink the overlay to the appropriate size. - * This is handled by shrinking the overlay before setting it - * to the full document size. - */ - var $overlays = $( [] ); - $.each( $.ui.dialog.overlay.instances, function() { - $overlays = $overlays.add( this ); - }); - - $overlays.css({ - width: 0, - height: 0 - }).css({ - width: $.ui.dialog.overlay.width(), - height: $.ui.dialog.overlay.height() - }); - } - }); - - $.extend( $.ui.dialog.overlay.prototype, { - destroy: function() { - $.ui.dialog.overlay.destroy( this.$el ); - } - }); - -}( jQuery ) ); - -(function( $, undefined ) { - - var rvertical = /up|down|vertical/, - rpositivemotion = /up|left|vertical|horizontal/; - - $.effects.effect.blind = function( o, done ) { - // Create element - var el = $( this ), - props = [ "position", "top", "bottom", "left", "right", "height", "width" ], - mode = $.effects.setMode( el, o.mode || "hide" ), - direction = o.direction || "up", - vertical = rvertical.test( direction ), - ref = vertical ? "height" : "width", - ref2 = vertical ? "top" : "left", - motion = rpositivemotion.test( direction ), - animation = {}, - show = mode === "show", - wrapper, distance, margin; - - // if already wrapped, the wrapper's properties are my property. #6245 - if ( el.parent().is( ".ui-effects-wrapper" ) ) { - $.effects.save( el.parent(), props ); - } else { - $.effects.save( el, props ); - } - el.show(); - wrapper = $.effects.createWrapper( el ).css({ - overflow: "hidden" - }); - - distance = wrapper[ ref ](); - margin = parseFloat( wrapper.css( ref2 ) ) || 0; - - animation[ ref ] = show ? distance : 0; - if ( !motion ) { - el - .css( vertical ? "bottom" : "right", 0 ) - .css( vertical ? "top" : "left", "auto" ) - .css({ position: "absolute" }); - - animation[ ref2 ] = show ? margin : distance + margin; - } - - // start at 0 if we are showing - if ( show ) { - wrapper.css( ref, 0 ); - if ( ! motion ) { - wrapper.css( ref2, margin + distance ); - } - } - - // Animate - wrapper.animate( animation, { - duration: o.duration, - easing: o.easing, - queue: false, - complete: function() { - if ( mode === "hide" ) { - el.hide(); - } - $.effects.restore( el, props ); - $.effects.removeWrapper( el ); - done(); - } - }); - - }; - -})(jQuery); - -(function( $, undefined ) { - - $.effects.effect.bounce = function( o, done ) { - var el = $( this ), - props = [ "position", "top", "bottom", "left", "right", "height", "width" ], - - // defaults: - mode = $.effects.setMode( el, o.mode || "effect" ), - hide = mode === "hide", - show = mode === "show", - direction = o.direction || "up", - distance = o.distance, - times = o.times || 5, - - // number of internal animations - anims = times * 2 + ( show || hide ? 1 : 0 ), - speed = o.duration / anims, - easing = o.easing, - - // utility: - ref = ( direction === "up" || direction === "down" ) ? "top" : "left", - motion = ( direction === "up" || direction === "left" ), - i, - upAnim, - downAnim, - - // we will need to re-assemble the queue to stack our animations in place - queue = el.queue(), - queuelen = queue.length; - - // Avoid touching opacity to prevent clearType and PNG issues in IE - if ( show || hide ) { - props.push( "opacity" ); - } - - $.effects.save( el, props ); - el.show(); - $.effects.createWrapper( el ); // Create Wrapper - - // default distance for the BIGGEST bounce is the outer Distance / 3 - if ( !distance ) { - distance = el[ ref === "top" ? "outerHeight" : "outerWidth" ]() / 3; - } - - if ( show ) { - downAnim = { opacity: 1 }; - downAnim[ ref ] = 0; - - // if we are showing, force opacity 0 and set the initial position - // then do the "first" animation - el.css( "opacity", 0 ) - .css( ref, motion ? -distance * 2 : distance * 2 ) - .animate( downAnim, speed, easing ); - } - - // start at the smallest distance if we are hiding - if ( hide ) { - distance = distance / Math.pow( 2, times - 1 ); - } - - downAnim = {}; - downAnim[ ref ] = 0; - // Bounces up/down/left/right then back to 0 -- times * 2 animations happen here - for ( i = 0; i < times; i++ ) { - upAnim = {}; - upAnim[ ref ] = ( motion ? "-=" : "+=" ) + distance; - - el.animate( upAnim, speed, easing ) - .animate( downAnim, speed, easing ); - - distance = hide ? distance * 2 : distance / 2; - } - - // Last Bounce when Hiding - if ( hide ) { - upAnim = { opacity: 0 }; - upAnim[ ref ] = ( motion ? "-=" : "+=" ) + distance; - - el.animate( upAnim, speed, easing ); - } - - el.queue(function() { - if ( hide ) { - el.hide(); - } - $.effects.restore( el, props ); - $.effects.removeWrapper( el ); - done(); - }); - - // inject all the animations we just queued to be first in line (after "inprogress") - if ( queuelen > 1) { - queue.splice.apply( queue, - [ 1, 0 ].concat( queue.splice( queuelen, anims + 1 ) ) ); - } - el.dequeue(); - - }; - -})(jQuery); - -(function( $, undefined ) { - - $.effects.effect.clip = function( o, done ) { - // Create element - var el = $( this ), - props = [ "position", "top", "bottom", "left", "right", "height", "width" ], - mode = $.effects.setMode( el, o.mode || "hide" ), - show = mode === "show", - direction = o.direction || "vertical", - vert = direction === "vertical", - size = vert ? "height" : "width", - position = vert ? "top" : "left", - animation = {}, - wrapper, animate, distance; - - // Save & Show - $.effects.save( el, props ); - el.show(); - - // Create Wrapper - wrapper = $.effects.createWrapper( el ).css({ - overflow: "hidden" - }); - animate = ( el[0].tagName === "IMG" ) ? wrapper : el; - distance = animate[ size ](); - - // Shift - if ( show ) { - animate.css( size, 0 ); - animate.css( position, distance / 2 ); - } - - // Create Animation Object: - animation[ size ] = show ? distance : 0; - animation[ position ] = show ? 0 : distance / 2; - - // Animate - animate.animate( animation, { - queue: false, - duration: o.duration, - easing: o.easing, - complete: function() { - if ( !show ) { - el.hide(); - } - $.effects.restore( el, props ); - $.effects.removeWrapper( el ); - done(); - } - }); - - }; - -})(jQuery); - -(function( $, undefined ) { - - $.effects.effect.drop = function( o, done ) { - - var el = $( this ), - props = [ "position", "top", "bottom", "left", "right", "opacity", "height", "width" ], - mode = $.effects.setMode( el, o.mode || "hide" ), - show = mode === "show", - direction = o.direction || "left", - ref = ( direction === "up" || direction === "down" ) ? "top" : "left", - motion = ( direction === "up" || direction === "left" ) ? "pos" : "neg", - animation = { - opacity: show ? 1 : 0 - }, - distance; - - // Adjust - $.effects.save( el, props ); - el.show(); - $.effects.createWrapper( el ); - - distance = o.distance || el[ ref === "top" ? "outerHeight": "outerWidth" ]( true ) / 2; - - if ( show ) { - el - .css( "opacity", 0 ) - .css( ref, motion === "pos" ? -distance : distance ); - } - - // Animation - animation[ ref ] = ( show ? - ( motion === "pos" ? "+=" : "-=" ) : - ( motion === "pos" ? "-=" : "+=" ) ) + - distance; - - // Animate - el.animate( animation, { - queue: false, - duration: o.duration, - easing: o.easing, - complete: function() { - if ( mode === "hide" ) { - el.hide(); - } - $.effects.restore( el, props ); - $.effects.removeWrapper( el ); - done(); - } - }); - }; - -})(jQuery); - -(function( $, undefined ) { - - $.effects.effect.explode = function( o, done ) { - - var rows = o.pieces ? Math.round( Math.sqrt( o.pieces ) ) : 3, - cells = rows, - el = $( this ), - mode = $.effects.setMode( el, o.mode || "hide" ), - show = mode === "show", - - // show and then visibility:hidden the element before calculating offset - offset = el.show().css( "visibility", "hidden" ).offset(), - - // width and height of a piece - width = Math.ceil( el.outerWidth() / cells ), - height = Math.ceil( el.outerHeight() / rows ), - pieces = [], - - // loop - i, j, left, top, mx, my; - - // children animate complete: - function childComplete() { - pieces.push( this ); - if ( pieces.length === rows * cells ) { - animComplete(); - } - } - - // clone the element for each row and cell. - for( i = 0; i < rows ; i++ ) { // ===> - top = offset.top + i * height; - my = i - ( rows - 1 ) / 2 ; - - for( j = 0; j < cells ; j++ ) { // ||| - left = offset.left + j * width; - mx = j - ( cells - 1 ) / 2 ; - - // Create a clone of the now hidden main element that will be absolute positioned - // within a wrapper div off the -left and -top equal to size of our pieces - el - .clone() - .appendTo( "body" ) - .wrap( "<div></div>" ) - .css({ - position: "absolute", - visibility: "visible", - left: -j * width, - top: -i * height - }) - - // select the wrapper - make it overflow: hidden and absolute positioned based on - // where the original was located +left and +top equal to the size of pieces - .parent() - .addClass( "ui-effects-explode" ) - .css({ - position: "absolute", - overflow: "hidden", - width: width, - height: height, - left: left + ( show ? mx * width : 0 ), - top: top + ( show ? my * height : 0 ), - opacity: show ? 0 : 1 - }).animate({ - left: left + ( show ? 0 : mx * width ), - top: top + ( show ? 0 : my * height ), - opacity: show ? 1 : 0 - }, o.duration || 500, o.easing, childComplete ); - } - } - - function animComplete() { - el.css({ - visibility: "visible" - }); - $( pieces ).remove(); - if ( !show ) { - el.hide(); - } - done(); - } - }; - -})(jQuery); - -(function( $, undefined ) { - - $.effects.effect.fade = function( o, done ) { - var el = $( this ), - mode = $.effects.setMode( el, o.mode || "toggle" ); - - el.animate({ - opacity: mode - }, { - queue: false, - duration: o.duration, - easing: o.easing, - complete: done - }); - }; - -})( jQuery ); - -(function( $, undefined ) { - - $.effects.effect.fold = function( o, done ) { - - // Create element - var el = $( this ), - props = [ "position", "top", "bottom", "left", "right", "height", "width" ], - mode = $.effects.setMode( el, o.mode || "hide" ), - show = mode === "show", - hide = mode === "hide", - size = o.size || 15, - percent = /([0-9]+)%/.exec( size ), - horizFirst = !!o.horizFirst, - widthFirst = show !== horizFirst, - ref = widthFirst ? [ "width", "height" ] : [ "height", "width" ], - duration = o.duration / 2, - wrapper, distance, - animation1 = {}, - animation2 = {}; - - $.effects.save( el, props ); - el.show(); - - // Create Wrapper - wrapper = $.effects.createWrapper( el ).css({ - overflow: "hidden" - }); - distance = widthFirst ? - [ wrapper.width(), wrapper.height() ] : - [ wrapper.height(), wrapper.width() ]; - - if ( percent ) { - size = parseInt( percent[ 1 ], 10 ) / 100 * distance[ hide ? 0 : 1 ]; - } - if ( show ) { - wrapper.css( horizFirst ? { - height: 0, - width: size - } : { - height: size, - width: 0 - }); - } - - // Animation - animation1[ ref[ 0 ] ] = show ? distance[ 0 ] : size; - animation2[ ref[ 1 ] ] = show ? distance[ 1 ] : 0; - - // Animate - wrapper - .animate( animation1, duration, o.easing ) - .animate( animation2, duration, o.easing, function() { - if ( hide ) { - el.hide(); - } - $.effects.restore( el, props ); - $.effects.removeWrapper( el ); - done(); - }); - - }; - -})(jQuery); - -(function( $, undefined ) { - - $.effects.effect.highlight = function( o, done ) { - var elem = $( this ), - props = [ "backgroundImage", "backgroundColor", "opacity" ], - mode = $.effects.setMode( elem, o.mode || "show" ), - animation = { - backgroundColor: elem.css( "backgroundColor" ) - }; - - if (mode === "hide") { - animation.opacity = 0; - } - - $.effects.save( elem, props ); - - elem - .show() - .css({ - backgroundImage: "none", - backgroundColor: o.color || "#ffff99" - }) - .animate( animation, { - queue: false, - duration: o.duration, - easing: o.easing, - complete: function() { - if ( mode === "hide" ) { - elem.hide(); - } - $.effects.restore( elem, props ); - done(); - } - }); - }; - -})(jQuery); - -(function( $, undefined ) { - - $.effects.effect.pulsate = function( o, done ) { - var elem = $( this ), - mode = $.effects.setMode( elem, o.mode || "show" ), - show = mode === "show", - hide = mode === "hide", - showhide = ( show || mode === "hide" ), - - // showing or hiding leaves of the "last" animation - anims = ( ( o.times || 5 ) * 2 ) + ( showhide ? 1 : 0 ), - duration = o.duration / anims, - animateTo = 0, - queue = elem.queue(), - queuelen = queue.length, - i; - - if ( show || !elem.is(":visible")) { - elem.css( "opacity", 0 ).show(); - animateTo = 1; - } - - // anims - 1 opacity "toggles" - for ( i = 1; i < anims; i++ ) { - elem.animate({ - opacity: animateTo - }, duration, o.easing ); - animateTo = 1 - animateTo; - } - - elem.animate({ - opacity: animateTo - }, duration, o.easing); - - elem.queue(function() { - if ( hide ) { - elem.hide(); - } - done(); - }); - - // We just queued up "anims" animations, we need to put them next in the queue - if ( queuelen > 1 ) { - queue.splice.apply( queue, - [ 1, 0 ].concat( queue.splice( queuelen, anims + 1 ) ) ); - } - elem.dequeue(); - }; - -})(jQuery); - -(function( $, undefined ) { - - $.effects.effect.puff = function( o, done ) { - var elem = $( this ), - mode = $.effects.setMode( elem, o.mode || "hide" ), - hide = mode === "hide", - percent = parseInt( o.percent, 10 ) || 150, - factor = percent / 100, - original = { - height: elem.height(), - width: elem.width() - }; - - $.extend( o, { - effect: "scale", - queue: false, - fade: true, - mode: mode, - complete: done, - percent: hide ? percent : 100, - from: hide ? - original : - { - height: original.height * factor, - width: original.width * factor - } - }); - - elem.effect( o ); - }; - - $.effects.effect.scale = function( o, done ) { - - // Create element - var el = $( this ), - options = $.extend( true, {}, o ), - mode = $.effects.setMode( el, o.mode || "effect" ), - percent = parseInt( o.percent, 10 ) || - ( parseInt( o.percent, 10 ) === 0 ? 0 : ( mode === "hide" ? 0 : 100 ) ), - direction = o.direction || "both", - origin = o.origin, - original = { - height: el.height(), - width: el.width(), - outerHeight: el.outerHeight(), - outerWidth: el.outerWidth() - }, - factor = { - y: direction !== "horizontal" ? (percent / 100) : 1, - x: direction !== "vertical" ? (percent / 100) : 1 - }; - - // We are going to pass this effect to the size effect: - options.effect = "size"; - options.queue = false; - options.complete = done; - - // Set default origin and restore for show/hide - if ( mode !== "effect" ) { - options.origin = origin || ["middle","center"]; - options.restore = true; - } - - options.from = o.from || ( mode === "show" ? { height: 0, width: 0 } : original ); - options.to = { - height: original.height * factor.y, - width: original.width * factor.x, - outerHeight: original.outerHeight * factor.y, - outerWidth: original.outerWidth * factor.x - }; - - // Fade option to support puff - if ( options.fade ) { - if ( mode === "show" ) { - options.from.opacity = 0; - options.to.opacity = 1; - } - if ( mode === "hide" ) { - options.from.opacity = 1; - options.to.opacity = 0; - } - } - - // Animate - el.effect( options ); - - }; - - $.effects.effect.size = function( o, done ) { - - // Create element - var el = $( this ), - props = [ "position", "top", "bottom", "left", "right", "width", "height", "overflow", "opacity" ], - - // Always restore - props1 = [ "position", "top", "bottom", "left", "right", "overflow", "opacity" ], - - // Copy for children - props2 = [ "width", "height", "overflow" ], - cProps = [ "fontSize" ], - vProps = [ "borderTopWidth", "borderBottomWidth", "paddingTop", "paddingBottom" ], - hProps = [ "borderLeftWidth", "borderRightWidth", "paddingLeft", "paddingRight" ], - - // Set options - mode = $.effects.setMode( el, o.mode || "effect" ), - restore = o.restore || mode !== "effect", - scale = o.scale || "both", - origin = o.origin || [ "middle", "center" ], - original, baseline, factor, - position = el.css( "position" ); - - if ( mode === "show" ) { - el.show(); - } - original = { - height: el.height(), - width: el.width(), - outerHeight: el.outerHeight(), - outerWidth: el.outerWidth() - }; - - el.from = o.from || original; - el.to = o.to || original; - - // Set scaling factor - factor = { - from: { - y: el.from.height / original.height, - x: el.from.width / original.width - }, - to: { - y: el.to.height / original.height, - x: el.to.width / original.width - } - }; - - // Scale the css box - if ( scale === "box" || scale === "both" ) { - - // Vertical props scaling - if ( factor.from.y !== factor.to.y ) { - props = props.concat( vProps ); - el.from = $.effects.setTransition( el, vProps, factor.from.y, el.from ); - el.to = $.effects.setTransition( el, vProps, factor.to.y, el.to ); - } - - // Horizontal props scaling - if ( factor.from.x !== factor.to.x ) { - props = props.concat( hProps ); - el.from = $.effects.setTransition( el, hProps, factor.from.x, el.from ); - el.to = $.effects.setTransition( el, hProps, factor.to.x, el.to ); - } - } - - // Scale the content - if ( scale === "content" || scale === "both" ) { - - // Vertical props scaling - if ( factor.from.y !== factor.to.y ) { - props = props.concat( cProps ); - el.from = $.effects.setTransition( el, cProps, factor.from.y, el.from ); - el.to = $.effects.setTransition( el, cProps, factor.to.y, el.to ); - } - } - - $.effects.save( el, restore ? props : props1 ); - el.show(); - $.effects.createWrapper( el ); - el.css( "overflow", "hidden" ).css( el.from ); - - // Adjust - if (origin) { // Calculate baseline shifts - baseline = $.effects.getBaseline( origin, original ); - el.from.top = ( original.outerHeight - el.outerHeight() ) * baseline.y; - el.from.left = ( original.outerWidth - el.outerWidth() ) * baseline.x; - el.to.top = ( original.outerHeight - el.to.outerHeight ) * baseline.y; - el.to.left = ( original.outerWidth - el.to.outerWidth ) * baseline.x; - } - el.css( el.from ); // set top & left - - // Animate - if ( scale === "content" || scale === "both" ) { // Scale the children - - // Add margins/font-size - vProps = vProps.concat([ "marginTop", "marginBottom" ]).concat(cProps); - hProps = hProps.concat([ "marginLeft", "marginRight" ]); - props2 = props.concat(vProps).concat(hProps); - - el.find( "*[width]" ).each( function(){ - var child = $( this ), - c_original = { - height: child.height(), - width: child.width() - }; - if (restore) { - $.effects.save(child, props2); - } - - child.from = { - height: c_original.height * factor.from.y, - width: c_original.width * factor.from.x - }; - child.to = { - height: c_original.height * factor.to.y, - width: c_original.width * factor.to.x - }; - - // Vertical props scaling - if ( factor.from.y !== factor.to.y ) { - child.from = $.effects.setTransition( child, vProps, factor.from.y, child.from ); - child.to = $.effects.setTransition( child, vProps, factor.to.y, child.to ); - } - - // Horizontal props scaling - if ( factor.from.x !== factor.to.x ) { - child.from = $.effects.setTransition( child, hProps, factor.from.x, child.from ); - child.to = $.effects.setTransition( child, hProps, factor.to.x, child.to ); - } - - // Animate children - child.css( child.from ); - child.animate( child.to, o.duration, o.easing, function() { - - // Restore children - if ( restore ) { - $.effects.restore( child, props2 ); - } - }); - }); - } - - // Animate - el.animate( el.to, { - queue: false, - duration: o.duration, - easing: o.easing, - complete: function() { - if ( el.to.opacity === 0 ) { - el.css( "opacity", el.from.opacity ); - } - if( mode === "hide" ) { - el.hide(); - } - $.effects.restore( el, restore ? props : props1 ); - if ( !restore ) { - - // we need to calculate our new positioning based on the scaling - if ( position === "static" ) { - el.css({ - position: "relative", - top: el.to.top, - left: el.to.left - }); - } else { - $.each([ "top", "left" ], function( idx, pos ) { - el.css( pos, function( _, str ) { - var val = parseInt( str, 10 ), - toRef = idx ? el.to.left : el.to.top; - - // if original was "auto", recalculate the new value from wrapper - if ( str === "auto" ) { - return toRef + "px"; - } - - return val + toRef + "px"; - }); - }); - } - } - - $.effects.removeWrapper( el ); - done(); - } - }); - - }; - -})(jQuery); - -(function( $, undefined ) { - - $.effects.effect.shake = function( o, done ) { - - var el = $( this ), - props = [ "position", "top", "bottom", "left", "right", "height", "width" ], - mode = $.effects.setMode( el, o.mode || "effect" ), - direction = o.direction || "left", - distance = o.distance || 20, - times = o.times || 3, - anims = times * 2 + 1, - speed = Math.round(o.duration/anims), - ref = (direction === "up" || direction === "down") ? "top" : "left", - positiveMotion = (direction === "up" || direction === "left"), - animation = {}, - animation1 = {}, - animation2 = {}, - i, - - // we will need to re-assemble the queue to stack our animations in place - queue = el.queue(), - queuelen = queue.length; - - $.effects.save( el, props ); - el.show(); - $.effects.createWrapper( el ); - - // Animation - animation[ ref ] = ( positiveMotion ? "-=" : "+=" ) + distance; - animation1[ ref ] = ( positiveMotion ? "+=" : "-=" ) + distance * 2; - animation2[ ref ] = ( positiveMotion ? "-=" : "+=" ) + distance * 2; - - // Animate - el.animate( animation, speed, o.easing ); - - // Shakes - for ( i = 1; i < times; i++ ) { - el.animate( animation1, speed, o.easing ).animate( animation2, speed, o.easing ); - } - el - .animate( animation1, speed, o.easing ) - .animate( animation, speed / 2, o.easing ) - .queue(function() { - if ( mode === "hide" ) { - el.hide(); - } - $.effects.restore( el, props ); - $.effects.removeWrapper( el ); - done(); - }); - - // inject all the animations we just queued to be first in line (after "inprogress") - if ( queuelen > 1) { - queue.splice.apply( queue, - [ 1, 0 ].concat( queue.splice( queuelen, anims + 1 ) ) ); - } - el.dequeue(); - - }; - -})(jQuery); - -(function( $, undefined ) { - - $.effects.effect.slide = function( o, done ) { - - // Create element - var el = $( this ), - props = [ "position", "top", "bottom", "left", "right", "width", "height" ], - mode = $.effects.setMode( el, o.mode || "show" ), - show = mode === "show", - direction = o.direction || "left", - ref = (direction === "up" || direction === "down") ? "top" : "left", - positiveMotion = (direction === "up" || direction === "left"), - distance, - animation = {}; - - // Adjust - $.effects.save( el, props ); - el.show(); - distance = o.distance || el[ ref === "top" ? "outerHeight" : "outerWidth" ]( true ); - - $.effects.createWrapper( el ).css({ - overflow: "hidden" - }); - - if ( show ) { - el.css( ref, positiveMotion ? (isNaN(distance) ? "-" + distance : -distance) : distance ); - } - - // Animation - animation[ ref ] = ( show ? - ( positiveMotion ? "+=" : "-=") : - ( positiveMotion ? "-=" : "+=")) + - distance; - - // Animate - el.animate( animation, { - queue: false, - duration: o.duration, - easing: o.easing, - complete: function() { - if ( mode === "hide" ) { - el.hide(); - } - $.effects.restore( el, props ); - $.effects.removeWrapper( el ); - done(); - } - }); - }; - -})(jQuery); - -(function( $, undefined ) { - - $.effects.effect.transfer = function( o, done ) { - var elem = $( this ), - target = $( o.to ), - targetFixed = target.css( "position" ) === "fixed", - body = $("body"), - fixTop = targetFixed ? body.scrollTop() : 0, - fixLeft = targetFixed ? body.scrollLeft() : 0, - endPosition = target.offset(), - animation = { - top: endPosition.top - fixTop , - left: endPosition.left - fixLeft , - height: target.innerHeight(), - width: target.innerWidth() - }, - startPosition = elem.offset(), - transfer = $( '<div class="ui-effects-transfer"></div>' ) - .appendTo( document.body ) - .addClass( o.className ) - .css({ - top: startPosition.top - fixTop , - left: startPosition.left - fixLeft , - height: elem.innerHeight(), - width: elem.innerWidth(), - position: targetFixed ? "fixed" : "absolute" - }) - .animate( animation, o.duration, o.easing, function() { - transfer.remove(); - done(); - }); - }; - -})(jQuery); - -(function( $, undefined ) { - - var mouseHandled = false; - - $.widget( "ui.menu", { - version: "1.9.0", - defaultElement: "<ul>", - delay: 300, - options: { - icons: { - submenu: "ui-icon-carat-1-e" - }, - menus: "ul", - position: { - my: "left top", - at: "right top" - }, - role: "menu", - - // callbacks - blur: null, - focus: null, - select: null - }, - - _create: function() { - this.activeMenu = this.element; - this.element - .uniqueId() - .addClass( "ui-menu ui-widget ui-widget-content ui-corner-all" ) - .toggleClass( "ui-menu-icons", !!this.element.find( ".ui-icon" ).length ) - .attr({ - role: this.options.role, - tabIndex: 0 - }) - // need to catch all clicks on disabled menu - // not possible through _on - .bind( "click" + this.eventNamespace, $.proxy(function( event ) { - if ( this.options.disabled ) { - event.preventDefault(); - } - }, this )); - - if ( this.options.disabled ) { - this.element - .addClass( "ui-state-disabled" ) - .attr( "aria-disabled", "true" ); - } - - this._on({ - // Prevent focus from sticking to links inside menu after clicking - // them (focus should always stay on UL during navigation). - "mousedown .ui-menu-item > a": function( event ) { - event.preventDefault(); - }, - "click .ui-state-disabled > a": function( event ) { - event.preventDefault(); - }, - "click .ui-menu-item:has(a)": function( event ) { - var target = $( event.target ).closest( ".ui-menu-item" ); - if ( !mouseHandled && target.not( ".ui-state-disabled" ).length ) { - mouseHandled = true; - - this.select( event ); - // Open submenu on click - if ( target.has( ".ui-menu" ).length ) { - this.expand( event ); - } else if ( !this.element.is( ":focus" ) ) { - // Redirect focus to the menu - this.element.trigger( "focus", [ true ] ); - - // If the active item is on the top level, let it stay active. - // Otherwise, blur the active item since it is no longer visible. - if ( this.active && this.active.parents( ".ui-menu" ).length === 1 ) { - clearTimeout( this.timer ); - } - } - } - }, - "mouseenter .ui-menu-item": function( event ) { - var target = $( event.currentTarget ); - // Remove ui-state-active class from siblings of the newly focused menu item - // to avoid a jump caused by adjacent elements both having a class with a border - target.siblings().children( ".ui-state-active" ).removeClass( "ui-state-active" ); - this.focus( event, target ); - }, - mouseleave: "collapseAll", - "mouseleave .ui-menu": "collapseAll", - focus: function( event, keepActiveItem ) { - // If there's already an active item, keep it active - // If not, activate the first item - var item = this.active || this.element.children( ".ui-menu-item" ).eq( 0 ); - - if ( !keepActiveItem ) { - this.focus( event, item ); - } - }, - blur: function( event ) { - this._delay(function() { - if ( !$.contains( this.element[0], this.document[0].activeElement ) ) { - this.collapseAll( event ); - } - }); - }, - keydown: "_keydown" - }); - - this.refresh(); - - // Clicks outside of a menu collapse any open menus - this._on( this.document, { - click: function( event ) { - if ( !$( event.target ).closest( ".ui-menu" ).length ) { - this.collapseAll( event ); - } - - // Reset the mouseHandled flag - mouseHandled = false; - } - }); - }, - - _destroy: function() { - // Destroy (sub)menus - this.element - .removeAttr( "aria-activedescendant" ) - .find( ".ui-menu" ).andSelf() - .removeClass( "ui-menu ui-widget ui-widget-content ui-corner-all ui-menu-icons" ) - .removeAttr( "role" ) - .removeAttr( "tabIndex" ) - .removeAttr( "aria-labelledby" ) - .removeAttr( "aria-expanded" ) - .removeAttr( "aria-hidden" ) - .removeAttr( "aria-disabled" ) - .removeUniqueId() - .show(); - - // Destroy menu items - this.element.find( ".ui-menu-item" ) - .removeClass( "ui-menu-item" ) - .removeAttr( "role" ) - .removeAttr( "aria-disabled" ) - .children( "a" ) - .removeUniqueId() - .removeClass( "ui-corner-all ui-state-hover" ) - .removeAttr( "tabIndex" ) - .removeAttr( "role" ) - .removeAttr( "aria-haspopup" ) - .children().each( function() { - var elem = $( this ); - if ( elem.data( "ui-menu-submenu-carat" ) ) { - elem.remove(); - } - }); - - // Destroy menu dividers - this.element.find( ".ui-menu-divider" ).removeClass( "ui-menu-divider ui-widget-content" ); - }, - - _keydown: function( event ) { - var match, prev, character, skip, regex, - preventDefault = true; - - function escape( value ) { - return value.replace( /[\-\[\]{}()*+?.,\\\^$|#\s]/g, "\\$&" ); - } - - switch ( event.keyCode ) { - case $.ui.keyCode.PAGE_UP: - this.previousPage( event ); - break; - case $.ui.keyCode.PAGE_DOWN: - this.nextPage( event ); - break; - case $.ui.keyCode.HOME: - this._move( "first", "first", event ); - break; - case $.ui.keyCode.END: - this._move( "last", "last", event ); - break; - case $.ui.keyCode.UP: - this.previous( event ); - break; - case $.ui.keyCode.DOWN: - this.next( event ); - break; - case $.ui.keyCode.LEFT: - this.collapse( event ); - break; - case $.ui.keyCode.RIGHT: - if ( this.active && !this.active.is( ".ui-state-disabled" ) ) { - this.expand( event ); - } - break; - case $.ui.keyCode.ENTER: - case $.ui.keyCode.SPACE: - this._activate( event ); - break; - case $.ui.keyCode.ESCAPE: - this.collapse( event ); - break; - default: - preventDefault = false; - prev = this.previousFilter || ""; - character = String.fromCharCode( event.keyCode ); - skip = false; - - clearTimeout( this.filterTimer ); - - if ( character === prev ) { - skip = true; - } else { - character = prev + character; - } - - regex = new RegExp( "^" + escape( character ), "i" ); - match = this.activeMenu.children( ".ui-menu-item" ).filter(function() { - return regex.test( $( this ).children( "a" ).text() ); - }); - match = skip && match.index( this.active.next() ) !== -1 ? - this.active.nextAll( ".ui-menu-item" ) : - match; - - // If no matches on the current filter, reset to the last character pressed - // to move down the menu to the first item that starts with that character - if ( !match.length ) { - character = String.fromCharCode( event.keyCode ); - regex = new RegExp( "^" + escape( character ), "i" ); - match = this.activeMenu.children( ".ui-menu-item" ).filter(function() { - return regex.test( $( this ).children( "a" ).text() ); - }); - } - - if ( match.length ) { - this.focus( event, match ); - if ( match.length > 1 ) { - this.previousFilter = character; - this.filterTimer = this._delay(function() { - delete this.previousFilter; - }, 1000 ); - } else { - delete this.previousFilter; - } - } else { - delete this.previousFilter; - } - } - - if ( preventDefault ) { - event.preventDefault(); - } - }, - - _activate: function( event ) { - if ( !this.active.is( ".ui-state-disabled" ) ) { - if ( this.active.children( "a[aria-haspopup='true']" ).length ) { - this.expand( event ); - } else { - this.select( event ); - } - } - }, - - refresh: function() { - // Initialize nested menus - var menus, - icon = this.options.icons.submenu, - submenus = this.element.find( this.options.menus + ":not(.ui-menu)" ) - .addClass( "ui-menu ui-widget ui-widget-content ui-corner-all" ) - .hide() - .attr({ - role: this.options.role, - "aria-hidden": "true", - "aria-expanded": "false" - }); - - // Don't refresh list items that are already adapted - menus = submenus.add( this.element ); - - menus.children( ":not(.ui-menu-item):has(a)" ) - .addClass( "ui-menu-item" ) - .attr( "role", "presentation" ) - .children( "a" ) - .uniqueId() - .addClass( "ui-corner-all" ) - .attr({ - tabIndex: -1, - role: this._itemRole() - }); - - // Initialize unlinked menu-items containing spaces and/or dashes only as dividers - menus.children( ":not(.ui-menu-item)" ).each(function() { - var item = $( this ); - // hyphen, em dash, en dash - if ( !/[^\-—–\s]/.test( item.text() ) ) { - item.addClass( "ui-widget-content ui-menu-divider" ); - } - }); - - // Add aria-disabled attribute to any disabled menu item - menus.children( ".ui-state-disabled" ).attr( "aria-disabled", "true" ); - - submenus.each(function() { - var menu = $( this ), - item = menu.prev( "a" ), - submenuCarat = $( "<span>" ) - .addClass( "ui-menu-icon ui-icon " + icon ) - .data( "ui-menu-submenu-carat", true ); - - item - .attr( "aria-haspopup", "true" ) - .prepend( submenuCarat ); - menu.attr( "aria-labelledby", item.attr( "id" ) ); - }); - - // If the active item has been removed, blur the menu - if ( this.active && !$.contains( this.element[ 0 ], this.active[ 0 ] ) ) { - this.blur(); - } - }, - - _itemRole: function() { - return { - menu: "menuitem", - listbox: "option" - }[ this.options.role ]; - }, - - focus: function( event, item ) { - var nested, focused; - this.blur( event, event && event.type === "focus" ); - - this._scrollIntoView( item ); - - this.active = item.first(); - focused = this.active.children( "a" ).addClass( "ui-state-focus" ); - // Only update aria-activedescendant if there's a role - // otherwise we assume focus is managed elsewhere - if ( this.options.role ) { - this.element.attr( "aria-activedescendant", focused.attr( "id" ) ); - } - - // Highlight active parent menu item, if any - this.active - .parent() - .closest( ".ui-menu-item" ) - .children( "a:first" ) - .addClass( "ui-state-active" ); - - if ( event && event.type === "keydown" ) { - this._close(); - } else { - this.timer = this._delay(function() { - this._close(); - }, this.delay ); - } - - nested = item.children( ".ui-menu" ); - if ( nested.length && ( /^mouse/.test( event.type ) ) ) { - this._startOpening(nested); - } - this.activeMenu = item.parent(); - - this._trigger( "focus", event, { item: item } ); - }, - - _scrollIntoView: function( item ) { - var borderTop, paddingTop, offset, scroll, elementHeight, itemHeight; - if ( this._hasScroll() ) { - borderTop = parseFloat( $.css( this.activeMenu[0], "borderTopWidth" ) ) || 0; - paddingTop = parseFloat( $.css( this.activeMenu[0], "paddingTop" ) ) || 0; - offset = item.offset().top - this.activeMenu.offset().top - borderTop - paddingTop; - scroll = this.activeMenu.scrollTop(); - elementHeight = this.activeMenu.height(); - itemHeight = item.height(); - - if ( offset < 0 ) { - this.activeMenu.scrollTop( scroll + offset ); - } else if ( offset + itemHeight > elementHeight ) { - this.activeMenu.scrollTop( scroll + offset - elementHeight + itemHeight ); - } - } - }, - - blur: function( event, fromFocus ) { - if ( !fromFocus ) { - clearTimeout( this.timer ); - } - - if ( !this.active ) { - return; - } - - this.active.children( "a" ).removeClass( "ui-state-focus" ); - this.active = null; - - this._trigger( "blur", event, { item: this.active } ); - }, - - _startOpening: function( submenu ) { - clearTimeout( this.timer ); - - // Don't open if already open fixes a Firefox bug that caused a .5 pixel - // shift in the submenu position when mousing over the carat icon - if ( submenu.attr( "aria-hidden" ) !== "true" ) { - return; - } - - this.timer = this._delay(function() { - this._close(); - this._open( submenu ); - }, this.delay ); - }, - - _open: function( submenu ) { - var position = $.extend({ - of: this.active - }, this.options.position ); - - clearTimeout( this.timer ); - this.element.find( ".ui-menu" ).not( submenu.parents( ".ui-menu" ) ) - .hide() - .attr( "aria-hidden", "true" ); - - submenu - .show() - .removeAttr( "aria-hidden" ) - .attr( "aria-expanded", "true" ) - .position( position ); - }, - - collapseAll: function( event, all ) { - clearTimeout( this.timer ); - this.timer = this._delay(function() { - // If we were passed an event, look for the submenu that contains the event - var currentMenu = all ? this.element : - $( event && event.target ).closest( this.element.find( ".ui-menu" ) ); - - // If we found no valid submenu ancestor, use the main menu to close all sub menus anyway - if ( !currentMenu.length ) { - currentMenu = this.element; - } - - this._close( currentMenu ); - - this.blur( event ); - this.activeMenu = currentMenu; - }, this.delay ); - }, - - // With no arguments, closes the currently active menu - if nothing is active - // it closes all menus. If passed an argument, it will search for menus BELOW - _close: function( startMenu ) { - if ( !startMenu ) { - startMenu = this.active ? this.active.parent() : this.element; - } - - startMenu - .find( ".ui-menu" ) - .hide() - .attr( "aria-hidden", "true" ) - .attr( "aria-expanded", "false" ) - .end() - .find( "a.ui-state-active" ) - .removeClass( "ui-state-active" ); - }, - - collapse: function( event ) { - var newItem = this.active && - this.active.parent().closest( ".ui-menu-item", this.element ); - if ( newItem && newItem.length ) { - this._close(); - this.focus( event, newItem ); - } - }, - - expand: function( event ) { - var newItem = this.active && - this.active - .children( ".ui-menu " ) - .children( ".ui-menu-item" ) - .first(); - - if ( newItem && newItem.length ) { - this._open( newItem.parent() ); - - // Delay so Firefox will not hide activedescendant change in expanding submenu from AT - this._delay(function() { - this.focus( event, newItem ); - }); - } - }, - - next: function( event ) { - this._move( "next", "first", event ); - }, - - previous: function( event ) { - this._move( "prev", "last", event ); - }, - - isFirstItem: function() { - return this.active && !this.active.prevAll( ".ui-menu-item" ).length; - }, - - isLastItem: function() { - return this.active && !this.active.nextAll( ".ui-menu-item" ).length; - }, - - _move: function( direction, filter, event ) { - var next; - if ( this.active ) { - if ( direction === "first" || direction === "last" ) { - next = this.active - [ direction === "first" ? "prevAll" : "nextAll" ]( ".ui-menu-item" ) - .eq( -1 ); - } else { - next = this.active - [ direction + "All" ]( ".ui-menu-item" ) - .eq( 0 ); - } - } - if ( !next || !next.length || !this.active ) { - next = this.activeMenu.children( ".ui-menu-item" )[ filter ](); - } - - this.focus( event, next ); - }, - - nextPage: function( event ) { - var item, base, height; - - if ( !this.active ) { - this.next( event ); - return; - } - if ( this.isLastItem() ) { - return; - } - if ( this._hasScroll() ) { - base = this.active.offset().top; - height = this.element.height(); - this.active.nextAll( ".ui-menu-item" ).each(function() { - item = $( this ); - return item.offset().top - base - height < 0; - }); - - this.focus( event, item ); - } else { - this.focus( event, this.activeMenu.children( ".ui-menu-item" ) - [ !this.active ? "first" : "last" ]() ); - } - }, - - previousPage: function( event ) { - var item, base, height; - if ( !this.active ) { - this.next( event ); - return; - } - if ( this.isFirstItem() ) { - return; - } - if ( this._hasScroll() ) { - base = this.active.offset().top; - height = this.element.height(); - this.active.prevAll( ".ui-menu-item" ).each(function() { - item = $( this ); - return item.offset().top - base + height > 0; - }); - - this.focus( event, item ); - } else { - this.focus( event, this.activeMenu.children( ".ui-menu-item" ).first() ); - } - }, - - _hasScroll: function() { - return this.element.outerHeight() < this.element.prop( "scrollHeight" ); - }, - - select: function( event ) { - // TODO: It should never be possible to not have an active item at this - // point, but the tests don't trigger mouseenter before click. - this.active = this.active || $( event.target ).closest( ".ui-menu-item" ); - var ui = { item: this.active }; - if ( !this.active.has( ".ui-menu" ).length ) { - this.collapseAll( event, true ); - } - this._trigger( "select", event, ui ); - } - }); - -}( jQuery )); - -(function( $, undefined ) { - - $.ui = $.ui || {}; - - var cachedScrollbarWidth, - max = Math.max, - abs = Math.abs, - round = Math.round, - rhorizontal = /left|center|right/, - rvertical = /top|center|bottom/, - roffset = /[\+\-]\d+%?/, - rposition = /^\w+/, - rpercent = /%$/, - _position = $.fn.position; - - function getOffsets( offsets, width, height ) { - return [ - parseInt( offsets[ 0 ], 10 ) * ( rpercent.test( offsets[ 0 ] ) ? width / 100 : 1 ), - parseInt( offsets[ 1 ], 10 ) * ( rpercent.test( offsets[ 1 ] ) ? height / 100 : 1 ) - ]; - } - function parseCss( element, property ) { - return parseInt( $.css( element, property ), 10 ) || 0; - } - - $.position = { - scrollbarWidth: function() { - if ( cachedScrollbarWidth !== undefined ) { - return cachedScrollbarWidth; - } - var w1, w2, - div = $( "<div style='display:block;width:50px;height:50px;overflow:hidden;'><div style='height:100px;width:auto;'></div></div>" ), - innerDiv = div.children()[0]; - - $( "body" ).append( div ); - w1 = innerDiv.offsetWidth; - div.css( "overflow", "scroll" ); - - w2 = innerDiv.offsetWidth; - - if ( w1 === w2 ) { - w2 = div[0].clientWidth; - } - - div.remove(); - - return (cachedScrollbarWidth = w1 - w2); - }, - getScrollInfo: function( within ) { - var overflowX = within.isWindow ? "" : within.element.css( "overflow-x" ), - overflowY = within.isWindow ? "" : within.element.css( "overflow-y" ), - hasOverflowX = overflowX === "scroll" || - ( overflowX === "auto" && within.width < within.element[0].scrollWidth ), - hasOverflowY = overflowY === "scroll" || - ( overflowY === "auto" && within.height < within.element[0].scrollHeight ); - return { - width: hasOverflowX ? $.position.scrollbarWidth() : 0, - height: hasOverflowY ? $.position.scrollbarWidth() : 0 - }; - }, - getWithinInfo: function( element ) { - var withinElement = $( element || window ), - isWindow = $.isWindow( withinElement[0] ); - return { - element: withinElement, - isWindow: isWindow, - offset: withinElement.offset() || { left: 0, top: 0 }, - scrollLeft: withinElement.scrollLeft(), - scrollTop: withinElement.scrollTop(), - width: isWindow ? withinElement.width() : withinElement.outerWidth(), - height: isWindow ? withinElement.height() : withinElement.outerHeight() - }; - } - }; - - $.fn.position = function( options ) { - if ( !options || !options.of ) { - return _position.apply( this, arguments ); - } - - // make a copy, we don't want to modify arguments - options = $.extend( {}, options ); - - var atOffset, targetWidth, targetHeight, targetOffset, basePosition, - target = $( options.of ), - within = $.position.getWithinInfo( options.within ), - scrollInfo = $.position.getScrollInfo( within ), - targetElem = target[0], - collision = ( options.collision || "flip" ).split( " " ), - offsets = {}; - - if ( targetElem.nodeType === 9 ) { - targetWidth = target.width(); - targetHeight = target.height(); - targetOffset = { top: 0, left: 0 }; - } else if ( $.isWindow( targetElem ) ) { - targetWidth = target.width(); - targetHeight = target.height(); - targetOffset = { top: target.scrollTop(), left: target.scrollLeft() }; - } else if ( targetElem.preventDefault ) { - // force left top to allow flipping - options.at = "left top"; - targetWidth = targetHeight = 0; - targetOffset = { top: targetElem.pageY, left: targetElem.pageX }; - } else { - targetWidth = target.outerWidth(); - targetHeight = target.outerHeight(); - targetOffset = target.offset(); - } - // clone to reuse original targetOffset later - basePosition = $.extend( {}, targetOffset ); - - // force my and at to have valid horizontal and vertical positions - // if a value is missing or invalid, it will be converted to center - $.each( [ "my", "at" ], function() { - var pos = ( options[ this ] || "" ).split( " " ), - horizontalOffset, - verticalOffset; - - if ( pos.length === 1) { - pos = rhorizontal.test( pos[ 0 ] ) ? - pos.concat( [ "center" ] ) : - rvertical.test( pos[ 0 ] ) ? - [ "center" ].concat( pos ) : - [ "center", "center" ]; - } - pos[ 0 ] = rhorizontal.test( pos[ 0 ] ) ? pos[ 0 ] : "center"; - pos[ 1 ] = rvertical.test( pos[ 1 ] ) ? pos[ 1 ] : "center"; - - // calculate offsets - horizontalOffset = roffset.exec( pos[ 0 ] ); - verticalOffset = roffset.exec( pos[ 1 ] ); - offsets[ this ] = [ - horizontalOffset ? horizontalOffset[ 0 ] : 0, - verticalOffset ? verticalOffset[ 0 ] : 0 - ]; - - // reduce to just the positions without the offsets - options[ this ] = [ - rposition.exec( pos[ 0 ] )[ 0 ], - rposition.exec( pos[ 1 ] )[ 0 ] - ]; - }); - - // normalize collision option - if ( collision.length === 1 ) { - collision[ 1 ] = collision[ 0 ]; - } - - if ( options.at[ 0 ] === "right" ) { - basePosition.left += targetWidth; - } else if ( options.at[ 0 ] === "center" ) { - basePosition.left += targetWidth / 2; - } - - if ( options.at[ 1 ] === "bottom" ) { - basePosition.top += targetHeight; - } else if ( options.at[ 1 ] === "center" ) { - basePosition.top += targetHeight / 2; - } - - atOffset = getOffsets( offsets.at, targetWidth, targetHeight ); - basePosition.left += atOffset[ 0 ]; - basePosition.top += atOffset[ 1 ]; - - return this.each(function() { - var collisionPosition, using, - elem = $( this ), - elemWidth = elem.outerWidth(), - elemHeight = elem.outerHeight(), - marginLeft = parseCss( this, "marginLeft" ), - marginTop = parseCss( this, "marginTop" ), - collisionWidth = elemWidth + marginLeft + parseCss( this, "marginRight" ) + scrollInfo.width, - collisionHeight = elemHeight + marginTop + parseCss( this, "marginBottom" ) + scrollInfo.height, - position = $.extend( {}, basePosition ), - myOffset = getOffsets( offsets.my, elem.outerWidth(), elem.outerHeight() ); - - if ( options.my[ 0 ] === "right" ) { - position.left -= elemWidth; - } else if ( options.my[ 0 ] === "center" ) { - position.left -= elemWidth / 2; - } - - if ( options.my[ 1 ] === "bottom" ) { - position.top -= elemHeight; - } else if ( options.my[ 1 ] === "center" ) { - position.top -= elemHeight / 2; - } - - position.left += myOffset[ 0 ]; - position.top += myOffset[ 1 ]; - - // if the browser doesn't support fractions, then round for consistent results - if ( !$.support.offsetFractions ) { - position.left = round( position.left ); - position.top = round( position.top ); - } - - collisionPosition = { - marginLeft: marginLeft, - marginTop: marginTop - }; - - $.each( [ "left", "top" ], function( i, dir ) { - if ( $.ui.position[ collision[ i ] ] ) { - $.ui.position[ collision[ i ] ][ dir ]( position, { - targetWidth: targetWidth, - targetHeight: targetHeight, - elemWidth: elemWidth, - elemHeight: elemHeight, - collisionPosition: collisionPosition, - collisionWidth: collisionWidth, - collisionHeight: collisionHeight, - offset: [ atOffset[ 0 ] + myOffset[ 0 ], atOffset [ 1 ] + myOffset[ 1 ] ], - my: options.my, - at: options.at, - within: within, - elem : elem - }); - } - }); - - if ( $.fn.bgiframe ) { - elem.bgiframe(); - } - - if ( options.using ) { - // adds feedback as second argument to using callback, if present - using = function( props ) { - var left = targetOffset.left - position.left, - right = left + targetWidth - elemWidth, - top = targetOffset.top - position.top, - bottom = top + targetHeight - elemHeight, - feedback = { - target: { - element: target, - left: targetOffset.left, - top: targetOffset.top, - width: targetWidth, - height: targetHeight - }, - element: { - element: elem, - left: position.left, - top: position.top, - width: elemWidth, - height: elemHeight - }, - horizontal: right < 0 ? "left" : left > 0 ? "right" : "center", - vertical: bottom < 0 ? "top" : top > 0 ? "bottom" : "middle" - }; - if ( targetWidth < elemWidth && abs( left + right ) < targetWidth ) { - feedback.horizontal = "center"; - } - if ( targetHeight < elemHeight && abs( top + bottom ) < targetHeight ) { - feedback.vertical = "middle"; - } - if ( max( abs( left ), abs( right ) ) > max( abs( top ), abs( bottom ) ) ) { - feedback.important = "horizontal"; - } else { - feedback.important = "vertical"; - } - options.using.call( this, props, feedback ); - }; - } - - elem.offset( $.extend( position, { using: using } ) ); - }); - }; - - $.ui.position = { - fit: { - left: function( position, data ) { - var within = data.within, - withinOffset = within.isWindow ? within.scrollLeft : within.offset.left, - outerWidth = within.width, - collisionPosLeft = position.left - data.collisionPosition.marginLeft, - overLeft = withinOffset - collisionPosLeft, - overRight = collisionPosLeft + data.collisionWidth - outerWidth - withinOffset, - newOverRight; - - // element is wider than within - if ( data.collisionWidth > outerWidth ) { - // element is initially over the left side of within - if ( overLeft > 0 && overRight <= 0 ) { - newOverRight = position.left + overLeft + data.collisionWidth - outerWidth - withinOffset; - position.left += overLeft - newOverRight; - // element is initially over right side of within - } else if ( overRight > 0 && overLeft <= 0 ) { - position.left = withinOffset; - // element is initially over both left and right sides of within - } else { - if ( overLeft > overRight ) { - position.left = withinOffset + outerWidth - data.collisionWidth; - } else { - position.left = withinOffset; - } - } - // too far left -> align with left edge - } else if ( overLeft > 0 ) { - position.left += overLeft; - // too far right -> align with right edge - } else if ( overRight > 0 ) { - position.left -= overRight; - // adjust based on position and margin - } else { - position.left = max( position.left - collisionPosLeft, position.left ); - } - }, - top: function( position, data ) { - var within = data.within, - withinOffset = within.isWindow ? within.scrollTop : within.offset.top, - outerHeight = data.within.height, - collisionPosTop = position.top - data.collisionPosition.marginTop, - overTop = withinOffset - collisionPosTop, - overBottom = collisionPosTop + data.collisionHeight - outerHeight - withinOffset, - newOverBottom; - - // element is taller than within - if ( data.collisionHeight > outerHeight ) { - // element is initially over the top of within - if ( overTop > 0 && overBottom <= 0 ) { - newOverBottom = position.top + overTop + data.collisionHeight - outerHeight - withinOffset; - position.top += overTop - newOverBottom; - // element is initially over bottom of within - } else if ( overBottom > 0 && overTop <= 0 ) { - position.top = withinOffset; - // element is initially over both top and bottom of within - } else { - if ( overTop > overBottom ) { - position.top = withinOffset + outerHeight - data.collisionHeight; - } else { - position.top = withinOffset; - } - } - // too far up -> align with top - } else if ( overTop > 0 ) { - position.top += overTop; - // too far down -> align with bottom edge - } else if ( overBottom > 0 ) { - position.top -= overBottom; - // adjust based on position and margin - } else { - position.top = max( position.top - collisionPosTop, position.top ); - } - } - }, - flip: { - left: function( position, data ) { - var within = data.within, - withinOffset = within.offset.left + within.scrollLeft, - outerWidth = within.width, - offsetLeft = within.isWindow ? within.scrollLeft : within.offset.left, - collisionPosLeft = position.left - data.collisionPosition.marginLeft, - overLeft = collisionPosLeft - offsetLeft, - overRight = collisionPosLeft + data.collisionWidth - outerWidth - offsetLeft, - myOffset = data.my[ 0 ] === "left" ? - -data.elemWidth : - data.my[ 0 ] === "right" ? - data.elemWidth : - 0, - atOffset = data.at[ 0 ] === "left" ? - data.targetWidth : - data.at[ 0 ] === "right" ? - -data.targetWidth : - 0, - offset = -2 * data.offset[ 0 ], - newOverRight, - newOverLeft; - - if ( overLeft < 0 ) { - newOverRight = position.left + myOffset + atOffset + offset + data.collisionWidth - outerWidth - withinOffset; - if ( newOverRight < 0 || newOverRight < abs( overLeft ) ) { - position.left += myOffset + atOffset + offset; - } - } - else if ( overRight > 0 ) { - newOverLeft = position.left - data.collisionPosition.marginLeft + myOffset + atOffset + offset - offsetLeft; - if ( newOverLeft > 0 || abs( newOverLeft ) < overRight ) { - position.left += myOffset + atOffset + offset; - } - } - }, - top: function( position, data ) { - var within = data.within, - withinOffset = within.offset.top + within.scrollTop, - outerHeight = within.height, - offsetTop = within.isWindow ? within.scrollTop : within.offset.top, - collisionPosTop = position.top - data.collisionPosition.marginTop, - overTop = collisionPosTop - offsetTop, - overBottom = collisionPosTop + data.collisionHeight - outerHeight - offsetTop, - top = data.my[ 1 ] === "top", - myOffset = top ? - -data.elemHeight : - data.my[ 1 ] === "bottom" ? - data.elemHeight : - 0, - atOffset = data.at[ 1 ] === "top" ? - data.targetHeight : - data.at[ 1 ] === "bottom" ? - -data.targetHeight : - 0, - offset = -2 * data.offset[ 1 ], - newOverTop, - newOverBottom; - if ( overTop < 0 ) { - newOverBottom = position.top + myOffset + atOffset + offset + data.collisionHeight - outerHeight - withinOffset; - if ( ( position.top + myOffset + atOffset + offset) > overTop && ( newOverBottom < 0 || newOverBottom < abs( overTop ) ) ) { - position.top += myOffset + atOffset + offset; - } - } - else if ( overBottom > 0 ) { - newOverTop = position.top - data.collisionPosition.marginTop + myOffset + atOffset + offset - offsetTop; - if ( ( position.top + myOffset + atOffset + offset) > overBottom && ( newOverTop > 0 || abs( newOverTop ) < overBottom ) ) { - position.top += myOffset + atOffset + offset; - } - } - } - }, - flipfit: { - left: function() { - $.ui.position.flip.left.apply( this, arguments ); - $.ui.position.fit.left.apply( this, arguments ); - }, - top: function() { - $.ui.position.flip.top.apply( this, arguments ); - $.ui.position.fit.top.apply( this, arguments ); - } - } - }; - -// fraction support test - (function () { - var testElement, testElementParent, testElementStyle, offsetLeft, i, - body = document.getElementsByTagName( "body" )[ 0 ], - div = document.createElement( "div" ); - - //Create a "fake body" for testing based on method used in jQuery.support - testElement = document.createElement( body ? "div" : "body" ); - testElementStyle = { - visibility: "hidden", - width: 0, - height: 0, - border: 0, - margin: 0, - background: "none" - }; - if ( body ) { - $.extend( testElementStyle, { - position: "absolute", - left: "-1000px", - top: "-1000px" - }); - } - for ( i in testElementStyle ) { - testElement.style[ i ] = testElementStyle[ i ]; - } - testElement.appendChild( div ); - testElementParent = body || document.documentElement; - testElementParent.insertBefore( testElement, testElementParent.firstChild ); - - div.style.cssText = "position: absolute; left: 10.7432222px;"; - - offsetLeft = $( div ).offset().left; - $.support.offsetFractions = offsetLeft > 10 && offsetLeft < 11; - - testElement.innerHTML = ""; - testElementParent.removeChild( testElement ); - })(); - -// DEPRECATED - if ( $.uiBackCompat !== false ) { - // offset option - (function( $ ) { - var _position = $.fn.position; - $.fn.position = function( options ) { - if ( !options || !options.offset ) { - return _position.call( this, options ); - } - var offset = options.offset.split( " " ), - at = options.at.split( " " ); - if ( offset.length === 1 ) { - offset[ 1 ] = offset[ 0 ]; - } - if ( /^\d/.test( offset[ 0 ] ) ) { - offset[ 0 ] = "+" + offset[ 0 ]; - } - if ( /^\d/.test( offset[ 1 ] ) ) { - offset[ 1 ] = "+" + offset[ 1 ]; - } - if ( at.length === 1 ) { - if ( /left|center|right/.test( at[ 0 ] ) ) { - at[ 1 ] = "center"; - } else { - at[ 1 ] = at[ 0 ]; - at[ 0 ] = "center"; - } - } - return _position.call( this, $.extend( options, { - at: at[ 0 ] + offset[ 0 ] + " " + at[ 1 ] + offset[ 1 ], - offset: undefined - } ) ); - }; - }( jQuery ) ); - } - -}( jQuery ) ); - -(function( $, undefined ) { - - $.widget( "ui.progressbar", { - version: "1.9.0", - options: { - value: 0, - max: 100 - }, - - min: 0, - - _create: function() { - this.element - .addClass( "ui-progressbar ui-widget ui-widget-content ui-corner-all" ) - .attr({ - role: "progressbar", - "aria-valuemin": this.min, - "aria-valuemax": this.options.max, - "aria-valuenow": this._value() - }); - - this.valueDiv = $( "<div class='ui-progressbar-value ui-widget-header ui-corner-left'></div>" ) - .appendTo( this.element ); - - this.oldValue = this._value(); - this._refreshValue(); - }, - - _destroy: function() { - this.element - .removeClass( "ui-progressbar ui-widget ui-widget-content ui-corner-all" ) - .removeAttr( "role" ) - .removeAttr( "aria-valuemin" ) - .removeAttr( "aria-valuemax" ) - .removeAttr( "aria-valuenow" ); - - this.valueDiv.remove(); - }, - - value: function( newValue ) { - if ( newValue === undefined ) { - return this._value(); - } - - this._setOption( "value", newValue ); - return this; - }, - - _setOption: function( key, value ) { - if ( key === "value" ) { - this.options.value = value; - this._refreshValue(); - if ( this._value() === this.options.max ) { - this._trigger( "complete" ); - } - } - - this._super( key, value ); - }, - - _value: function() { - var val = this.options.value; - // normalize invalid value - if ( typeof val !== "number" ) { - val = 0; - } - return Math.min( this.options.max, Math.max( this.min, val ) ); - }, - - _percentage: function() { - return 100 * this._value() / this.options.max; - }, - - _refreshValue: function() { - var value = this.value(), - percentage = this._percentage(); - - if ( this.oldValue !== value ) { - this.oldValue = value; - this._trigger( "change" ); - } - - this.valueDiv - .toggle( value > this.min ) - .toggleClass( "ui-corner-right", value === this.options.max ) - .width( percentage.toFixed(0) + "%" ); - this.element.attr( "aria-valuenow", value ); - } - }); - -})( jQuery ); - -(function( $, undefined ) { - -// number of pages in a slider -// (how many times can you page up/down to go through the whole range) - var numPages = 5; - - $.widget( "ui.slider", $.ui.mouse, { - version: "1.9.0", - widgetEventPrefix: "slide", - - options: { - animate: false, - distance: 0, - max: 100, - min: 0, - orientation: "horizontal", - range: false, - step: 1, - value: 0, - values: null - }, - - _create: function() { - var i, - o = this.options, - existingHandles = this.element.find( ".ui-slider-handle" ).addClass( "ui-state-default ui-corner-all" ), - handle = "<a class='ui-slider-handle ui-state-default ui-corner-all' href='#'></a>", - handleCount = ( o.values && o.values.length ) || 1, - handles = []; - - this._keySliding = false; - this._mouseSliding = false; - this._animateOff = true; - this._handleIndex = null; - this._detectOrientation(); - this._mouseInit(); - - this.element - .addClass( "ui-slider" + - " ui-slider-" + this.orientation + - " ui-widget" + - " ui-widget-content" + - " ui-corner-all" + - ( o.disabled ? " ui-slider-disabled ui-disabled" : "" ) ); - - this.range = $([]); - - if ( o.range ) { - if ( o.range === true ) { - if ( !o.values ) { - o.values = [ this._valueMin(), this._valueMin() ]; - } - if ( o.values.length && o.values.length !== 2 ) { - o.values = [ o.values[0], o.values[0] ]; - } - } - - this.range = $( "<div></div>" ) - .appendTo( this.element ) - .addClass( "ui-slider-range" + - // note: this isn't the most fittingly semantic framework class for this element, - // but worked best visually with a variety of themes - " ui-widget-header" + - ( ( o.range === "min" || o.range === "max" ) ? " ui-slider-range-" + o.range : "" ) ); - } - - for ( i = existingHandles.length; i < handleCount; i++ ) { - handles.push( handle ); - } - - this.handles = existingHandles.add( $( handles.join( "" ) ).appendTo( this.element ) ); - - this.handle = this.handles.eq( 0 ); - - this.handles.add( this.range ).filter( "a" ) - .click(function( event ) { - event.preventDefault(); - }) - .mouseenter(function() { - if ( !o.disabled ) { - $( this ).addClass( "ui-state-hover" ); - } - }) - .mouseleave(function() { - $( this ).removeClass( "ui-state-hover" ); - }) - .focus(function() { - if ( !o.disabled ) { - $( ".ui-slider .ui-state-focus" ).removeClass( "ui-state-focus" ); - $( this ).addClass( "ui-state-focus" ); - } else { - $( this ).blur(); - } - }) - .blur(function() { - $( this ).removeClass( "ui-state-focus" ); - }); - - this.handles.each(function( i ) { - $( this ).data( "ui-slider-handle-index", i ); - }); - - this._on( this.handles, { - keydown: function( event ) { - var allowed, curVal, newVal, step, - index = $( event.target ).data( "ui-slider-handle-index" ); - - switch ( event.keyCode ) { - case $.ui.keyCode.HOME: - case $.ui.keyCode.END: - case $.ui.keyCode.PAGE_UP: - case $.ui.keyCode.PAGE_DOWN: - case $.ui.keyCode.UP: - case $.ui.keyCode.RIGHT: - case $.ui.keyCode.DOWN: - case $.ui.keyCode.LEFT: - event.preventDefault(); - if ( !this._keySliding ) { - this._keySliding = true; - $( event.target ).addClass( "ui-state-active" ); - allowed = this._start( event, index ); - if ( allowed === false ) { - return; - } - } - break; - } - - step = this.options.step; - if ( this.options.values && this.options.values.length ) { - curVal = newVal = this.values( index ); - } else { - curVal = newVal = this.value(); - } - - switch ( event.keyCode ) { - case $.ui.keyCode.HOME: - newVal = this._valueMin(); - break; - case $.ui.keyCode.END: - newVal = this._valueMax(); - break; - case $.ui.keyCode.PAGE_UP: - newVal = this._trimAlignValue( curVal + ( (this._valueMax() - this._valueMin()) / numPages ) ); - break; - case $.ui.keyCode.PAGE_DOWN: - newVal = this._trimAlignValue( curVal - ( (this._valueMax() - this._valueMin()) / numPages ) ); - break; - case $.ui.keyCode.UP: - case $.ui.keyCode.RIGHT: - if ( curVal === this._valueMax() ) { - return; - } - newVal = this._trimAlignValue( curVal + step ); - break; - case $.ui.keyCode.DOWN: - case $.ui.keyCode.LEFT: - if ( curVal === this._valueMin() ) { - return; - } - newVal = this._trimAlignValue( curVal - step ); - break; - } - - this._slide( event, index, newVal ); - }, - keyup: function( event ) { - var index = $( event.target ).data( "ui-slider-handle-index" ); - - if ( this._keySliding ) { - this._keySliding = false; - this._stop( event, index ); - this._change( event, index ); - $( event.target ).removeClass( "ui-state-active" ); - } - } - }); - - this._refreshValue(); - - this._animateOff = false; - }, - - _destroy: function() { - this.handles.remove(); - this.range.remove(); - - this.element - .removeClass( "ui-slider" + - " ui-slider-horizontal" + - " ui-slider-vertical" + - " ui-slider-disabled" + - " ui-widget" + - " ui-widget-content" + - " ui-corner-all" ); - - this._mouseDestroy(); - }, - - _mouseCapture: function( event ) { - var position, normValue, distance, closestHandle, index, allowed, offset, mouseOverHandle, - that = this, - o = this.options; - - if ( o.disabled ) { - return false; - } - - this.elementSize = { - width: this.element.outerWidth(), - height: this.element.outerHeight() - }; - this.elementOffset = this.element.offset(); - - position = { x: event.pageX, y: event.pageY }; - normValue = this._normValueFromMouse( position ); - distance = this._valueMax() - this._valueMin() + 1; - this.handles.each(function( i ) { - var thisDistance = Math.abs( normValue - that.values(i) ); - if ( distance > thisDistance ) { - distance = thisDistance; - closestHandle = $( this ); - index = i; - } - }); - - // workaround for bug #3736 (if both handles of a range are at 0, - // the first is always used as the one with least distance, - // and moving it is obviously prevented by preventing negative ranges) - if( o.range === true && this.values(1) === o.min ) { - index += 1; - closestHandle = $( this.handles[index] ); - } - - allowed = this._start( event, index ); - if ( allowed === false ) { - return false; - } - this._mouseSliding = true; - - this._handleIndex = index; - - closestHandle - .addClass( "ui-state-active" ) - .focus(); - - offset = closestHandle.offset(); - mouseOverHandle = !$( event.target ).parents().andSelf().is( ".ui-slider-handle" ); - this._clickOffset = mouseOverHandle ? { left: 0, top: 0 } : { - left: event.pageX - offset.left - ( closestHandle.width() / 2 ), - top: event.pageY - offset.top - - ( closestHandle.height() / 2 ) - - ( parseInt( closestHandle.css("borderTopWidth"), 10 ) || 0 ) - - ( parseInt( closestHandle.css("borderBottomWidth"), 10 ) || 0) + - ( parseInt( closestHandle.css("marginTop"), 10 ) || 0) - }; - - if ( !this.handles.hasClass( "ui-state-hover" ) ) { - this._slide( event, index, normValue ); - } - this._animateOff = true; - return true; - }, - - _mouseStart: function( event ) { - return true; - }, - - _mouseDrag: function( event ) { - var position = { x: event.pageX, y: event.pageY }, - normValue = this._normValueFromMouse( position ); - - this._slide( event, this._handleIndex, normValue ); - - return false; - }, - - _mouseStop: function( event ) { - this.handles.removeClass( "ui-state-active" ); - this._mouseSliding = false; - - this._stop( event, this._handleIndex ); - this._change( event, this._handleIndex ); - - this._handleIndex = null; - this._clickOffset = null; - this._animateOff = false; - - return false; - }, - - _detectOrientation: function() { - this.orientation = ( this.options.orientation === "vertical" ) ? "vertical" : "horizontal"; - }, - - _normValueFromMouse: function( position ) { - var pixelTotal, - pixelMouse, - percentMouse, - valueTotal, - valueMouse; - - if ( this.orientation === "horizontal" ) { - pixelTotal = this.elementSize.width; - pixelMouse = position.x - this.elementOffset.left - ( this._clickOffset ? this._clickOffset.left : 0 ); - } else { - pixelTotal = this.elementSize.height; - pixelMouse = position.y - this.elementOffset.top - ( this._clickOffset ? this._clickOffset.top : 0 ); - } - - percentMouse = ( pixelMouse / pixelTotal ); - if ( percentMouse > 1 ) { - percentMouse = 1; - } - if ( percentMouse < 0 ) { - percentMouse = 0; - } - if ( this.orientation === "vertical" ) { - percentMouse = 1 - percentMouse; - } - - valueTotal = this._valueMax() - this._valueMin(); - valueMouse = this._valueMin() + percentMouse * valueTotal; - - return this._trimAlignValue( valueMouse ); - }, - - _start: function( event, index ) { - var uiHash = { - handle: this.handles[ index ], - value: this.value() - }; - if ( this.options.values && this.options.values.length ) { - uiHash.value = this.values( index ); - uiHash.values = this.values(); - } - return this._trigger( "start", event, uiHash ); - }, - - _slide: function( event, index, newVal ) { - var otherVal, - newValues, - allowed; - - if ( this.options.values && this.options.values.length ) { - otherVal = this.values( index ? 0 : 1 ); - - if ( ( this.options.values.length === 2 && this.options.range === true ) && - ( ( index === 0 && newVal > otherVal) || ( index === 1 && newVal < otherVal ) ) - ) { - newVal = otherVal; - } - - if ( newVal !== this.values( index ) ) { - newValues = this.values(); - newValues[ index ] = newVal; - // A slide can be canceled by returning false from the slide callback - allowed = this._trigger( "slide", event, { - handle: this.handles[ index ], - value: newVal, - values: newValues - } ); - otherVal = this.values( index ? 0 : 1 ); - if ( allowed !== false ) { - this.values( index, newVal, true ); - } - } - } else { - if ( newVal !== this.value() ) { - // A slide can be canceled by returning false from the slide callback - allowed = this._trigger( "slide", event, { - handle: this.handles[ index ], - value: newVal - } ); - if ( allowed !== false ) { - this.value( newVal ); - } - } - } - }, - - _stop: function( event, index ) { - var uiHash = { - handle: this.handles[ index ], - value: this.value() - }; - if ( this.options.values && this.options.values.length ) { - uiHash.value = this.values( index ); - uiHash.values = this.values(); - } - - this._trigger( "stop", event, uiHash ); - }, - - _change: function( event, index ) { - if ( !this._keySliding && !this._mouseSliding ) { - var uiHash = { - handle: this.handles[ index ], - value: this.value() - }; - if ( this.options.values && this.options.values.length ) { - uiHash.value = this.values( index ); - uiHash.values = this.values(); - } - - this._trigger( "change", event, uiHash ); - } - }, - - value: function( newValue ) { - if ( arguments.length ) { - this.options.value = this._trimAlignValue( newValue ); - this._refreshValue(); - this._change( null, 0 ); - return; - } - - return this._value(); - }, - - values: function( index, newValue ) { - var vals, - newValues, - i; - - if ( arguments.length > 1 ) { - this.options.values[ index ] = this._trimAlignValue( newValue ); - this._refreshValue(); - this._change( null, index ); - return; - } - - if ( arguments.length ) { - if ( $.isArray( arguments[ 0 ] ) ) { - vals = this.options.values; - newValues = arguments[ 0 ]; - for ( i = 0; i < vals.length; i += 1 ) { - vals[ i ] = this._trimAlignValue( newValues[ i ] ); - this._change( null, i ); - } - this._refreshValue(); - } else { - if ( this.options.values && this.options.values.length ) { - return this._values( index ); - } else { - return this.value(); - } - } - } else { - return this._values(); - } - }, - - _setOption: function( key, value ) { - var i, - valsLength = 0; - - if ( $.isArray( this.options.values ) ) { - valsLength = this.options.values.length; - } - - $.Widget.prototype._setOption.apply( this, arguments ); - - switch ( key ) { - case "disabled": - if ( value ) { - this.handles.filter( ".ui-state-focus" ).blur(); - this.handles.removeClass( "ui-state-hover" ); - this.handles.prop( "disabled", true ); - this.element.addClass( "ui-disabled" ); - } else { - this.handles.prop( "disabled", false ); - this.element.removeClass( "ui-disabled" ); - } - break; - case "orientation": - this._detectOrientation(); - this.element - .removeClass( "ui-slider-horizontal ui-slider-vertical" ) - .addClass( "ui-slider-" + this.orientation ); - this._refreshValue(); - break; - case "value": - this._animateOff = true; - this._refreshValue(); - this._change( null, 0 ); - this._animateOff = false; - break; - case "values": - this._animateOff = true; - this._refreshValue(); - for ( i = 0; i < valsLength; i += 1 ) { - this._change( null, i ); - } - this._animateOff = false; - break; - } - }, - - //internal value getter - // _value() returns value trimmed by min and max, aligned by step - _value: function() { - var val = this.options.value; - val = this._trimAlignValue( val ); - - return val; - }, - - //internal values getter - // _values() returns array of values trimmed by min and max, aligned by step - // _values( index ) returns single value trimmed by min and max, aligned by step - _values: function( index ) { - var val, - vals, - i; - - if ( arguments.length ) { - val = this.options.values[ index ]; - val = this._trimAlignValue( val ); - - return val; - } else { - // .slice() creates a copy of the array - // this copy gets trimmed by min and max and then returned - vals = this.options.values.slice(); - for ( i = 0; i < vals.length; i+= 1) { - vals[ i ] = this._trimAlignValue( vals[ i ] ); - } - - return vals; - } - }, - - // returns the step-aligned value that val is closest to, between (inclusive) min and max - _trimAlignValue: function( val ) { - if ( val <= this._valueMin() ) { - return this._valueMin(); - } - if ( val >= this._valueMax() ) { - return this._valueMax(); - } - var step = ( this.options.step > 0 ) ? this.options.step : 1, - valModStep = (val - this._valueMin()) % step, - alignValue = val - valModStep; - - if ( Math.abs(valModStep) * 2 >= step ) { - alignValue += ( valModStep > 0 ) ? step : ( -step ); - } - - // Since JavaScript has problems with large floats, round - // the final value to 5 digits after the decimal point (see #4124) - return parseFloat( alignValue.toFixed(5) ); - }, - - _valueMin: function() { - return this.options.min; - }, - - _valueMax: function() { - return this.options.max; - }, - - _refreshValue: function() { - var lastValPercent, valPercent, value, valueMin, valueMax, - oRange = this.options.range, - o = this.options, - that = this, - animate = ( !this._animateOff ) ? o.animate : false, - _set = {}; - - if ( this.options.values && this.options.values.length ) { - this.handles.each(function( i, j ) { - valPercent = ( that.values(i) - that._valueMin() ) / ( that._valueMax() - that._valueMin() ) * 100; - _set[ that.orientation === "horizontal" ? "left" : "bottom" ] = valPercent + "%"; - $( this ).stop( 1, 1 )[ animate ? "animate" : "css" ]( _set, o.animate ); - if ( that.options.range === true ) { - if ( that.orientation === "horizontal" ) { - if ( i === 0 ) { - that.range.stop( 1, 1 )[ animate ? "animate" : "css" ]( { left: valPercent + "%" }, o.animate ); - } - if ( i === 1 ) { - that.range[ animate ? "animate" : "css" ]( { width: ( valPercent - lastValPercent ) + "%" }, { queue: false, duration: o.animate } ); - } - } else { - if ( i === 0 ) { - that.range.stop( 1, 1 )[ animate ? "animate" : "css" ]( { bottom: ( valPercent ) + "%" }, o.animate ); - } - if ( i === 1 ) { - that.range[ animate ? "animate" : "css" ]( { height: ( valPercent - lastValPercent ) + "%" }, { queue: false, duration: o.animate } ); - } - } - } - lastValPercent = valPercent; - }); - } else { - value = this.value(); - valueMin = this._valueMin(); - valueMax = this._valueMax(); - valPercent = ( valueMax !== valueMin ) ? - ( value - valueMin ) / ( valueMax - valueMin ) * 100 : - 0; - _set[ this.orientation === "horizontal" ? "left" : "bottom" ] = valPercent + "%"; - this.handle.stop( 1, 1 )[ animate ? "animate" : "css" ]( _set, o.animate ); - - if ( oRange === "min" && this.orientation === "horizontal" ) { - this.range.stop( 1, 1 )[ animate ? "animate" : "css" ]( { width: valPercent + "%" }, o.animate ); - } - if ( oRange === "max" && this.orientation === "horizontal" ) { - this.range[ animate ? "animate" : "css" ]( { width: ( 100 - valPercent ) + "%" }, { queue: false, duration: o.animate } ); - } - if ( oRange === "min" && this.orientation === "vertical" ) { - this.range.stop( 1, 1 )[ animate ? "animate" : "css" ]( { height: valPercent + "%" }, o.animate ); - } - if ( oRange === "max" && this.orientation === "vertical" ) { - this.range[ animate ? "animate" : "css" ]( { height: ( 100 - valPercent ) + "%" }, { queue: false, duration: o.animate } ); - } - } - } - - }); - -}(jQuery)); - -(function( $ ) { - - function modifier( fn ) { - return function() { - var previous = this.element.val(); - fn.apply( this, arguments ); - this._refresh(); - if ( previous !== this.element.val() ) { - this._trigger( "change" ); - } - }; - } - - $.widget( "ui.spinner", { - version: "1.9.0", - defaultElement: "<input>", - widgetEventPrefix: "spin", - options: { - culture: null, - icons: { - down: "ui-icon-triangle-1-s", - up: "ui-icon-triangle-1-n" - }, - incremental: true, - max: null, - min: null, - numberFormat: null, - page: 10, - step: 1, - - change: null, - spin: null, - start: null, - stop: null - }, - - _create: function() { - // handle string values that need to be parsed - this._setOption( "max", this.options.max ); - this._setOption( "min", this.options.min ); - this._setOption( "step", this.options.step ); - - // format the value, but don't constrain - this._value( this.element.val(), true ); - - this._draw(); - this._on( this._events ); - this._refresh(); - - // turning off autocomplete prevents the browser from remembering the - // value when navigating through history, so we re-enable autocomplete - // if the page is unloaded before the widget is destroyed. #7790 - this._on( this.window, { - beforeunload: function() { - this.element.removeAttr( "autocomplete" ); - } - }); - }, - - _getCreateOptions: function() { - var options = {}, - element = this.element; - - $.each( [ "min", "max", "step" ], function( i, option ) { - var value = element.attr( option ); - if ( value !== undefined && value.length ) { - options[ option ] = value; - } - }); - - return options; - }, - - _events: { - keydown: function( event ) { - if ( this._start( event ) && this._keydown( event ) ) { - event.preventDefault(); - } - }, - keyup: "_stop", - focus: function() { - this.uiSpinner.addClass( "ui-state-active" ); - this.previous = this.element.val(); - }, - blur: function( event ) { - if ( this.cancelBlur ) { - delete this.cancelBlur; - return; - } - - this._refresh(); - this.uiSpinner.removeClass( "ui-state-active" ); - if ( this.previous !== this.element.val() ) { - this._trigger( "change", event ); - } - }, - mousewheel: function( event, delta ) { - if ( !delta ) { - return; - } - if ( !this.spinning && !this._start( event ) ) { - return false; - } - - this._spin( (delta > 0 ? 1 : -1) * this.options.step, event ); - clearTimeout( this.mousewheelTimer ); - this.mousewheelTimer = this._delay(function() { - if ( this.spinning ) { - this._stop( event ); - } - }, 100 ); - event.preventDefault(); - }, - "mousedown .ui-spinner-button": function( event ) { - var previous; - - // We never want the buttons to have focus; whenever the user is - // interacting with the spinner, the focus should be on the input. - // If the input is focused then this.previous is properly set from - // when the input first received focus. If the input is not focused - // then we need to set this.previous based on the value before spinning. - previous = this.element[0] === this.document[0].activeElement ? - this.previous : this.element.val(); - function checkFocus() { - var isActive = this.element[0] === this.document[0].activeElement; - if ( !isActive ) { - this.element.focus(); - this.previous = previous; - // support: IE - // IE sets focus asynchronously, so we need to check if focus - // moved off of the input because the user clicked on the button. - this._delay(function() { - this.previous = previous; - }); - } - } - - // ensure focus is on (or stays on) the text field - event.preventDefault(); - checkFocus.call( this ); - - // support: IE - // IE doesn't prevent moving focus even with event.preventDefault() - // so we set a flag to know when we should ignore the blur event - // and check (again) if focus moved off of the input. - this.cancelBlur = true; - this._delay(function() { - delete this.cancelBlur; - checkFocus.call( this ); - }); - - if ( this._start( event ) === false ) { - return; - } - - this._repeat( null, $( event.currentTarget ).hasClass( "ui-spinner-up" ) ? 1 : -1, event ); - }, - "mouseup .ui-spinner-button": "_stop", - "mouseenter .ui-spinner-button": function( event ) { - // button will add ui-state-active if mouse was down while mouseleave and kept down - if ( !$( event.currentTarget ).hasClass( "ui-state-active" ) ) { - return; - } - - if ( this._start( event ) === false ) { - return false; - } - this._repeat( null, $( event.currentTarget ).hasClass( "ui-spinner-up" ) ? 1 : -1, event ); - }, - // TODO: do we really want to consider this a stop? - // shouldn't we just stop the repeater and wait until mouseup before - // we trigger the stop event? - "mouseleave .ui-spinner-button": "_stop" - }, - - _draw: function() { - var uiSpinner = this.uiSpinner = this.element - .addClass( "ui-spinner-input" ) - .attr( "autocomplete", "off" ) - .wrap( this._uiSpinnerHtml() ) - .parent() - // add buttons - .append( this._buttonHtml() ); - this._hoverable( uiSpinner ); - - this.element.attr( "role", "spinbutton" ); - - // button bindings - this.buttons = uiSpinner.find( ".ui-spinner-button" ) - .attr( "tabIndex", -1 ) - .button() - .removeClass( "ui-corner-all" ); - - // IE 6 doesn't understand height: 50% for the buttons - // unless the wrapper has an explicit height - if ( this.buttons.height() > Math.ceil( uiSpinner.height() * 0.5 ) && - uiSpinner.height() > 0 ) { - uiSpinner.height( uiSpinner.height() ); - } - - // disable spinner if element was already disabled - if ( this.options.disabled ) { - this.disable(); - } - }, - - _keydown: function( event ) { - var options = this.options, - keyCode = $.ui.keyCode; - - switch ( event.keyCode ) { - case keyCode.UP: - this._repeat( null, 1, event ); - return true; - case keyCode.DOWN: - this._repeat( null, -1, event ); - return true; - case keyCode.PAGE_UP: - this._repeat( null, options.page, event ); - return true; - case keyCode.PAGE_DOWN: - this._repeat( null, -options.page, event ); - return true; - } - - return false; - }, - - _uiSpinnerHtml: function() { - return "<span class='ui-spinner ui-state-default ui-widget ui-widget-content ui-corner-all'></span>"; - }, - - _buttonHtml: function() { - return "" + - "<a class='ui-spinner-button ui-spinner-up ui-corner-tr'>" + - "<span class='ui-icon " + this.options.icons.up + "'>▲</span>" + - "</a>" + - "<a class='ui-spinner-button ui-spinner-down ui-corner-br'>" + - "<span class='ui-icon " + this.options.icons.down + "'>▼</span>" + - "</a>"; - }, - - _start: function( event ) { - if ( !this.spinning && this._trigger( "start", event ) === false ) { - return false; - } - - if ( !this.counter ) { - this.counter = 1; - } - this.spinning = true; - return true; - }, - - _repeat: function( i, steps, event ) { - i = i || 500; - - clearTimeout( this.timer ); - this.timer = this._delay(function() { - this._repeat( 40, steps, event ); - }, i ); - - this._spin( steps * this.options.step, event ); - }, - - _spin: function( step, event ) { - var value = this.value() || 0; - - if ( !this.counter ) { - this.counter = 1; - } - - value = this._adjustValue( value + step * this._increment( this.counter ) ); - - if ( !this.spinning || this._trigger( "spin", event, { value: value } ) !== false) { - this._value( value ); - this.counter++; - } - }, - - _increment: function( i ) { - var incremental = this.options.incremental; - - if ( incremental ) { - return $.isFunction( incremental ) ? - incremental( i ) : - Math.floor( i*i*i/50000 - i*i/500 + 17*i/200 + 1 ); - } - - return 1; - }, - - _precision: function() { - var precision = this._precisionOf( this.options.step ); - if ( this.options.min !== null ) { - precision = Math.max( precision, this._precisionOf( this.options.min ) ); - } - return precision; - }, - - _precisionOf: function( num ) { - var str = num.toString(), - decimal = str.indexOf( "." ); - return decimal === -1 ? 0 : str.length - decimal - 1; - }, - - _adjustValue: function( value ) { - var base, aboveMin, - options = this.options; - - // make sure we're at a valid step - // - find out where we are relative to the base (min or 0) - base = options.min !== null ? options.min : 0; - aboveMin = value - base; - // - round to the nearest step - aboveMin = Math.round(aboveMin / options.step) * options.step; - // - rounding is based on 0, so adjust back to our base - value = base + aboveMin; - - // fix precision from bad JS floating point math - value = parseFloat( value.toFixed( this._precision() ) ); - - // clamp the value - if ( options.max !== null && value > options.max) { - return options.max; - } - if ( options.min !== null && value < options.min ) { - return options.min; - } - - return value; - }, - - _stop: function( event ) { - if ( !this.spinning ) { - return; - } - - clearTimeout( this.timer ); - clearTimeout( this.mousewheelTimer ); - this.counter = 0; - this.spinning = false; - this._trigger( "stop", event ); - }, - - _setOption: function( key, value ) { - if ( key === "culture" || key === "numberFormat" ) { - var prevValue = this._parse( this.element.val() ); - this.options[ key ] = value; - this.element.val( this._format( prevValue ) ); - return; - } - - if ( key === "max" || key === "min" || key === "step" ) { - if ( typeof value === "string" ) { - value = this._parse( value ); - } - } - - this._super( key, value ); - - if ( key === "disabled" ) { - if ( value ) { - this.element.prop( "disabled", true ); - this.buttons.button( "disable" ); - } else { - this.element.prop( "disabled", false ); - this.buttons.button( "enable" ); - } - } - }, - - _setOptions: modifier(function( options ) { - this._super( options ); - this._value( this.element.val() ); - }), - - _parse: function( val ) { - if ( typeof val === "string" && val !== "" ) { - val = window.Globalize && this.options.numberFormat ? - Globalize.parseFloat( val, 10, this.options.culture ) : +val; - } - return val === "" || isNaN( val ) ? null : val; - }, - - _format: function( value ) { - if ( value === "" ) { - return ""; - } - return window.Globalize && this.options.numberFormat ? - Globalize.format( value, this.options.numberFormat, this.options.culture ) : - value; - }, - - _refresh: function() { - this.element.attr({ - "aria-valuemin": this.options.min, - "aria-valuemax": this.options.max, - // TODO: what should we do with values that can't be parsed? - "aria-valuenow": this._parse( this.element.val() ) - }); - }, - - // update the value without triggering change - _value: function( value, allowAny ) { - var parsed; - if ( value !== "" ) { - parsed = this._parse( value ); - if ( parsed !== null ) { - if ( !allowAny ) { - parsed = this._adjustValue( parsed ); - } - value = this._format( parsed ); - } - } - this.element.val( value ); - this._refresh(); - }, - - _destroy: function() { - this.element - .removeClass( "ui-spinner-input" ) - .prop( "disabled", false ) - .removeAttr( "autocomplete" ) - .removeAttr( "role" ) - .removeAttr( "aria-valuemin" ) - .removeAttr( "aria-valuemax" ) - .removeAttr( "aria-valuenow" ); - this.uiSpinner.replaceWith( this.element ); - }, - - stepUp: modifier(function( steps ) { - this._stepUp( steps ); - }), - _stepUp: function( steps ) { - this._spin( (steps || 1) * this.options.step ); - }, - - stepDown: modifier(function( steps ) { - this._stepDown( steps ); - }), - _stepDown: function( steps ) { - this._spin( (steps || 1) * -this.options.step ); - }, - - pageUp: modifier(function( pages ) { - this._stepUp( (pages || 1) * this.options.page ); - }), - - pageDown: modifier(function( pages ) { - this._stepDown( (pages || 1) * this.options.page ); - }), - - value: function( newVal ) { - if ( !arguments.length ) { - return this._parse( this.element.val() ); - } - modifier( this._value ).call( this, newVal ); - }, - - widget: function() { - return this.uiSpinner; - } - }); - -}( jQuery ) ); - -(function( $, undefined ) { - - var tabId = 0, - rhash = /#.*$/; - - function getNextTabId() { - return ++tabId; - } - - function isLocal( anchor ) { - // clone the node to work around IE 6 not normalizing the href property - // if it's manually set, i.e., a.href = "#foo" kills the normalization - anchor = anchor.cloneNode( false ); - return anchor.hash.length > 1 && - anchor.href.replace( rhash, "" ) === location.href.replace( rhash, "" ); - } - - $.widget( "ui.tabs", { - version: "1.9.0", - delay: 300, - options: { - active: null, - collapsible: false, - event: "click", - heightStyle: "content", - hide: null, - show: null, - - // callbacks - activate: null, - beforeActivate: null, - beforeLoad: null, - load: null - }, - - _create: function() { - var panel, - that = this, - options = this.options, - active = options.active; - - this.running = false; - - this.element - .addClass( "ui-tabs ui-widget ui-widget-content ui-corner-all" ) - .toggleClass( "ui-tabs-collapsible", options.collapsible ) - // Prevent users from focusing disabled tabs via click - .delegate( ".ui-tabs-nav > li", "mousedown" + this.eventNamespace, function( event ) { - if ( $( this ).is( ".ui-state-disabled" ) ) { - event.preventDefault(); - } - }) - // support: IE <9 - // Preventing the default action in mousedown doesn't prevent IE - // from focusing the element, so if the anchor gets focused, blur. - // We don't have to worry about focusing the previously focused - // element since clicking on a non-focusable element should focus - // the body anyway. - .delegate( ".ui-tabs-anchor", "focus" + this.eventNamespace, function() { - if ( $( this ).closest( "li" ).is( ".ui-state-disabled" ) ) { - this.blur(); - } - }); - - this._processTabs(); - - if ( active === null ) { - // check the fragment identifier in the URL - if ( location.hash ) { - this.anchors.each(function( i, anchor ) { - if ( anchor.hash === location.hash ) { - active = i; - return false; - } - }); - } - - // check for a tab marked active via a class - if ( active === null ) { - active = this.tabs.filter( ".ui-tabs-active" ).index(); - } - - // no active tab, set to false - if ( active === null || active === -1 ) { - active = this.tabs.length ? 0 : false; - } - } - - // handle numbers: negative, out of range - if ( active !== false ) { - active = this.tabs.index( this.tabs.eq( active ) ); - if ( active === -1 ) { - active = options.collapsible ? false : 0; - } - } - options.active = active; - - // don't allow collapsible: false and active: false - if ( !options.collapsible && options.active === false && this.anchors.length ) { - options.active = 0; - } - - // Take disabling tabs via class attribute from HTML - // into account and update option properly. - if ( $.isArray( options.disabled ) ) { - options.disabled = $.unique( options.disabled.concat( - $.map( this.tabs.filter( ".ui-state-disabled" ), function( li ) { - return that.tabs.index( li ); - }) - ) ).sort(); - } - - // check for length avoids error when initializing empty list - if ( this.options.active !== false && this.anchors.length ) { - this.active = this._findActive( this.options.active ); - } else { - this.active = $(); - } - - this._refresh(); - - if ( this.active.length ) { - this.load( options.active ); - } - }, - - _getCreateEventData: function() { - return { - tab: this.active, - panel: !this.active.length ? $() : this._getPanelForTab( this.active ) - }; - }, - - _tabKeydown: function( event ) { - var focusedTab = $( this.document[0].activeElement ).closest( "li" ), - selectedIndex = this.tabs.index( focusedTab ), - goingForward = true; - - if ( this._handlePageNav( event ) ) { - return; - } - - switch ( event.keyCode ) { - case $.ui.keyCode.RIGHT: - case $.ui.keyCode.DOWN: - selectedIndex++; - break; - case $.ui.keyCode.UP: - case $.ui.keyCode.LEFT: - goingForward = false; - selectedIndex--; - break; - case $.ui.keyCode.END: - selectedIndex = this.anchors.length - 1; - break; - case $.ui.keyCode.HOME: - selectedIndex = 0; - break; - case $.ui.keyCode.SPACE: - // Activate only, no collapsing - event.preventDefault(); - clearTimeout( this.activating ); - this._activate( selectedIndex ); - return; - case $.ui.keyCode.ENTER: - // Toggle (cancel delayed activation, allow collapsing) - event.preventDefault(); - clearTimeout( this.activating ); - // Determine if we should collapse or activate - this._activate( selectedIndex === this.options.active ? false : selectedIndex ); - return; - default: - return; - } - - // Focus the appropriate tab, based on which key was pressed - event.preventDefault(); - clearTimeout( this.activating ); - selectedIndex = this._focusNextTab( selectedIndex, goingForward ); - - // Navigating with control key will prevent automatic activation - if ( !event.ctrlKey ) { - // Update aria-selected immediately so that AT think the tab is already selected. - // Otherwise AT may confuse the user by stating that they need to activate the tab, - // but the tab will already be activated by the time the announcement finishes. - focusedTab.attr( "aria-selected", "false" ); - this.tabs.eq( selectedIndex ).attr( "aria-selected", "true" ); - - this.activating = this._delay(function() { - this.option( "active", selectedIndex ); - }, this.delay ); - } - }, - - _panelKeydown: function( event ) { - if ( this._handlePageNav( event ) ) { - return; - } - - // Ctrl+up moves focus to the current tab - if ( event.ctrlKey && event.keyCode === $.ui.keyCode.UP ) { - event.preventDefault(); - this.active.focus(); - } - }, - - // Alt+page up/down moves focus to the previous/next tab (and activates) - _handlePageNav: function( event ) { - if ( event.altKey && event.keyCode === $.ui.keyCode.PAGE_UP ) { - this._activate( this._focusNextTab( this.options.active - 1, false ) ); - return true; - } - if ( event.altKey && event.keyCode === $.ui.keyCode.PAGE_DOWN ) { - this._activate( this._focusNextTab( this.options.active + 1, true ) ); - return true; - } - }, - - _findNextTab: function( index, goingForward ) { - var lastTabIndex = this.tabs.length - 1; - - function constrain() { - if ( index > lastTabIndex ) { - index = 0; - } - if ( index < 0 ) { - index = lastTabIndex; - } - return index; - } - - while ( $.inArray( constrain(), this.options.disabled ) !== -1 ) { - index = goingForward ? index + 1 : index - 1; - } - - return index; - }, - - _focusNextTab: function( index, goingForward ) { - index = this._findNextTab( index, goingForward ); - this.tabs.eq( index ).focus(); - return index; - }, - - _setOption: function( key, value ) { - if ( key === "active" ) { - // _activate() will handle invalid values and update this.options - this._activate( value ); - return; - } - - if ( key === "disabled" ) { - // don't use the widget factory's disabled handling - this._setupDisabled( value ); - return; - } - - this._super( key, value); - - if ( key === "collapsible" ) { - this.element.toggleClass( "ui-tabs-collapsible", value ); - // Setting collapsible: false while collapsed; open first panel - if ( !value && this.options.active === false ) { - this._activate( 0 ); - } - } - - if ( key === "event" ) { - this._setupEvents( value ); - } - - if ( key === "heightStyle" ) { - this._setupHeightStyle( value ); - } - }, - - _tabId: function( tab ) { - return tab.attr( "aria-controls" ) || "ui-tabs-" + getNextTabId(); - }, - - _sanitizeSelector: function( hash ) { - return hash ? hash.replace( /[!"$%&'()*+,.\/:;<=>?@\[\]\^`{|}~]/g, "\\$&" ) : ""; - }, - - refresh: function() { - var next, - options = this.options, - lis = this.tablist.children( ":has(a[href])" ); - - // get disabled tabs from class attribute from HTML - // this will get converted to a boolean if needed in _refresh() - options.disabled = $.map( lis.filter( ".ui-state-disabled" ), function( tab ) { - return lis.index( tab ); - }); - - this._processTabs(); - - // was collapsed or no tabs - if ( options.active === false || !this.anchors.length ) { - options.active = false; - this.active = $(); - // was active, but active tab is gone - } else if ( this.active.length && !$.contains( this.tablist[ 0 ], this.active[ 0 ] ) ) { - // all remaining tabs are disabled - if ( this.tabs.length === options.disabled.length ) { - options.active = false; - this.active = $(); - // activate previous tab - } else { - this._activate( this._findNextTab( Math.max( 0, options.active - 1 ), false ) ); - } - // was active, active tab still exists - } else { - // make sure active index is correct - options.active = this.tabs.index( this.active ); - } - - this._refresh(); - }, - - _refresh: function() { - this._setupDisabled( this.options.disabled ); - this._setupEvents( this.options.event ); - this._setupHeightStyle( this.options.heightStyle ); - - this.tabs.not( this.active ).attr({ - "aria-selected": "false", - tabIndex: -1 - }); - this.panels.not( this._getPanelForTab( this.active ) ) - .hide() - .attr({ - "aria-expanded": "false", - "aria-hidden": "true" - }); - - // Make sure one tab is in the tab order - if ( !this.active.length ) { - this.tabs.eq( 0 ).attr( "tabIndex", 0 ); - } else { - this.active - .addClass( "ui-tabs-active ui-state-active" ) - .attr({ - "aria-selected": "true", - tabIndex: 0 - }); - this._getPanelForTab( this.active ) - .show() - .attr({ - "aria-expanded": "true", - "aria-hidden": "false" - }); - } - }, - - _processTabs: function() { - var that = this; - - this.tablist = this._getList() - .addClass( "ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all" ) - .attr( "role", "tablist" ); - - this.tabs = this.tablist.find( "> li:has(a[href])" ) - .addClass( "ui-state-default ui-corner-top" ) - .attr({ - role: "tab", - tabIndex: -1 - }); - - this.anchors = this.tabs.map(function() { - return $( "a", this )[ 0 ]; - }) - .addClass( "ui-tabs-anchor" ) - .attr({ - role: "presentation", - tabIndex: -1 - }); - - this.panels = $(); - - this.anchors.each(function( i, anchor ) { - var selector, panel, panelId, - anchorId = $( anchor ).uniqueId().attr( "id" ), - tab = $( anchor ).closest( "li" ), - originalAriaControls = tab.attr( "aria-controls" ); - - // inline tab - if ( isLocal( anchor ) ) { - selector = anchor.hash; - panel = that.element.find( that._sanitizeSelector( selector ) ); - // remote tab - } else { - panelId = that._tabId( tab ); - selector = "#" + panelId; - panel = that.element.find( selector ); - if ( !panel.length ) { - panel = that._createPanel( panelId ); - panel.insertAfter( that.panels[ i - 1 ] || that.tablist ); - } - panel.attr( "aria-live", "polite" ); - } - - if ( panel.length) { - that.panels = that.panels.add( panel ); - } - if ( originalAriaControls ) { - tab.data( "ui-tabs-aria-controls", originalAriaControls ); - } - tab.attr({ - "aria-controls": selector.substring( 1 ), - "aria-labelledby": anchorId - }); - panel.attr( "aria-labelledby", anchorId ); - }); - - this.panels - .addClass( "ui-tabs-panel ui-widget-content ui-corner-bottom" ) - .attr( "role", "tabpanel" ); - }, - - // allow overriding how to find the list for rare usage scenarios (#7715) - _getList: function() { - return this.element.find( "ol,ul" ).eq( 0 ); - }, - - _createPanel: function( id ) { - return $( "<div>" ) - .attr( "id", id ) - .addClass( "ui-tabs-panel ui-widget-content ui-corner-bottom" ) - .data( "ui-tabs-destroy", true ); - }, - - _setupDisabled: function( disabled ) { - if ( $.isArray( disabled ) ) { - if ( !disabled.length ) { - disabled = false; - } else if ( disabled.length === this.anchors.length ) { - disabled = true; - } - } - - // disable tabs - for ( var i = 0, li; ( li = this.tabs[ i ] ); i++ ) { - if ( disabled === true || $.inArray( i, disabled ) !== -1 ) { - $( li ) - .addClass( "ui-state-disabled" ) - .attr( "aria-disabled", "true" ); - } else { - $( li ) - .removeClass( "ui-state-disabled" ) - .removeAttr( "aria-disabled" ); - } - } - - this.options.disabled = disabled; - }, - - _setupEvents: function( event ) { - var events = { - click: function( event ) { - event.preventDefault(); - } - }; - if ( event ) { - $.each( event.split(" "), function( index, eventName ) { - events[ eventName ] = "_eventHandler"; - }); - } - - this._off( this.anchors.add( this.tabs ).add( this.panels ) ); - this._on( this.anchors, events ); - this._on( this.tabs, { keydown: "_tabKeydown" } ); - this._on( this.panels, { keydown: "_panelKeydown" } ); - - this._focusable( this.tabs ); - this._hoverable( this.tabs ); - }, - - _setupHeightStyle: function( heightStyle ) { - var maxHeight, overflow, - parent = this.element.parent(); - - if ( heightStyle === "fill" ) { - // IE 6 treats height like minHeight, so we need to turn off overflow - // in order to get a reliable height - // we use the minHeight support test because we assume that only - // browsers that don't support minHeight will treat height as minHeight - if ( !$.support.minHeight ) { - overflow = parent.css( "overflow" ); - parent.css( "overflow", "hidden"); - } - maxHeight = parent.height(); - this.element.siblings( ":visible" ).each(function() { - var elem = $( this ), - position = elem.css( "position" ); - - if ( position === "absolute" || position === "fixed" ) { - return; - } - maxHeight -= elem.outerHeight( true ); - }); - if ( overflow ) { - parent.css( "overflow", overflow ); - } - - this.element.children().not( this.panels ).each(function() { - maxHeight -= $( this ).outerHeight( true ); - }); - - this.panels.each(function() { - $( this ).height( Math.max( 0, maxHeight - - $( this ).innerHeight() + $( this ).height() ) ); - }) - .css( "overflow", "auto" ); - } else if ( heightStyle === "auto" ) { - maxHeight = 0; - this.panels.each(function() { - maxHeight = Math.max( maxHeight, $( this ).height( "" ).height() ); - }).height( maxHeight ); - } - }, - - _eventHandler: function( event ) { - var options = this.options, - active = this.active, - anchor = $( event.currentTarget ), - tab = anchor.closest( "li" ), - clickedIsActive = tab[ 0 ] === active[ 0 ], - collapsing = clickedIsActive && options.collapsible, - toShow = collapsing ? $() : this._getPanelForTab( tab ), - toHide = !active.length ? $() : this._getPanelForTab( active ), - eventData = { - oldTab: active, - oldPanel: toHide, - newTab: collapsing ? $() : tab, - newPanel: toShow - }; - - event.preventDefault(); - - if ( tab.hasClass( "ui-state-disabled" ) || - // tab is already loading - tab.hasClass( "ui-tabs-loading" ) || - // can't switch durning an animation - this.running || - // click on active header, but not collapsible - ( clickedIsActive && !options.collapsible ) || - // allow canceling activation - ( this._trigger( "beforeActivate", event, eventData ) === false ) ) { - return; - } - - options.active = collapsing ? false : this.tabs.index( tab ); - - this.active = clickedIsActive ? $() : tab; - if ( this.xhr ) { - this.xhr.abort(); - } - - if ( !toHide.length && !toShow.length ) { - $.error( "jQuery UI Tabs: Mismatching fragment identifier." ); - } - - if ( toShow.length ) { - this.load( this.tabs.index( tab ), event ); - } - this._toggle( event, eventData ); - }, - - // handles show/hide for selecting tabs - _toggle: function( event, eventData ) { - var that = this, - toShow = eventData.newPanel, - toHide = eventData.oldPanel; - - this.running = true; - - function complete() { - that.running = false; - that._trigger( "activate", event, eventData ); - } - - function show() { - eventData.newTab.closest( "li" ).addClass( "ui-tabs-active ui-state-active" ); - - if ( toShow.length && that.options.show ) { - that._show( toShow, that.options.show, complete ); - } else { - toShow.show(); - complete(); - } - } - - // start out by hiding, then showing, then completing - if ( toHide.length && this.options.hide ) { - this._hide( toHide, this.options.hide, function() { - eventData.oldTab.closest( "li" ).removeClass( "ui-tabs-active ui-state-active" ); - show(); - }); - } else { - eventData.oldTab.closest( "li" ).removeClass( "ui-tabs-active ui-state-active" ); - toHide.hide(); - show(); - } - - toHide.attr({ - "aria-expanded": "false", - "aria-hidden": "true" - }); - eventData.oldTab.attr( "aria-selected", "false" ); - // If we're switching tabs, remove the old tab from the tab order. - // If we're opening from collapsed state, remove the previous tab from the tab order. - // If we're collapsing, then keep the collapsing tab in the tab order. - if ( toShow.length && toHide.length ) { - eventData.oldTab.attr( "tabIndex", -1 ); - } else if ( toShow.length ) { - this.tabs.filter(function() { - return $( this ).attr( "tabIndex" ) === 0; - }) - .attr( "tabIndex", -1 ); - } - - toShow.attr({ - "aria-expanded": "true", - "aria-hidden": "false" - }); - eventData.newTab.attr({ - "aria-selected": "true", - tabIndex: 0 - }); - }, - - _activate: function( index ) { - var anchor, - active = this._findActive( index ); - - // trying to activate the already active panel - if ( active[ 0 ] === this.active[ 0 ] ) { - return; - } - - // trying to collapse, simulate a click on the current active header - if ( !active.length ) { - active = this.active; - } - - anchor = active.find( ".ui-tabs-anchor" )[ 0 ]; - this._eventHandler({ - target: anchor, - currentTarget: anchor, - preventDefault: $.noop - }); - }, - - _findActive: function( index ) { - return index === false ? $() : this.tabs.eq( index ); - }, - - _getIndex: function( index ) { - // meta-function to give users option to provide a href string instead of a numerical index. - if ( typeof index === "string" ) { - index = this.anchors.index( this.anchors.filter( "[href$='" + index + "']" ) ); - } - - return index; - }, - - _destroy: function() { - if ( this.xhr ) { - this.xhr.abort(); - } - - this.element.removeClass( "ui-tabs ui-widget ui-widget-content ui-corner-all ui-tabs-collapsible" ); - - this.tablist - .removeClass( "ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all" ) - .removeAttr( "role" ); - - this.anchors - .removeClass( "ui-tabs-anchor" ) - .removeAttr( "role" ) - .removeAttr( "tabIndex" ) - .removeData( "href.tabs" ) - .removeData( "load.tabs" ) - .removeUniqueId(); - - this.tabs.add( this.panels ).each(function() { - if ( $.data( this, "ui-tabs-destroy" ) ) { - $( this ).remove(); - } else { - $( this ) - .removeClass( "ui-state-default ui-state-active ui-state-disabled " + - "ui-corner-top ui-corner-bottom ui-widget-content ui-tabs-active ui-tabs-panel" ) - .removeAttr( "tabIndex" ) - .removeAttr( "aria-live" ) - .removeAttr( "aria-busy" ) - .removeAttr( "aria-selected" ) - .removeAttr( "aria-labelledby" ) - .removeAttr( "aria-hidden" ) - .removeAttr( "aria-expanded" ) - .removeAttr( "role" ); - } - }); - - this.tabs.each(function() { - var li = $( this ), - prev = li.data( "ui-tabs-aria-controls" ); - if ( prev ) { - li.attr( "aria-controls", prev ); - } else { - li.removeAttr( "aria-controls" ); - } - }); - - if ( this.options.heightStyle !== "content" ) { - this.panels.css( "height", "" ); - } - }, - - enable: function( index ) { - var disabled = this.options.disabled; - if ( disabled === false ) { - return; - } - - if ( index === undefined ) { - disabled = false; - } else { - index = this._getIndex( index ); - if ( $.isArray( disabled ) ) { - disabled = $.map( disabled, function( num ) { - return num !== index ? num : null; - }); - } else { - disabled = $.map( this.tabs, function( li, num ) { - return num !== index ? num : null; - }); - } - } - this._setupDisabled( disabled ); - }, - - disable: function( index ) { - var disabled = this.options.disabled; - if ( disabled === true ) { - return; - } - - if ( index === undefined ) { - disabled = true; - } else { - index = this._getIndex( index ); - if ( $.inArray( index, disabled ) !== -1 ) { - return; - } - if ( $.isArray( disabled ) ) { - disabled = $.merge( [ index ], disabled ).sort(); - } else { - disabled = [ index ]; - } - } - this._setupDisabled( disabled ); - }, - - load: function( index, event ) { - index = this._getIndex( index ); - var that = this, - tab = this.tabs.eq( index ), - anchor = tab.find( ".ui-tabs-anchor" ), - panel = this._getPanelForTab( tab ), - eventData = { - tab: tab, - panel: panel - }; - - // not remote - if ( isLocal( anchor[ 0 ] ) ) { - return; - } - - this.xhr = $.ajax( this._ajaxSettings( anchor, event, eventData ) ); - - // support: jQuery <1.8 - // jQuery <1.8 returns false if the request is canceled in beforeSend, - // but as of 1.8, $.ajax() always returns a jqXHR object. - if ( this.xhr && this.xhr.statusText !== "canceled" ) { - tab.addClass( "ui-tabs-loading" ); - panel.attr( "aria-busy", "true" ); - - this.xhr - .success(function( response ) { - // support: jQuery <1.8 - // http://bugs.jquery.com/ticket/11778 - setTimeout(function() { - panel.html( response ); - that._trigger( "load", event, eventData ); - }, 1 ); - }) - .complete(function( jqXHR, status ) { - // support: jQuery <1.8 - // http://bugs.jquery.com/ticket/11778 - setTimeout(function() { - if ( status === "abort" ) { - that.panels.stop( false, true ); - } - - tab.removeClass( "ui-tabs-loading" ); - panel.removeAttr( "aria-busy" ); - - if ( jqXHR === that.xhr ) { - delete that.xhr; - } - }, 1 ); - }); - } - }, - - // TODO: Remove this function in 1.10 when ajaxOptions is removed - _ajaxSettings: function( anchor, event, eventData ) { - var that = this; - return { - url: anchor.attr( "href" ), - beforeSend: function( jqXHR, settings ) { - return that._trigger( "beforeLoad", event, - $.extend( { jqXHR : jqXHR, ajaxSettings: settings }, eventData ) ); - } - }; - }, - - _getPanelForTab: function( tab ) { - var id = $( tab ).attr( "aria-controls" ); - return this.element.find( this._sanitizeSelector( "#" + id ) ); - } - }); - -// DEPRECATED - if ( $.uiBackCompat !== false ) { - - // helper method for a lot of the back compat extensions - $.ui.tabs.prototype._ui = function( tab, panel ) { - return { - tab: tab, - panel: panel, - index: this.anchors.index( tab ) - }; - }; - - // url method - $.widget( "ui.tabs", $.ui.tabs, { - url: function( index, url ) { - this.anchors.eq( index ).attr( "href", url ); - } - }); - - // TODO: Remove _ajaxSettings() method when removing this extension - // ajaxOptions and cache options - $.widget( "ui.tabs", $.ui.tabs, { - options: { - ajaxOptions: null, - cache: false - }, - - _create: function() { - this._super(); - - var that = this; - - this._on({ tabsbeforeload: function( event, ui ) { - // tab is already cached - if ( $.data( ui.tab[ 0 ], "cache.tabs" ) ) { - event.preventDefault(); - return; - } - - ui.jqXHR.success(function() { - if ( that.options.cache ) { - $.data( ui.tab[ 0 ], "cache.tabs", true ); - } - }); - }}); - }, - - _ajaxSettings: function( anchor, event, ui ) { - var ajaxOptions = this.options.ajaxOptions; - return $.extend( {}, ajaxOptions, { - error: function( xhr, s, e ) { - try { - // Passing index avoid a race condition when this method is - // called after the user has selected another tab. - // Pass the anchor that initiated this request allows - // loadError to manipulate the tab content panel via $(a.hash) - ajaxOptions.error( - xhr, s, ui.tab.closest( "li" ).index(), ui.tab[ 0 ] ); - } - catch ( e ) {} - } - }, this._superApply( arguments ) ); - }, - - _setOption: function( key, value ) { - // reset cache if switching from cached to not cached - if ( key === "cache" && value === false ) { - this.anchors.removeData( "cache.tabs" ); - } - this._super( key, value ); - }, - - _destroy: function() { - this.anchors.removeData( "cache.tabs" ); - this._super(); - }, - - url: function( index, url ){ - this.anchors.eq( index ).removeData( "cache.tabs" ); - this._superApply( arguments ); - } - }); - - // abort method - $.widget( "ui.tabs", $.ui.tabs, { - abort: function() { - if ( this.xhr ) { - this.xhr.abort(); - } - } - }); - - // spinner - $.widget( "ui.tabs", $.ui.tabs, { - options: { - spinner: "<em>Loading…</em>" - }, - _create: function() { - this._super(); - this._on({ - tabsbeforeload: function( event, ui ) { - // Don't react to nested tabs or tabs that don't use a spinner - if ( event.target !== this.element[ 0 ] || - !this.options.spinner ) { - return; - } - - var span = ui.tab.find( "span" ), - html = span.html(); - span.html( this.options.spinner ); - ui.jqXHR.complete(function() { - span.html( html ); - }); - } - }); - } - }); - - // enable/disable events - $.widget( "ui.tabs", $.ui.tabs, { - options: { - enable: null, - disable: null - }, - - enable: function( index ) { - var options = this.options, - trigger; - - if ( index && options.disabled === true || - ( $.isArray( options.disabled ) && $.inArray( index, options.disabled ) !== -1 ) ) { - trigger = true; - } - - this._superApply( arguments ); - - if ( trigger ) { - this._trigger( "enable", null, this._ui( this.anchors[ index ], this.panels[ index ] ) ); - } - }, - - disable: function( index ) { - var options = this.options, - trigger; - - if ( index && options.disabled === false || - ( $.isArray( options.disabled ) && $.inArray( index, options.disabled ) === -1 ) ) { - trigger = true; - } - - this._superApply( arguments ); - - if ( trigger ) { - this._trigger( "disable", null, this._ui( this.anchors[ index ], this.panels[ index ] ) ); - } - } - }); - - // add/remove methods and events - $.widget( "ui.tabs", $.ui.tabs, { - options: { - add: null, - remove: null, - tabTemplate: "<li><a href='#{href}'><span>#{label}</span></a></li>" - }, - - add: function( url, label, index ) { - if ( index === undefined ) { - index = this.anchors.length; - } - - var doInsertAfter, panel, - options = this.options, - li = $( options.tabTemplate - .replace( /#\{href\}/g, url ) - .replace( /#\{label\}/g, label ) ), - id = !url.indexOf( "#" ) ? - url.replace( "#", "" ) : - this._tabId( li ); - - li.addClass( "ui-state-default ui-corner-top" ).data( "ui-tabs-destroy", true ); - li.attr( "aria-controls", id ); - - doInsertAfter = index >= this.tabs.length; - - // try to find an existing element before creating a new one - panel = this.element.find( "#" + id ); - if ( !panel.length ) { - panel = this._createPanel( id ); - if ( doInsertAfter ) { - if ( index > 0 ) { - panel.insertAfter( this.panels.eq( -1 ) ); - } else { - panel.appendTo( this.element ); - } - } else { - panel.insertBefore( this.panels[ index ] ); - } - } - panel.addClass( "ui-tabs-panel ui-widget-content ui-corner-bottom" ).hide(); - - if ( doInsertAfter ) { - li.appendTo( this.tablist ); - } else { - li.insertBefore( this.tabs[ index ] ); - } - - options.disabled = $.map( options.disabled, function( n ) { - return n >= index ? ++n : n; - }); - - this.refresh(); - if ( this.tabs.length === 1 && options.active === false ) { - this.option( "active", 0 ); - } - - this._trigger( "add", null, this._ui( this.anchors[ index ], this.panels[ index ] ) ); - return this; - }, - - remove: function( index ) { - index = this._getIndex( index ); - var options = this.options, - tab = this.tabs.eq( index ).remove(), - panel = this._getPanelForTab( tab ).remove(); - - // If selected tab was removed focus tab to the right or - // in case the last tab was removed the tab to the left. - // We check for more than 2 tabs, because if there are only 2, - // then when we remove this tab, there will only be one tab left - // so we don't need to detect which tab to activate. - if ( tab.hasClass( "ui-tabs-active" ) && this.anchors.length > 2 ) { - this._activate( index + ( index + 1 < this.anchors.length ? 1 : -1 ) ); - } - - options.disabled = $.map( - $.grep( options.disabled, function( n ) { - return n !== index; - }), - function( n ) { - return n >= index ? --n : n; - }); - - this.refresh(); - - this._trigger( "remove", null, this._ui( tab.find( "a" )[ 0 ], panel[ 0 ] ) ); - return this; - } - }); - - // length method - $.widget( "ui.tabs", $.ui.tabs, { - length: function() { - return this.anchors.length; - } - }); - - // panel ids (idPrefix option + title attribute) - $.widget( "ui.tabs", $.ui.tabs, { - options: { - idPrefix: "ui-tabs-" - }, - - _tabId: function( tab ) { - var a = tab.is( "li" ) ? tab.find( "a[href]" ) : tab; - a = a[0]; - return $( a ).closest( "li" ).attr( "aria-controls" ) || - a.title && a.title.replace( /\s/g, "_" ).replace( /[^\w\u00c0-\uFFFF\-]/g, "" ) || - this.options.idPrefix + getNextTabId(); - } - }); - - // _createPanel method - $.widget( "ui.tabs", $.ui.tabs, { - options: { - panelTemplate: "<div></div>" - }, - - _createPanel: function( id ) { - return $( this.options.panelTemplate ) - .attr( "id", id ) - .addClass( "ui-tabs-panel ui-widget-content ui-corner-bottom" ) - .data( "ui-tabs-destroy", true ); - } - }); - - // selected option - $.widget( "ui.tabs", $.ui.tabs, { - _create: function() { - var options = this.options; - if ( options.active === null && options.selected !== undefined ) { - options.active = options.selected === -1 ? false : options.selected; - } - this._super(); - options.selected = options.active; - if ( options.selected === false ) { - options.selected = -1; - } - }, - - _setOption: function( key, value ) { - if ( key !== "selected" ) { - return this._super( key, value ); - } - - var options = this.options; - this._super( "active", value === -1 ? false : value ); - options.selected = options.active; - if ( options.selected === false ) { - options.selected = -1; - } - }, - - _eventHandler: function( event ) { - this._superApply( arguments ); - this.options.selected = this.options.active; - if ( this.options.selected === false ) { - this.options.selected = -1; - } - } - }); - - // show and select event - $.widget( "ui.tabs", $.ui.tabs, { - options: { - show: null, - select: null - }, - _create: function() { - this._super(); - if ( this.options.active !== false ) { - this._trigger( "show", null, this._ui( - this.active.find( ".ui-tabs-anchor" )[ 0 ], - this._getPanelForTab( this.active )[ 0 ] ) ); - } - }, - _trigger: function( type, event, data ) { - var ret = this._superApply( arguments ); - if ( !ret ) { - return false; - } - if ( type === "beforeActivate" && data.newTab.length ) { - ret = this._super( "select", event, { - tab: data.newTab.find( ".ui-tabs-anchor" )[ 0], - panel: data.newPanel[ 0 ], - index: data.newTab.closest( "li" ).index() - }); - } else if ( type === "activate" && data.newTab.length ) { - ret = this._super( "show", event, { - tab: data.newTab.find( ".ui-tabs-anchor" )[ 0 ], - panel: data.newPanel[ 0 ], - index: data.newTab.closest( "li" ).index() - }); - } - return ret; - } - }); - - // select method - $.widget( "ui.tabs", $.ui.tabs, { - select: function( index ) { - index = this._getIndex( index ); - if ( index === -1 ) { - if ( this.options.collapsible && this.options.selected !== -1 ) { - index = this.options.selected; - } else { - return; - } - } - this.anchors.eq( index ).trigger( this.options.event + this.eventNamespace ); - } - }); - - // cookie option - (function() { - - var listId = 0; - - $.widget( "ui.tabs", $.ui.tabs, { - options: { - cookie: null // e.g. { expires: 7, path: '/', domain: 'jquery.com', secure: true } - }, - _create: function() { - var options = this.options, - active; - if ( options.active == null && options.cookie ) { - active = parseInt( this._cookie(), 10 ); - if ( active === -1 ) { - active = false; - } - options.active = active; - } - this._super(); - }, - _cookie: function( active ) { - var cookie = [ this.cookie || - ( this.cookie = this.options.cookie.name || "ui-tabs-" + (++listId) ) ]; - if ( arguments.length ) { - cookie.push( active === false ? -1 : active ); - cookie.push( this.options.cookie ); - } - return $.cookie.apply( null, cookie ); - }, - _refresh: function() { - this._super(); - if ( this.options.cookie ) { - this._cookie( this.options.active, this.options.cookie ); - } - }, - _eventHandler: function( event ) { - this._superApply( arguments ); - if ( this.options.cookie ) { - this._cookie( this.options.active, this.options.cookie ); - } - }, - _destroy: function() { - this._super(); - if ( this.options.cookie ) { - this._cookie( null, this.options.cookie ); - } - } - }); - - })(); - - // load event - $.widget( "ui.tabs", $.ui.tabs, { - _trigger: function( type, event, data ) { - var _data = $.extend( {}, data ); - if ( type === "load" ) { - _data.panel = _data.panel[ 0 ]; - _data.tab = _data.tab.find( ".ui-tabs-anchor" )[ 0 ]; - } - return this._super( type, event, _data ); - } - }); - - // fx option - // The new animation options (show, hide) conflict with the old show callback. - // The old fx option wins over show/hide anyway (always favor back-compat). - // If a user wants to use the new animation API, they must give up the old API. - $.widget( "ui.tabs", $.ui.tabs, { - options: { - fx: null // e.g. { height: "toggle", opacity: "toggle", duration: 200 } - }, - - _getFx: function() { - var hide, show, - fx = this.options.fx; - - if ( fx ) { - if ( $.isArray( fx ) ) { - hide = fx[ 0 ]; - show = fx[ 1 ]; - } else { - hide = show = fx; - } - } - - return fx ? { show: show, hide: hide } : null; - }, - - _toggle: function( event, eventData ) { - var that = this, - toShow = eventData.newPanel, - toHide = eventData.oldPanel, - fx = this._getFx(); - - if ( !fx ) { - return this._super( event, eventData ); - } - - that.running = true; - - function complete() { - that.running = false; - that._trigger( "activate", event, eventData ); - } - - function show() { - eventData.newTab.closest( "li" ).addClass( "ui-tabs-active ui-state-active" ); - - if ( toShow.length && fx.show ) { - toShow - .animate( fx.show, fx.show.duration, function() { - complete(); - }); - } else { - toShow.show(); - complete(); - } - } - - // start out by hiding, then showing, then completing - if ( toHide.length && fx.hide ) { - toHide.animate( fx.hide, fx.hide.duration, function() { - eventData.oldTab.closest( "li" ).removeClass( "ui-tabs-active ui-state-active" ); - show(); - }); - } else { - eventData.oldTab.closest( "li" ).removeClass( "ui-tabs-active ui-state-active" ); - toHide.hide(); - show(); - } - } - }); - } - -})( jQuery ); - -(function( $ ) { - - var increments = 0; - - function addDescribedBy( elem, id ) { - var describedby = (elem.attr( "aria-describedby" ) || "").split( /\s+/ ); - describedby.push( id ); - elem - .data( "ui-tooltip-id", id ) - .attr( "aria-describedby", $.trim( describedby.join( " " ) ) ); - } - - function removeDescribedBy( elem ) { - var id = elem.data( "ui-tooltip-id" ), - describedby = (elem.attr( "aria-describedby" ) || "").split( /\s+/ ), - index = $.inArray( id, describedby ); - if ( index !== -1 ) { - describedby.splice( index, 1 ); - } - - elem.removeData( "ui-tooltip-id" ); - describedby = $.trim( describedby.join( " " ) ); - if ( describedby ) { - elem.attr( "aria-describedby", describedby ); - } else { - elem.removeAttr( "aria-describedby" ); - } - } - - $.widget( "ui.tooltip", { - version: "1.9.0", - options: { - content: function() { - return $( this ).attr( "title" ); - }, - hide: true, - items: "[title]", - position: { - my: "left+15 center", - at: "right center", - collision: "flipfit flipfit" - }, - show: true, - tooltipClass: null, - track: false, - - // callbacks - close: null, - open: null - }, - - _create: function() { - this._on({ - mouseover: "open", - focusin: "open" - }); - - // IDs of generated tooltips, needed for destroy - this.tooltips = {}; - }, - - _setOption: function( key, value ) { - var that = this; - - if ( key === "disabled" ) { - this[ value ? "_disable" : "_enable" ](); - this.options[ key ] = value; - // disable element style changes - return; - } - - this._super( key, value ); - - if ( key === "content" ) { - $.each( this.tooltips, function( id, element ) { - that._updateContent( element ); - }); - } - }, - - _disable: function() { - var that = this; - - // close open tooltips - $.each( this.tooltips, function( id, element ) { - var event = $.Event( "blur" ); - event.target = event.currentTarget = element[0]; - that.close( event, true ); - }); - - // remove title attributes to prevent native tooltips - this.element.find( this.options.items ).andSelf().each(function() { - var element = $( this ); - if ( element.is( "[title]" ) ) { - element - .data( "ui-tooltip-title", element.attr( "title" ) ) - .attr( "title", "" ); - } - }); - }, - - _enable: function() { - // restore title attributes - this.element.find( this.options.items ).andSelf().each(function() { - var element = $( this ); - if ( element.data( "ui-tooltip-title" ) ) { - element.attr( "title", element.data( "ui-tooltip-title" ) ); - } - }); - }, - - open: function( event ) { - var target = $( event ? event.target : this.element ) - .closest( this.options.items ); - - // No element to show a tooltip for - if ( !target.length ) { - return; - } - - // If the tooltip is open and we're tracking then reposition the tooltip. - // This makes sure that a tracking tooltip doesn't obscure a focused element - // if the user was hovering when the element gained focused. - if ( this.options.track && target.data( "ui-tooltip-id" ) ) { - this._find( target ).position( $.extend({ - of: target - }, this.options.position ) ); - // Stop tracking (#8622) - this._off( this.document, "mousemove" ); - return; - } - - if ( target.attr( "title" ) ) { - target.data( "ui-tooltip-title", target.attr( "title" ) ); - } - - target.data( "tooltip-open", true ); - - this._updateContent( target, event ); - }, - - _updateContent: function( target, event ) { - var content, - contentOption = this.options.content, - that = this; - - if ( typeof contentOption === "string" ) { - return this._open( event, target, contentOption ); - } - - content = contentOption.call( target[0], function( response ) { - // ignore async response if tooltip was closed already - if ( !target.data( "tooltip-open" ) ) { - return; - } - // IE may instantly serve a cached response for ajax requests - // delay this call to _open so the other call to _open runs first - that._delay(function() { - this._open( event, target, response ); - }); - }); - if ( content ) { - this._open( event, target, content ); - } - }, - - _open: function( event, target, content ) { - var tooltip, positionOption; - if ( !content ) { - return; - } - - // Content can be updated multiple times. If the tooltip already - // exists, then just update the content and bail. - tooltip = this._find( target ); - if ( tooltip.length ) { - tooltip.find( ".ui-tooltip-content" ).html( content ); - return; - } - - // if we have a title, clear it to prevent the native tooltip - // we have to check first to avoid defining a title if none exists - // (we don't want to cause an element to start matching [title]) - // - // We use removeAttr only for key events, to allow IE to export the correct - // accessible attributes. For mouse events, set to empty string to avoid - // native tooltip showing up (happens only when removing inside mouseover). - if ( target.is( "[title]" ) ) { - if ( event && event.type === "mouseover" ) { - target.attr( "title", "" ); - } else { - target.removeAttr( "title" ); - } - } - - tooltip = this._tooltip( target ); - addDescribedBy( target, tooltip.attr( "id" ) ); - tooltip.find( ".ui-tooltip-content" ).html( content ); - - function position( event ) { - positionOption.of = event; - tooltip.position( positionOption ); - } - if ( this.options.track && event && /^mouse/.test( event.originalEvent.type ) ) { - positionOption = $.extend( {}, this.options.position ); - this._on( this.document, { - mousemove: position - }); - // trigger once to override element-relative positioning - position( event ); - } else { - tooltip.position( $.extend({ - of: target - }, this.options.position ) ); - } - - tooltip.hide(); - - this._show( tooltip, this.options.show ); - - this._trigger( "open", event, { tooltip: tooltip } ); - - this._on( target, { - mouseleave: "close", - focusout: "close", - keyup: function( event ) { - if ( event.keyCode === $.ui.keyCode.ESCAPE ) { - var fakeEvent = $.Event(event); - fakeEvent.currentTarget = target[0]; - this.close( fakeEvent, true ); - } - } - }); - }, - - close: function( event, force ) { - var that = this, - target = $( event ? event.currentTarget : this.element ), - tooltip = this._find( target ); - - // disabling closes the tooltip, so we need to track when we're closing - // to avoid an infinite loop in case the tooltip becomes disabled on close - if ( this.closing ) { - return; - } - - // don't close if the element has focus - // this prevents the tooltip from closing if you hover while focused - // - // we have to check the event type because tabbing out of the document - // may leave the element as the activeElement - if ( !force && event && event.type !== "focusout" && - this.document[0].activeElement === target[0] ) { - return; - } - - // only set title if we had one before (see comment in _open()) - if ( target.data( "ui-tooltip-title" ) ) { - target.attr( "title", target.data( "ui-tooltip-title" ) ); - } - - removeDescribedBy( target ); - - tooltip.stop( true ); - this._hide( tooltip, this.options.hide, function() { - $( this ).remove(); - delete that.tooltips[ this.id ]; - }); - - target.removeData( "tooltip-open" ); - this._off( target, "mouseleave focusout keyup" ); - this._off( this.document, "mousemove" ); - - this.closing = true; - this._trigger( "close", event, { tooltip: tooltip } ); - this.closing = false; - }, - - _tooltip: function( element ) { - var id = "ui-tooltip-" + increments++, - tooltip = $( "<div>" ) - .attr({ - id: id, - role: "tooltip" - }) - .addClass( "ui-tooltip ui-widget ui-corner-all ui-widget-content " + - ( this.options.tooltipClass || "" ) ); - $( "<div>" ) - .addClass( "ui-tooltip-content" ) - .appendTo( tooltip ); - tooltip.appendTo( this.document[0].body ); - if ( $.fn.bgiframe ) { - tooltip.bgiframe(); - } - this.tooltips[ id ] = element; - return tooltip; - }, - - _find: function( target ) { - var id = target.data( "ui-tooltip-id" ); - return id ? $( "#" + id ) : $(); - }, - - _destroy: function() { - var that = this; - - // close open tooltips - $.each( this.tooltips, function( id, element ) { - // Delegate to close method to handle common cleanup - var event = $.Event( "blur" ); - event.target = event.currentTarget = element[0]; - that.close( event, true ); - - // Remove immediately; destroying an open tooltip doesn't use the - // hide animation - $( "#" + id ).remove(); - - // Restore the title - if ( element.data( "ui-tooltip-title" ) ) { - element.attr( "title", element.data( "ui-tooltip-title" ) ); - element.removeData( "ui-tooltip-title" ); - } - }); - } - }); - -}( jQuery ) ); diff --git a/pub/lib/lib/dropdown.js b/pub/lib/lib/dropdown.js index eeb92aac8f8292bf79c597b587a27a4247d54790..e41328e89abfa210ec717b652a81c67f9a3ccf01 100644 --- a/pub/lib/lib/dropdown.js +++ b/pub/lib/lib/dropdown.js @@ -19,7 +19,7 @@ * * @category Mage * @package js - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ dropdown = function() { diff --git a/pub/lib/lib/flex.js b/pub/lib/lib/flex.js index f6bf3738e53199d1cb6bce8986095356c09c189e..72aeabe0b21cbf6c1c5d1558234f23b9238a1029 100644 --- a/pub/lib/lib/flex.js +++ b/pub/lib/lib/flex.js @@ -19,7 +19,7 @@ * * @category Mage * @package js - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/pub/lib/mage/adminhtml/accordion.js b/pub/lib/mage/adminhtml/accordion.js index 52ca4fc3fea0ce752d91b4bec4f846701753b979..62de681e521ff23a9d6f694154ace5765395afcf 100644 --- a/pub/lib/mage/adminhtml/accordion.js +++ b/pub/lib/mage/adminhtml/accordion.js @@ -19,7 +19,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ var varienAccordion = new Class.create(); diff --git a/pub/lib/mage/adminhtml/backup.js b/pub/lib/mage/adminhtml/backup.js index dc55875cfb8f132c90f9cbcd0637a32b7f0d7f0e..c21cb0c8c0a18b7d0d6d9399262c6c2d1c80d005 100644 --- a/pub/lib/mage/adminhtml/backup.js +++ b/pub/lib/mage/adminhtml/backup.js @@ -19,7 +19,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ var AdminBackup = new Class.create(); diff --git a/pub/lib/mage/adminhtml/browser.js b/pub/lib/mage/adminhtml/browser.js index f26ecca6dcd374e3be7df55d2f73473ff0ff1061..b51e5d678b603cf509a791e183822a020d8a4bd2 100644 --- a/pub/lib/mage/adminhtml/browser.js +++ b/pub/lib/mage/adminhtml/browser.js @@ -19,7 +19,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ MediabrowserUtility = { diff --git a/pub/lib/mage/adminhtml/events.js b/pub/lib/mage/adminhtml/events.js index 19ba9fe4de428a4f65ecf02bf032ac14545ff2be..fb457b2c03522aa6160ef0846bca3050c724af75 100644 --- a/pub/lib/mage/adminhtml/events.js +++ b/pub/lib/mage/adminhtml/events.js @@ -19,7 +19,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ // from http://www.someelement.com/2007/03/eventpublisher-custom-events-la-pubsub.html diff --git a/pub/lib/mage/adminhtml/fix-extjs-defer-before.js b/pub/lib/mage/adminhtml/fix-extjs-defer-before.js index 15e3643a91bedcfb696fbf07105dba9c8db8de22..f4bb09bc68e31d6b9ddd17738ab394a9f348cb98 100644 --- a/pub/lib/mage/adminhtml/fix-extjs-defer-before.js +++ b/pub/lib/mage/adminhtml/fix-extjs-defer-before.js @@ -19,7 +19,7 @@ * * @category Mage * @package js - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /*@cc_on diff --git a/pub/lib/mage/adminhtml/fix-extjs-defer.js b/pub/lib/mage/adminhtml/fix-extjs-defer.js index 370f6dfcda81e3e7b0af7ab97bd418c662e3daf8..7bbc8691dfc1d09815cd8b0b2d0e75949ce01ee1 100644 --- a/pub/lib/mage/adminhtml/fix-extjs-defer.js +++ b/pub/lib/mage/adminhtml/fix-extjs-defer.js @@ -19,7 +19,7 @@ * * @category Mage * @package js - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/pub/lib/mage/adminhtml/flexuploader.js b/pub/lib/mage/adminhtml/flexuploader.js index b3b73e5fd46a9b0bae51e7cf8c1f550e6dd5f76c..31e306e3ec53ed66502ebc980a130ca227f333a5 100644 --- a/pub/lib/mage/adminhtml/flexuploader.js +++ b/pub/lib/mage/adminhtml/flexuploader.js @@ -19,7 +19,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/pub/lib/mage/adminhtml/form.js b/pub/lib/mage/adminhtml/form.js index 0b9d8c37e680bb38a6f02beef3ed530fa963b911..9d9da6f1f8c42610a9f711345f54f4e2c97cef31 100644 --- a/pub/lib/mage/adminhtml/form.js +++ b/pub/lib/mage/adminhtml/form.js @@ -19,7 +19,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/pub/lib/mage/adminhtml/grid.js b/pub/lib/mage/adminhtml/grid.js index 3abb9fcc96b583bd2653352d02b52f836b2f22ac..1797ec04d875ce0090295e072cb433c53516ca61 100644 --- a/pub/lib/mage/adminhtml/grid.js +++ b/pub/lib/mage/adminhtml/grid.js @@ -19,7 +19,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ var varienGrid = new Class.create(); diff --git a/pub/lib/mage/adminhtml/image.js b/pub/lib/mage/adminhtml/image.js index 19bebed5275fd26c9624c9ea3e2d3560fe15e9a8..e02d1285184275441aa600c53ece7ac09f9c4a05 100644 --- a/pub/lib/mage/adminhtml/image.js +++ b/pub/lib/mage/adminhtml/image.js @@ -19,7 +19,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/pub/lib/mage/adminhtml/tabs.js b/pub/lib/mage/adminhtml/tabs.js index 690f066a24f9aae0a1a40e1469fcc9120469626f..4823b2236628af925a19e62fce8d0c55350620b2 100644 --- a/pub/lib/mage/adminhtml/tabs.js +++ b/pub/lib/mage/adminhtml/tabs.js @@ -19,7 +19,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ var varienTabs = new Class.create(); diff --git a/pub/lib/mage/adminhtml/tools.js b/pub/lib/mage/adminhtml/tools.js index 71adf70e33b732a35e728efaa8bb25eb5516c5a2..025c8b1925bca0ab835fb37d3548c93eee293bcf 100644 --- a/pub/lib/mage/adminhtml/tools.js +++ b/pub/lib/mage/adminhtml/tools.js @@ -19,7 +19,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ function setLocation(url){ diff --git a/pub/lib/mage/adminhtml/varienLoader.js b/pub/lib/mage/adminhtml/varienLoader.js index 04504557c01f775f0d240b823632ba40bc8766a7..800d937f90aeac12681b00a883c9a0a22db0c0f1 100644 --- a/pub/lib/mage/adminhtml/varienLoader.js +++ b/pub/lib/mage/adminhtml/varienLoader.js @@ -19,7 +19,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/pub/lib/mage/adminhtml/wysiwyg/tiny_mce/plugins/magentovariable/editor_plugin.js b/pub/lib/mage/adminhtml/wysiwyg/tiny_mce/plugins/magentovariable/editor_plugin.js index 83fc6fee5167b5b72aae18d51c423c61a14987de..740e6c9fbbecaee9cd4a908a0b530ade4b12e182 100644 --- a/pub/lib/mage/adminhtml/wysiwyg/tiny_mce/plugins/magentovariable/editor_plugin.js +++ b/pub/lib/mage/adminhtml/wysiwyg/tiny_mce/plugins/magentovariable/editor_plugin.js @@ -19,7 +19,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/pub/lib/mage/adminhtml/wysiwyg/tiny_mce/plugins/magentowidget/editor_plugin.js b/pub/lib/mage/adminhtml/wysiwyg/tiny_mce/plugins/magentowidget/editor_plugin.js index f25249b233872fab63a40b0f8214e594fcf8dff6..24004140cdf3e105e53066ee50279901264db3b3 100644 --- a/pub/lib/mage/adminhtml/wysiwyg/tiny_mce/plugins/magentowidget/editor_plugin.js +++ b/pub/lib/mage/adminhtml/wysiwyg/tiny_mce/plugins/magentowidget/editor_plugin.js @@ -19,7 +19,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ tinyMCE.addI18n({en:{ diff --git a/pub/lib/mage/adminhtml/wysiwyg/tiny_mce/setup.js b/pub/lib/mage/adminhtml/wysiwyg/tiny_mce/setup.js index 50ba71b7cab58d39132f8b2f6dbadbcdd27c9284..cfb6425cc2ea69268acd96a00d6ddbf28838546b 100644 --- a/pub/lib/mage/adminhtml/wysiwyg/tiny_mce/setup.js +++ b/pub/lib/mage/adminhtml/wysiwyg/tiny_mce/setup.js @@ -19,7 +19,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/pub/lib/mage/adminhtml/wysiwyg/tiny_mce/themes/advanced/skins/default/content.css b/pub/lib/mage/adminhtml/wysiwyg/tiny_mce/themes/advanced/skins/default/content.css index 1a18de8e7ab048ebc21843264965849dab2d7dcb..a4afcc6b22f88b83e8be62e411a8f3931d67c70f 100644 --- a/pub/lib/mage/adminhtml/wysiwyg/tiny_mce/themes/advanced/skins/default/content.css +++ b/pub/lib/mage/adminhtml/wysiwyg/tiny_mce/themes/advanced/skins/default/content.css @@ -19,7 +19,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/pub/lib/mage/adminhtml/wysiwyg/tiny_mce/themes/advanced/skins/default/dialog.css b/pub/lib/mage/adminhtml/wysiwyg/tiny_mce/themes/advanced/skins/default/dialog.css index ea0e4742aac2c4ac3f2673a61f667b472bef2560..6a4f6cf17724c537de99b64e9dce9c457490106c 100644 --- a/pub/lib/mage/adminhtml/wysiwyg/tiny_mce/themes/advanced/skins/default/dialog.css +++ b/pub/lib/mage/adminhtml/wysiwyg/tiny_mce/themes/advanced/skins/default/dialog.css @@ -19,7 +19,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/pub/lib/mage/adminhtml/wysiwyg/widget.js b/pub/lib/mage/adminhtml/wysiwyg/widget.js index 35a03931594a46bd14d43fded5616182bf2407aa..827971ff794239dd2f1dcd56425e49e0726d79ce 100644 --- a/pub/lib/mage/adminhtml/wysiwyg/widget.js +++ b/pub/lib/mage/adminhtml/wysiwyg/widget.js @@ -19,7 +19,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/pub/lib/mage/backend/ajax-setup.js b/pub/lib/mage/backend/ajax-setup.js index 29b70f3d2a68c219b7458ffd1e4d10c18ebce862..ef76a3085ae967dcc87a0bbd2b04fd87358b7db8 100644 --- a/pub/lib/mage/backend/ajax-setup.js +++ b/pub/lib/mage/backend/ajax-setup.js @@ -19,7 +19,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /*jshint browser:true jquery:true */ diff --git a/pub/lib/mage/backend/bootstrap.js b/pub/lib/mage/backend/bootstrap.js index 8776d031988e910b617ff02f2f7662201f741c0f..4fe903f690776cc8046e33d74fb8f35ca61488ee 100644 --- a/pub/lib/mage/backend/bootstrap.js +++ b/pub/lib/mage/backend/bootstrap.js @@ -19,7 +19,7 @@ * * @category Mage * @package Mage_Adminhtml - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /*jshint jquery:true browser:true */ diff --git a/pub/lib/mage/backend/editablemultiselect.js b/pub/lib/mage/backend/editablemultiselect.js index e0a35e87a2101542a56efa438568615812561e5d..3bba5ec6fff107528d85205dbc0c5ea9d49e2ccf 100644 --- a/pub/lib/mage/backend/editablemultiselect.js +++ b/pub/lib/mage/backend/editablemultiselect.js @@ -19,7 +19,7 @@ * * @category Mage * @package Mage_Backend - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ (function($) { diff --git a/pub/lib/mage/backend/form.js b/pub/lib/mage/backend/form.js index 10446756d6528aeeb62adf3d93bb09a553f05a93..9775c6146c1560df64239f536695294132fd2b5c 100644 --- a/pub/lib/mage/backend/form.js +++ b/pub/lib/mage/backend/form.js @@ -19,14 +19,13 @@ * * @category mage * @package mage - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /*jshint jquery:true*/ (function($) { $.widget("mage.form", { options: { - actionTemplate: '${base}{{each(key, value) args}}${key}/${value}/{{/each}}', handlersData: { save: {}, saveAndContinueEdit: { @@ -45,7 +44,6 @@ * @protected */ _create: function() { - $.template('actionTemplate', this.options.actionTemplate); this._bind(); }, @@ -129,15 +127,28 @@ */ _getActionUrl: function(data) { if ($.type(data) === 'object') { - return $.tmpl('actionTemplate', { - base: this.oldAttributes.action, - args: data.args - }).text(); + return this._buildURL(this.oldAttributes.action, data.args); } else { return $.type(data) === 'string' ? data : this.oldAttributes.action; } }, + /** + * Add additional parameters into URL + * @param {string} url - original url + * @param {Object} params - object with parameters for action url + * @return {string} action url + * @private + */ + _buildURL: function(url, params) { + var concat = /\?/.test(url) ? ['&', '='] : ['/', '/']; + url = url.replace(/[\/&]+$/, ''); + $.each(params, function(key, value) { + url += concat[0] + key + concat[1] + encodeURIComponent(value); + }); + return url + (concat[0] === '/' ? '/' : ''); + }, + /** * Prepare data for form attributes * @protected diff --git a/pub/lib/mage/backend/notification.js b/pub/lib/mage/backend/notification.js index 12d611cdf8dd127ad10f54e4dd84c6bc2b8ed329..5f6a68979bbfe3308561e44ed13e36ceeebe9f77 100644 --- a/pub/lib/mage/backend/notification.js +++ b/pub/lib/mage/backend/notification.js @@ -19,7 +19,7 @@ * * @category mage * @package mage - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /*jshint jquery:true browser:true*/ diff --git a/pub/lib/mage/backend/tabs.js b/pub/lib/mage/backend/tabs.js index 8a80809ec62cc73a2e0e6c47a051a05d0270fb08..c8267a94da2ea2a05020eb99ea7ca7c938b3a68a 100644 --- a/pub/lib/mage/backend/tabs.js +++ b/pub/lib/mage/backend/tabs.js @@ -19,10 +19,10 @@ * * @category mage * @package mage - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ -/*jshint jquery:true*/ +/*jshint jquery:true browser:true*/ /*global FORM_KEY:true*/ (function($) { 'use strict'; @@ -276,7 +276,7 @@ anchors.each($.proxy(function(i, anchor) { var anchorId = $(anchor).prop('id'); if (shadowTabs[anchorId]) { - $(anchor).parents('li').on('click', $.proxy(function(e) { + $(anchor).parents('li').on('click', $.proxy(function() { $.each(shadowTabs[anchorId], $.proxy(function(i, id) { this.load($(tabs).index($('#' + id).parents('li')), {}); }, this)); diff --git a/pub/lib/mage/backend/validation.js b/pub/lib/mage/backend/validation.js index d6418a20ce80d39f3a806ed99a782ec960a64b98..b7c16fd60d303e695a74eb9a5d5ebe5076d2b785 100644 --- a/pub/lib/mage/backend/validation.js +++ b/pub/lib/mage/backend/validation.js @@ -19,7 +19,7 @@ * * @category mage * @package mage - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /*jshint jquery:true browser:true*/ diff --git a/pub/lib/mage/calendar.css b/pub/lib/mage/calendar.css index 3735fd410c3400fc89acad165a35d444933efc59..e2599edadc7185caea4ef0b8a9efbe1cdf24386b 100644 --- a/pub/lib/mage/calendar.css +++ b/pub/lib/mage/calendar.css @@ -19,7 +19,7 @@ * * @category Mage * @package js - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ .ui-datepicker { diff --git a/pub/lib/mage/calendar.js b/pub/lib/mage/calendar.js index 5d7e7cb64fcff3fc01355928a473b81f616cfeb6..35ed961d191bd5f05242ba05a3fe7cee96a3ee50 100644 --- a/pub/lib/mage/calendar.js +++ b/pub/lib/mage/calendar.js @@ -17,7 +17,7 @@ * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /*jshint browser:true jquery:true */ diff --git a/pub/lib/mage/captcha.js b/pub/lib/mage/captcha.js index 4e5e1f763d45f87658c4c204290a6471c0614368..9b2f3a0b52f60b93155f69a212662ba2e97a6e37 100644 --- a/pub/lib/mage/captcha.js +++ b/pub/lib/mage/captcha.js @@ -19,7 +19,7 @@ * * @category Mage * @package js - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ var Captcha = Class.create(); diff --git a/pub/lib/mage/decorate.js b/pub/lib/mage/decorate.js index 3270fdac94bf72f717a464a87800dd01cdd8771c..abafb34cfce5bde154198e196a6bf743711814d2 100644 --- a/pub/lib/mage/decorate.js +++ b/pub/lib/mage/decorate.js @@ -19,7 +19,7 @@ * * @category cart * @package mage - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /*jshint browser:true jquery:true*/ diff --git a/pub/lib/mage/directpost.js b/pub/lib/mage/directpost.js index c5eb1eac0ae5bde545c8d21f3406227ca8ae76cc..7128a5c4e0e5742fe4b8899df0cc15ffe0f24682 100644 --- a/pub/lib/mage/directpost.js +++ b/pub/lib/mage/directpost.js @@ -19,7 +19,7 @@ * * @category Mage * @package js - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ var directPost = Class.create(); diff --git a/pub/lib/mage/edit-trigger.js b/pub/lib/mage/edit-trigger.js index ee9016568c690c2aa3608e8f54e13abd55dc140a..9a2cd48304f328cc1da1c0ec9938e25b5fb1709a 100644 --- a/pub/lib/mage/edit-trigger.js +++ b/pub/lib/mage/edit-trigger.js @@ -19,7 +19,7 @@ * * @category Mage * @package js - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /*jshint browser:true jquery:true */ diff --git a/pub/lib/mage/jquery-no-conflict.js b/pub/lib/mage/jquery-no-conflict.js index f8146c595f67f306281fe858ce32f86536523a32..62d0996f7b974df08c58218ba86669c775db0a91 100644 --- a/pub/lib/mage/jquery-no-conflict.js +++ b/pub/lib/mage/jquery-no-conflict.js @@ -19,7 +19,7 @@ * * @category jquery * @package js - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/pub/lib/mage/loader.js b/pub/lib/mage/loader.js index f5b545128b7b3db8ad80476b1a40c44059e7449b..a824372ea06c3fc3f65bc72906077c608a06652d 100644 --- a/pub/lib/mage/loader.js +++ b/pub/lib/mage/loader.js @@ -19,7 +19,7 @@ * * @category mage * @package mage - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /*jshint browser:true jquery:true*/ diff --git a/pub/lib/mage/localization/localize.js b/pub/lib/mage/localization/localize.js index c6a7352e58e59c3443fb60f2cd3d547704d1db21..0a6942b98c258bbfebf0bdba6cf91f04e17ed555 100644 --- a/pub/lib/mage/localization/localize.js +++ b/pub/lib/mage/localization/localize.js @@ -19,7 +19,7 @@ * * @category localization * @package mage - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /*jshint eqnull:true browser:true jquery:true*/ diff --git a/pub/lib/mage/mage.js b/pub/lib/mage/mage.js index 7c7e72436ae3724ccf1423679b1159f12128e07e..2654b39593f025f5b35adf26e54f0c775346a691 100644 --- a/pub/lib/mage/mage.js +++ b/pub/lib/mage/mage.js @@ -19,7 +19,7 @@ * * @category mage * @package mage - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /*jshint eqnull:true browser:true jquery:true*/ diff --git a/pub/lib/mage/popup-window.js b/pub/lib/mage/popup-window.js index 791d9c7464db5dfff7d082d583a7045b36b544ff..76eecb04b9d10d8608b375fc5b10fada99a4cf9a 100644 --- a/pub/lib/mage/popup-window.js +++ b/pub/lib/mage/popup-window.js @@ -19,7 +19,7 @@ * * @category pub * @package mage - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /*jshint evil:true browser:true jquery:true*/ diff --git a/pub/lib/mage/translate-inline.css b/pub/lib/mage/translate-inline.css index 7bb9144e81e7ce4de513659e8806c0d0daaedcc4..fa93fa16c24ddab87d94fbe1548544911f88dff2 100644 --- a/pub/lib/mage/translate-inline.css +++ b/pub/lib/mage/translate-inline.css @@ -19,7 +19,7 @@ * * @category Mage * @package js - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ diff --git a/pub/lib/mage/translate-inline.js b/pub/lib/mage/translate-inline.js index ecab6503e77b18f9d67f2f22725bd95e402fe6de..4fd0ea71f77efc8c5ac672bed4bd605e4bac1f37 100644 --- a/pub/lib/mage/translate-inline.js +++ b/pub/lib/mage/translate-inline.js @@ -19,7 +19,7 @@ * * @category Mage * @package mage - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /*jshint browser:true jquery:true */ diff --git a/pub/lib/mage/translate.js b/pub/lib/mage/translate.js index bb60b17b0190473bab689376ee02b4d214a00d3f..56bed8dd8b8178930e7b656fcc4e4839f0a848f5 100644 --- a/pub/lib/mage/translate.js +++ b/pub/lib/mage/translate.js @@ -19,7 +19,7 @@ * * @category Mage * @package mage.translate - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /*jshint browser:true jquery:true*/ diff --git a/pub/lib/mage/validation.js b/pub/lib/mage/validation.js index 7148c536b13548908854a242547c8ff746b3adb1..2518c83d11cdf671b8815abebb7ac96b7731d869 100644 --- a/pub/lib/mage/validation.js +++ b/pub/lib/mage/validation.js @@ -19,7 +19,7 @@ * * @category validation * @package mage - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /*jshint regexdash:true eqnull:true browser:true jquery:true*/ diff --git a/pub/lib/mage/validation/validate.js b/pub/lib/mage/validation/validate.js index 0001785ad36db05a795162ba4b31814b09c530ad..e455931f7c4cffc38bfa6271b474f8031b55e905 100644 --- a/pub/lib/mage/validation/validate.js +++ b/pub/lib/mage/validation/validate.js @@ -19,7 +19,7 @@ * * @category validation * @package mage - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ /*jshint regexdash:true eqnull:true browser:true jquery:true*/ diff --git a/pub/lib/varien/configurable.js b/pub/lib/varien/configurable.js index b835505cc140dd92ef7110dba63498d66fcc1f51..625e40080dea0a23d4775c2a6b9a9dfc2a2ad99d 100644 --- a/pub/lib/varien/configurable.js +++ b/pub/lib/varien/configurable.js @@ -19,7 +19,7 @@ * * @category Varien * @package js - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ if (typeof Product == 'undefined') { diff --git a/pub/lib/varien/form.js b/pub/lib/varien/form.js index 8fff0dfb5f10e0dab7f087323c3c4488c5b53b12..27910e1248c74d75cd8d1ce33fe71751211d152c 100644 --- a/pub/lib/varien/form.js +++ b/pub/lib/varien/form.js @@ -19,7 +19,7 @@ * * @category Varien * @package js - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ VarienForm = Class.create(); diff --git a/pub/lib/varien/js.js b/pub/lib/varien/js.js index 0e07dae246b249942f896167d47b0d3698d062a7..c706f21e8960a1b8303a7b9d161c58a4f5488718 100644 --- a/pub/lib/varien/js.js +++ b/pub/lib/varien/js.js @@ -19,7 +19,7 @@ * * @category Varien * @package js - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ function popWin(url,win,para) { diff --git a/pub/lib/varien/product.js b/pub/lib/varien/product.js index fe7518c0443dc8de53522a9fd44f5015914401a6..57b4359bee9c57ce9af922f83287a0ce096218eb 100644 --- a/pub/lib/varien/product.js +++ b/pub/lib/varien/product.js @@ -19,7 +19,7 @@ * * @category Varien * @package js - * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com) + * @copyright Copyright (c) 2013 X.commerce, Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ if(typeof Product=='undefined') {